
    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_94e129175745d273c0e9f45f.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_c05394f3a13b12572ed258dc.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c9408a1a4238b4f2a11f67d6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.151855;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_bdbae1659e0206f29db508a9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b235a42fe8668193945dac6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_6cdfc03319c7b4d723a3afde.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_189d6d6f41027614df38b0ba.woff')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_381bb3ac7e2c0ac079b0eaad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.110840;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_82dc23aaeb29c818ce712718.woff')format("woff");}.ff9{font-family:ff9;line-height:1.019531;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6f43672b6ecaf11b5a25f216.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_55fcdbdc8880358d963777b7.woff')format("woff");}.ffc{font-family:ffc;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-7.603200px;}
.ls1d{letter-spacing:-3.240000px;}
.ls1e{letter-spacing:-2.344320px;}
.ls1f{letter-spacing:-2.280960px;}
.ls19{letter-spacing:-1.590000px;}
.ls11{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.385800px;}
.ls20{letter-spacing:-0.380160px;}
.ls6{letter-spacing:-0.334200px;}
.ls5{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.190200px;}
.ls12{letter-spacing:-0.057600px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.152640px;}
.ls13{letter-spacing:0.213000px;}
.ls9{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.385800px;}
.lsf{letter-spacing:6.480000px;}
.ls8{letter-spacing:7.920000px;}
.ls1b{letter-spacing:17.585280px;}
.ls10{letter-spacing:19.745280px;}
.ls1a{letter-spacing:21.185280px;}
.ls1c{letter-spacing:33.505920px;}
.ls18{letter-spacing:41.706720px;}
.lse{letter-spacing:43.866720px;}
.ls2{letter-spacing:119.136000px;}
.ls1{letter-spacing:486.516000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.wsd{word-spacing:-63.360000px;}
.wsa{word-spacing:-59.760000px;}
.ws7{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.102200px;}
.wse{word-spacing:-16.053000px;}
.wsf{word-spacing:-15.948000px;}
.ws4{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.782400px;}
.ws10{word-spacing:-15.649800px;}
.wsc{word-spacing:-15.505800px;}
.ws12{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.970000px;}
.ws0{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.559040px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-4.966080px;}
._b{margin-left:-3.845760px;}
._a{margin-left:-2.710080px;}
._0{margin-left:-1.696320px;}
._1{width:1.148160px;}
._2{width:2.496960px;}
._7{width:3.949440px;}
._5{width:5.195520px;}
._6{width:6.307200px;}
._4{width:7.666560px;}
._3{width:9.046080px;}
._c{width:10.211040px;}
._9{width:11.341440px;}
._8{width:12.784320px;}
._e{width:14.256000px;}
._14{width:15.500160px;}
._10{width:17.614080px;}
._15{width:18.725760px;}
._18{width:21.987360px;}
._16{width:23.117760px;}
._17{width:24.490560px;}
._f{width:26.991360px;}
._13{width:37.065600px;}
._11{width:43.338240px;}
._12{width:44.822880px;}
._19{width:51.096000px;}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.240000px;}
.fs8{font-size:18.000000px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.420000px;}
.y95{bottom:3.960000px;}
.y96{bottom:12.960000px;}
.y9c{bottom:21.420000px;}
.yb9{bottom:21.600000px;}
.y94{bottom:21.960000px;}
.y9b{bottom:39.600000px;}
.yb8{bottom:39.780000px;}
.y9a{bottom:57.780000px;}
.y99{bottom:75.780000px;}
.yb7{bottom:75.960000px;}
.y98{bottom:93.960000px;}
.yb5{bottom:111.960000px;}
.yb6{bottom:112.140000px;}
.yb4{bottom:130.140000px;}
.yb3{bottom:148.320000px;}
.yb2{bottom:166.320000px;}
.yb1{bottom:184.500000px;}
.yb0{bottom:202.680000px;}
.y1{bottom:208.650000px;}
.yaf{bottom:220.680000px;}
.y64{bottom:228.450000px;}
.ybc{bottom:229.710000px;}
.y32{bottom:230.070000px;}
.y91{bottom:230.250000px;}
.y118{bottom:230.790000px;}
.ye7{bottom:233.670000px;}
.yae{bottom:238.860000px;}
.y63{bottom:245.730000px;}
.ye6{bottom:247.530000px;}
.y117{bottom:248.430000px;}
.ybb{bottom:248.610000px;}
.y31{bottom:248.970000px;}
.y90{bottom:249.150000px;}
.yad{bottom:256.890000px;}
.y62{bottom:263.010000px;}
.yba{bottom:264.630000px;}
.y116{bottom:266.250000px;}
.y30{bottom:267.690000px;}
.y8f{bottom:268.050000px;}
.y61{bottom:268.230000px;}
.ye5{bottom:268.410000px;}
.y60{bottom:280.290000px;}
.y115{bottom:283.890000px;}
.y5f{bottom:285.510000px;}
.y2f{bottom:286.590000px;}
.y8e{bottom:287.130000px;}
.ye4{bottom:287.490000px;}
.y5e{bottom:299.370000px;}
.y114{bottom:301.710000px;}
.y2e{bottom:305.310000px;}
.y8d{bottom:306.030000px;}
.ye3{bottom:306.390000px;}
.y113{bottom:319.350000px;}
.y5d{bottom:323.670000px;}
.y2d{bottom:324.210000px;}
.y8c{bottom:325.110000px;}
.ye2{bottom:325.290000px;}
.y112{bottom:337.170000px;}
.y5c{bottom:342.570000px;}
.y2c{bottom:342.930000px;}
.y8b{bottom:344.010000px;}
.ye1{bottom:344.370000px;}
.y111{bottom:354.810000px;}
.y5b{bottom:361.650000px;}
.y2b{bottom:361.830000px;}
.y8a{bottom:362.910000px;}
.ye0{bottom:363.270000px;}
.y110{bottom:372.630000px;}
.y5a{bottom:380.550000px;}
.y2a{bottom:380.730000px;}
.y89{bottom:381.990000px;}
.ydf{bottom:382.350000px;}
.y10f{bottom:390.315000px;}
.yac{bottom:395.715000px;}
.y59{bottom:399.495000px;}
.y29{bottom:399.675000px;}
.y88{bottom:400.935000px;}
.yde{bottom:401.295000px;}
.y10e{bottom:408.135000px;}
.y28{bottom:418.575000px;}
.y87{bottom:420.015000px;}
.y10d{bottom:425.775000px;}
.y27{bottom:437.475000px;}
.y86{bottom:438.915000px;}
.y10c{bottom:443.595000px;}
.y26{bottom:456.195000px;}
.y58{bottom:456.555000px;}
.ydd{bottom:457.635000px;}
.y85{bottom:457.995000px;}
.y10b{bottom:461.415000px;}
.y25{bottom:475.095000px;}
.y57{bottom:475.455000px;}
.ydc{bottom:476.535000px;}
.y84{bottom:476.895000px;}
.y10a{bottom:479.055000px;}
.y24{bottom:493.815000px;}
.y56{bottom:494.355000px;}
.ydb{bottom:495.255000px;}
.y83{bottom:495.795000px;}
.y109{bottom:496.875000px;}
.y23{bottom:512.715000px;}
.y55{bottom:513.435000px;}
.yd9{bottom:514.155000px;}
.y108{bottom:514.515000px;}
.y82{bottom:514.875000px;}
.yda{bottom:520.095000px;}
.y107{bottom:530.715000px;}
.y22{bottom:531.615000px;}
.y54{bottom:532.335000px;}
.yd8{bottom:533.235000px;}
.y81{bottom:533.775000px;}
.y106{bottom:542.415000px;}
.y21{bottom:550.335000px;}
.y53{bottom:551.415000px;}
.yd7{bottom:552.135000px;}
.y80{bottom:552.855000px;}
.y105{bottom:560.955000px;}
.y20{bottom:569.235000px;}
.y52{bottom:570.315000px;}
.yd6{bottom:571.035000px;}
.y7f{bottom:571.755000px;}
.y104{bottom:579.675000px;}
.y1f{bottom:587.955000px;}
.y50{bottom:589.215000px;}
.yd5{bottom:590.115000px;}
.y7e{bottom:590.655000px;}
.y51{bottom:595.155000px;}
.y103{bottom:598.215000px;}
.y1e{bottom:606.855000px;}
.y4f{bottom:608.295000px;}
.yd4{bottom:609.015000px;}
.y7d{bottom:609.735000px;}
.y102{bottom:616.755000px;}
.y1d{bottom:625.575000px;}
.y4d{bottom:627.195000px;}
.yd3{bottom:628.095000px;}
.y7c{bottom:628.635000px;}
.y4e{bottom:633.135000px;}
.y101{bottom:635.295000px;}
.y1c{bottom:644.505000px;}
.y4c{bottom:646.305000px;}
.yd2{bottom:647.025000px;}
.y7b{bottom:647.745000px;}
.y100{bottom:653.865000px;}
.y1b{bottom:663.225000px;}
.y4b{bottom:665.205000px;}
.yd1{bottom:665.925000px;}
.y7a{bottom:666.645000px;}
.yab{bottom:668.085000px;}
.yff{bottom:672.585000px;}
.y1a{bottom:682.125000px;}
.y4a{bottom:684.285000px;}
.yd0{bottom:684.825000px;}
.y79{bottom:685.545000px;}
.yfe{bottom:691.125000px;}
.y49{bottom:703.185000px;}
.ycf{bottom:703.725000px;}
.y78{bottom:704.625000px;}
.yaa{bottom:706.965000px;}
.yfd{bottom:709.665000px;}
.ya9{bottom:714.885000px;}
.y19{bottom:718.305000px;}
.y48{bottom:722.085000px;}
.yce{bottom:722.625000px;}
.y77{bottom:723.525000px;}
.yfc{bottom:728.205000px;}
.y18{bottom:730.005000px;}
.ya8{bottom:733.785000px;}
.y47{bottom:741.165000px;}
.ycd{bottom:741.345000px;}
.y76{bottom:742.605000px;}
.yfb{bottom:746.925000px;}
.y17{bottom:748.185000px;}
.ya7{bottom:752.865000px;}
.y46{bottom:760.065000px;}
.ycc{bottom:760.245000px;}
.y75{bottom:761.505000px;}
.yfa{bottom:765.825000px;}
.y16{bottom:766.185000px;}
.ya6{bottom:771.765000px;}
.ycb{bottom:778.965000px;}
.y45{bottom:779.145000px;}
.y74{bottom:780.405000px;}
.y15{bottom:784.365000px;}
.yf9{bottom:784.545000px;}
.ya5{bottom:790.665000px;}
.yca{bottom:797.865000px;}
.y44{bottom:798.045000px;}
.y73{bottom:799.485000px;}
.y14{bottom:802.545000px;}
.yf8{bottom:803.445000px;}
.ya4{bottom:809.745000px;}
.yc9{bottom:816.585000px;}
.y43{bottom:816.945000px;}
.y72{bottom:818.385000px;}
.y13{bottom:820.545000px;}
.yf7{bottom:822.165000px;}
.ya3{bottom:828.645000px;}
.yc8{bottom:835.485000px;}
.y42{bottom:836.025000px;}
.y71{bottom:837.105000px;}
.y12{bottom:838.725000px;}
.yf6{bottom:841.065000px;}
.ya2{bottom:847.725000px;}
.yc7{bottom:854.565000px;}
.y41{bottom:854.925000px;}
.y70{bottom:856.005000px;}
.y11{bottom:856.905000px;}
.yf5{bottom:859.785000px;}
.ya1{bottom:866.625000px;}
.yc6{bottom:873.465000px;}
.y40{bottom:874.005000px;}
.y6f{bottom:874.725000px;}
.y10{bottom:874.905000px;}
.yf4{bottom:878.685000px;}
.ya0{bottom:885.525000px;}
.yc5{bottom:892.365000px;}
.y3f{bottom:892.950000px;}
.yf{bottom:893.130000px;}
.y6e{bottom:893.670000px;}
.yf3{bottom:897.450000px;}
.y9f{bottom:904.650000px;}
.ye{bottom:909.870000px;}
.yc4{bottom:911.490000px;}
.y3e{bottom:911.850000px;}
.y6d{bottom:912.570000px;}
.yf2{bottom:915.990000px;}
.y9e{bottom:920.850000px;}
.yd{bottom:921.570000px;}
.y97{bottom:925.890000px;}
.yc3{bottom:930.390000px;}
.y3d{bottom:930.930000px;}
.y6c{bottom:931.290000px;}
.yf1{bottom:934.530000px;}
.yc{bottom:939.570000px;}
.yc2{bottom:949.470000px;}
.y3c{bottom:949.830000px;}
.y6b{bottom:950.370000px;}
.yf0{bottom:953.070000px;}
.yb{bottom:957.750000px;}
.yc1{bottom:968.370000px;}
.y3b{bottom:968.910000px;}
.y6a{bottom:969.270000px;}
.yef{bottom:971.790000px;}
.ya{bottom:975.930000px;}
.yc0{bottom:987.270000px;}
.y3a{bottom:987.810000px;}
.y69{bottom:987.990000px;}
.yee{bottom:990.330000px;}
.y9{bottom:992.670000px;}
.y8{bottom:1004.550000px;}
.ybf{bottom:1006.350000px;}
.y39{bottom:1006.710000px;}
.y68{bottom:1006.890000px;}
.yed{bottom:1008.870000px;}
.ybe{bottom:1025.250000px;}
.y67{bottom:1025.610000px;}
.y38{bottom:1025.790000px;}
.yec{bottom:1027.410000px;}
.y11e{bottom:1030.290000px;}
.y93{bottom:1035.330000px;}
.y7{bottom:1040.910000px;}
.ybd{bottom:1044.330000px;}
.y66{bottom:1044.510000px;}
.y37{bottom:1044.690000px;}
.yeb{bottom:1045.950000px;}
.y11d{bottom:1048.290000px;}
.y6{bottom:1052.970000px;}
.y65{bottom:1063.230000px;}
.y36{bottom:1063.770000px;}
.yea{bottom:1064.670000px;}
.y11c{bottom:1066.470000px;}
.y5{bottom:1070.250000px;}
.y92{bottom:1074.210000px;}
.y4{bottom:1082.130000px;}
.y35{bottom:1082.670000px;}
.ye9{bottom:1083.210000px;}
.y11b{bottom:1084.470000px;}
.y3{bottom:1101.210000px;}
.y34{bottom:1101.390000px;}
.ye8{bottom:1101.750000px;}
.y11a{bottom:1102.650000px;}
.y2{bottom:1120.110000px;}
.y33{bottom:1120.290000px;}
.y119{bottom:1120.830000px;}
.h19{height:12.012891px;}
.h11{height:17.666016px;}
.h15{height:18.140625px;}
.h6{height:35.314453px;}
.ha{height:35.332031px;}
.h4{height:36.281250px;}
.h16{height:37.080000px;}
.h12{height:37.260000px;}
.he{height:38.158594px;}
.hc{height:40.985156px;}
.h2{height:52.998047px;}
.h14{height:56.801250px;}
.hf{height:58.651172px;}
.h1a{height:59.221406px;}
.hd{height:60.855469px;}
.h8{height:62.153438px;}
.h9{height:62.184375px;}
.h7{height:63.855000px;}
.h3{height:64.978594px;}
.hb{height:65.010937px;}
.h1c{height:65.124096px;}
.h5{height:66.757500px;}
.h1b{height:68.084282px;}
.h10{height:68.956875px;}
.h13{height:108.540000px;}
.h18{height:126.936000px;}
.h17{height:271.650000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:73.260000px;}
.wb{width:73.836000px;}
.w6{width:86.436000px;}
.w5{width:90.396000px;}
.w7{width:95.760000px;}
.wc{width:98.280000px;}
.w4{width:99.540000px;}
.wa{width:158.790000px;}
.wd{width:208.515000px;}
.w8{width:237.675000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:1.440000px;}
.x21{left:2.880000px;}
.x25{left:4.140000px;}
.x18{left:5.760000px;}
.x17{left:7.380000px;}
.x1b{left:10.440000px;}
.x13{left:13.494000px;}
.x15{left:14.625000px;}
.x12{left:16.554000px;}
.x1a{left:20.340000px;}
.x26{left:23.940000px;}
.x23{left:51.165000px;}
.x28{left:67.905000px;}
.x1d{left:79.965000px;}
.x20{left:138.816000px;}
.x5{left:140.435987px;}
.x2c{left:147.815987px;}
.x29{left:151.049987px;}
.x6{left:163.649987px;}
.x4{left:169.409987px;}
.xd{left:172.469987px;}
.x11{left:182.189987px;}
.x1f{left:193.529987px;}
.x22{left:212.790000px;}
.x14{left:240.510000px;}
.x3{left:247.934987px;}
.x2{left:327.674987px;}
.x16{left:331.635000px;}
.xe{left:339.014973px;}
.xf{left:349.454987px;}
.x10{left:356.474987px;}
.x24{left:372.315000px;}
.x19{left:418.785000px;}
.x1{left:439.844987px;}
.x8{left:444.524987px;}
.x7{left:446.684987px;}
.xb{left:505.724987px;}
.x1c{left:515.265000px;}
.x9{left:535.964987px;}
.x27{left:545.865000px;}
.xa{left:581.729987px;}
.x2a{left:614.849973px;}
.x2b{left:625.289987px;}
.xc{left:752.939987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-6.758400pt;}
.ls1d{letter-spacing:-2.880000pt;}
.ls1e{letter-spacing:-2.083840pt;}
.ls1f{letter-spacing:-2.027520pt;}
.ls19{letter-spacing:-1.413333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.342933pt;}
.ls20{letter-spacing:-0.337920pt;}
.ls6{letter-spacing:-0.297067pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.169067pt;}
.ls12{letter-spacing:-0.051200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.135680pt;}
.ls13{letter-spacing:0.189333pt;}
.ls9{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.342933pt;}
.lsf{letter-spacing:5.760000pt;}
.ls8{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:15.631360pt;}
.ls10{letter-spacing:17.551360pt;}
.ls1a{letter-spacing:18.831360pt;}
.ls1c{letter-spacing:29.783040pt;}
.ls18{letter-spacing:37.072640pt;}
.lse{letter-spacing:38.992640pt;}
.ls2{letter-spacing:105.898667pt;}
.ls1{letter-spacing:432.458667pt;}
.ws2{word-spacing:-58.880000pt;}
.wsd{word-spacing:-56.320000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.269333pt;}
.wsf{word-spacing:-14.176000pt;}
.ws4{word-spacing:-14.080000pt;}
.wsb{word-spacing:-14.028800pt;}
.ws10{word-spacing:-13.910933pt;}
.wsc{word-spacing:-13.782933pt;}
.ws12{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.306667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.052480pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-4.414293pt;}
._b{margin-left:-3.418453pt;}
._a{margin-left:-2.408960pt;}
._0{margin-left:-1.507840pt;}
._1{width:1.020587pt;}
._2{width:2.219520pt;}
._7{width:3.510613pt;}
._5{width:4.618240pt;}
._6{width:5.606400pt;}
._4{width:6.814720pt;}
._3{width:8.040960pt;}
._c{width:9.076480pt;}
._9{width:10.081280pt;}
._8{width:11.363840pt;}
._e{width:12.672000pt;}
._14{width:13.777920pt;}
._10{width:15.656960pt;}
._15{width:16.645120pt;}
._18{width:19.544320pt;}
._16{width:20.549120pt;}
._17{width:21.769387pt;}
._f{width:23.992320pt;}
._13{width:32.947200pt;}
._11{width:38.522880pt;}
._12{width:39.842560pt;}
._19{width:45.418667pt;}
.fs9{font-size:10.880000pt;}
.fs8{font-size:16.000000pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.040000pt;}
.y95{bottom:3.520000pt;}
.y96{bottom:11.520000pt;}
.y9c{bottom:19.040000pt;}
.yb9{bottom:19.200000pt;}
.y94{bottom:19.520000pt;}
.y9b{bottom:35.200000pt;}
.yb8{bottom:35.360000pt;}
.y9a{bottom:51.360000pt;}
.y99{bottom:67.360000pt;}
.yb7{bottom:67.520000pt;}
.y98{bottom:83.520000pt;}
.yb5{bottom:99.520000pt;}
.yb6{bottom:99.680000pt;}
.yb4{bottom:115.680000pt;}
.yb3{bottom:131.840000pt;}
.yb2{bottom:147.840000pt;}
.yb1{bottom:164.000000pt;}
.yb0{bottom:180.160000pt;}
.y1{bottom:185.466667pt;}
.yaf{bottom:196.160000pt;}
.y64{bottom:203.066667pt;}
.ybc{bottom:204.186667pt;}
.y32{bottom:204.506667pt;}
.y91{bottom:204.666667pt;}
.y118{bottom:205.146667pt;}
.ye7{bottom:207.706667pt;}
.yae{bottom:212.320000pt;}
.y63{bottom:218.426667pt;}
.ye6{bottom:220.026667pt;}
.y117{bottom:220.826667pt;}
.ybb{bottom:220.986667pt;}
.y31{bottom:221.306667pt;}
.y90{bottom:221.466667pt;}
.yad{bottom:228.346667pt;}
.y62{bottom:233.786667pt;}
.yba{bottom:235.226667pt;}
.y116{bottom:236.666667pt;}
.y30{bottom:237.946667pt;}
.y8f{bottom:238.266667pt;}
.y61{bottom:238.426667pt;}
.ye5{bottom:238.586667pt;}
.y60{bottom:249.146667pt;}
.y115{bottom:252.346667pt;}
.y5f{bottom:253.786667pt;}
.y2f{bottom:254.746667pt;}
.y8e{bottom:255.226667pt;}
.ye4{bottom:255.546667pt;}
.y5e{bottom:266.106667pt;}
.y114{bottom:268.186667pt;}
.y2e{bottom:271.386667pt;}
.y8d{bottom:272.026667pt;}
.ye3{bottom:272.346667pt;}
.y113{bottom:283.866667pt;}
.y5d{bottom:287.706667pt;}
.y2d{bottom:288.186667pt;}
.y8c{bottom:288.986667pt;}
.ye2{bottom:289.146667pt;}
.y112{bottom:299.706667pt;}
.y5c{bottom:304.506667pt;}
.y2c{bottom:304.826667pt;}
.y8b{bottom:305.786667pt;}
.ye1{bottom:306.106667pt;}
.y111{bottom:315.386667pt;}
.y5b{bottom:321.466667pt;}
.y2b{bottom:321.626667pt;}
.y8a{bottom:322.586667pt;}
.ye0{bottom:322.906667pt;}
.y110{bottom:331.226667pt;}
.y5a{bottom:338.266667pt;}
.y2a{bottom:338.426667pt;}
.y89{bottom:339.546667pt;}
.ydf{bottom:339.866667pt;}
.y10f{bottom:346.946667pt;}
.yac{bottom:351.746667pt;}
.y59{bottom:355.106667pt;}
.y29{bottom:355.266667pt;}
.y88{bottom:356.386667pt;}
.yde{bottom:356.706667pt;}
.y10e{bottom:362.786667pt;}
.y28{bottom:372.066667pt;}
.y87{bottom:373.346667pt;}
.y10d{bottom:378.466667pt;}
.y27{bottom:388.866667pt;}
.y86{bottom:390.146667pt;}
.y10c{bottom:394.306667pt;}
.y26{bottom:405.506667pt;}
.y58{bottom:405.826667pt;}
.ydd{bottom:406.786667pt;}
.y85{bottom:407.106667pt;}
.y10b{bottom:410.146667pt;}
.y25{bottom:422.306667pt;}
.y57{bottom:422.626667pt;}
.ydc{bottom:423.586667pt;}
.y84{bottom:423.906667pt;}
.y10a{bottom:425.826667pt;}
.y24{bottom:438.946667pt;}
.y56{bottom:439.426667pt;}
.ydb{bottom:440.226667pt;}
.y83{bottom:440.706667pt;}
.y109{bottom:441.666667pt;}
.y23{bottom:455.746667pt;}
.y55{bottom:456.386667pt;}
.yd9{bottom:457.026667pt;}
.y108{bottom:457.346667pt;}
.y82{bottom:457.666667pt;}
.yda{bottom:462.306667pt;}
.y107{bottom:471.746667pt;}
.y22{bottom:472.546667pt;}
.y54{bottom:473.186667pt;}
.yd8{bottom:473.986667pt;}
.y81{bottom:474.466667pt;}
.y106{bottom:482.146667pt;}
.y21{bottom:489.186667pt;}
.y53{bottom:490.146667pt;}
.yd7{bottom:490.786667pt;}
.y80{bottom:491.426667pt;}
.y105{bottom:498.626667pt;}
.y20{bottom:505.986667pt;}
.y52{bottom:506.946667pt;}
.yd6{bottom:507.586667pt;}
.y7f{bottom:508.226667pt;}
.y104{bottom:515.266667pt;}
.y1f{bottom:522.626667pt;}
.y50{bottom:523.746667pt;}
.yd5{bottom:524.546667pt;}
.y7e{bottom:525.026667pt;}
.y51{bottom:529.026667pt;}
.y103{bottom:531.746667pt;}
.y1e{bottom:539.426667pt;}
.y4f{bottom:540.706667pt;}
.yd4{bottom:541.346667pt;}
.y7d{bottom:541.986667pt;}
.y102{bottom:548.226667pt;}
.y1d{bottom:556.066667pt;}
.y4d{bottom:557.506667pt;}
.yd3{bottom:558.306667pt;}
.y7c{bottom:558.786667pt;}
.y4e{bottom:562.786667pt;}
.y101{bottom:564.706667pt;}
.y1c{bottom:572.893333pt;}
.y4c{bottom:574.493333pt;}
.yd2{bottom:575.133333pt;}
.y7b{bottom:575.773333pt;}
.y100{bottom:581.213333pt;}
.y1b{bottom:589.533333pt;}
.y4b{bottom:591.293333pt;}
.yd1{bottom:591.933333pt;}
.y7a{bottom:592.573333pt;}
.yab{bottom:593.853333pt;}
.yff{bottom:597.853333pt;}
.y1a{bottom:606.333333pt;}
.y4a{bottom:608.253333pt;}
.yd0{bottom:608.733333pt;}
.y79{bottom:609.373333pt;}
.yfe{bottom:614.333333pt;}
.y49{bottom:625.053333pt;}
.ycf{bottom:625.533333pt;}
.y78{bottom:626.333333pt;}
.yaa{bottom:628.413333pt;}
.yfd{bottom:630.813333pt;}
.ya9{bottom:635.453333pt;}
.y19{bottom:638.493333pt;}
.y48{bottom:641.853333pt;}
.yce{bottom:642.333333pt;}
.y77{bottom:643.133333pt;}
.yfc{bottom:647.293333pt;}
.y18{bottom:648.893333pt;}
.ya8{bottom:652.253333pt;}
.y47{bottom:658.813333pt;}
.ycd{bottom:658.973333pt;}
.y76{bottom:660.093333pt;}
.yfb{bottom:663.933333pt;}
.y17{bottom:665.053333pt;}
.ya7{bottom:669.213333pt;}
.y46{bottom:675.613333pt;}
.ycc{bottom:675.773333pt;}
.y75{bottom:676.893333pt;}
.yfa{bottom:680.733333pt;}
.y16{bottom:681.053333pt;}
.ya6{bottom:686.013333pt;}
.ycb{bottom:692.413333pt;}
.y45{bottom:692.573333pt;}
.y74{bottom:693.693333pt;}
.y15{bottom:697.213333pt;}
.yf9{bottom:697.373333pt;}
.ya5{bottom:702.813333pt;}
.yca{bottom:709.213333pt;}
.y44{bottom:709.373333pt;}
.y73{bottom:710.653333pt;}
.y14{bottom:713.373333pt;}
.yf8{bottom:714.173333pt;}
.ya4{bottom:719.773333pt;}
.yc9{bottom:725.853333pt;}
.y43{bottom:726.173333pt;}
.y72{bottom:727.453333pt;}
.y13{bottom:729.373333pt;}
.yf7{bottom:730.813333pt;}
.ya3{bottom:736.573333pt;}
.yc8{bottom:742.653333pt;}
.y42{bottom:743.133333pt;}
.y71{bottom:744.093333pt;}
.y12{bottom:745.533333pt;}
.yf6{bottom:747.613333pt;}
.ya2{bottom:753.533333pt;}
.yc7{bottom:759.613333pt;}
.y41{bottom:759.933333pt;}
.y70{bottom:760.893333pt;}
.y11{bottom:761.693333pt;}
.yf5{bottom:764.253333pt;}
.ya1{bottom:770.333333pt;}
.yc6{bottom:776.413333pt;}
.y40{bottom:776.893333pt;}
.y6f{bottom:777.533333pt;}
.y10{bottom:777.693333pt;}
.yf4{bottom:781.053333pt;}
.ya0{bottom:787.133333pt;}
.yc5{bottom:793.213333pt;}
.y3f{bottom:793.733333pt;}
.yf{bottom:793.893333pt;}
.y6e{bottom:794.373333pt;}
.yf3{bottom:797.733333pt;}
.y9f{bottom:804.133333pt;}
.ye{bottom:808.773333pt;}
.yc4{bottom:810.213333pt;}
.y3e{bottom:810.533333pt;}
.y6d{bottom:811.173333pt;}
.yf2{bottom:814.213333pt;}
.y9e{bottom:818.533333pt;}
.yd{bottom:819.173333pt;}
.y97{bottom:823.013333pt;}
.yc3{bottom:827.013333pt;}
.y3d{bottom:827.493333pt;}
.y6c{bottom:827.813333pt;}
.yf1{bottom:830.693333pt;}
.yc{bottom:835.173333pt;}
.yc2{bottom:843.973333pt;}
.y3c{bottom:844.293333pt;}
.y6b{bottom:844.773333pt;}
.yf0{bottom:847.173333pt;}
.yb{bottom:851.333333pt;}
.yc1{bottom:860.773333pt;}
.y3b{bottom:861.253333pt;}
.y6a{bottom:861.573333pt;}
.yef{bottom:863.813333pt;}
.ya{bottom:867.493333pt;}
.yc0{bottom:877.573333pt;}
.y3a{bottom:878.053333pt;}
.y69{bottom:878.213333pt;}
.yee{bottom:880.293333pt;}
.y9{bottom:882.373333pt;}
.y8{bottom:892.933333pt;}
.ybf{bottom:894.533333pt;}
.y39{bottom:894.853333pt;}
.y68{bottom:895.013333pt;}
.yed{bottom:896.773333pt;}
.ybe{bottom:911.333333pt;}
.y67{bottom:911.653333pt;}
.y38{bottom:911.813333pt;}
.yec{bottom:913.253333pt;}
.y11e{bottom:915.813333pt;}
.y93{bottom:920.293333pt;}
.y7{bottom:925.253333pt;}
.ybd{bottom:928.293333pt;}
.y66{bottom:928.453333pt;}
.y37{bottom:928.613333pt;}
.yeb{bottom:929.733333pt;}
.y11d{bottom:931.813333pt;}
.y6{bottom:935.973333pt;}
.y65{bottom:945.093333pt;}
.y36{bottom:945.573333pt;}
.yea{bottom:946.373333pt;}
.y11c{bottom:947.973333pt;}
.y5{bottom:951.333333pt;}
.y92{bottom:954.853333pt;}
.y4{bottom:961.893333pt;}
.y35{bottom:962.373333pt;}
.ye9{bottom:962.853333pt;}
.y11b{bottom:963.973333pt;}
.y3{bottom:978.853333pt;}
.y34{bottom:979.013333pt;}
.ye8{bottom:979.333333pt;}
.y11a{bottom:980.133333pt;}
.y2{bottom:995.653333pt;}
.y33{bottom:995.813333pt;}
.y119{bottom:996.293333pt;}
.h19{height:10.678125pt;}
.h11{height:15.703125pt;}
.h15{height:16.125000pt;}
.h6{height:31.390625pt;}
.ha{height:31.406250pt;}
.h4{height:32.250000pt;}
.h16{height:32.960000pt;}
.h12{height:33.120000pt;}
.he{height:33.918750pt;}
.hc{height:36.431250pt;}
.h2{height:47.109375pt;}
.h14{height:50.490000pt;}
.hf{height:52.134375pt;}
.h1a{height:52.641250pt;}
.hd{height:54.093750pt;}
.h8{height:55.247500pt;}
.h9{height:55.275000pt;}
.h7{height:56.760000pt;}
.h3{height:57.758750pt;}
.hb{height:57.787500pt;}
.h1c{height:57.888085pt;}
.h5{height:59.340000pt;}
.h1b{height:60.519362pt;}
.h10{height:61.295000pt;}
.h13{height:96.480000pt;}
.h18{height:112.832000pt;}
.h17{height:241.466667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:65.120000pt;}
.wb{width:65.632000pt;}
.w6{width:76.832000pt;}
.w5{width:80.352000pt;}
.w7{width:85.120000pt;}
.wc{width:87.360000pt;}
.w4{width:88.480000pt;}
.wa{width:141.146667pt;}
.wd{width:185.346667pt;}
.w8{width:211.266667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.280000pt;}
.x21{left:2.560000pt;}
.x25{left:3.680000pt;}
.x18{left:5.120000pt;}
.x17{left:6.560000pt;}
.x1b{left:9.280000pt;}
.x13{left:11.994667pt;}
.x15{left:13.000000pt;}
.x12{left:14.714667pt;}
.x1a{left:18.080000pt;}
.x26{left:21.280000pt;}
.x23{left:45.480000pt;}
.x28{left:60.360000pt;}
.x1d{left:71.080000pt;}
.x20{left:123.392000pt;}
.x5{left:124.831988pt;}
.x2c{left:131.391988pt;}
.x29{left:134.266655pt;}
.x6{left:145.466655pt;}
.x4{left:150.586655pt;}
.xd{left:153.306655pt;}
.x11{left:161.946655pt;}
.x1f{left:172.026655pt;}
.x22{left:189.146667pt;}
.x14{left:213.786667pt;}
.x3{left:220.386655pt;}
.x2{left:291.266655pt;}
.x16{left:294.786667pt;}
.xe{left:301.346643pt;}
.xf{left:310.626655pt;}
.x10{left:316.866655pt;}
.x24{left:330.946667pt;}
.x19{left:372.253333pt;}
.x1{left:390.973322pt;}
.x8{left:395.133322pt;}
.x7{left:397.053322pt;}
.xb{left:449.533322pt;}
.x1c{left:458.013333pt;}
.x9{left:476.413322pt;}
.x27{left:485.213333pt;}
.xa{left:517.093322pt;}
.x2a{left:546.533310pt;}
.x2b{left:555.813322pt;}
.xc{left:669.279988pt;}
}




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