
    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_7ffd1842011847d1211ee867.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_e95f456a871efe73d236b63d.woff')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_49f0dce55726fdac28e7ebdc.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_9ceaa855fc385483c4c58b1f.woff')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_3cf6d661b7fa464664640c02.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_e8e3b31aa6189b3ccb306387.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_eac25cb226931158451e29ff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7b61c57b8dd743e1a8cb928a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_69f8320b9a974edfef4df52e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_edf0465d085d7addd9ab01c2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_96e796a707f3fa22609b6540.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_14b984a8c683b4d402f4c7b6.woff')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.va{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.vb{vertical-align:12.600000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.vc{vertical-align:30.240000px;}
.v8{vertical-align:35.280000px;}
.v7{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.v5{vertical-align:67.320000px;}
.lse{letter-spacing:-0.391800px;}
.ls21{letter-spacing:-0.371400px;}
.ls2b{letter-spacing:-0.310800px;}
.ls2c{letter-spacing:-0.241800px;}
.lsc{letter-spacing:-0.186600px;}
.ls29{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.093000px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.066000px;}
.ls1d{letter-spacing:-0.063600px;}
.ls31{letter-spacing:-0.060600px;}
.ls10{letter-spacing:-0.031800px;}
.ls28{letter-spacing:-0.013320px;}
.ls2d{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.012240px;}
.ls2a{letter-spacing:0.023040px;}
.ls12{letter-spacing:0.045360px;}
.ls1c{letter-spacing:0.048240px;}
.ls13{letter-spacing:0.048960px;}
.ls23{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls2f{letter-spacing:0.069600px;}
.ls25{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.074160px;}
.ls1f{letter-spacing:0.074400px;}
.lsd{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls27{letter-spacing:0.098400px;}
.ls17{letter-spacing:0.114120px;}
.ls24{letter-spacing:0.115800px;}
.lsf{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls26{letter-spacing:0.181200px;}
.ls30{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.872000px;}
.ls1e{letter-spacing:2.172240px;}
.ls16{letter-spacing:2.532240px;}
.ls32{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls2e{letter-spacing:80.846640px;}
.ls18{letter-spacing:141.852240px;}
.ls1b{letter-spacing:184.152000px;}
.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;}
}
.ws18{word-spacing:-18.000000px;}
.ws9{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws20{word-spacing:-13.425600px;}
.ws1a{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.ws1b{word-spacing:-13.324800px;}
.ws14{word-spacing:-13.300800px;}
.ws22{word-spacing:-13.296000px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws1f{word-spacing:-13.218840px;}
.ws1c{word-spacing:-13.213080px;}
.ws21{word-spacing:-13.165800px;}
.wsd{word-spacing:-13.162800px;}
.ws17{word-spacing:-13.160400px;}
.ws15{word-spacing:-13.133400px;}
.ws1d{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.039800px;}
.ws1e{word-spacing:-12.984600px;}
.ws16{word-spacing:-12.855000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws13{word-spacing:-9.278640px;}
.ws12{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.wsf{word-spacing:-3.231000px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.007920px;}
.wse{word-spacing:3.063960px;}
.ws11{word-spacing:3.315960px;}
.ws8{word-spacing:4.304880px;}
._7{margin-left:-3.946200px;}
._4{margin-left:-2.705400px;}
._0{margin-left:-1.104000px;}
._1{width:1.006812px;}
._5{width:2.666040px;}
._8{width:3.847800px;}
._9{width:4.948320px;}
._6{width:6.973800px;}
._2{width:8.663520px;}
._3{width:9.888600px;}
._b{width:10.968360px;}
._a{width:12.050640px;}
._c{width:13.493880px;}
._12{width:15.150240px;}
._d{width:16.233600px;}
._11{width:17.717267px;}
._14{width:19.148906px;}
._10{width:20.289720px;}
._e{width:29.639160px;}
._f{width:30.720600px;}
._13{width:850.893600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y53{bottom:-14.280000px;}
.y0{bottom:0.000000px;}
.yac{bottom:7.830000px;}
.yed{bottom:7.860000px;}
.yb4{bottom:7.920000px;}
.y55{bottom:7.950000px;}
.yae{bottom:29.880000px;}
.yb3{bottom:29.970000px;}
.ye5{bottom:35.190000px;}
.yeb{bottom:37.890000px;}
.yb2{bottom:52.020000px;}
.yea{bottom:59.970000px;}
.yd7{bottom:73.080000px;}
.y2{bottom:73.380000px;}
.yb1{bottom:74.160000px;}
.y27{bottom:74.190000px;}
.yd6{bottom:95.160000px;}
.yb0{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.y4e{bottom:110.250000px;}
.yd5{bottom:117.300000px;}
.y4d{bottom:122.610000px;}
.y130{bottom:123.870000px;}
.y4f{bottom:128.010000px;}
.y52{bottom:131.520000px;}
.y10d{bottom:138.720000px;}
.y25{bottom:139.980000px;}
.ya5{bottom:143.850000px;}
.y12f{bottom:150.420000px;}
.y10c{bottom:156.360000px;}
.y24{bottom:157.530000px;}
.y4c{bottom:161.310000px;}
.ya4{bottom:161.490000px;}
.y7e{bottom:162.210000px;}
.y51{bottom:167.160000px;}
.y12e{bottom:168.060000px;}
.y23{bottom:175.170000px;}
.y54{bottom:175.500000px;}
.ya3{bottom:179.040000px;}
.y7d{bottom:179.760000px;}
.y10b{bottom:191.910000px;}
.y22{bottom:192.720000px;}
.y12d{bottom:194.610000px;}
.ya2{bottom:196.590000px;}
.y7c{bottom:197.400000px;}
.y4b{bottom:200.010000px;}
.y50{bottom:202.710000px;}
.y10a{bottom:209.550000px;}
.y21{bottom:210.270000px;}
.ye0{bottom:220.170000px;}
.y12c{bottom:221.250000px;}
.y109{bottom:227.100000px;}
.y20{bottom:227.910000px;}
.ya1{bottom:232.230000px;}
.y7b{bottom:232.950000px;}
.y4a{bottom:238.710000px;}
.y12b{bottom:238.800000px;}
.y108{bottom:244.650000px;}
.y1f{bottom:245.460000px;}
.ya0{bottom:249.780000px;}
.y7a{bottom:250.590000px;}
.yc0{bottom:254.730000px;}
.ydf{bottom:255.720000px;}
.y12a{bottom:256.350000px;}
.y1e{bottom:263.100000px;}
.y79{bottom:268.140000px;}
.y49{bottom:269.760000px;}
.y107{bottom:271.560000px;}
.yde{bottom:273.360000px;}
.y129{bottom:282.990000px;}
.y9f{bottom:285.420000px;}
.y78{bottom:285.690000px;}
.y1d{bottom:290.010000px;}
.ybf{bottom:290.280000px;}
.y128{bottom:300.540000px;}
.y9e{bottom:302.970000px;}
.y77{bottom:303.330000px;}
.y48{bottom:305.940000px;}
.ybe{bottom:307.920000px;}
.y47{bottom:313.500000px;}
.y127{bottom:318.090000px;}
.ydd{bottom:319.800000px;}
.y106{bottom:319.890000px;}
.y9d{bottom:320.520000px;}
.y76{bottom:320.880000px;}
.ybd{bottom:325.470000px;}
.ydc{bottom:337.350000px;}
.y105{bottom:337.440000px;}
.y46{bottom:337.800000px;}
.y9c{bottom:338.160000px;}
.y1c{bottom:338.610000px;}
.ybc{bottom:343.020000px;}
.y126{bottom:345.000000px;}
.y104{bottom:354.990000px;}
.y75{bottom:356.430000px;}
.ybb{bottom:360.660000px;}
.y45{bottom:364.350000px;}
.ydb{bottom:364.710000px;}
.y103{bottom:373.440000px;}
.y9b{bottom:373.710000px;}
.y74{bottom:374.070000px;}
.y1b{bottom:375.600000px;}
.yba{bottom:378.210000px;}
.y102{bottom:390.990000px;}
.y9a{bottom:391.350000px;}
.y73{bottom:391.620000px;}
.yd4{bottom:391.980000px;}
.y125{bottom:393.330000px;}
.y44{bottom:396.660000px;}
.y43{bottom:406.740000px;}
.y99{bottom:409.440000px;}
.y1a{bottom:411.150000px;}
.yb9{bottom:411.240000px;}
.yda{bottom:419.340000px;}
.y124{bottom:420.240000px;}
.y101{bottom:426.990000px;}
.y72{bottom:427.260000px;}
.y19{bottom:428.790000px;}
.y42{bottom:445.260000px;}
.y100{bottom:445.440000px;}
.y18{bottom:446.340000px;}
.yd9{bottom:446.700000px;}
.y98{bottom:447.600000px;}
.y123{bottom:457.230000px;}
.y71{bottom:462.810000px;}
.yff{bottom:462.990000px;}
.y17{bottom:463.890000px;}
.y97{bottom:465.150000px;}
.yd8{bottom:474.090000px;}
.yfe{bottom:480.570000px;}
.y41{bottom:480.840000px;}
.yb8{bottom:482.730000px;}
.y122{bottom:484.170000px;}
.y70{bottom:494.970000px;}
.y40{bottom:498.390000px;}
.yfd{bottom:499.020000px;}
.y16{bottom:499.560000px;}
.y96{bottom:500.820000px;}
.yd3{bottom:501.360000px;}
.y6f{bottom:505.050000px;}
.y3f{bottom:516.030000px;}
.yfc{bottom:516.570000px;}
.y15{bottom:517.110000px;}
.y121{bottom:521.520000px;}
.yd2{bottom:528.720000px;}
.yb7{bottom:532.140000px;}
.y95{bottom:536.730000px;}
.y6e{bottom:549.960000px;}
.y3e{bottom:551.580000px;}
.y14{bottom:552.750000px;}
.yfb{bottom:553.020000px;}
.yd1{bottom:556.080000px;}
.y6d{bottom:568.410000px;}
.y120{bottom:569.760000px;}
.y13{bottom:570.300000px;}
.yfa{bottom:570.660000px;}
.y3d{bottom:578.130000px;}
.y94{bottom:584.970000px;}
.y6c{bottom:586.770000px;}
.yf9{bottom:597.210000px;}
.y93{bottom:602.520000px;}
.yd0{bottom:604.770000px;}
.y6b{bottom:605.220000px;}
.y11f{bottom:605.400000px;}
.y12{bottom:605.850000px;}
.y3c{bottom:610.800000px;}
.y92{bottom:620.970000px;}
.y11e{bottom:622.950000px;}
.y11{bottom:623.490000px;}
.y6a{bottom:623.670000px;}
.yb6{bottom:625.740000px;}
.yf8{bottom:632.850000px;}
.y91{bottom:638.520000px;}
.ycf{bottom:640.320000px;}
.y10{bottom:641.040000px;}
.y69{bottom:642.030000px;}
.y3b{bottom:646.260000px;}
.yf7{bottom:650.400000px;}
.y90{bottom:656.070000px;}
.yce{bottom:657.960000px;}
.y11d{bottom:658.590000px;}
.yf{bottom:658.680000px;}
.y68{bottom:660.480000px;}
.y3a{bottom:664.710000px;}
.y8f{bottom:674.520000px;}
.y11c{bottom:676.140000px;}
.y67{bottom:678.840000px;}
.y39{bottom:683.160000px;}
.yf6{bottom:683.340000px;}
.ye{bottom:685.590000px;}
.y8e{bottom:692.610000px;}
.ycd{bottom:694.050000px;}
.ye6{bottom:697.740000px;}
.y11b{bottom:703.050000px;}
.y38{bottom:710.610000px;}
.yf5{bottom:710.700000px;}
.y66{bottom:715.290000px;}
.yb5{bottom:719.340000px;}
.y8d{bottom:721.860000px;}
.ye4{bottom:725.100000px;}
.ycc{bottom:732.750000px;}
.y65{bottom:732.930000px;}
.yd{bottom:733.830000px;}
.yf4{bottom:738.060000px;}
.y37{bottom:746.160000px;}
.y64{bottom:750.480000px;}
.y11a{bottom:751.290000px;}
.ye3{bottom:752.460000px;}
.y8c{bottom:757.410000px;}
.yf3{bottom:765.420000px;}
.yc{bottom:769.380000px;}
.ycb{bottom:771.450000px;}
.y8b{bottom:775.050000px;}
.ye2{bottom:779.820000px;}
.y36{bottom:781.710000px;}
.y63{bottom:786.030000px;}
.y119{bottom:786.930000px;}
.yf2{bottom:792.690000px;}
.y35{bottom:800.160000px;}
.y8a{bottom:801.600000px;}
.y62{bottom:803.670000px;}
.y118{bottom:804.480000px;}
.yb{bottom:805.200000px;}
.ye1{bottom:807.090000px;}
.y34{bottom:818.520000px;}
.yca{bottom:820.500000px;}
.y61{bottom:821.220000px;}
.y117{bottom:822.030000px;}
.yaf{bottom:834.990000px;}
.y33{bottom:836.970000px;}
.y89{bottom:837.150000px;}
.y60{bottom:838.860000px;}
.y116{bottom:839.670000px;}
.yf1{bottom:841.380000px;}
.ya{bottom:844.980000px;}
.y88{bottom:854.700000px;}
.yc9{bottom:858.660000px;}
.y9{bottom:859.200000px;}
.y87{bottom:873.150000px;}
.y32{bottom:873.420000px;}
.y5f{bottom:874.410000px;}
.y115{bottom:875.220000px;}
.yf0{bottom:877.020000px;}
.y8{bottom:880.980000px;}
.yc8{bottom:885.210000px;}
.y86{bottom:890.700000px;}
.y31{bottom:890.970000px;}
.y5e{bottom:891.960000px;}
.y114{bottom:892.860000px;}
.yef{bottom:894.570000px;}
.y7{bottom:895.200000px;}
.y85{bottom:909.150000px;}
.y113{bottom:910.410000px;}
.y6{bottom:916.980000px;}
.y30{bottom:917.520000px;}
.y135{bottom:919.410000px;}
.yc7{bottom:920.850000px;}
.y84{bottom:926.700000px;}
.y5d{bottom:927.600000px;}
.y134{bottom:936.960000px;}
.yc6{bottom:938.400000px;}
.y5c{bottom:945.150000px;}
.y112{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y2f{bottom:950.190000px;}
.yad{bottom:950.730000px;}
.ye9{bottom:954.870000px;}
.yc5{bottom:956.040000px;}
.y111{bottom:963.600000px;}
.y5b{bottom:980.790000px;}
.y110{bottom:981.150000px;}
.y83{bottom:981.600000px;}
.yee{bottom:982.230000px;}
.y2e{bottom:986.100000px;}
.y4{bottom:987.630000px;}
.yc4{bottom:991.590000px;}
.y5a{bottom:998.340000px;}
.y10f{bottom:998.790000px;}
.y82{bottom:999.150000px;}
.yab{bottom:1000.140000px;}
.y133{bottom:1007.790000px;}
.yc3{bottom:1009.140000px;}
.yec{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y10e{bottom:1016.370000px;}
.y81{bottom:1016.820000px;}
.y59{bottom:1024.920000px;}
.y132{bottom:1025.370000px;}
.y2d{bottom:1034.370000px;}
.ye8{bottom:1036.890000px;}
.yc2{bottom:1042.200000px;}
.y131{bottom:1042.920000px;}
.yaa{bottom:1048.860000px;}
.y2c{bottom:1051.920000px;}
.y58{bottom:1060.560000px;}
.ye7{bottom:1064.250000px;}
.y2b{bottom:1069.560000px;}
.ya9{bottom:1084.410000px;}
.y2a{bottom:1087.110000px;}
.y80{bottom:1087.560000px;}
.yc1{bottom:1091.610000px;}
.y57{bottom:1096.110000px;}
.ya8{bottom:1102.050000px;}
.y7f{bottom:1105.110000px;}
.y56{bottom:1113.750000px;}
.ya7{bottom:1119.600000px;}
.y29{bottom:1122.750000px;}
.ya6{bottom:1137.690000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h18{height:22.320000px;}
.h20{height:26.550000px;}
.h1a{height:26.580000px;}
.h21{height:26.640000px;}
.h2{height:31.901133px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1b{height:48.600000px;}
.h1e{height:48.690000px;}
.h13{height:50.667539px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.ha{height:52.781133px;}
.h23{height:53.910000px;}
.h25{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:57.838008px;}
.hf{height:59.973223px;}
.h10{height:61.793886px;}
.he{height:62.585859px;}
.hb{height:63.210938px;}
.hd{height:68.582109px;}
.hc{height:70.664062px;}
.h1f{height:70.770000px;}
.h4{height:72.985430px;}
.h16{height:74.953125px;}
.h14{height:81.099844px;}
.h15{height:89.244492px;}
.h1d{height:92.880000px;}
.h19{height:96.027539px;}
.h12{height:99.324492px;}
.h11{height:102.817617px;}
.h24{height:108.660000px;}
.h1c{height:114.930000px;}
.h22{height:136.020000px;}
.h17{height:142.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:40.410000px;}
.w4{width:64.530000px;}
.we{width:71.730000px;}
.w17{width:74.070000px;}
.w12{width:74.160000px;}
.w9{width:76.800000px;}
.w16{width:86.970000px;}
.wd{width:87.060000px;}
.w7{width:99.720000px;}
.w10{width:109.350000px;}
.w5{width:125.280000px;}
.wa{width:143.640000px;}
.w8{width:153.180000px;}
.wc{width:159.510000px;}
.w13{width:161.460000px;}
.w15{width:161.850000px;}
.w11{width:161.940000px;}
.w14{width:187.020000px;}
.wf{width:200.640000px;}
.w18{width:203.070000px;}
.w6{width:203.340000px;}
.w3{width:558.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.650000px;}
.xc{left:10.800000px;}
.x1b{left:12.510000px;}
.x26{left:15.120000px;}
.x22{left:17.730000px;}
.x1f{left:20.070000px;}
.x12{left:29.880000px;}
.x21{left:35.820000px;}
.x28{left:37.620000px;}
.x17{left:43.830000px;}
.x1{left:68.040000px;}
.xe{left:70.110000px;}
.x1e{left:71.820000px;}
.x4{left:95.039987px;}
.x23{left:100.200000px;}
.x31{left:111.239987px;}
.xa{left:122.039987px;}
.xb{left:147.690000px;}
.xd{left:158.489987px;}
.x2{left:201.539987px;}
.x11{left:231.690000px;}
.x2e{left:251.220000px;}
.x8{left:252.659987px;}
.x2a{left:265.170000px;}
.x1a{left:274.080000px;}
.x16{left:281.010000px;}
.x24{left:290.100000px;}
.x13{left:357.690000px;}
.x5{left:378.749987px;}
.x25{left:400.170000px;}
.xf{left:412.229987px;}
.x1c{left:418.530000px;}
.x2b{left:427.440000px;}
.x18{left:434.910000px;}
.x6{left:439.499987px;}
.x27{left:441.300000px;}
.x7{left:446.609987px;}
.x9{left:449.579987px;}
.x1d{left:459.660000px;}
.x10{left:464.789987px;}
.x2c{left:468.570000px;}
.x2f{left:480.180000px;}
.x19{left:512.520000px;}
.x29{left:529.080000px;}
.x20{left:547.440000px;}
.x2d{left:556.350000px;}
.x14{left:561.840000px;}
.x30{left:567.960000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.va{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.vb{vertical-align:11.200000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.vc{vertical-align:26.880000pt;}
.v8{vertical-align:31.360000pt;}
.v7{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.v5{vertical-align:59.840000pt;}
.lse{letter-spacing:-0.348267pt;}
.ls21{letter-spacing:-0.330133pt;}
.ls2b{letter-spacing:-0.276267pt;}
.ls2c{letter-spacing:-0.214933pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls29{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.082667pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.058667pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls31{letter-spacing:-0.053867pt;}
.ls10{letter-spacing:-0.028267pt;}
.ls28{letter-spacing:-0.011840pt;}
.ls2d{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.010880pt;}
.ls2a{letter-spacing:0.020480pt;}
.ls12{letter-spacing:0.040320pt;}
.ls1c{letter-spacing:0.042880pt;}
.ls13{letter-spacing:0.043520pt;}
.ls23{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2f{letter-spacing:0.061867pt;}
.ls25{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.065920pt;}
.ls1f{letter-spacing:0.066133pt;}
.lsd{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls27{letter-spacing:0.087467pt;}
.ls17{letter-spacing:0.101440pt;}
.ls24{letter-spacing:0.102933pt;}
.lsf{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls26{letter-spacing:0.161067pt;}
.ls30{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.664000pt;}
.ls1e{letter-spacing:1.930880pt;}
.ls16{letter-spacing:2.250880pt;}
.ls32{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls2e{letter-spacing:71.863680pt;}
.ls18{letter-spacing:126.090880pt;}
.ls1b{letter-spacing:163.690667pt;}
.ws18{word-spacing:-16.000000pt;}
.ws9{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws20{word-spacing:-11.933867pt;}
.ws1a{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.ws1b{word-spacing:-11.844267pt;}
.ws14{word-spacing:-11.822933pt;}
.ws22{word-spacing:-11.818667pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws1f{word-spacing:-11.750080pt;}
.ws1c{word-spacing:-11.744960pt;}
.ws21{word-spacing:-11.702933pt;}
.wsd{word-spacing:-11.700267pt;}
.ws17{word-spacing:-11.698133pt;}
.ws15{word-spacing:-11.674133pt;}
.ws1d{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws1e{word-spacing:-11.541867pt;}
.ws16{word-spacing:-11.426667pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws13{word-spacing:-8.247680pt;}
.ws12{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.wsf{word-spacing:-2.872000pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.007040pt;}
.wse{word-spacing:2.723520pt;}
.ws11{word-spacing:2.947520pt;}
.ws8{word-spacing:3.826560pt;}
._7{margin-left:-3.507734pt;}
._4{margin-left:-2.404800pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.894944pt;}
._5{width:2.369813pt;}
._8{width:3.420267pt;}
._9{width:4.398506pt;}
._6{width:6.198933pt;}
._2{width:7.700907pt;}
._3{width:8.789867pt;}
._b{width:9.749654pt;}
._a{width:10.711680pt;}
._c{width:11.994560pt;}
._12{width:13.466880pt;}
._d{width:14.429867pt;}
._11{width:15.748682pt;}
._14{width:17.021250pt;}
._10{width:18.035306pt;}
._e{width:26.345920pt;}
._f{width:27.307200pt;}
._13{width:756.349867pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y53{bottom:-12.693333pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:6.960000pt;}
.yed{bottom:6.986667pt;}
.yb4{bottom:7.040000pt;}
.y55{bottom:7.066667pt;}
.yae{bottom:26.560000pt;}
.yb3{bottom:26.640000pt;}
.ye5{bottom:31.280000pt;}
.yeb{bottom:33.680000pt;}
.yb2{bottom:46.240000pt;}
.yea{bottom:53.306667pt;}
.yd7{bottom:64.960000pt;}
.y2{bottom:65.226667pt;}
.yb1{bottom:65.920000pt;}
.y27{bottom:65.946667pt;}
.yd6{bottom:84.586667pt;}
.yb0{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.y4e{bottom:98.000000pt;}
.yd5{bottom:104.266667pt;}
.y4d{bottom:108.986667pt;}
.y130{bottom:110.106667pt;}
.y4f{bottom:113.786667pt;}
.y52{bottom:116.906667pt;}
.y10d{bottom:123.306667pt;}
.y25{bottom:124.426667pt;}
.ya5{bottom:127.866667pt;}
.y12f{bottom:133.706667pt;}
.y10c{bottom:138.986667pt;}
.y24{bottom:140.026667pt;}
.y4c{bottom:143.386667pt;}
.ya4{bottom:143.546667pt;}
.y7e{bottom:144.186667pt;}
.y51{bottom:148.586667pt;}
.y12e{bottom:149.386667pt;}
.y23{bottom:155.706667pt;}
.y54{bottom:156.000000pt;}
.ya3{bottom:159.146667pt;}
.y7d{bottom:159.786667pt;}
.y10b{bottom:170.586667pt;}
.y22{bottom:171.306667pt;}
.y12d{bottom:172.986667pt;}
.ya2{bottom:174.746667pt;}
.y7c{bottom:175.466667pt;}
.y4b{bottom:177.786667pt;}
.y50{bottom:180.186667pt;}
.y10a{bottom:186.266667pt;}
.y21{bottom:186.906667pt;}
.ye0{bottom:195.706667pt;}
.y12c{bottom:196.666667pt;}
.y109{bottom:201.866667pt;}
.y20{bottom:202.586667pt;}
.ya1{bottom:206.426667pt;}
.y7b{bottom:207.066667pt;}
.y4a{bottom:212.186667pt;}
.y12b{bottom:212.266667pt;}
.y108{bottom:217.466667pt;}
.y1f{bottom:218.186667pt;}
.ya0{bottom:222.026667pt;}
.y7a{bottom:222.746667pt;}
.yc0{bottom:226.426667pt;}
.ydf{bottom:227.306667pt;}
.y12a{bottom:227.866667pt;}
.y1e{bottom:233.866667pt;}
.y79{bottom:238.346667pt;}
.y49{bottom:239.786667pt;}
.y107{bottom:241.386667pt;}
.yde{bottom:242.986667pt;}
.y129{bottom:251.546667pt;}
.y9f{bottom:253.706667pt;}
.y78{bottom:253.946667pt;}
.y1d{bottom:257.786667pt;}
.ybf{bottom:258.026667pt;}
.y128{bottom:267.146667pt;}
.y9e{bottom:269.306667pt;}
.y77{bottom:269.626667pt;}
.y48{bottom:271.946667pt;}
.ybe{bottom:273.706667pt;}
.y47{bottom:278.666667pt;}
.y127{bottom:282.746667pt;}
.ydd{bottom:284.266667pt;}
.y106{bottom:284.346667pt;}
.y9d{bottom:284.906667pt;}
.y76{bottom:285.226667pt;}
.ybd{bottom:289.306667pt;}
.ydc{bottom:299.866667pt;}
.y105{bottom:299.946667pt;}
.y46{bottom:300.266667pt;}
.y9c{bottom:300.586667pt;}
.y1c{bottom:300.986667pt;}
.ybc{bottom:304.906667pt;}
.y126{bottom:306.666667pt;}
.y104{bottom:315.546667pt;}
.y75{bottom:316.826667pt;}
.ybb{bottom:320.586667pt;}
.y45{bottom:323.866667pt;}
.ydb{bottom:324.186667pt;}
.y103{bottom:331.946667pt;}
.y9b{bottom:332.186667pt;}
.y74{bottom:332.506667pt;}
.y1b{bottom:333.866667pt;}
.yba{bottom:336.186667pt;}
.y102{bottom:347.546667pt;}
.y9a{bottom:347.866667pt;}
.y73{bottom:348.106667pt;}
.yd4{bottom:348.426667pt;}
.y125{bottom:349.626667pt;}
.y44{bottom:352.586667pt;}
.y43{bottom:361.546667pt;}
.y99{bottom:363.946667pt;}
.y1a{bottom:365.466667pt;}
.yb9{bottom:365.546667pt;}
.yda{bottom:372.746667pt;}
.y124{bottom:373.546667pt;}
.y101{bottom:379.546667pt;}
.y72{bottom:379.786667pt;}
.y19{bottom:381.146667pt;}
.y42{bottom:395.786667pt;}
.y100{bottom:395.946667pt;}
.y18{bottom:396.746667pt;}
.yd9{bottom:397.066667pt;}
.y98{bottom:397.866667pt;}
.y123{bottom:406.426667pt;}
.y71{bottom:411.386667pt;}
.yff{bottom:411.546667pt;}
.y17{bottom:412.346667pt;}
.y97{bottom:413.466667pt;}
.yd8{bottom:421.413333pt;}
.yfe{bottom:427.173333pt;}
.y41{bottom:427.413333pt;}
.yb8{bottom:429.093333pt;}
.y122{bottom:430.373333pt;}
.y70{bottom:439.973333pt;}
.y40{bottom:443.013333pt;}
.yfd{bottom:443.573333pt;}
.y16{bottom:444.053333pt;}
.y96{bottom:445.173333pt;}
.yd3{bottom:445.653333pt;}
.y6f{bottom:448.933333pt;}
.y3f{bottom:458.693333pt;}
.yfc{bottom:459.173333pt;}
.y15{bottom:459.653333pt;}
.y121{bottom:463.573333pt;}
.yd2{bottom:469.973333pt;}
.yb7{bottom:473.013333pt;}
.y95{bottom:477.093333pt;}
.y6e{bottom:488.853333pt;}
.y3e{bottom:490.293333pt;}
.y14{bottom:491.333333pt;}
.yfb{bottom:491.573333pt;}
.yd1{bottom:494.293333pt;}
.y6d{bottom:505.253333pt;}
.y120{bottom:506.453333pt;}
.y13{bottom:506.933333pt;}
.yfa{bottom:507.253333pt;}
.y3d{bottom:513.893333pt;}
.y94{bottom:519.973333pt;}
.y6c{bottom:521.573333pt;}
.yf9{bottom:530.853333pt;}
.y93{bottom:535.573333pt;}
.yd0{bottom:537.573333pt;}
.y6b{bottom:537.973333pt;}
.y11f{bottom:538.133333pt;}
.y12{bottom:538.533333pt;}
.y3c{bottom:542.933333pt;}
.y92{bottom:551.973333pt;}
.y11e{bottom:553.733333pt;}
.y11{bottom:554.213333pt;}
.y6a{bottom:554.373333pt;}
.yb6{bottom:556.213333pt;}
.yf8{bottom:562.533333pt;}
.y91{bottom:567.573333pt;}
.ycf{bottom:569.173333pt;}
.y10{bottom:569.813333pt;}
.y69{bottom:570.693333pt;}
.y3b{bottom:574.453333pt;}
.yf7{bottom:578.133333pt;}
.y90{bottom:583.173333pt;}
.yce{bottom:584.853333pt;}
.y11d{bottom:585.413333pt;}
.yf{bottom:585.493333pt;}
.y68{bottom:587.093333pt;}
.y3a{bottom:590.853333pt;}
.y8f{bottom:599.573333pt;}
.y11c{bottom:601.013333pt;}
.y67{bottom:603.413333pt;}
.y39{bottom:607.253333pt;}
.yf6{bottom:607.413333pt;}
.ye{bottom:609.413333pt;}
.y8e{bottom:615.653333pt;}
.ycd{bottom:616.933333pt;}
.ye6{bottom:620.213333pt;}
.y11b{bottom:624.933333pt;}
.y38{bottom:631.653333pt;}
.yf5{bottom:631.733333pt;}
.y66{bottom:635.813333pt;}
.yb5{bottom:639.413333pt;}
.y8d{bottom:641.653333pt;}
.ye4{bottom:644.533333pt;}
.ycc{bottom:651.333333pt;}
.y65{bottom:651.493333pt;}
.yd{bottom:652.293333pt;}
.yf4{bottom:656.053333pt;}
.y37{bottom:663.253333pt;}
.y64{bottom:667.093333pt;}
.y11a{bottom:667.813333pt;}
.ye3{bottom:668.853333pt;}
.y8c{bottom:673.253333pt;}
.yf3{bottom:680.373333pt;}
.yc{bottom:683.893333pt;}
.ycb{bottom:685.733333pt;}
.y8b{bottom:688.933333pt;}
.ye2{bottom:693.173333pt;}
.y36{bottom:694.853333pt;}
.y63{bottom:698.693333pt;}
.y119{bottom:699.493333pt;}
.yf2{bottom:704.613333pt;}
.y35{bottom:711.253333pt;}
.y8a{bottom:712.533333pt;}
.y62{bottom:714.373333pt;}
.y118{bottom:715.093333pt;}
.yb{bottom:715.733333pt;}
.ye1{bottom:717.413333pt;}
.y34{bottom:727.573333pt;}
.yca{bottom:729.333333pt;}
.y61{bottom:729.973333pt;}
.y117{bottom:730.693333pt;}
.yaf{bottom:742.213333pt;}
.y33{bottom:743.973333pt;}
.y89{bottom:744.133333pt;}
.y60{bottom:745.653333pt;}
.y116{bottom:746.373333pt;}
.yf1{bottom:747.893333pt;}
.ya{bottom:751.093333pt;}
.y88{bottom:759.733333pt;}
.yc9{bottom:763.253333pt;}
.y9{bottom:763.733333pt;}
.y87{bottom:776.133333pt;}
.y32{bottom:776.373333pt;}
.y5f{bottom:777.253333pt;}
.y115{bottom:777.973333pt;}
.yf0{bottom:779.573333pt;}
.y8{bottom:783.093333pt;}
.yc8{bottom:786.853333pt;}
.y86{bottom:791.733333pt;}
.y31{bottom:791.973333pt;}
.y5e{bottom:792.853333pt;}
.y114{bottom:793.653333pt;}
.yef{bottom:795.173333pt;}
.y7{bottom:795.733333pt;}
.y85{bottom:808.133333pt;}
.y113{bottom:809.253333pt;}
.y6{bottom:815.093333pt;}
.y30{bottom:815.573333pt;}
.y135{bottom:817.253333pt;}
.yc7{bottom:818.533333pt;}
.y84{bottom:823.733333pt;}
.y5d{bottom:824.533333pt;}
.y134{bottom:832.853333pt;}
.yc6{bottom:834.133333pt;}
.y5c{bottom:840.133333pt;}
.y112{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y2f{bottom:844.613333pt;}
.yad{bottom:845.093333pt;}
.ye9{bottom:848.773333pt;}
.yc5{bottom:849.813333pt;}
.y111{bottom:856.533333pt;}
.y5b{bottom:871.813333pt;}
.y110{bottom:872.133333pt;}
.y83{bottom:872.533333pt;}
.yee{bottom:873.093333pt;}
.y2e{bottom:876.533333pt;}
.y4{bottom:877.893333pt;}
.yc4{bottom:881.413333pt;}
.y5a{bottom:887.413333pt;}
.y10f{bottom:887.813333pt;}
.y82{bottom:888.133333pt;}
.yab{bottom:889.013333pt;}
.y133{bottom:895.813333pt;}
.yc3{bottom:897.013333pt;}
.yec{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y10e{bottom:903.440000pt;}
.y81{bottom:903.840000pt;}
.y59{bottom:911.040000pt;}
.y132{bottom:911.440000pt;}
.y2d{bottom:919.440000pt;}
.ye8{bottom:921.680000pt;}
.yc2{bottom:926.400000pt;}
.y131{bottom:927.040000pt;}
.yaa{bottom:932.320000pt;}
.y2c{bottom:935.040000pt;}
.y58{bottom:942.720000pt;}
.ye7{bottom:946.000000pt;}
.y2b{bottom:950.720000pt;}
.ya9{bottom:963.920000pt;}
.y2a{bottom:966.320000pt;}
.y80{bottom:966.720000pt;}
.yc1{bottom:970.320000pt;}
.y57{bottom:974.320000pt;}
.ya8{bottom:979.600000pt;}
.y7f{bottom:982.320000pt;}
.y56{bottom:990.000000pt;}
.ya7{bottom:995.200000pt;}
.y29{bottom:998.000000pt;}
.ya6{bottom:1011.280000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h18{height:19.840000pt;}
.h20{height:23.600000pt;}
.h1a{height:23.626667pt;}
.h21{height:23.680000pt;}
.h2{height:28.356562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1b{height:43.200000pt;}
.h1e{height:43.280000pt;}
.h13{height:45.037812pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.ha{height:46.916562pt;}
.h23{height:47.920000pt;}
.h25{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:51.411562pt;}
.hf{height:53.309531pt;}
.h10{height:54.927899pt;}
.he{height:55.631875pt;}
.hb{height:56.187500pt;}
.hd{height:60.961875pt;}
.hc{height:62.812500pt;}
.h1f{height:62.906667pt;}
.h4{height:64.875937pt;}
.h16{height:66.625000pt;}
.h14{height:72.088750pt;}
.h15{height:79.328438pt;}
.h1d{height:82.560000pt;}
.h19{height:85.357813pt;}
.h12{height:88.288438pt;}
.h11{height:91.393437pt;}
.h24{height:96.586667pt;}
.h1c{height:102.160000pt;}
.h22{height:120.906667pt;}
.h17{height:126.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:35.920000pt;}
.w4{width:57.360000pt;}
.we{width:63.760000pt;}
.w17{width:65.840000pt;}
.w12{width:65.920000pt;}
.w9{width:68.266667pt;}
.w16{width:77.306667pt;}
.wd{width:77.386667pt;}
.w7{width:88.640000pt;}
.w10{width:97.200000pt;}
.w5{width:111.360000pt;}
.wa{width:127.680000pt;}
.w8{width:136.160000pt;}
.wc{width:141.786667pt;}
.w13{width:143.520000pt;}
.w15{width:143.866667pt;}
.w11{width:143.946667pt;}
.w14{width:166.240000pt;}
.wf{width:178.346667pt;}
.w18{width:180.506667pt;}
.w6{width:180.746667pt;}
.w3{width:496.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.800000pt;}
.xc{left:9.600000pt;}
.x1b{left:11.120000pt;}
.x26{left:13.440000pt;}
.x22{left:15.760000pt;}
.x1f{left:17.840000pt;}
.x12{left:26.560000pt;}
.x21{left:31.840000pt;}
.x28{left:33.440000pt;}
.x17{left:38.960000pt;}
.x1{left:60.480000pt;}
.xe{left:62.320000pt;}
.x1e{left:63.840000pt;}
.x4{left:84.479988pt;}
.x23{left:89.066667pt;}
.x31{left:98.879988pt;}
.xa{left:108.479988pt;}
.xb{left:131.280000pt;}
.xd{left:140.879988pt;}
.x2{left:179.146655pt;}
.x11{left:205.946667pt;}
.x2e{left:223.306667pt;}
.x8{left:224.586655pt;}
.x2a{left:235.706667pt;}
.x1a{left:243.626667pt;}
.x16{left:249.786667pt;}
.x24{left:257.866667pt;}
.x13{left:317.946667pt;}
.x5{left:336.666655pt;}
.x25{left:355.706667pt;}
.xf{left:366.426655pt;}
.x1c{left:372.026667pt;}
.x2b{left:379.946667pt;}
.x18{left:386.586667pt;}
.x6{left:390.666655pt;}
.x27{left:392.266667pt;}
.x7{left:396.986655pt;}
.x9{left:399.626655pt;}
.x1d{left:408.586667pt;}
.x10{left:413.146655pt;}
.x2c{left:416.506667pt;}
.x2f{left:426.826667pt;}
.x19{left:455.573333pt;}
.x29{left:470.293333pt;}
.x20{left:486.613333pt;}
.x2d{left:494.533333pt;}
.x14{left:499.413333pt;}
.x30{left:504.853333pt;}
.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; }
  