
    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_be3d60b7e16142c602afd90a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca5acd5a50b031572f32b651.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_8476387712722fb13532b616.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8108af98fa4bbe09dc497af4.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_c1a87b6041650f3ad2676855.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_c1ef19b01af3747d42ffb7ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.444600px;}
.lsd{letter-spacing:-0.391800px;}
.ls12{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.084000px;}
.ls7{letter-spacing:-0.057000px;}
.ls1c{letter-spacing:-0.048960px;}
.ls19{letter-spacing:-0.038880px;}
.ls1b{letter-spacing:-0.007560px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.041760px;}
.lsa{letter-spacing:0.042600px;}
.lse{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls18{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1d{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.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.wsa{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.wsb{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.177440px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:-8.625600px;}
.ws2{word-spacing:-8.553600px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-3.312000px;}
._d{margin-left:-2.180760px;}
._0{margin-left:-1.104000px;}
._3{width:1.058916px;}
._4{width:2.147015px;}
._1{width:3.203160px;}
._2{width:4.246776px;}
._9{width:5.300738px;}
._a{width:6.793800px;}
._b{width:8.374162px;}
._c{width:10.406400px;}
._8{width:12.024000px;}
._7{width:15.077160px;}
._5{width:16.232400px;}
._6{width:17.455801px;}
._10{width:19.127998px;}
._f{width:25.370640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:7.740000px;}
.y5c{bottom:7.830000px;}
.ycb{bottom:7.860000px;}
.y60{bottom:7.920000px;}
.ydb{bottom:25.470000px;}
.y8a{bottom:35.190000px;}
.yd9{bottom:52.740000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7e{bottom:110.910000px;}
.ya4{bottom:120.540000px;}
.y109{bottom:123.240000px;}
.yeb{bottom:130.620000px;}
.y133{bottom:136.380000px;}
.y7d{bottom:136.740000px;}
.y108{bottom:140.790000px;}
.y27{bottom:145.560000px;}
.ya3{bottom:147.900000px;}
.y132{bottom:153.930000px;}
.yea{bottom:157.980000px;}
.y107{bottom:158.430000px;}
.y7b{bottom:162.570000px;}
.yc6{bottom:169.950000px;}
.y58{bottom:174.360000px;}
.ya2{bottom:175.260000px;}
.y106{bottom:175.980000px;}
.y131{bottom:180.570000px;}
.y26{bottom:182.550000px;}
.ye9{bottom:185.340000px;}
.y7a{bottom:188.400000px;}
.y57{bottom:191.910000px;}
.y105{bottom:193.620000px;}
.y130{bottom:198.120000px;}
.y25{bottom:200.190000px;}
.ya1{bottom:202.530000px;}
.yc5{bottom:205.500000px;}
.y56{bottom:209.460000px;}
.y104{bottom:211.170000px;}
.ye8{bottom:212.610000px;}
.y79{bottom:214.230000px;}
.y24{bottom:217.740000px;}
.y12f{bottom:224.670000px;}
.y55{bottom:227.910000px;}
.y103{bottom:228.720000px;}
.ya0{bottom:229.890000px;}
.y23{bottom:235.290000px;}
.ye7{bottom:239.970000px;}
.y78{bottom:240.060000px;}
.yc4{bottom:241.050000px;}
.y12e{bottom:242.310000px;}
.y54{bottom:245.460000px;}
.y102{bottom:246.360000px;}
.y9f{bottom:257.250000px;}
.yc3{bottom:258.690000px;}
.y53{bottom:263.910000px;}
.y77{bottom:265.890000px;}
.ye6{bottom:267.330000px;}
.y12d{bottom:268.860000px;}
.y22{bottom:270.930000px;}
.yc2{bottom:276.240000px;}
.y52{bottom:281.460000px;}
.y101{bottom:281.550000px;}
.y9e{bottom:284.520000px;}
.y12c{bottom:286.500000px;}
.y21{bottom:288.480000px;}
.y76{bottom:291.720000px;}
.ye5{bottom:294.690000px;}
.y51{bottom:299.910000px;}
.y20{bottom:306.120000px;}
.y100{bottom:308.460000px;}
.yc1{bottom:309.270000px;}
.y9d{bottom:311.880000px;}
.y12b{bottom:313.050000px;}
.y50{bottom:317.460000px;}
.y75{bottom:317.550000px;}
.ye4{bottom:321.960000px;}
.y1f{bottom:323.670000px;}
.y12a{bottom:330.600000px;}
.y4f{bottom:335.010000px;}
.yc0{bottom:336.540000px;}
.y9c{bottom:339.240000px;}
.y74{bottom:343.380000px;}
.ye3{bottom:349.320000px;}
.y4e{bottom:353.460000px;}
.yff{bottom:356.700000px;}
.y129{bottom:357.240000px;}
.y1e{bottom:359.220000px;}
.ybf{bottom:363.900000px;}
.y9b{bottom:366.600000px;}
.y73{bottom:369.210000px;}
.y4d{bottom:371.010000px;}
.yfe{bottom:374.250000px;}
.y128{bottom:374.790000px;}
.ye2{bottom:376.680000px;}
.y1d{bottom:376.860000px;}
.y4c{bottom:389.460000px;}
.ybe{bottom:391.260000px;}
.yfd{bottom:392.700000px;}
.y9a{bottom:393.870000px;}
.y1c{bottom:394.410000px;}
.y127{bottom:401.340000px;}
.ye1{bottom:403.950000px;}
.yfc{bottom:410.250000px;}
.y1b{bottom:412.050000px;}
.y72{bottom:416.460000px;}
.y4b{bottom:417.180000px;}
.ybd{bottom:418.530000px;}
.y126{bottom:418.980000px;}
.y99{bottom:421.230000px;}
.yfb{bottom:428.700000px;}
.y1a{bottom:429.600000px;}
.ye0{bottom:431.310000px;}
.y125{bottom:445.530000px;}
.ybc{bottom:445.890000px;}
.yfa{bottom:446.250000px;}
.y19{bottom:447.150000px;}
.y98{bottom:448.590000px;}
.y71{bottom:452.010000px;}
.ydf{bottom:458.670000px;}
.y124{bottom:463.170000px;}
.yf9{bottom:464.700000px;}
.y4a{bottom:465.510000px;}
.y70{bottom:469.560000px;}
.ybb{bottom:473.280000px;}
.y97{bottom:475.980000px;}
.y123{bottom:480.750000px;}
.yf8{bottom:482.280000px;}
.y18{bottom:482.820000px;}
.y49{bottom:483.090000px;}
.yde{bottom:486.060000px;}
.y6f{bottom:487.230000px;}
.y17{bottom:500.370000px;}
.yba{bottom:500.640000px;}
.y48{bottom:500.730000px;}
.y96{bottom:503.250000px;}
.y122{bottom:507.300000px;}
.ydd{bottom:513.330000px;}
.y16{bottom:517.920000px;}
.y47{bottom:518.280000px;}
.y6e{bottom:520.170000px;}
.y121{bottom:524.940000px;}
.y95{bottom:530.610000px;}
.y15{bottom:535.560000px;}
.y46{bottom:535.830000px;}
.ydc{bottom:540.690000px;}
.y120{bottom:542.490000px;}
.yf7{bottom:546.000000px;}
.y6d{bottom:547.530000px;}
.yb9{bottom:549.330000px;}
.y14{bottom:553.110000px;}
.y94{bottom:557.970000px;}
.yd8{bottom:568.050000px;}
.y11f{bottom:569.400000px;}
.y13{bottom:570.750000px;}
.y45{bottom:571.470000px;}
.y6c{bottom:574.890000px;}
.yb8{bottom:584.880000px;}
.y93{bottom:585.240000px;}
.y44{bottom:589.020000px;}
.yf6{bottom:594.330000px;}
.y12{bottom:606.300000px;}
.y43{bottom:606.660000px;}
.yf5{bottom:611.880000px;}
.y92{bottom:612.600000px;}
.yda{bottom:612.960000px;}
.y11e{bottom:617.730000px;}
.yb7{bottom:617.910000px;}
.y6b{bottom:623.580000px;}
.y11{bottom:623.850000px;}
.y42{bottom:624.210000px;}
.y91{bottom:639.960000px;}
.y10{bottom:641.490000px;}
.y41{bottom:641.760000px;}
.y11d{bottom:644.640000px;}
.yf4{bottom:644.910000px;}
.yb6{bottom:645.180000px;}
.yf{bottom:659.040000px;}
.y6a{bottom:659.130000px;}
.yd7{bottom:661.650000px;}
.y90{bottom:667.320000px;}
.yf3{bottom:672.180000px;}
.yb5{bottom:672.540000px;}
.ye{bottom:676.680000px;}
.y69{bottom:676.770000px;}
.y40{bottom:677.400000px;}
.y11c{bottom:681.630000px;}
.y68{bottom:694.320000px;}
.y8f{bottom:694.590000px;}
.y3f{bottom:694.950000px;}
.yd6{bottom:697.200000px;}
.yf2{bottom:699.540000px;}
.yb4{bottom:699.900000px;}
.yd{bottom:703.590000px;}
.y11b{bottom:708.540000px;}
.y3e{bottom:712.590000px;}
.yd5{bottom:714.840000px;}
.y8e{bottom:721.950000px;}
.yf1{bottom:726.900000px;}
.yb3{bottom:727.170000px;}
.y67{bottom:727.260000px;}
.y3d{bottom:730.140000px;}
.yd4{bottom:732.390000px;}
.y11a{bottom:745.530000px;}
.y3c{bottom:747.690000px;}
.y8d{bottom:749.310000px;}
.yc{bottom:751.830000px;}
.yf0{bottom:754.170000px;}
.yb2{bottom:754.530000px;}
.y66{bottom:754.620000px;}
.y119{bottom:763.170000px;}
.y3b{bottom:765.330000px;}
.yd3{bottom:765.420000px;}
.y8c{bottom:776.670000px;}
.yb1{bottom:781.890000px;}
.y65{bottom:781.980000px;}
.yb{bottom:787.380000px;}
.yd2{bottom:792.690000px;}
.y118{bottom:798.720000px;}
.yef{bottom:799.170000px;}
.y3a{bottom:800.880000px;}
.y89{bottom:803.940000px;}
.yb0{bottom:809.250000px;}
.y117{bottom:816.270000px;}
.y39{bottom:818.520000px;}
.yd1{bottom:820.050000px;}
.ya{bottom:823.200000px;}
.yee{bottom:826.440000px;}
.y64{bottom:830.670000px;}
.y8b{bottom:831.300000px;}
.y116{bottom:833.910000px;}
.y38{bottom:836.070000px;}
.y13d{bottom:849.030000px;}
.y115{bottom:851.460000px;}
.y37{bottom:853.620000px;}
.yed{bottom:853.800000px;}
.yaf{bottom:857.940000px;}
.y9{bottom:862.980000px;}
.y63{bottom:866.220000px;}
.y13c{bottom:866.670000px;}
.yd0{bottom:868.740000px;}
.y114{bottom:878.370000px;}
.y88{bottom:879.990000px;}
.y8{bottom:880.980000px;}
.yec{bottom:881.160000px;}
.y62{bottom:883.860000px;}
.y36{bottom:889.260000px;}
.y13b{bottom:893.220000px;}
.yae{bottom:893.490000px;}
.y7{bottom:898.980000px;}
.y61{bottom:901.410000px;}
.ycf{bottom:904.380000px;}
.y35{bottom:906.810000px;}
.yad{bottom:908.430000px;}
.y13a{bottom:910.860000px;}
.y87{bottom:915.630000px;}
.y113{bottom:915.720000px;}
.y6{bottom:916.980000px;}
.yce{bottom:921.930000px;}
.y34{bottom:924.450000px;}
.y139{bottom:928.410000px;}
.y86{bottom:933.180000px;}
.y5f{bottom:934.350000px;}
.yac{bottom:935.790000px;}
.y33{bottom:942.000000px;}
.y5{bottom:949.290000px;}
.y85{bottom:950.730000px;}
.ycd{bottom:954.870000px;}
.y138{bottom:954.960000px;}
.y32{bottom:959.550000px;}
.y5e{bottom:961.710000px;}
.yab{bottom:963.150000px;}
.y112{bottom:963.960000px;}
.y84{bottom:968.370000px;}
.y137{bottom:972.600000px;}
.y111{bottom:981.600000px;}
.ycc{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y5d{bottom:989.070000px;}
.yaa{bottom:990.510000px;}
.y31{bottom:995.190000px;}
.y110{bottom:999.150000px;}
.y83{bottom:1001.310000px;}
.yca{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1012.770000px;}
.y5b{bottom:1016.460000px;}
.y10f{bottom:1016.820000px;}
.ya9{bottom:1017.810000px;}
.y82{bottom:1028.700000px;}
.y2f{bottom:1034.100000px;}
.y10e{bottom:1034.370000px;}
.yc9{bottom:1036.890000px;}
.ya8{bottom:1045.170000px;}
.y2e{bottom:1047.960000px;}
.y10d{bottom:1051.920000px;}
.y81{bottom:1055.970000px;}
.y136{bottom:1060.920000px;}
.yc8{bottom:1064.250000px;}
.y5a{bottom:1065.150000px;}
.y2d{bottom:1065.510000px;}
.y10c{bottom:1069.560000px;}
.ya7{bottom:1072.530000px;}
.y135{bottom:1078.560000px;}
.y2c{bottom:1083.150000px;}
.y10b{bottom:1087.110000px;}
.yc7{bottom:1091.610000px;}
.y59{bottom:1091.700000px;}
.ya6{bottom:1099.890000px;}
.y2b{bottom:1100.700000px;}
.y80{bottom:1104.750000px;}
.y134{bottom:1105.110000px;}
.y10a{bottom:1122.750000px;}
.ya5{bottom:1127.160000px;}
.y2a{bottom:1127.610000px;}
.y7f{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:25.020000px;}
.he{height:25.110000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.hd{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:26.995781px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h13{height:44.190000px;}
.h7{height:50.902383px;}
.h10{height:53.910000px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:71.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:49.590000px;}
.we{width:50.400000px;}
.w3{width:62.820000px;}
.w6{width:66.060000px;}
.w7{width:82.710000px;}
.w18{width:84.510000px;}
.w24{width:89.910000px;}
.w22{width:89.940000px;}
.w21{width:94.680000px;}
.w23{width:94.770000px;}
.w20{width:109.800000px;}
.w15{width:113.040000px;}
.wc{width:113.070000px;}
.w4{width:113.130000px;}
.w9{width:113.160000px;}
.w19{width:118.890000px;}
.w1b{width:121.410000px;}
.wd{width:123.030000px;}
.w16{width:123.060000px;}
.wa{width:123.120000px;}
.w5{width:123.150000px;}
.w14{width:127.170000px;}
.w13{width:127.200000px;}
.w1a{width:139.350000px;}
.wb{width:153.180000px;}
.w17{width:162.540000px;}
.w11{width:167.340000px;}
.w10{width:173.430000px;}
.w1c{width:177.330000px;}
.w1f{width:185.400000px;}
.w1e{width:185.430000px;}
.w8{width:195.390000px;}
.w1d{width:205.200000px;}
.wf{width:341.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.650000px;}
.x1{left:68.040000px;}
.x28{left:95.039987px;}
.x29{left:111.239987px;}
.x4{left:122.039987px;}
.x5{left:149.039987px;}
.x2{left:192.719987px;}
.x21{left:213.420000px;}
.x10{left:230.070000px;}
.x16{left:244.560000px;}
.x1e{left:246.540000px;}
.x13{left:251.220000px;}
.x1b{left:264.180000px;}
.xd{left:286.410000px;}
.xa{left:294.780000px;}
.x6{left:296.400000px;}
.x22{left:298.650000px;}
.x19{left:357.870000px;}
.x8{left:359.940000px;}
.xb{left:361.560000px;}
.xe{left:369.840000px;}
.x1c{left:392.160000px;}
.x14{left:405.120000px;}
.x1a{left:408.180000px;}
.x1f{left:409.800000px;}
.x18{left:418.800000px;}
.x11{left:426.180000px;}
.x24{left:452.910000px;}
.x9{left:473.790000px;}
.xc{left:475.410000px;}
.xf{left:483.690000px;}
.x1d{left:506.010000px;}
.x15{left:519.000000px;}
.x20{left:523.680000px;}
.x12{left:540.060000px;}
.x26{left:543.570000px;}
.x23{left:558.420000px;}
.x17{left:586.860000px;}
.x25{left:639.060000px;}
.x27{left:729.780000px;}
.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;}
.ls15{letter-spacing:-0.395200pt;}
.lsd{letter-spacing:-0.348267pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.074667pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls1c{letter-spacing:-0.043520pt;}
.ls19{letter-spacing:-0.034560pt;}
.ls1b{letter-spacing:-0.006720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037120pt;}
.lsa{letter-spacing:0.037867pt;}
.lse{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls18{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.wsa{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.wsb{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.713280pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:-7.667200pt;}
.ws2{word-spacing:-7.603200pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-2.944000pt;}
._d{margin-left:-1.938453pt;}
._0{margin-left:-0.981333pt;}
._3{width:0.941259pt;}
._4{width:1.908458pt;}
._1{width:2.847253pt;}
._2{width:3.774912pt;}
._9{width:4.711767pt;}
._a{width:6.038934pt;}
._b{width:7.443700pt;}
._c{width:9.250134pt;}
._8{width:10.688000pt;}
._7{width:13.401920pt;}
._5{width:14.428800pt;}
._6{width:15.516267pt;}
._10{width:17.002665pt;}
._f{width:22.551680pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:6.880000pt;}
.y5c{bottom:6.960000pt;}
.ycb{bottom:6.986667pt;}
.y60{bottom:7.040000pt;}
.ydb{bottom:22.640000pt;}
.y8a{bottom:31.280000pt;}
.yd9{bottom:46.880000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7e{bottom:98.586667pt;}
.ya4{bottom:107.146667pt;}
.y109{bottom:109.546667pt;}
.yeb{bottom:116.106667pt;}
.y133{bottom:121.226667pt;}
.y7d{bottom:121.546667pt;}
.y108{bottom:125.146667pt;}
.y27{bottom:129.386667pt;}
.ya3{bottom:131.466667pt;}
.y132{bottom:136.826667pt;}
.yea{bottom:140.426667pt;}
.y107{bottom:140.826667pt;}
.y7b{bottom:144.506667pt;}
.yc6{bottom:151.066667pt;}
.y58{bottom:154.986667pt;}
.ya2{bottom:155.786667pt;}
.y106{bottom:156.426667pt;}
.y131{bottom:160.506667pt;}
.y26{bottom:162.266667pt;}
.ye9{bottom:164.746667pt;}
.y7a{bottom:167.466667pt;}
.y57{bottom:170.586667pt;}
.y105{bottom:172.106667pt;}
.y130{bottom:176.106667pt;}
.y25{bottom:177.946667pt;}
.ya1{bottom:180.026667pt;}
.yc5{bottom:182.666667pt;}
.y56{bottom:186.186667pt;}
.y104{bottom:187.706667pt;}
.ye8{bottom:188.986667pt;}
.y79{bottom:190.426667pt;}
.y24{bottom:193.546667pt;}
.y12f{bottom:199.706667pt;}
.y55{bottom:202.586667pt;}
.y103{bottom:203.306667pt;}
.ya0{bottom:204.346667pt;}
.y23{bottom:209.146667pt;}
.ye7{bottom:213.306667pt;}
.y78{bottom:213.386667pt;}
.yc4{bottom:214.266667pt;}
.y12e{bottom:215.386667pt;}
.y54{bottom:218.186667pt;}
.y102{bottom:218.986667pt;}
.y9f{bottom:228.666667pt;}
.yc3{bottom:229.946667pt;}
.y53{bottom:234.586667pt;}
.y77{bottom:236.346667pt;}
.ye6{bottom:237.626667pt;}
.y12d{bottom:238.986667pt;}
.y22{bottom:240.826667pt;}
.yc2{bottom:245.546667pt;}
.y52{bottom:250.186667pt;}
.y101{bottom:250.266667pt;}
.y9e{bottom:252.906667pt;}
.y12c{bottom:254.666667pt;}
.y21{bottom:256.426667pt;}
.y76{bottom:259.306667pt;}
.ye5{bottom:261.946667pt;}
.y51{bottom:266.586667pt;}
.y20{bottom:272.106667pt;}
.y100{bottom:274.186667pt;}
.yc1{bottom:274.906667pt;}
.y9d{bottom:277.226667pt;}
.y12b{bottom:278.266667pt;}
.y50{bottom:282.186667pt;}
.y75{bottom:282.266667pt;}
.ye4{bottom:286.186667pt;}
.y1f{bottom:287.706667pt;}
.y12a{bottom:293.866667pt;}
.y4f{bottom:297.786667pt;}
.yc0{bottom:299.146667pt;}
.y9c{bottom:301.546667pt;}
.y74{bottom:305.226667pt;}
.ye3{bottom:310.506667pt;}
.y4e{bottom:314.186667pt;}
.yff{bottom:317.066667pt;}
.y129{bottom:317.546667pt;}
.y1e{bottom:319.306667pt;}
.ybf{bottom:323.466667pt;}
.y9b{bottom:325.866667pt;}
.y73{bottom:328.186667pt;}
.y4d{bottom:329.786667pt;}
.yfe{bottom:332.666667pt;}
.y128{bottom:333.146667pt;}
.ye2{bottom:334.826667pt;}
.y1d{bottom:334.986667pt;}
.y4c{bottom:346.186667pt;}
.ybe{bottom:347.786667pt;}
.yfd{bottom:349.066667pt;}
.y9a{bottom:350.106667pt;}
.y1c{bottom:350.586667pt;}
.y127{bottom:356.746667pt;}
.ye1{bottom:359.066667pt;}
.yfc{bottom:364.666667pt;}
.y1b{bottom:366.266667pt;}
.y72{bottom:370.186667pt;}
.y4b{bottom:370.826667pt;}
.ybd{bottom:372.026667pt;}
.y126{bottom:372.426667pt;}
.y99{bottom:374.426667pt;}
.yfb{bottom:381.066667pt;}
.y1a{bottom:381.866667pt;}
.ye0{bottom:383.386667pt;}
.y125{bottom:396.026667pt;}
.ybc{bottom:396.346667pt;}
.yfa{bottom:396.666667pt;}
.y19{bottom:397.466667pt;}
.y98{bottom:398.746667pt;}
.y71{bottom:401.786667pt;}
.ydf{bottom:407.706667pt;}
.y124{bottom:411.706667pt;}
.yf9{bottom:413.066667pt;}
.y4a{bottom:413.786667pt;}
.y70{bottom:417.386667pt;}
.ybb{bottom:420.693333pt;}
.y97{bottom:423.093333pt;}
.y123{bottom:427.333333pt;}
.yf8{bottom:428.693333pt;}
.y18{bottom:429.173333pt;}
.y49{bottom:429.413333pt;}
.yde{bottom:432.053333pt;}
.y6f{bottom:433.093333pt;}
.y17{bottom:444.773333pt;}
.yba{bottom:445.013333pt;}
.y48{bottom:445.093333pt;}
.y96{bottom:447.333333pt;}
.y122{bottom:450.933333pt;}
.ydd{bottom:456.293333pt;}
.y16{bottom:460.373333pt;}
.y47{bottom:460.693333pt;}
.y6e{bottom:462.373333pt;}
.y121{bottom:466.613333pt;}
.y95{bottom:471.653333pt;}
.y15{bottom:476.053333pt;}
.y46{bottom:476.293333pt;}
.ydc{bottom:480.613333pt;}
.y120{bottom:482.213333pt;}
.yf7{bottom:485.333333pt;}
.y6d{bottom:486.693333pt;}
.yb9{bottom:488.293333pt;}
.y14{bottom:491.653333pt;}
.y94{bottom:495.973333pt;}
.yd8{bottom:504.933333pt;}
.y11f{bottom:506.133333pt;}
.y13{bottom:507.333333pt;}
.y45{bottom:507.973333pt;}
.y6c{bottom:511.013333pt;}
.yb8{bottom:519.893333pt;}
.y93{bottom:520.213333pt;}
.y44{bottom:523.573333pt;}
.yf6{bottom:528.293333pt;}
.y12{bottom:538.933333pt;}
.y43{bottom:539.253333pt;}
.yf5{bottom:543.893333pt;}
.y92{bottom:544.533333pt;}
.yda{bottom:544.853333pt;}
.y11e{bottom:549.093333pt;}
.yb7{bottom:549.253333pt;}
.y6b{bottom:554.293333pt;}
.y11{bottom:554.533333pt;}
.y42{bottom:554.853333pt;}
.y91{bottom:568.853333pt;}
.y10{bottom:570.213333pt;}
.y41{bottom:570.453333pt;}
.y11d{bottom:573.013333pt;}
.yf4{bottom:573.253333pt;}
.yb6{bottom:573.493333pt;}
.yf{bottom:585.813333pt;}
.y6a{bottom:585.893333pt;}
.yd7{bottom:588.133333pt;}
.y90{bottom:593.173333pt;}
.yf3{bottom:597.493333pt;}
.yb5{bottom:597.813333pt;}
.ye{bottom:601.493333pt;}
.y69{bottom:601.573333pt;}
.y40{bottom:602.133333pt;}
.y11c{bottom:605.893333pt;}
.y68{bottom:617.173333pt;}
.y8f{bottom:617.413333pt;}
.y3f{bottom:617.733333pt;}
.yd6{bottom:619.733333pt;}
.yf2{bottom:621.813333pt;}
.yb4{bottom:622.133333pt;}
.yd{bottom:625.413333pt;}
.y11b{bottom:629.813333pt;}
.y3e{bottom:633.413333pt;}
.yd5{bottom:635.413333pt;}
.y8e{bottom:641.733333pt;}
.yf1{bottom:646.133333pt;}
.yb3{bottom:646.373333pt;}
.y67{bottom:646.453333pt;}
.y3d{bottom:649.013333pt;}
.yd4{bottom:651.013333pt;}
.y11a{bottom:662.693333pt;}
.y3c{bottom:664.613333pt;}
.y8d{bottom:666.053333pt;}
.yc{bottom:668.293333pt;}
.yf0{bottom:670.373333pt;}
.yb2{bottom:670.693333pt;}
.y66{bottom:670.773333pt;}
.y119{bottom:678.373333pt;}
.y3b{bottom:680.293333pt;}
.yd3{bottom:680.373333pt;}
.y8c{bottom:690.373333pt;}
.yb1{bottom:695.013333pt;}
.y65{bottom:695.093333pt;}
.yb{bottom:699.893333pt;}
.yd2{bottom:704.613333pt;}
.y118{bottom:709.973333pt;}
.yef{bottom:710.373333pt;}
.y3a{bottom:711.893333pt;}
.y89{bottom:714.613333pt;}
.yb0{bottom:719.333333pt;}
.y117{bottom:725.573333pt;}
.y39{bottom:727.573333pt;}
.yd1{bottom:728.933333pt;}
.ya{bottom:731.733333pt;}
.yee{bottom:734.613333pt;}
.y64{bottom:738.373333pt;}
.y8b{bottom:738.933333pt;}
.y116{bottom:741.253333pt;}
.y38{bottom:743.173333pt;}
.y13d{bottom:754.693333pt;}
.y115{bottom:756.853333pt;}
.y37{bottom:758.773333pt;}
.yed{bottom:758.933333pt;}
.yaf{bottom:762.613333pt;}
.y9{bottom:767.093333pt;}
.y63{bottom:769.973333pt;}
.y13c{bottom:770.373333pt;}
.yd0{bottom:772.213333pt;}
.y114{bottom:780.773333pt;}
.y88{bottom:782.213333pt;}
.y8{bottom:783.093333pt;}
.yec{bottom:783.253333pt;}
.y62{bottom:785.653333pt;}
.y36{bottom:790.453333pt;}
.y13b{bottom:793.973333pt;}
.yae{bottom:794.213333pt;}
.y7{bottom:799.093333pt;}
.y61{bottom:801.253333pt;}
.ycf{bottom:803.893333pt;}
.y35{bottom:806.053333pt;}
.yad{bottom:807.493333pt;}
.y13a{bottom:809.653333pt;}
.y87{bottom:813.893333pt;}
.y113{bottom:813.973333pt;}
.y6{bottom:815.093333pt;}
.yce{bottom:819.493333pt;}
.y34{bottom:821.733333pt;}
.y139{bottom:825.253333pt;}
.y86{bottom:829.493333pt;}
.y5f{bottom:830.533333pt;}
.yac{bottom:831.813333pt;}
.y33{bottom:837.333333pt;}
.y5{bottom:843.813333pt;}
.y85{bottom:845.093333pt;}
.ycd{bottom:848.773333pt;}
.y138{bottom:848.853333pt;}
.y32{bottom:852.933333pt;}
.y5e{bottom:854.853333pt;}
.yab{bottom:856.133333pt;}
.y112{bottom:856.853333pt;}
.y84{bottom:860.773333pt;}
.y137{bottom:864.533333pt;}
.y111{bottom:872.533333pt;}
.ycc{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y5d{bottom:879.173333pt;}
.yaa{bottom:880.453333pt;}
.y31{bottom:884.613333pt;}
.y110{bottom:888.133333pt;}
.y83{bottom:890.053333pt;}
.yca{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:900.240000pt;}
.y5b{bottom:903.520000pt;}
.y10f{bottom:903.840000pt;}
.ya9{bottom:904.720000pt;}
.y82{bottom:914.400000pt;}
.y2f{bottom:919.200000pt;}
.y10e{bottom:919.440000pt;}
.yc9{bottom:921.680000pt;}
.ya8{bottom:929.040000pt;}
.y2e{bottom:931.520000pt;}
.y10d{bottom:935.040000pt;}
.y81{bottom:938.640000pt;}
.y136{bottom:943.040000pt;}
.yc8{bottom:946.000000pt;}
.y5a{bottom:946.800000pt;}
.y2d{bottom:947.120000pt;}
.y10c{bottom:950.720000pt;}
.ya7{bottom:953.360000pt;}
.y135{bottom:958.720000pt;}
.y2c{bottom:962.800000pt;}
.y10b{bottom:966.320000pt;}
.yc7{bottom:970.320000pt;}
.y59{bottom:970.400000pt;}
.ya6{bottom:977.680000pt;}
.y2b{bottom:978.400000pt;}
.y80{bottom:982.000000pt;}
.y134{bottom:982.320000pt;}
.y10a{bottom:998.000000pt;}
.ya5{bottom:1001.920000pt;}
.y2a{bottom:1002.320000pt;}
.y7f{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:22.240000pt;}
.he{height:22.320000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.hd{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:23.996250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h13{height:39.280000pt;}
.h7{height:45.246562pt;}
.h10{height:47.920000pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:63.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:44.080000pt;}
.we{width:44.800000pt;}
.w3{width:55.840000pt;}
.w6{width:58.720000pt;}
.w7{width:73.520000pt;}
.w18{width:75.120000pt;}
.w24{width:79.920000pt;}
.w22{width:79.946667pt;}
.w21{width:84.160000pt;}
.w23{width:84.240000pt;}
.w20{width:97.600000pt;}
.w15{width:100.480000pt;}
.wc{width:100.506667pt;}
.w4{width:100.560000pt;}
.w9{width:100.586667pt;}
.w19{width:105.680000pt;}
.w1b{width:107.920000pt;}
.wd{width:109.360000pt;}
.w16{width:109.386667pt;}
.wa{width:109.440000pt;}
.w5{width:109.466667pt;}
.w14{width:113.040000pt;}
.w13{width:113.066667pt;}
.w1a{width:123.866667pt;}
.wb{width:136.160000pt;}
.w17{width:144.480000pt;}
.w11{width:148.746667pt;}
.w10{width:154.160000pt;}
.w1c{width:157.626667pt;}
.w1f{width:164.800000pt;}
.w1e{width:164.826667pt;}
.w8{width:173.680000pt;}
.w1d{width:182.400000pt;}
.wf{width:303.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.800000pt;}
.x1{left:60.480000pt;}
.x28{left:84.479988pt;}
.x29{left:98.879988pt;}
.x4{left:108.479988pt;}
.x5{left:132.479988pt;}
.x2{left:171.306655pt;}
.x21{left:189.706667pt;}
.x10{left:204.506667pt;}
.x16{left:217.386667pt;}
.x1e{left:219.146667pt;}
.x13{left:223.306667pt;}
.x1b{left:234.826667pt;}
.xd{left:254.586667pt;}
.xa{left:262.026667pt;}
.x6{left:263.466667pt;}
.x22{left:265.466667pt;}
.x19{left:318.106667pt;}
.x8{left:319.946667pt;}
.xb{left:321.386667pt;}
.xe{left:328.746667pt;}
.x1c{left:348.586667pt;}
.x14{left:360.106667pt;}
.x1a{left:362.826667pt;}
.x1f{left:364.266667pt;}
.x18{left:372.266667pt;}
.x11{left:378.826667pt;}
.x24{left:402.586667pt;}
.x9{left:421.146667pt;}
.xc{left:422.586667pt;}
.xf{left:429.946667pt;}
.x1d{left:449.786667pt;}
.x15{left:461.333333pt;}
.x20{left:465.493333pt;}
.x12{left:480.053333pt;}
.x26{left:483.173333pt;}
.x23{left:496.373333pt;}
.x17{left:521.653333pt;}
.x25{left:568.053333pt;}
.x27{left:648.693333pt;}
.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; }
  