
    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_4dfee32e163f5cfee2e11a2c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1e1d92f062b634415bbe0ac8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_cd0421016c81ad7aeebf1d57.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_1b0cf2ff045333ac4aacad48.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_a87d838c3026a9404d592207.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_019970aef5727f13593592aa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-4.536000px;}
._f{margin-left:-3.024000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._17{width:3.604080px;}
._5{width:5.529120px;}
._1a{width:6.701760px;}
._19{width:7.704000px;}
._13{width:9.504000px;}
._9{width:10.684800px;}
._8{width:11.810400px;}
._a{width:13.001760px;}
._b{width:14.184000px;}
._c{width:15.480000px;}
._e{width:16.772880px;}
._18{width:17.828160px;}
._d{width:19.650480px;}
._15{width:21.528000px;}
._16{width:23.112000px;}
._1d{width:24.206400px;}
._10{width:26.136000px;}
._6{width:27.648000px;}
._7{width:28.720080px;}
._1b{width:30.008160px;}
._1e{width:33.264000px;}
._1f{width:34.272000px;}
._14{width:37.656000px;}
._12{width:60.624000px;}
._11{width:61.634400px;}
._2{width:532.260000px;}
._3{width:1523.177520px;}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:4.500000px;}
.yb0{bottom:4.860000px;}
.yce{bottom:5.760000px;}
.ycc{bottom:6.300000px;}
.ybf{bottom:8.985000px;}
.ybb{bottom:9.000000px;}
.yc1{bottom:9.705000px;}
.yf0{bottom:11.700000px;}
.yae{bottom:12.780000px;}
.yd1{bottom:14.760000px;}
.yca{bottom:14.940000px;}
.ye5{bottom:14.970000px;}
.ye9{bottom:22.140000px;}
.ye7{bottom:22.350000px;}
.yac{bottom:23.040000px;}
.yc8{bottom:25.200000px;}
.ye2{bottom:25.230000px;}
.yad{bottom:33.480000px;}
.ye4{bottom:35.670000px;}
.y7{bottom:39.276000px;}
.ye6{bottom:43.230000px;}
.ye3{bottom:45.930000px;}
.y6{bottom:58.536000px;}
.y2e{bottom:131.436000px;}
.y80{bottom:132.696000px;}
.y2d{bottom:136.656000px;}
.yc5{bottom:137.916000px;}
.y107{bottom:139.896000px;}
.y2c{bottom:150.330000px;}
.y7f{bottom:153.390000px;}
.y57{bottom:157.530000px;}
.yc4{bottom:158.610000px;}
.y106{bottom:160.590000px;}
.y125{bottom:169.590000px;}
.y2b{bottom:174.810000px;}
.y56{bottom:178.230000px;}
.yc3{bottom:179.310000px;}
.y105{bottom:181.290000px;}
.y7e{bottom:192.090000px;}
.y2a{bottom:195.510000px;}
.y55{bottom:198.930000px;}
.yc2{bottom:200.010000px;}
.ye0{bottom:200.730000px;}
.y124{bottom:208.290000px;}
.y7d{bottom:212.790000px;}
.y29{bottom:216.210000px;}
.y54{bottom:219.630000px;}
.y104{bottom:219.990000px;}
.ydf{bottom:221.430000px;}
.y123{bottom:228.990000px;}
.y7c{bottom:233.490000px;}
.ya2{bottom:234.390000px;}
.yc0{bottom:234.945000px;}
.y28{bottom:236.910000px;}
.y53{bottom:240.330000px;}
.y103{bottom:240.690000px;}
.yde{bottom:242.130000px;}
.y27{bottom:257.610000px;}
.y52{bottom:261.030000px;}
.y102{bottom:261.390000px;}
.ybe{bottom:261.765000px;}
.ydd{bottom:262.830000px;}
.y122{bottom:267.690000px;}
.y7b{bottom:271.830000px;}
.ya1{bottom:273.135000px;}
.y26{bottom:278.355000px;}
.y101{bottom:282.135000px;}
.ydc{bottom:283.395000px;}
.ybd{bottom:287.895000px;}
.y121{bottom:288.435000px;}
.y25{bottom:299.055000px;}
.y51{bottom:299.595000px;}
.y100{bottom:302.835000px;}
.ya0{bottom:311.835000px;}
.y7a{bottom:312.555000px;}
.ybc{bottom:313.995000px;}
.y24{bottom:319.755000px;}
.ydb{bottom:321.915000px;}
.yff{bottom:323.535000px;}
.y120{bottom:327.135000px;}
.y9f{bottom:332.535000px;}
.y79{bottom:333.255000px;}
.yed{bottom:339.195000px;}
.yba{bottom:340.095000px;}
.y50{bottom:340.275000px;}
.y23{bottom:340.455000px;}
.y11f{bottom:347.835000px;}
.y9e{bottom:353.235000px;}
.y78{bottom:353.955000px;}
.y4f{bottom:360.975000px;}
.y22{bottom:361.155000px;}
.yfe{bottom:361.875000px;}
.y11e{bottom:368.535000px;}
.y77{bottom:374.655000px;}
.yec{bottom:381.315000px;}
.y4e{bottom:381.675000px;}
.y21{bottom:381.855000px;}
.yb9{bottom:385.455000px;}
.y9d{bottom:391.935000px;}
.y76{bottom:395.355000px;}
.y4d{bottom:402.195000px;}
.y20{bottom:402.555000px;}
.y11d{bottom:407.235000px;}
.y9c{bottom:412.635000px;}
.y75{bottom:416.055000px;}
.y4c{bottom:422.895000px;}
.y1f{bottom:423.255000px;}
.yeb{bottom:423.435000px;}
.yb8{bottom:424.335000px;}
.y11c{bottom:427.935000px;}
.y9b{bottom:433.335000px;}
.y74{bottom:436.755000px;}
.y4b{bottom:443.595000px;}
.y1e{bottom:443.955000px;}
.yb7{bottom:445.035000px;}
.y11b{bottom:448.635000px;}
.y9a{bottom:454.035000px;}
.y73{bottom:457.455000px;}
.y4a{bottom:464.295000px;}
.y1d{bottom:464.655000px;}
.yea{bottom:465.555000px;}
.yb6{bottom:465.735000px;}
.y72{bottom:478.155000px;}
.y49{bottom:484.995000px;}
.y1c{bottom:485.355000px;}
.yb5{bottom:486.435000px;}
.y11a{bottom:487.335000px;}
.y99{bottom:492.735000px;}
.y71{bottom:498.855000px;}
.y48{bottom:505.695000px;}
.y1b{bottom:506.055000px;}
.yb4{bottom:507.135000px;}
.ye8{bottom:507.675000px;}
.y119{bottom:507.855000px;}
.y98{bottom:513.435000px;}
.y70{bottom:519.555000px;}
.y47{bottom:526.395000px;}
.y1a{bottom:526.755000px;}
.y97{bottom:534.135000px;}
.yb3{bottom:545.835000px;}
.y118{bottom:546.555000px;}
.y46{bottom:547.095000px;}
.y19{bottom:547.455000px;}
.ye1{bottom:549.795000px;}
.y96{bottom:554.835000px;}
.y6f{bottom:558.285000px;}
.yb2{bottom:562.785000px;}
.y117{bottom:567.285000px;}
.y18{bottom:568.185000px;}
.y6e{bottom:578.985000px;}
.yb1{bottom:584.925000px;}
.y45{bottom:585.825000px;}
.y116{bottom:587.985000px;}
.y17{bottom:588.885000px;}
.y95{bottom:593.385000px;}
.y6d{bottom:599.685000px;}
.y44{bottom:606.525000px;}
.yfd{bottom:606.885000px;}
.yaf{bottom:607.245000px;}
.y6c{bottom:620.385000px;}
.y115{bottom:626.685000px;}
.y43{bottom:627.225000px;}
.y16{bottom:627.405000px;}
.yfc{bottom:627.585000px;}
.yab{bottom:629.385000px;}
.yda{bottom:632.085000px;}
.y94{bottom:633.885000px;}
.y6b{bottom:641.085000px;}
.y114{bottom:647.385000px;}
.y42{bottom:647.925000px;}
.yfb{bottom:648.285000px;}
.y93{bottom:654.585000px;}
.y6a{bottom:661.785000px;}
.y15{bottom:667.725000px;}
.y41{bottom:668.625000px;}
.yfa{bottom:668.985000px;}
.yd9{bottom:670.965000px;}
.y92{bottom:675.285000px;}
.y69{bottom:682.485000px;}
.y113{bottom:686.085000px;}
.y40{bottom:689.325000px;}
.yf9{bottom:689.685000px;}
.yaa{bottom:690.945000px;}
.yd8{bottom:691.665000px;}
.y91{bottom:695.985000px;}
.y68{bottom:703.185000px;}
.y112{bottom:706.785000px;}
.ya9{bottom:708.045000px;}
.y14{bottom:708.945000px;}
.y3f{bottom:710.025000px;}
.yf8{bottom:710.385000px;}
.yd7{bottom:712.365000px;}
.y90{bottom:716.685000px;}
.y111{bottom:727.485000px;}
.y3e{bottom:730.725000px;}
.yf7{bottom:731.085000px;}
.y13{bottom:732.885000px;}
.yd6{bottom:733.065000px;}
.y8f{bottom:737.385000px;}
.y67{bottom:741.885000px;}
.ya8{bottom:746.745000px;}
.y3d{bottom:751.425000px;}
.yf6{bottom:751.785000px;}
.yd5{bottom:753.765000px;}
.y12{bottom:755.205000px;}
.y8e{bottom:758.085000px;}
.y66{bottom:762.585000px;}
.y110{bottom:766.185000px;}
.ya7{bottom:767.445000px;}
.yd4{bottom:774.465000px;}
.y10{bottom:778.065000px;}
.y8d{bottom:778.785000px;}
.y65{bottom:783.285000px;}
.y11{bottom:785.625000px;}
.y10f{bottom:786.885000px;}
.ya6{bottom:788.145000px;}
.y3c{bottom:790.125000px;}
.yf5{bottom:790.305000px;}
.yd3{bottom:795.165000px;}
.y8c{bottom:799.485000px;}
.y64{bottom:803.985000px;}
.ya5{bottom:808.845000px;}
.y12c{bottom:809.385000px;}
.y3b{bottom:810.825000px;}
.yf{bottom:816.945000px;}
.y8b{bottom:820.185000px;}
.y10e{bottom:825.585000px;}
.yf4{bottom:830.985000px;}
.y3a{bottom:831.525000px;}
.yd2{bottom:834.225000px;}
.ye{bottom:839.310000px;}
.y8a{bottom:840.930000px;}
.y63{bottom:842.730000px;}
.y10d{bottom:846.330000px;}
.ya4{bottom:847.590000px;}
.y12b{bottom:848.130000px;}
.yf3{bottom:851.730000px;}
.y39{bottom:852.270000px;}
.yd{bottom:861.990000px;}
.y62{bottom:863.430000px;}
.y12a{bottom:868.830000px;}
.yd0{bottom:870.630000px;}
.yf2{bottom:872.430000px;}
.y38{bottom:872.970000px;}
.y89{bottom:879.450000px;}
.ya3{bottom:881.970000px;}
.y61{bottom:884.130000px;}
.y10c{bottom:885.030000px;}
.y37{bottom:893.670000px;}
.yc{bottom:902.670000px;}
.y60{bottom:904.830000px;}
.y10b{bottom:905.730000px;}
.yf1{bottom:907.350000px;}
.y129{bottom:907.530000px;}
.ycf{bottom:912.750000px;}
.y36{bottom:914.370000px;}
.y88{bottom:920.130000px;}
.y5f{bottom:925.530000px;}
.y128{bottom:928.230000px;}
.y35{bottom:935.070000px;}
.ycd{bottom:936.510000px;}
.y87{bottom:940.830000px;}
.y10a{bottom:944.430000px;}
.y5e{bottom:946.230000px;}
.yef{bottom:949.470000px;}
.yb{bottom:955.230000px;}
.ycb{bottom:960.270000px;}
.y86{bottom:961.530000px;}
.y109{bottom:965.130000px;}
.y127{bottom:966.930000px;}
.y34{bottom:973.590000px;}
.y85{bottom:982.230000px;}
.y5d{bottom:984.930000px;}
.yc7{bottom:985.290000px;}
.y126{bottom:987.630000px;}
.ya{bottom:989.790000px;}
.y84{bottom:1002.930000px;}
.y108{bottom:1003.650000px;}
.y5c{bottom:1005.630000px;}
.y33{bottom:1013.550000px;}
.y83{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.yee{bottom:1026.150000px;}
.y5b{bottom:1026.330000px;}
.y32{bottom:1030.650000px;}
.y82{bottom:1044.330000px;}
.yc6{bottom:1046.850000px;}
.y5a{bottom:1047.030000px;}
.y31{bottom:1047.930000px;}
.y81{bottom:1065.030000px;}
.y8{bottom:1076.730000px;}
.y30{bottom:1083.930000px;}
.y59{bottom:1085.730000px;}
.y2f{bottom:1104.630000px;}
.y58{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h20{height:20.685000px;}
.h16{height:21.420000px;}
.h1c{height:23.025000px;}
.h1b{height:24.285000px;}
.h17{height:25.185000px;}
.h18{height:25.221000px;}
.h19{height:25.905000px;}
.h10{height:27.945000px;}
.h22{height:35.085000px;}
.hb{height:37.494141px;}
.h1a{height:41.385000px;}
.h11{height:41.493516px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.hf{height:51.679688px;}
.h5{height:53.640000px;}
.h13{height:54.421875px;}
.h15{height:57.955500px;}
.h14{height:57.960000px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h1f{height:62.130000px;}
.h1e{height:70.628906px;}
.he{height:70.664062px;}
.h21{height:72.562500px;}
.h12{height:74.704922px;}
.h1d{height:76.279219px;}
.h9{height:76.317188px;}
.hc{height:77.531484px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:71.445000px;}
.wf{width:74.901000px;}
.w15{width:81.036000px;}
.w8{width:94.845000px;}
.w6{width:94.860000px;}
.wa{width:95.061000px;}
.w9{width:95.062500px;}
.wc{width:98.085000px;}
.w10{width:99.180000px;}
.w12{width:100.425000px;}
.w13{width:100.641000px;}
.w4{width:105.291000px;}
.w2{width:125.460000px;}
.w5{width:126.921000px;}
.w7{width:126.936000px;}
.we{width:127.611000px;}
.w11{width:134.316000px;}
.w14{width:148.680000px;}
.wb{width:204.690000px;}
.wd{width:244.860000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:4.485000px;}
.x20{left:7.545000px;}
.x18{left:9.885000px;}
.x43{left:10.980000px;}
.x1e{left:12.045000px;}
.x3b{left:13.680000px;}
.x21{left:15.510000px;}
.x1a{left:17.280000px;}
.x37{left:19.965000px;}
.x26{left:22.710000px;}
.x3f{left:24.840000px;}
.x25{left:27.165000px;}
.x40{left:29.340000px;}
.x23{left:31.500000px;}
.x2c{left:32.565000px;}
.x1c{left:37.470000px;}
.x3a{left:41.220000px;}
.x22{left:43.185000px;}
.x17{left:45.885000px;}
.x24{left:47.730000px;}
.x2{left:50.399998px;}
.x15{left:52.545000px;}
.x27{left:58.845000px;}
.x32{left:66.270000px;}
.x33{left:79.230000px;}
.x31{left:81.750000px;}
.x30{left:86.250000px;}
.x14{left:122.805000px;}
.x35{left:126.225000px;}
.x1{left:127.656000px;}
.xf{left:133.056000px;}
.x5{left:137.736000px;}
.x28{left:141.156000px;}
.x10{left:148.896000px;}
.x4{left:160.410000px;}
.xd{left:180.750000px;}
.x9{left:184.890000px;}
.x8{left:189.930000px;}
.x2d{left:200.730000px;}
.x12{left:205.410000px;}
.x16{left:228.825000px;}
.x36{left:254.565000px;}
.x13{left:266.970000px;}
.x2e{left:274.725000px;}
.x6{left:276.510000px;}
.x29{left:289.830000px;}
.x2a{left:294.915000px;}
.x41{left:308.595000px;}
.x38{left:330.195000px;}
.x34{left:341.895000px;}
.xe{left:343.695000px;}
.x19{left:356.475000px;}
.xa{left:367.275000px;}
.x7{left:382.215000px;}
.x39{left:430.095000px;}
.x42{left:444.675000px;}
.x1b{left:452.055000px;}
.x3{left:457.275000px;}
.x2b{left:500.340000px;}
.x2f{left:520.320000px;}
.x44{left:526.440000px;}
.xb{left:540.442500px;}
.xc{left:547.305000px;}
.x3c{left:565.140000px;}
.x1d{left:579.720000px;}
.x11{left:658.545000px;}
.x3e{left:666.300000px;}
.x1f{left:675.300000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-4.032000pt;}
._f{margin-left:-2.688000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._17{width:3.203627pt;}
._5{width:4.914773pt;}
._1a{width:5.957120pt;}
._19{width:6.848000pt;}
._13{width:8.448000pt;}
._9{width:9.497600pt;}
._8{width:10.498133pt;}
._a{width:11.557120pt;}
._b{width:12.608000pt;}
._c{width:13.760000pt;}
._e{width:14.909227pt;}
._18{width:15.847253pt;}
._d{width:17.467093pt;}
._15{width:19.136000pt;}
._16{width:20.544000pt;}
._1d{width:21.516800pt;}
._10{width:23.232000pt;}
._6{width:24.576000pt;}
._7{width:25.528960pt;}
._1b{width:26.673920pt;}
._1e{width:29.568000pt;}
._1f{width:30.464000pt;}
._14{width:33.472000pt;}
._12{width:53.888000pt;}
._11{width:54.786133pt;}
._2{width:473.120000pt;}
._3{width:1353.935573pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:4.000000pt;}
.yb0{bottom:4.320000pt;}
.yce{bottom:5.120000pt;}
.ycc{bottom:5.600000pt;}
.ybf{bottom:7.986667pt;}
.ybb{bottom:8.000000pt;}
.yc1{bottom:8.626667pt;}
.yf0{bottom:10.400000pt;}
.yae{bottom:11.360000pt;}
.yd1{bottom:13.120000pt;}
.yca{bottom:13.280000pt;}
.ye5{bottom:13.306667pt;}
.ye9{bottom:19.680000pt;}
.ye7{bottom:19.866667pt;}
.yac{bottom:20.480000pt;}
.yc8{bottom:22.400000pt;}
.ye2{bottom:22.426667pt;}
.yad{bottom:29.760000pt;}
.ye4{bottom:31.706667pt;}
.y7{bottom:34.912000pt;}
.ye6{bottom:38.426667pt;}
.ye3{bottom:40.826667pt;}
.y6{bottom:52.032000pt;}
.y2e{bottom:116.832000pt;}
.y80{bottom:117.952000pt;}
.y2d{bottom:121.472000pt;}
.yc5{bottom:122.592000pt;}
.y107{bottom:124.352000pt;}
.y2c{bottom:133.626667pt;}
.y7f{bottom:136.346667pt;}
.y57{bottom:140.026667pt;}
.yc4{bottom:140.986667pt;}
.y106{bottom:142.746667pt;}
.y125{bottom:150.746667pt;}
.y2b{bottom:155.386667pt;}
.y56{bottom:158.426667pt;}
.yc3{bottom:159.386667pt;}
.y105{bottom:161.146667pt;}
.y7e{bottom:170.746667pt;}
.y2a{bottom:173.786667pt;}
.y55{bottom:176.826667pt;}
.yc2{bottom:177.786667pt;}
.ye0{bottom:178.426667pt;}
.y124{bottom:185.146667pt;}
.y7d{bottom:189.146667pt;}
.y29{bottom:192.186667pt;}
.y54{bottom:195.226667pt;}
.y104{bottom:195.546667pt;}
.ydf{bottom:196.826667pt;}
.y123{bottom:203.546667pt;}
.y7c{bottom:207.546667pt;}
.ya2{bottom:208.346667pt;}
.yc0{bottom:208.840000pt;}
.y28{bottom:210.586667pt;}
.y53{bottom:213.626667pt;}
.y103{bottom:213.946667pt;}
.yde{bottom:215.226667pt;}
.y27{bottom:228.986667pt;}
.y52{bottom:232.026667pt;}
.y102{bottom:232.346667pt;}
.ybe{bottom:232.680000pt;}
.ydd{bottom:233.626667pt;}
.y122{bottom:237.946667pt;}
.y7b{bottom:241.626667pt;}
.ya1{bottom:242.786667pt;}
.y26{bottom:247.426667pt;}
.y101{bottom:250.786667pt;}
.ydc{bottom:251.906667pt;}
.ybd{bottom:255.906667pt;}
.y121{bottom:256.386667pt;}
.y25{bottom:265.826667pt;}
.y51{bottom:266.306667pt;}
.y100{bottom:269.186667pt;}
.ya0{bottom:277.186667pt;}
.y7a{bottom:277.826667pt;}
.ybc{bottom:279.106667pt;}
.y24{bottom:284.226667pt;}
.ydb{bottom:286.146667pt;}
.yff{bottom:287.586667pt;}
.y120{bottom:290.786667pt;}
.y9f{bottom:295.586667pt;}
.y79{bottom:296.226667pt;}
.yed{bottom:301.506667pt;}
.yba{bottom:302.306667pt;}
.y50{bottom:302.466667pt;}
.y23{bottom:302.626667pt;}
.y11f{bottom:309.186667pt;}
.y9e{bottom:313.986667pt;}
.y78{bottom:314.626667pt;}
.y4f{bottom:320.866667pt;}
.y22{bottom:321.026667pt;}
.yfe{bottom:321.666667pt;}
.y11e{bottom:327.586667pt;}
.y77{bottom:333.026667pt;}
.yec{bottom:338.946667pt;}
.y4e{bottom:339.266667pt;}
.y21{bottom:339.426667pt;}
.yb9{bottom:342.626667pt;}
.y9d{bottom:348.386667pt;}
.y76{bottom:351.426667pt;}
.y4d{bottom:357.506667pt;}
.y20{bottom:357.826667pt;}
.y11d{bottom:361.986667pt;}
.y9c{bottom:366.786667pt;}
.y75{bottom:369.826667pt;}
.y4c{bottom:375.906667pt;}
.y1f{bottom:376.226667pt;}
.yeb{bottom:376.386667pt;}
.yb8{bottom:377.186667pt;}
.y11c{bottom:380.386667pt;}
.y9b{bottom:385.186667pt;}
.y74{bottom:388.226667pt;}
.y4b{bottom:394.306667pt;}
.y1e{bottom:394.626667pt;}
.yb7{bottom:395.586667pt;}
.y11b{bottom:398.786667pt;}
.y9a{bottom:403.586667pt;}
.y73{bottom:406.626667pt;}
.y4a{bottom:412.706667pt;}
.y1d{bottom:413.026667pt;}
.yea{bottom:413.826667pt;}
.yb6{bottom:413.986667pt;}
.y72{bottom:425.026667pt;}
.y49{bottom:431.106667pt;}
.y1c{bottom:431.426667pt;}
.yb5{bottom:432.386667pt;}
.y11a{bottom:433.186667pt;}
.y99{bottom:437.986667pt;}
.y71{bottom:443.426667pt;}
.y48{bottom:449.506667pt;}
.y1b{bottom:449.826667pt;}
.yb4{bottom:450.786667pt;}
.ye8{bottom:451.266667pt;}
.y119{bottom:451.426667pt;}
.y98{bottom:456.386667pt;}
.y70{bottom:461.826667pt;}
.y47{bottom:467.906667pt;}
.y1a{bottom:468.226667pt;}
.y97{bottom:474.786667pt;}
.yb3{bottom:485.186667pt;}
.y118{bottom:485.826667pt;}
.y46{bottom:486.306667pt;}
.y19{bottom:486.626667pt;}
.ye1{bottom:488.706667pt;}
.y96{bottom:493.186667pt;}
.y6f{bottom:496.253333pt;}
.yb2{bottom:500.253333pt;}
.y117{bottom:504.253333pt;}
.y18{bottom:505.053333pt;}
.y6e{bottom:514.653333pt;}
.yb1{bottom:519.933333pt;}
.y45{bottom:520.733333pt;}
.y116{bottom:522.653333pt;}
.y17{bottom:523.453333pt;}
.y95{bottom:527.453333pt;}
.y6d{bottom:533.053333pt;}
.y44{bottom:539.133333pt;}
.yfd{bottom:539.453333pt;}
.yaf{bottom:539.773333pt;}
.y6c{bottom:551.453333pt;}
.y115{bottom:557.053333pt;}
.y43{bottom:557.533333pt;}
.y16{bottom:557.693333pt;}
.yfc{bottom:557.853333pt;}
.yab{bottom:559.453333pt;}
.yda{bottom:561.853333pt;}
.y94{bottom:563.453333pt;}
.y6b{bottom:569.853333pt;}
.y114{bottom:575.453333pt;}
.y42{bottom:575.933333pt;}
.yfb{bottom:576.253333pt;}
.y93{bottom:581.853333pt;}
.y6a{bottom:588.253333pt;}
.y15{bottom:593.533333pt;}
.y41{bottom:594.333333pt;}
.yfa{bottom:594.653333pt;}
.yd9{bottom:596.413333pt;}
.y92{bottom:600.253333pt;}
.y69{bottom:606.653333pt;}
.y113{bottom:609.853333pt;}
.y40{bottom:612.733333pt;}
.yf9{bottom:613.053333pt;}
.yaa{bottom:614.173333pt;}
.yd8{bottom:614.813333pt;}
.y91{bottom:618.653333pt;}
.y68{bottom:625.053333pt;}
.y112{bottom:628.253333pt;}
.ya9{bottom:629.373333pt;}
.y14{bottom:630.173333pt;}
.y3f{bottom:631.133333pt;}
.yf8{bottom:631.453333pt;}
.yd7{bottom:633.213333pt;}
.y90{bottom:637.053333pt;}
.y111{bottom:646.653333pt;}
.y3e{bottom:649.533333pt;}
.yf7{bottom:649.853333pt;}
.y13{bottom:651.453333pt;}
.yd6{bottom:651.613333pt;}
.y8f{bottom:655.453333pt;}
.y67{bottom:659.453333pt;}
.ya8{bottom:663.773333pt;}
.y3d{bottom:667.933333pt;}
.yf6{bottom:668.253333pt;}
.yd5{bottom:670.013333pt;}
.y12{bottom:671.293333pt;}
.y8e{bottom:673.853333pt;}
.y66{bottom:677.853333pt;}
.y110{bottom:681.053333pt;}
.ya7{bottom:682.173333pt;}
.yd4{bottom:688.413333pt;}
.y10{bottom:691.613333pt;}
.y8d{bottom:692.253333pt;}
.y65{bottom:696.253333pt;}
.y11{bottom:698.333333pt;}
.y10f{bottom:699.453333pt;}
.ya6{bottom:700.573333pt;}
.y3c{bottom:702.333333pt;}
.yf5{bottom:702.493333pt;}
.yd3{bottom:706.813333pt;}
.y8c{bottom:710.653333pt;}
.y64{bottom:714.653333pt;}
.ya5{bottom:718.973333pt;}
.y12c{bottom:719.453333pt;}
.y3b{bottom:720.733333pt;}
.yf{bottom:726.173333pt;}
.y8b{bottom:729.053333pt;}
.y10e{bottom:733.853333pt;}
.yf4{bottom:738.653333pt;}
.y3a{bottom:739.133333pt;}
.yd2{bottom:741.533333pt;}
.ye{bottom:746.053333pt;}
.y8a{bottom:747.493333pt;}
.y63{bottom:749.093333pt;}
.y10d{bottom:752.293333pt;}
.ya4{bottom:753.413333pt;}
.y12b{bottom:753.893333pt;}
.yf3{bottom:757.093333pt;}
.y39{bottom:757.573333pt;}
.yd{bottom:766.213333pt;}
.y62{bottom:767.493333pt;}
.y12a{bottom:772.293333pt;}
.yd0{bottom:773.893333pt;}
.yf2{bottom:775.493333pt;}
.y38{bottom:775.973333pt;}
.y89{bottom:781.733333pt;}
.ya3{bottom:783.973333pt;}
.y61{bottom:785.893333pt;}
.y10c{bottom:786.693333pt;}
.y37{bottom:794.373333pt;}
.yc{bottom:802.373333pt;}
.y60{bottom:804.293333pt;}
.y10b{bottom:805.093333pt;}
.yf1{bottom:806.533333pt;}
.y129{bottom:806.693333pt;}
.ycf{bottom:811.333333pt;}
.y36{bottom:812.773333pt;}
.y88{bottom:817.893333pt;}
.y5f{bottom:822.693333pt;}
.y128{bottom:825.093333pt;}
.y35{bottom:831.173333pt;}
.ycd{bottom:832.453333pt;}
.y87{bottom:836.293333pt;}
.y10a{bottom:839.493333pt;}
.y5e{bottom:841.093333pt;}
.yef{bottom:843.973333pt;}
.yb{bottom:849.093333pt;}
.ycb{bottom:853.573333pt;}
.y86{bottom:854.693333pt;}
.y109{bottom:857.893333pt;}
.y127{bottom:859.493333pt;}
.y34{bottom:865.413333pt;}
.y85{bottom:873.093333pt;}
.y5d{bottom:875.493333pt;}
.yc7{bottom:875.813333pt;}
.y126{bottom:877.893333pt;}
.ya{bottom:879.813333pt;}
.y84{bottom:891.493333pt;}
.y108{bottom:892.133333pt;}
.y5c{bottom:893.893333pt;}
.y33{bottom:900.933333pt;}
.y83{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.yee{bottom:912.133333pt;}
.y5b{bottom:912.293333pt;}
.y32{bottom:916.133333pt;}
.y82{bottom:928.293333pt;}
.yc6{bottom:930.533333pt;}
.y5a{bottom:930.693333pt;}
.y31{bottom:931.493333pt;}
.y81{bottom:946.693333pt;}
.y8{bottom:957.093333pt;}
.y30{bottom:963.493333pt;}
.y59{bottom:965.093333pt;}
.y2f{bottom:981.893333pt;}
.y58{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h20{height:18.386667pt;}
.h16{height:19.040000pt;}
.h1c{height:20.466667pt;}
.h1b{height:21.586667pt;}
.h17{height:22.386667pt;}
.h18{height:22.418667pt;}
.h19{height:23.026667pt;}
.h10{height:24.840000pt;}
.h22{height:31.186667pt;}
.hb{height:33.328125pt;}
.h1a{height:36.786667pt;}
.h11{height:36.883125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.hf{height:45.937500pt;}
.h5{height:47.680000pt;}
.h13{height:48.375000pt;}
.h15{height:51.516000pt;}
.h14{height:51.520000pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h1f{height:55.226667pt;}
.h1e{height:62.781250pt;}
.he{height:62.812500pt;}
.h21{height:64.500000pt;}
.h12{height:66.404375pt;}
.h1d{height:67.803750pt;}
.h9{height:67.837500pt;}
.hc{height:68.916875pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:63.506667pt;}
.wf{width:66.578667pt;}
.w15{width:72.032000pt;}
.w8{width:84.306667pt;}
.w6{width:84.320000pt;}
.wa{width:84.498667pt;}
.w9{width:84.500000pt;}
.wc{width:87.186667pt;}
.w10{width:88.160000pt;}
.w12{width:89.266667pt;}
.w13{width:89.458667pt;}
.w4{width:93.592000pt;}
.w2{width:111.520000pt;}
.w5{width:112.818667pt;}
.w7{width:112.832000pt;}
.we{width:113.432000pt;}
.w11{width:119.392000pt;}
.w14{width:132.160000pt;}
.wb{width:181.946667pt;}
.wd{width:217.653333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:3.986667pt;}
.x20{left:6.706667pt;}
.x18{left:8.786667pt;}
.x43{left:9.760000pt;}
.x1e{left:10.706667pt;}
.x3b{left:12.160000pt;}
.x21{left:13.786667pt;}
.x1a{left:15.360000pt;}
.x37{left:17.746667pt;}
.x26{left:20.186667pt;}
.x3f{left:22.080000pt;}
.x25{left:24.146667pt;}
.x40{left:26.080000pt;}
.x23{left:28.000000pt;}
.x2c{left:28.946667pt;}
.x1c{left:33.306667pt;}
.x3a{left:36.640000pt;}
.x22{left:38.386667pt;}
.x17{left:40.786667pt;}
.x24{left:42.426667pt;}
.x2{left:44.799998pt;}
.x15{left:46.706667pt;}
.x27{left:52.306667pt;}
.x32{left:58.906667pt;}
.x33{left:70.426667pt;}
.x31{left:72.666667pt;}
.x30{left:76.666667pt;}
.x14{left:109.160000pt;}
.x35{left:112.200000pt;}
.x1{left:113.472000pt;}
.xf{left:118.272000pt;}
.x5{left:122.432000pt;}
.x28{left:125.472000pt;}
.x10{left:132.352000pt;}
.x4{left:142.586667pt;}
.xd{left:160.666667pt;}
.x9{left:164.346667pt;}
.x8{left:168.826667pt;}
.x2d{left:178.426667pt;}
.x12{left:182.586667pt;}
.x16{left:203.400000pt;}
.x36{left:226.280000pt;}
.x13{left:237.306667pt;}
.x2e{left:244.200000pt;}
.x6{left:245.786667pt;}
.x29{left:257.626667pt;}
.x2a{left:262.146667pt;}
.x41{left:274.306667pt;}
.x38{left:293.506667pt;}
.x34{left:303.906667pt;}
.xe{left:305.506667pt;}
.x19{left:316.866667pt;}
.xa{left:326.466667pt;}
.x7{left:339.746667pt;}
.x39{left:382.306667pt;}
.x42{left:395.266667pt;}
.x1b{left:401.826667pt;}
.x3{left:406.466667pt;}
.x2b{left:444.746667pt;}
.x2f{left:462.506667pt;}
.x44{left:467.946667pt;}
.xb{left:480.393333pt;}
.xc{left:486.493333pt;}
.x3c{left:502.346667pt;}
.x1d{left:515.306667pt;}
.x11{left:585.373333pt;}
.x3e{left:592.266667pt;}
.x1f{left:600.266667pt;}
}




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