
    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_b45f2ac76888442f750b087f.woff2')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_9bee40510b1315b32a451014.woff2')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_272c525e05af920f9ad6715c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_83feae1971ed943583ad0254.woff2')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_d4fdc17f9e3df87c74692870.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_646473453cb704af8a39e37c.woff2')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_4abbcff060d3ca431313596e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_75cfeaaf919278c93959a59c.woff2')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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.124200px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.116400px;}
.ls1a{letter-spacing:0.142800px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf{word-spacing:-14.636400px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._d{margin-left:-4.276761px;}
._9{margin-left:-3.246600px;}
._c{margin-left:-2.160600px;}
._0{margin-left:-1.086000px;}
._3{width:1.091363px;}
._5{width:2.464800px;}
._4{width:3.550800px;}
._6{width:4.670402px;}
._7{width:6.192600px;}
._f{width:7.274400px;}
._10{width:8.287237px;}
._8{width:10.039800px;}
._e{width:11.421004px;}
._16{width:14.308560px;}
._14{width:15.390720px;}
._12{width:16.420921px;}
._11{width:17.606999px;}
._b{width:18.701400px;}
._a{width:20.367360px;}
._13{width:21.612240px;}
._1b{width:23.297400px;}
._19{width:24.589080px;}
._1a{width:25.971840px;}
._18{width:27.595080px;}
._17{width:28.617120px;}
._2{width:48.565178px;}
._1{width:49.657212px;}
._15{width:122.483400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.330000px;}
.yba{bottom:3.420000px;}
.ydd{bottom:20.880000px;}
.yb9{bottom:20.970000px;}
.yd4{bottom:38.520000px;}
.yb8{bottom:38.610000px;}
.yd3{bottom:56.070000px;}
.yb7{bottom:56.160000px;}
.y2{bottom:73.380000px;}
.ydc{bottom:73.620000px;}
.yc9{bottom:73.710000px;}
.y29{bottom:74.190000px;}
.yd2{bottom:91.260000px;}
.ye2{bottom:91.350000px;}
.yc7{bottom:91.380000px;}
.y1{bottom:101.640000px;}
.ydb{bottom:108.810000px;}
.yd1{bottom:108.900000px;}
.yc6{bottom:108.930000px;}
.yd9{bottom:111.810000px;}
.ye5{bottom:113.160000px;}
.y152{bottom:116.490000px;}
.y12f{bottom:116.580000px;}
.yd0{bottom:126.450000px;}
.ye1{bottom:126.540000px;}
.yc5{bottom:126.570000px;}
.y58{bottom:129.270000px;}
.y80{bottom:132.150000px;}
.y12e{bottom:134.130000px;}
.ycf{bottom:144.000000px;}
.yd7{bottom:144.090000px;}
.yc4{bottom:144.120000px;}
.ya7{bottom:146.100000px;}
.y112{bottom:146.190000px;}
.y7f{bottom:149.790000px;}
.y12d{bottom:151.680000px;}
.y27{bottom:157.350000px;}
.y151{bottom:160.680000px;}
.yce{bottom:161.640000px;}
.yc3{bottom:161.670000px;}
.ya6{bottom:163.650000px;}
.y111{bottom:163.830000px;}
.y57{bottom:164.910000px;}
.yca{bottom:165.360000px;}
.y12c{bottom:169.320000px;}
.y26{bottom:174.990000px;}
.yd6{bottom:175.860000px;}
.y150{bottom:178.320000px;}
.ycd{bottom:179.190000px;}
.ye4{bottom:179.220000px;}
.ye0{bottom:179.280000px;}
.yc2{bottom:179.310000px;}
.ya5{bottom:181.200000px;}
.y110{bottom:181.380000px;}
.y56{bottom:182.460000px;}
.y7e{bottom:185.340000px;}
.y25{bottom:192.540000px;}
.y12b{bottom:195.870000px;}
.ycc{bottom:196.830000px;}
.yc1{bottom:196.860000px;}
.y10f{bottom:198.930000px;}
.y55{bottom:200.100000px;}
.y7d{bottom:203.700000px;}
.y14f{bottom:204.870000px;}
.y24{bottom:210.090000px;}
.ycb{bottom:214.380000px;}
.yc0{bottom:214.410000px;}
.y10e{bottom:216.570000px;}
.ya4{bottom:216.840000px;}
.yd5{bottom:218.100000px;}
.y7c{bottom:222.150000px;}
.y14e{bottom:222.420000px;}
.y23{bottom:227.730000px;}
.y12a{bottom:231.510000px;}
.ybf{bottom:232.050000px;}
.y10d{bottom:234.120000px;}
.ya3{bottom:234.390000px;}
.y54{bottom:235.650000px;}
.y14d{bottom:240.060000px;}
.y7b{bottom:240.510000px;}
.ybe{bottom:249.600000px;}
.y10c{bottom:251.760000px;}
.ya2{bottom:251.940000px;}
.y53{bottom:253.200000px;}
.y7a{bottom:258.960000px;}
.y22{bottom:263.280000px;}
.y14c{bottom:266.610000px;}
.y129{bottom:267.060000px;}
.ybd{bottom:267.240000px;}
.ya1{bottom:269.580000px;}
.y52{bottom:270.840000px;}
.y79{bottom:277.410000px;}
.y10b{bottom:278.310000px;}
.y21{bottom:280.920000px;}
.y14b{bottom:284.250000px;}
.y128{bottom:284.610000px;}
.ybc{bottom:284.790000px;}
.ya0{bottom:287.130000px;}
.y51{bottom:288.390000px;}
.y20{bottom:298.470000px;}
.yc8{bottom:299.010000px;}
.y127{bottom:302.250000px;}
.y14a{bottom:310.800000px;}
.y78{bottom:313.860000px;}
.y50{bottom:314.940000px;}
.y1f{bottom:316.020000px;}
.y126{bottom:319.800000px;}
.y9f{bottom:322.770000px;}
.ye3{bottom:324.930000px;}
.y149{bottom:328.350000px;}
.y77{bottom:331.410000px;}
.y10a{bottom:331.500000px;}
.y1e{bottom:333.660000px;}
.y125{bottom:337.440000px;}
.y9e{bottom:340.320000px;}
.y109{bottom:349.050000px;}
.y4f{bottom:350.850000px;}
.y1d{bottom:351.210000px;}
.y124{bottom:354.990000px;}
.y9d{bottom:357.870000px;}
.y76{bottom:357.960000px;}
.y108{bottom:366.690000px;}
.y1c{bottom:368.850000px;}
.y123{bottom:372.540000px;}
.y9c{bottom:375.510000px;}
.y107{bottom:384.240000px;}
.y1b{bottom:386.400000px;}
.y122{bottom:390.180000px;}
.y75{bottom:393.600000px;}
.ybb{bottom:394.680000px;}
.y148{bottom:399.090000px;}
.y4e{bottom:399.180000px;}
.y1a{bottom:403.950000px;}
.y9b{bottom:411.060000px;}
.y74{bottom:411.150000px;}
.y4d{bottom:416.730000px;}
.y106{bottom:419.790000px;}
.y9a{bottom:428.700000px;}
.y19{bottom:430.860000px;}
.y4c{bottom:434.370000px;}
.y105{bottom:437.430000px;}
.y147{bottom:443.280000px;}
.y99{bottom:446.250000px;}
.y73{bottom:446.700000px;}
.y4b{bottom:451.920000px;}
.y121{bottom:452.370000px;}
.y104{bottom:454.980000px;}
.y98{bottom:463.800000px;}
.y4a{bottom:469.470000px;}
.y120{bottom:469.950000px;}
.y103{bottom:472.650000px;}
.y18{bottom:479.220000px;}
.y97{bottom:481.470000px;}
.y72{bottom:482.370000px;}
.y11f{bottom:487.500000px;}
.y102{bottom:490.200000px;}
.y17{bottom:497.130000px;}
.y71{bottom:499.920000px;}
.y146{bottom:505.050000px;}
.y49{bottom:505.140000px;}
.y101{bottom:507.750000px;}
.y96{bottom:517.020000px;}
.y70{bottom:518.280000px;}
.y48{bottom:522.690000px;}
.y16{bottom:534.120000px;}
.y95{bottom:534.660000px;}
.y6f{bottom:536.730000px;}
.y47{bottom:540.330000px;}
.y100{bottom:543.390000px;}
.y145{bottom:549.240000px;}
.y15{bottom:551.670000px;}
.y94{bottom:552.210000px;}
.y46{bottom:557.880000px;}
.yff{bottom:560.940000px;}
.y144{bottom:566.880000px;}
.y14{bottom:569.310000px;}
.y93{bottom:569.760000px;}
.y6e{bottom:573.180000px;}
.y45{bottom:575.430000px;}
.y11e{bottom:575.880000px;}
.yfe{bottom:578.580000px;}
.y13{bottom:586.860000px;}
.ydf{bottom:589.470000px;}
.y11d{bottom:593.430000px;}
.y143{bottom:593.790000px;}
.yfd{bottom:596.130000px;}
.y6d{bottom:599.730000px;}
.y12{bottom:604.500000px;}
.y92{bottom:605.400000px;}
.y44{bottom:611.070000px;}
.yfc{bottom:613.680000px;}
.y11{bottom:622.050000px;}
.y91{bottom:622.950000px;}
.y43{bottom:628.620000px;}
.yfb{bottom:631.320000px;}
.y6c{bottom:635.280000px;}
.y10{bottom:639.600000px;}
.y90{bottom:640.590000px;}
.y142{bottom:642.030000px;}
.y42{bottom:646.260000px;}
.yfa{bottom:648.870000px;}
.y6b{bottom:653.730000px;}
.yf{bottom:657.240000px;}
.y8f{bottom:658.140000px;}
.y41{bottom:663.810000px;}
.y141{bottom:668.940000px;}
.y6a{bottom:672.180000px;}
.ye{bottom:674.790000px;}
.yf9{bottom:675.510000px;}
.y8e{bottom:675.690000px;}
.y40{bottom:681.360000px;}
.y69{bottom:690.540000px;}
.yd{bottom:692.430000px;}
.y8d{bottom:693.330000px;}
.yb6{bottom:694.410000px;}
.y11c{bottom:699.000000px;}
.y140{bottom:705.930000px;}
.yc{bottom:709.980000px;}
.yf8{bottom:711.060000px;}
.y11b{bottom:716.550000px;}
.y3f{bottom:717.000000px;}
.y68{bottom:717.990000px;}
.y13f{bottom:723.570000px;}
.yf7{bottom:728.610000px;}
.y8c{bottom:728.880000px;}
.y11a{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.yb{bottom:736.890000px;}
.yf6{bottom:746.250000px;}
.y8b{bottom:746.520000px;}
.y13e{bottom:750.480000px;}
.y67{bottom:750.570000px;}
.y3d{bottom:752.190000px;}
.y119{bottom:760.740000px;}
.yf5{bottom:763.800000px;}
.y8a{bottom:764.070000px;}
.y66{bottom:768.120000px;}
.y3c{bottom:769.740000px;}
.yf4{bottom:781.350000px;}
.y89{bottom:781.620000px;}
.yde{bottom:783.690000px;}
.ya{bottom:785.130000px;}
.y65{bottom:786.570000px;}
.yb5{bottom:786.930000px;}
.y3b{bottom:787.290000px;}
.y13d{bottom:787.830000px;}
.y118{bottom:796.290000px;}
.y3a{bottom:804.930000px;}
.yf3{bottom:808.260000px;}
.y88{bottom:808.530000px;}
.y117{bottom:813.930000px;}
.y9{bottom:820.950000px;}
.yb4{bottom:822.480000px;}
.y64{bottom:823.380000px;}
.y116{bottom:831.480000px;}
.y13c{bottom:836.070000px;}
.yb3{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.y115{bottom:849.030000px;}
.y63{bottom:850.830000px;}
.y13b{bottom:853.620000px;}
.yf2{bottom:856.590000px;}
.y87{bottom:856.860000px;}
.y8{bottom:856.950000px;}
.yb2{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.y114{bottom:866.670000px;}
.y13a{bottom:871.260000px;}
.yf1{bottom:874.140000px;}
.y86{bottom:874.410000px;}
.yb1{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.y62{bottom:883.410000px;}
.y113{bottom:884.220000px;}
.y139{bottom:888.810000px;}
.yf0{bottom:891.780000px;}
.y36{bottom:893.220000px;}
.y7{bottom:896.730000px;}
.y138{bottom:906.450000px;}
.yef{bottom:909.330000px;}
.y85{bottom:909.960000px;}
.yb0{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.y61{bottom:918.960000px;}
.yee{bottom:926.880000px;}
.y84{bottom:927.600000px;}
.yaf{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y60{bottom:936.600000px;}
.y137{bottom:942.000000px;}
.yae{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y83{bottom:954.150000px;}
.y155{bottom:954.960000px;}
.y136{bottom:959.550000px;}
.yed{bottom:962.520000px;}
.yad{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y5f{bottom:972.150000px;}
.y154{bottom:972.600000px;}
.y135{bottom:977.190000px;}
.yec{bottom:980.070000px;}
.yac{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y5e{bottom:989.790000px;}
.y134{bottom:994.740000px;}
.yeb{bottom:997.710000px;}
.y31{bottom:999.150000px;}
.y82{bottom:1007.340000px;}
.y3{bottom:1010.070000px;}
.y133{bottom:1012.320000px;}
.yda{bottom:1013.130000px;}
.yea{bottom:1015.290000px;}
.y30{bottom:1016.820000px;}
.y5d{bottom:1025.370000px;}
.y132{bottom:1029.960000px;}
.ye9{bottom:1032.840000px;}
.yab{bottom:1034.370000px;}
.y5c{bottom:1042.920000px;}
.y131{bottom:1047.510000px;}
.ye8{bottom:1050.480000px;}
.yaa{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y81{bottom:1060.560000px;}
.y153{bottom:1060.920000px;}
.ye7{bottom:1068.030000px;}
.ya9{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y130{bottom:1074.420000px;}
.y5b{bottom:1078.560000px;}
.ya8{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y5a{bottom:1096.110000px;}
.ye6{bottom:1100.970000px;}
.y2c{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h10{height:2.505938px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h13{height:52.830000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hd{height:70.380000px;}
.h4{height:72.985430px;}
.h14{height:140.670000px;}
.h12{height:175.860000px;}
.h16{height:193.500000px;}
.h18{height:211.050000px;}
.h11{height:228.600000px;}
.h15{height:228.630000px;}
.h17{height:263.820000px;}
.hf{height:299.010000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:0.359985px;}
.wd{width:0.360030px;}
.wc{width:0.449985px;}
.wf{width:0.450030px;}
.w3{width:20.160000px;}
.w5{width:56.790000px;}
.w8{width:59.070000px;}
.w11{width:85.950000px;}
.w10{width:86.040000px;}
.w7{width:90.450000px;}
.wa{width:92.520000px;}
.w9{width:93.600000px;}
.w6{width:98.280000px;}
.wb{width:115.650000px;}
.w4{width:122.970000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.710000px;}
.x1{left:68.040000px;}
.x7{left:89.730000px;}
.x4{left:95.039987px;}
.x12{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:211.079987px;}
.x8{left:213.510000px;}
.x9{left:271.110000px;}
.xa{left:370.200000px;}
.xb{left:461.370000px;}
.xc{left:521.250000px;}
.xd{left:615.570000px;}
.xf{left:617.280000px;}
.x10{left:618.450000px;}
.x11{left:619.800000px;}
.xe{left:708.810000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.110400pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.103467pt;}
.ls1a{letter-spacing:0.126933pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.wsf{word-spacing:-13.010133pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._d{margin-left:-3.801565pt;}
._9{margin-left:-2.885867pt;}
._c{margin-left:-1.920534pt;}
._0{margin-left:-0.965333pt;}
._3{width:0.970100pt;}
._5{width:2.190933pt;}
._4{width:3.156266pt;}
._6{width:4.151468pt;}
._7{width:5.504534pt;}
._f{width:6.466133pt;}
._10{width:7.366433pt;}
._8{width:8.924266pt;}
._e{width:10.152004pt;}
._16{width:12.718720pt;}
._14{width:13.680640pt;}
._12{width:14.596374pt;}
._11{width:15.650666pt;}
._b{width:16.623467pt;}
._a{width:18.104320pt;}
._13{width:19.210880pt;}
._1b{width:20.708800pt;}
._19{width:21.856960pt;}
._1a{width:23.086080pt;}
._18{width:24.528960pt;}
._17{width:25.437440pt;}
._2{width:43.169047pt;}
._1{width:44.139744pt;}
._15{width:108.874133pt;}
.fs7{font-size:2.560000pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.960000pt;}
.yba{bottom:3.040000pt;}
.ydd{bottom:18.560000pt;}
.yb9{bottom:18.640000pt;}
.yd4{bottom:34.240000pt;}
.yb8{bottom:34.320000pt;}
.yd3{bottom:49.840000pt;}
.yb7{bottom:49.920000pt;}
.y2{bottom:65.226667pt;}
.ydc{bottom:65.440000pt;}
.yc9{bottom:65.520000pt;}
.y29{bottom:65.946667pt;}
.yd2{bottom:81.120000pt;}
.ye2{bottom:81.200000pt;}
.yc7{bottom:81.226667pt;}
.y1{bottom:90.346667pt;}
.ydb{bottom:96.720000pt;}
.yd1{bottom:96.800000pt;}
.yc6{bottom:96.826667pt;}
.yd9{bottom:99.386667pt;}
.ye5{bottom:100.586667pt;}
.y152{bottom:103.546667pt;}
.y12f{bottom:103.626667pt;}
.yd0{bottom:112.400000pt;}
.ye1{bottom:112.480000pt;}
.yc5{bottom:112.506667pt;}
.y58{bottom:114.906667pt;}
.y80{bottom:117.466667pt;}
.y12e{bottom:119.226667pt;}
.ycf{bottom:128.000000pt;}
.yd7{bottom:128.080000pt;}
.yc4{bottom:128.106667pt;}
.ya7{bottom:129.866667pt;}
.y112{bottom:129.946667pt;}
.y7f{bottom:133.146667pt;}
.y12d{bottom:134.826667pt;}
.y27{bottom:139.866667pt;}
.y151{bottom:142.826667pt;}
.yce{bottom:143.680000pt;}
.yc3{bottom:143.706667pt;}
.ya6{bottom:145.466667pt;}
.y111{bottom:145.626667pt;}
.y57{bottom:146.586667pt;}
.yca{bottom:146.986667pt;}
.y12c{bottom:150.506667pt;}
.y26{bottom:155.546667pt;}
.yd6{bottom:156.320000pt;}
.y150{bottom:158.506667pt;}
.ycd{bottom:159.280000pt;}
.ye4{bottom:159.306667pt;}
.ye0{bottom:159.360000pt;}
.yc2{bottom:159.386667pt;}
.ya5{bottom:161.066667pt;}
.y110{bottom:161.226667pt;}
.y56{bottom:162.186667pt;}
.y7e{bottom:164.746667pt;}
.y25{bottom:171.146667pt;}
.y12b{bottom:174.106667pt;}
.ycc{bottom:174.960000pt;}
.yc1{bottom:174.986667pt;}
.y10f{bottom:176.826667pt;}
.y55{bottom:177.866667pt;}
.y7d{bottom:181.066667pt;}
.y14f{bottom:182.106667pt;}
.y24{bottom:186.746667pt;}
.ycb{bottom:190.560000pt;}
.yc0{bottom:190.586667pt;}
.y10e{bottom:192.506667pt;}
.ya4{bottom:192.746667pt;}
.yd5{bottom:193.866667pt;}
.y7c{bottom:197.466667pt;}
.y14e{bottom:197.706667pt;}
.y23{bottom:202.426667pt;}
.y12a{bottom:205.786667pt;}
.ybf{bottom:206.266667pt;}
.y10d{bottom:208.106667pt;}
.ya3{bottom:208.346667pt;}
.y54{bottom:209.466667pt;}
.y14d{bottom:213.386667pt;}
.y7b{bottom:213.786667pt;}
.ybe{bottom:221.866667pt;}
.y10c{bottom:223.786667pt;}
.ya2{bottom:223.946667pt;}
.y53{bottom:225.066667pt;}
.y7a{bottom:230.186667pt;}
.y22{bottom:234.026667pt;}
.y14c{bottom:236.986667pt;}
.y129{bottom:237.386667pt;}
.ybd{bottom:237.546667pt;}
.ya1{bottom:239.626667pt;}
.y52{bottom:240.746667pt;}
.y79{bottom:246.586667pt;}
.y10b{bottom:247.386667pt;}
.y21{bottom:249.706667pt;}
.y14b{bottom:252.666667pt;}
.y128{bottom:252.986667pt;}
.ybc{bottom:253.146667pt;}
.ya0{bottom:255.226667pt;}
.y51{bottom:256.346667pt;}
.y20{bottom:265.306667pt;}
.yc8{bottom:265.786667pt;}
.y127{bottom:268.666667pt;}
.y14a{bottom:276.266667pt;}
.y78{bottom:278.986667pt;}
.y50{bottom:279.946667pt;}
.y1f{bottom:280.906667pt;}
.y126{bottom:284.266667pt;}
.y9f{bottom:286.906667pt;}
.ye3{bottom:288.826667pt;}
.y149{bottom:291.866667pt;}
.y77{bottom:294.586667pt;}
.y10a{bottom:294.666667pt;}
.y1e{bottom:296.586667pt;}
.y125{bottom:299.946667pt;}
.y9e{bottom:302.506667pt;}
.y109{bottom:310.266667pt;}
.y4f{bottom:311.866667pt;}
.y1d{bottom:312.186667pt;}
.y124{bottom:315.546667pt;}
.y9d{bottom:318.106667pt;}
.y76{bottom:318.186667pt;}
.y108{bottom:325.946667pt;}
.y1c{bottom:327.866667pt;}
.y123{bottom:331.146667pt;}
.y9c{bottom:333.786667pt;}
.y107{bottom:341.546667pt;}
.y1b{bottom:343.466667pt;}
.y122{bottom:346.826667pt;}
.y75{bottom:349.866667pt;}
.ybb{bottom:350.826667pt;}
.y148{bottom:354.746667pt;}
.y4e{bottom:354.826667pt;}
.y1a{bottom:359.066667pt;}
.y9b{bottom:365.386667pt;}
.y74{bottom:365.466667pt;}
.y4d{bottom:370.426667pt;}
.y106{bottom:373.146667pt;}
.y9a{bottom:381.066667pt;}
.y19{bottom:382.986667pt;}
.y4c{bottom:386.106667pt;}
.y105{bottom:388.826667pt;}
.y147{bottom:394.026667pt;}
.y99{bottom:396.666667pt;}
.y73{bottom:397.066667pt;}
.y4b{bottom:401.706667pt;}
.y121{bottom:402.106667pt;}
.y104{bottom:404.426667pt;}
.y98{bottom:412.266667pt;}
.y4a{bottom:417.306667pt;}
.y120{bottom:417.733333pt;}
.y103{bottom:420.133333pt;}
.y18{bottom:425.973333pt;}
.y97{bottom:427.973333pt;}
.y72{bottom:428.773333pt;}
.y11f{bottom:433.333333pt;}
.y102{bottom:435.733333pt;}
.y17{bottom:441.893333pt;}
.y71{bottom:444.373333pt;}
.y146{bottom:448.933333pt;}
.y49{bottom:449.013333pt;}
.y101{bottom:451.333333pt;}
.y96{bottom:459.573333pt;}
.y70{bottom:460.693333pt;}
.y48{bottom:464.613333pt;}
.y16{bottom:474.773333pt;}
.y95{bottom:475.253333pt;}
.y6f{bottom:477.093333pt;}
.y47{bottom:480.293333pt;}
.y100{bottom:483.013333pt;}
.y145{bottom:488.213333pt;}
.y15{bottom:490.373333pt;}
.y94{bottom:490.853333pt;}
.y46{bottom:495.893333pt;}
.yff{bottom:498.613333pt;}
.y144{bottom:503.893333pt;}
.y14{bottom:506.053333pt;}
.y93{bottom:506.453333pt;}
.y6e{bottom:509.493333pt;}
.y45{bottom:511.493333pt;}
.y11e{bottom:511.893333pt;}
.yfe{bottom:514.293333pt;}
.y13{bottom:521.653333pt;}
.ydf{bottom:523.973333pt;}
.y11d{bottom:527.493333pt;}
.y143{bottom:527.813333pt;}
.yfd{bottom:529.893333pt;}
.y6d{bottom:533.093333pt;}
.y12{bottom:537.333333pt;}
.y92{bottom:538.133333pt;}
.y44{bottom:543.173333pt;}
.yfc{bottom:545.493333pt;}
.y11{bottom:552.933333pt;}
.y91{bottom:553.733333pt;}
.y43{bottom:558.773333pt;}
.yfb{bottom:561.173333pt;}
.y6c{bottom:564.693333pt;}
.y10{bottom:568.533333pt;}
.y90{bottom:569.413333pt;}
.y142{bottom:570.693333pt;}
.y42{bottom:574.453333pt;}
.yfa{bottom:576.773333pt;}
.y6b{bottom:581.093333pt;}
.yf{bottom:584.213333pt;}
.y8f{bottom:585.013333pt;}
.y41{bottom:590.053333pt;}
.y141{bottom:594.613333pt;}
.y6a{bottom:597.493333pt;}
.ye{bottom:599.813333pt;}
.yf9{bottom:600.453333pt;}
.y8e{bottom:600.613333pt;}
.y40{bottom:605.653333pt;}
.y69{bottom:613.813333pt;}
.yd{bottom:615.493333pt;}
.y8d{bottom:616.293333pt;}
.yb6{bottom:617.253333pt;}
.y11c{bottom:621.333333pt;}
.y140{bottom:627.493333pt;}
.yc{bottom:631.093333pt;}
.yf8{bottom:632.053333pt;}
.y11b{bottom:636.933333pt;}
.y3f{bottom:637.333333pt;}
.y68{bottom:638.213333pt;}
.y13f{bottom:643.173333pt;}
.yf7{bottom:647.653333pt;}
.y8c{bottom:647.893333pt;}
.y11a{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.yb{bottom:655.013333pt;}
.yf6{bottom:663.333333pt;}
.y8b{bottom:663.573333pt;}
.y13e{bottom:667.093333pt;}
.y67{bottom:667.173333pt;}
.y3d{bottom:668.613333pt;}
.y119{bottom:676.213333pt;}
.yf5{bottom:678.933333pt;}
.y8a{bottom:679.173333pt;}
.y66{bottom:682.773333pt;}
.y3c{bottom:684.213333pt;}
.yf4{bottom:694.533333pt;}
.y89{bottom:694.773333pt;}
.yde{bottom:696.613333pt;}
.ya{bottom:697.893333pt;}
.y65{bottom:699.173333pt;}
.yb5{bottom:699.493333pt;}
.y3b{bottom:699.813333pt;}
.y13d{bottom:700.293333pt;}
.y118{bottom:707.813333pt;}
.y3a{bottom:715.493333pt;}
.yf3{bottom:718.453333pt;}
.y88{bottom:718.693333pt;}
.y117{bottom:723.493333pt;}
.y9{bottom:729.733333pt;}
.yb4{bottom:731.093333pt;}
.y64{bottom:731.893333pt;}
.y116{bottom:739.093333pt;}
.y13c{bottom:743.173333pt;}
.yb3{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.y115{bottom:754.693333pt;}
.y63{bottom:756.293333pt;}
.y13b{bottom:758.773333pt;}
.yf2{bottom:761.413333pt;}
.y87{bottom:761.653333pt;}
.y8{bottom:761.733333pt;}
.yb2{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.y114{bottom:770.373333pt;}
.y13a{bottom:774.453333pt;}
.yf1{bottom:777.013333pt;}
.y86{bottom:777.253333pt;}
.yb1{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.y62{bottom:785.253333pt;}
.y113{bottom:785.973333pt;}
.y139{bottom:790.053333pt;}
.yf0{bottom:792.693333pt;}
.y36{bottom:793.973333pt;}
.y7{bottom:797.093333pt;}
.y138{bottom:805.733333pt;}
.yef{bottom:808.293333pt;}
.y85{bottom:808.853333pt;}
.yb0{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.y61{bottom:816.853333pt;}
.yee{bottom:823.893333pt;}
.y84{bottom:824.533333pt;}
.yaf{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y60{bottom:832.533333pt;}
.y137{bottom:837.333333pt;}
.yae{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y83{bottom:848.133333pt;}
.y155{bottom:848.853333pt;}
.y136{bottom:852.933333pt;}
.yed{bottom:855.573333pt;}
.yad{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y5f{bottom:864.133333pt;}
.y154{bottom:864.533333pt;}
.y135{bottom:868.613333pt;}
.yec{bottom:871.173333pt;}
.yac{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y5e{bottom:879.813333pt;}
.y134{bottom:884.213333pt;}
.yeb{bottom:886.853333pt;}
.y31{bottom:888.133333pt;}
.y82{bottom:895.413333pt;}
.y3{bottom:897.840000pt;}
.y133{bottom:899.840000pt;}
.yda{bottom:900.560000pt;}
.yea{bottom:902.480000pt;}
.y30{bottom:903.840000pt;}
.y5d{bottom:911.440000pt;}
.y132{bottom:915.520000pt;}
.ye9{bottom:918.080000pt;}
.yab{bottom:919.440000pt;}
.y5c{bottom:927.040000pt;}
.y131{bottom:931.120000pt;}
.ye8{bottom:933.760000pt;}
.yaa{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y81{bottom:942.720000pt;}
.y153{bottom:943.040000pt;}
.ye7{bottom:949.360000pt;}
.ya9{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y130{bottom:955.040000pt;}
.y5b{bottom:958.720000pt;}
.ya8{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y5a{bottom:974.320000pt;}
.ye6{bottom:978.640000pt;}
.y2c{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h10{height:2.227500pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h13{height:46.960000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hd{height:62.560000pt;}
.h4{height:64.875937pt;}
.h14{height:125.040000pt;}
.h12{height:156.320000pt;}
.h16{height:172.000000pt;}
.h18{height:187.600000pt;}
.h11{height:203.200000pt;}
.h15{height:203.226667pt;}
.h17{height:234.506667pt;}
.hf{height:265.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:0.319987pt;}
.wd{width:0.320027pt;}
.wc{width:0.399987pt;}
.wf{width:0.400027pt;}
.w3{width:17.920000pt;}
.w5{width:50.480000pt;}
.w8{width:52.506667pt;}
.w11{width:76.400000pt;}
.w10{width:76.480000pt;}
.w7{width:80.400000pt;}
.wa{width:82.240000pt;}
.w9{width:83.200000pt;}
.w6{width:87.360000pt;}
.wb{width:102.800000pt;}
.w4{width:109.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.520000pt;}
.x1{left:60.480000pt;}
.x7{left:79.760000pt;}
.x4{left:84.479988pt;}
.x12{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:187.626655pt;}
.x8{left:189.786667pt;}
.x9{left:240.986667pt;}
.xa{left:329.066667pt;}
.xb{left:410.106667pt;}
.xc{left:463.333333pt;}
.xd{left:547.173333pt;}
.xf{left:548.693333pt;}
.x10{left:549.733333pt;}
.x11{left:550.933333pt;}
.xe{left:630.053333pt;}
.x3{left:711.413322pt;}
}




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