
    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_9e3ac2f40164d81283c9a616.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_bf683c09a4497e4f487633b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_14f4586e50b947740803c655.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_1b6d800af9973dab17c9cadd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_c1c2384c111eabcb0853d09e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_7459fa6af6399612eb1ee8de.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_59c3a7759850c9d90a776b0b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6d06f95395e899a25ce326a0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_c4fa059f7f404aeedf54de48.woff')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_725e859f4cbcef1720a7fbda.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_22811665e800f5ac111f3f0b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_882852bf3be3daf8c1c95f49.woff')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.234000px;}
.ls11{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.311040px;}
.ls10{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.900000px;}
.ls8{letter-spacing:3.060000px;}
.ls2{letter-spacing:5.220000px;}
.ls4{letter-spacing:8.820000px;}
.ls18{letter-spacing:16.506720px;}
.ls16{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.wsa{word-spacing:-11.880000px;}
.ws3{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:2.196000px;}
.wsb{word-spacing:33.204000px;}
.wsd{word-spacing:181.086000px;}
._a{margin-left:-1782.456480px;}
._9{margin-left:-1161.340320px;}
._b{margin-left:-875.612160px;}
._1c{margin-left:-776.252160px;}
._6{margin-left:-681.448320px;}
._7{margin-left:-262.517760px;}
._11{margin-left:-232.839360px;}
._f{margin-left:-231.264000px;}
._c{margin-left:-182.136000px;}
._1e{margin-left:-149.016000px;}
._8{margin-left:-140.955840px;}
._1d{margin-left:-132.480000px;}
._e{margin-left:-115.200000px;}
._d{margin-left:-66.240000px;}
._1a{margin-left:-4.165440px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._18{width:2.495040px;}
._19{width:4.339920px;}
._1b{width:5.400480px;}
._17{width:6.453840px;}
._12{width:8.105520px;}
._13{width:9.926880px;}
._16{width:11.234880px;}
._2c{width:12.310080px;}
._31{width:13.468320px;}
._2e{width:15.420000px;}
._36{width:16.912080px;}
._10{width:18.216000px;}
._35{width:19.656000px;}
._32{width:21.573120px;}
._33{width:22.678320px;}
._2d{width:30.084000px;}
._15{width:38.138640px;}
._14{width:39.281040px;}
._25{width:63.397440px;}
._30{width:86.343840px;}
._2f{width:87.488640px;}
._24{width:108.970920px;}
._23{width:125.424000px;}
._20{width:129.850560px;}
._21{width:139.770720px;}
._22{width:144.576960px;}
._26{width:158.057280px;}
._27{width:161.344080px;}
._28{width:164.690640px;}
._29{width:167.977440px;}
._34{width:169.419360px;}
._1f{width:171.324000px;}
._2b{width:177.957360px;}
._2a{width:181.303920px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1341.536640px;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y61{bottom:2.520000px;}
.y23{bottom:5.760000px;}
.y8c{bottom:5.805000px;}
.y9e{bottom:5.940000px;}
.y8e{bottom:6.480000px;}
.y92{bottom:6.660000px;}
.y13{bottom:7.560000px;}
.y30{bottom:8.460000px;}
.y6{bottom:11.880000px;}
.ye9{bottom:18.465000px;}
.y22{bottom:23.040000px;}
.y2f{bottom:28.260000px;}
.y5{bottom:40.320000px;}
.y21{bottom:42.840000px;}
.y2e{bottom:45.540000px;}
.ye8{bottom:55.905000px;}
.ya{bottom:59.220000px;}
.y20{bottom:62.820000px;}
.y2d{bottom:65.340000px;}
.y4{bottom:68.940000px;}
.ye7{bottom:70.890000px;}
.ye6{bottom:77.685000px;}
.y1f{bottom:82.620000px;}
.y2c{bottom:85.140000px;}
.y10d{bottom:87.120000px;}
.y46{bottom:88.560000px;}
.y8{bottom:90.210000px;}
.yb5{bottom:90.720000px;}
.yd9{bottom:93.780000px;}
.ydb{bottom:94.710000px;}
.y3{bottom:97.590000px;}
.y74{bottom:101.160000px;}
.y8a{bottom:101.340000px;}
.y1e{bottom:102.420000px;}
.y2b{bottom:104.940000px;}
.y10c{bottom:107.100000px;}
.y45{bottom:108.360000px;}
.yb4{bottom:110.700000px;}
.ydc{bottom:113.190000px;}
.yd8{bottom:113.580000px;}
.y73{bottom:120.960000px;}
.y89{bottom:121.140000px;}
.y1d{bottom:122.250000px;}
.y2a{bottom:124.950000px;}
.y10b{bottom:126.900000px;}
.y44{bottom:128.160000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.yb3{bottom:130.500000px;}
.ydd{bottom:131.655000px;}
.yd7{bottom:133.380000px;}
.y72{bottom:140.760000px;}
.y88{bottom:140.940000px;}
.y1c{bottom:142.050000px;}
.y29{bottom:144.750000px;}
.y10a{bottom:146.700000px;}
.y43{bottom:147.960000px;}
.yde{bottom:150.090000px;}
.yb2{bottom:150.300000px;}
.yd6{bottom:153.210000px;}
.y71{bottom:160.590000px;}
.y87{bottom:160.770000px;}
.y1b{bottom:162.030000px;}
.y28{bottom:164.550000px;}
.y109{bottom:166.530000px;}
.y42{bottom:167.790000px;}
.ydf{bottom:168.555000px;}
.yb1{bottom:170.130000px;}
.yd5{bottom:173.190000px;}
.y70{bottom:180.390000px;}
.y86{bottom:180.750000px;}
.y1a{bottom:181.830000px;}
.y27{bottom:184.350000px;}
.y108{bottom:186.330000px;}
.ye0{bottom:187.020000px;}
.y41{bottom:187.770000px;}
.yb0{bottom:189.930000px;}
.yd4{bottom:192.990000px;}
.y6f{bottom:200.370000px;}
.y85{bottom:200.550000px;}
.y19{bottom:201.630000px;}
.y26{bottom:204.150000px;}
.ye1{bottom:205.485000px;}
.y107{bottom:206.310000px;}
.y40{bottom:207.570000px;}
.yaf{bottom:209.910000px;}
.yd3{bottom:212.790000px;}
.y6e{bottom:220.170000px;}
.y84{bottom:220.350000px;}
.y18{bottom:221.430000px;}
.ye2{bottom:223.920000px;}
.y25{bottom:224.130000px;}
.y106{bottom:226.110000px;}
.y3f{bottom:227.370000px;}
.yae{bottom:229.710000px;}
.yd2{bottom:232.590000px;}
.y6d{bottom:239.970000px;}
.y83{bottom:240.150000px;}
.y17{bottom:241.230000px;}
.ye3{bottom:242.385000px;}
.y24{bottom:243.930000px;}
.y105{bottom:245.910000px;}
.y3e{bottom:247.170000px;}
.yad{bottom:249.510000px;}
.yd1{bottom:252.390000px;}
.y6c{bottom:259.770000px;}
.y82{bottom:259.950000px;}
.ye4{bottom:260.850000px;}
.y16{bottom:261.210000px;}
.y104{bottom:265.710000px;}
.y3d{bottom:266.970000px;}
.yac{bottom:269.310000px;}
.yd0{bottom:272.370000px;}
.ye5{bottom:279.330000px;}
.y6b{bottom:279.570000px;}
.y81{bottom:279.930000px;}
.y15{bottom:281.010000px;}
.y103{bottom:285.510000px;}
.y3c{bottom:286.950000px;}
.yab{bottom:289.110000px;}
.ycf{bottom:292.170000px;}
.y6a{bottom:299.550000px;}
.y80{bottom:299.730000px;}
.y102{bottom:305.490000px;}
.y3b{bottom:306.750000px;}
.yaa{bottom:309.090000px;}
.yce{bottom:311.970000px;}
.y69{bottom:319.350000px;}
.y7f{bottom:319.530000px;}
.y101{bottom:325.290000px;}
.y3a{bottom:326.550000px;}
.ya9{bottom:328.890000px;}
.ycd{bottom:331.770000px;}
.y7e{bottom:336.090000px;}
.y68{bottom:339.150000px;}
.y100{bottom:345.090000px;}
.y39{bottom:346.350000px;}
.ya8{bottom:348.690000px;}
.ycc{bottom:351.570000px;}
.y67{bottom:358.950000px;}
.yff{bottom:364.890000px;}
.y38{bottom:366.150000px;}
.ycb{bottom:366.510000px;}
.ya7{bottom:368.490000px;}
.y66{bottom:378.750000px;}
.yfe{bottom:384.690000px;}
.y37{bottom:386.130000px;}
.yca{bottom:386.310000px;}
.ya6{bottom:388.290000px;}
.y65{bottom:398.730000px;}
.yfd{bottom:404.715000px;}
.y36{bottom:405.975000px;}
.yc9{bottom:406.155000px;}
.ya5{bottom:408.315000px;}
.y64{bottom:418.575000px;}
.yfc{bottom:424.515000px;}
.y35{bottom:425.775000px;}
.yc8{bottom:425.955000px;}
.ya4{bottom:428.115000px;}
.y63{bottom:438.375000px;}
.yfb{bottom:444.315000px;}
.y34{bottom:445.575000px;}
.yc7{bottom:445.755000px;}
.ya3{bottom:447.915000px;}
.y62{bottom:452.415000px;}
.yfa{bottom:464.115000px;}
.y33{bottom:465.375000px;}
.yc6{bottom:466.455000px;}
.ya2{bottom:467.715000px;}
.y60{bottom:472.215000px;}
.yf9{bottom:483.915000px;}
.y32{bottom:485.355000px;}
.ya1{bottom:487.515000px;}
.yc5{bottom:492.735000px;}
.yf8{bottom:503.895000px;}
.y31{bottom:505.155000px;}
.ya0{bottom:507.495000px;}
.yc4{bottom:512.535000px;}
.yf7{bottom:523.695000px;}
.y9f{bottom:527.295000px;}
.yc3{bottom:532.515000px;}
.y14{bottom:539.715000px;}
.y9d{bottom:543.495000px;}
.yc2{bottom:552.315000px;}
.yf6{bottom:563.295000px;}
.y9c{bottom:565.635000px;}
.yc1{bottom:572.115000px;}
.yf5{bottom:583.095000px;}
.y9b{bottom:589.575000px;}
.yc0{bottom:591.915000px;}
.y7d{bottom:594.075000px;}
.yf4{bottom:603.075000px;}
.ybf{bottom:611.715000px;}
.y9a{bottom:612.435000px;}
.y7c{bottom:613.875000px;}
.yf3{bottom:622.875000px;}
.ybe{bottom:631.695000px;}
.y7b{bottom:633.675000px;}
.y99{bottom:636.195000px;}
.yf2{bottom:642.675000px;}
.ybd{bottom:651.525000px;}
.y7a{bottom:653.505000px;}
.y98{bottom:659.085000px;}
.yf1{bottom:662.505000px;}
.ybc{bottom:671.325000px;}
.y79{bottom:673.305000px;}
.y97{bottom:681.945000px;}
.yf0{bottom:682.305000px;}
.ybb{bottom:691.125000px;}
.y5f{bottom:693.285000px;}
.yef{bottom:702.285000px;}
.y96{bottom:705.885000px;}
.yba{bottom:710.925000px;}
.y5e{bottom:713.085000px;}
.yee{bottom:722.085000px;}
.y95{bottom:728.745000px;}
.yb9{bottom:730.905000px;}
.y5d{bottom:732.885000px;}
.yed{bottom:741.885000px;}
.yb8{bottom:750.705000px;}
.y94{bottom:752.505000px;}
.y5c{bottom:752.685000px;}
.yec{bottom:761.685000px;}
.yb7{bottom:770.505000px;}
.y5b{bottom:772.485000px;}
.y93{bottom:775.365000px;}
.yeb{bottom:781.485000px;}
.yb6{bottom:787.065000px;}
.yda{bottom:788.040000px;}
.y5a{bottom:792.465000px;}
.y91{bottom:799.305000px;}
.yea{bottom:801.465000px;}
.y78{bottom:812.265000px;}
.y59{bottom:821.265000px;}
.y90{bottom:822.165000px;}
.y77{bottom:832.065000px;}
.y12{bottom:835.485000px;}
.y58{bottom:841.065000px;}
.y8f{bottom:846.105000px;}
.y76{bottom:851.865000px;}
.y57{bottom:860.865000px;}
.y11{bottom:868.065000px;}
.y8d{bottom:868.965000px;}
.y75{bottom:871.665000px;}
.y56{bottom:880.665000px;}
.y8b{bottom:892.545000px;}
.y10{bottom:893.085000px;}
.y55{bottom:900.690000px;}
.yf{bottom:908.430000px;}
.y54{bottom:920.490000px;}
.ye{bottom:929.670000px;}
.y53{bottom:940.290000px;}
.yd{bottom:953.070000px;}
.y52{bottom:960.090000px;}
.y51{bottom:979.890000px;}
.yc{bottom:984.930000px;}
.y50{bottom:999.870000px;}
.yb{bottom:1016.610000px;}
.y4f{bottom:1019.670000px;}
.y4e{bottom:1039.470000px;}
.y9{bottom:1042.170000px;}
.y1{bottom:1056.930000px;}
.y4d{bottom:1059.270000px;}
.y4c{bottom:1079.070000px;}
.y4b{bottom:1099.050000px;}
.y4a{bottom:1118.850000px;}
.y49{bottom:1138.650000px;}
.y48{bottom:1168.380000px;}
.y47{bottom:1191.420000px;}
.h12{height:19.800000px;}
.h14{height:19.836000px;}
.h19{height:19.980000px;}
.h15{height:20.520000px;}
.h17{height:20.700000px;}
.h18{height:20.736000px;}
.h16{height:21.600000px;}
.hb{height:26.100000px;}
.ha{height:28.115859px;}
.hf{height:42.164648px;}
.h6{height:43.215117px;}
.h1d{height:43.506914px;}
.h13{height:44.507812px;}
.h1b{height:45.509766px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.hc{height:48.995859px;}
.he{height:49.255313px;}
.h1c{height:50.364141px;}
.h10{height:51.706406px;}
.h5{height:53.015625px;}
.h9{height:53.224453px;}
.h3{height:62.028281px;}
.h8{height:67.565039px;}
.h2{height:150.690000px;}
.h11{height:215.130000px;}
.hd{height:295.050000px;}
.h1a{height:305.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:121.536000px;}
.w3{width:126.396000px;}
.wd{width:145.116000px;}
.w7{width:174.090000px;}
.wc{width:223.590000px;}
.wb{width:296.175000px;}
.w8{width:392.505000px;}
.w9{width:392.655000px;}
.wf{width:589.500000px;}
.w6{width:606.030000px;}
.w2{width:657.150000px;}
.w5{width:780.120000px;}
.wa{width:785.160000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:1.080000px;}
.x2{left:7.920000px;}
.x18{left:17.670000px;}
.x15{left:44.820000px;}
.x1{left:54.720000px;}
.x5{left:56.520000px;}
.x16{left:75.675000px;}
.x1b{left:80.999987px;}
.xa{left:88.416000px;}
.x1c{left:108.035987px;}
.x13{left:151.560000px;}
.x9{left:167.760000px;}
.x12{left:177.689987px;}
.x19{left:203.295000px;}
.x1a{left:273.210000px;}
.xc{left:296.534987px;}
.xe{left:350.175000px;}
.x7{left:384.375000px;}
.x8{left:446.505000px;}
.x14{left:499.245000px;}
.x17{left:538.590000px;}
.xf{left:573.765000px;}
.x6{left:662.550000px;}
.x3{left:711.870000px;}
.x10{left:718.890000px;}
.x4{left:727.529987px;}
.x11{left:741.389987px;}
.xb{left:760.649987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.208000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.276480pt;}
.ls10{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls2{letter-spacing:4.640000pt;}
.ls4{letter-spacing:7.840000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsa{word-spacing:-10.560000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:1.952000pt;}
.wsb{word-spacing:29.514667pt;}
.wsd{word-spacing:160.965333pt;}
._a{margin-left:-1584.405760pt;}
._9{margin-left:-1032.302507pt;}
._b{margin-left:-778.321920pt;}
._1c{margin-left:-690.001920pt;}
._6{margin-left:-605.731840pt;}
._7{margin-left:-233.349120pt;}
._11{margin-left:-206.968320pt;}
._f{margin-left:-205.568000pt;}
._c{margin-left:-161.898667pt;}
._1e{margin-left:-132.458667pt;}
._8{margin-left:-125.294080pt;}
._1d{margin-left:-117.760000pt;}
._e{margin-left:-102.400000pt;}
._d{margin-left:-58.880000pt;}
._1a{margin-left:-3.702613pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._18{width:2.217813pt;}
._19{width:3.857707pt;}
._1b{width:4.800427pt;}
._17{width:5.736747pt;}
._12{width:7.204907pt;}
._13{width:8.823893pt;}
._16{width:9.986560pt;}
._2c{width:10.942293pt;}
._31{width:11.971840pt;}
._2e{width:13.706667pt;}
._36{width:15.032960pt;}
._10{width:16.192000pt;}
._35{width:17.472000pt;}
._32{width:19.176107pt;}
._33{width:20.158507pt;}
._2d{width:26.741333pt;}
._15{width:33.901013pt;}
._14{width:34.916480pt;}
._25{width:56.353280pt;}
._30{width:76.750080pt;}
._2f{width:77.767680pt;}
._24{width:96.863040pt;}
._23{width:111.488000pt;}
._20{width:115.422720pt;}
._21{width:124.240640pt;}
._22{width:128.512853pt;}
._26{width:140.495360pt;}
._27{width:143.416960pt;}
._28{width:146.391680pt;}
._29{width:149.313280pt;}
._34{width:150.594987pt;}
._1f{width:152.288000pt;}
._2b{width:158.184320pt;}
._2a{width:161.159040pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1192.477013pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:2.240000pt;}
.y23{bottom:5.120000pt;}
.y8c{bottom:5.160000pt;}
.y9e{bottom:5.280000pt;}
.y8e{bottom:5.760000pt;}
.y92{bottom:5.920000pt;}
.y13{bottom:6.720000pt;}
.y30{bottom:7.520000pt;}
.y6{bottom:10.560000pt;}
.ye9{bottom:16.413333pt;}
.y22{bottom:20.480000pt;}
.y2f{bottom:25.120000pt;}
.y5{bottom:35.840000pt;}
.y21{bottom:38.080000pt;}
.y2e{bottom:40.480000pt;}
.ye8{bottom:49.693333pt;}
.ya{bottom:52.640000pt;}
.y20{bottom:55.840000pt;}
.y2d{bottom:58.080000pt;}
.y4{bottom:61.280000pt;}
.ye7{bottom:63.013333pt;}
.ye6{bottom:69.053333pt;}
.y1f{bottom:73.440000pt;}
.y2c{bottom:75.680000pt;}
.y10d{bottom:77.440000pt;}
.y46{bottom:78.720000pt;}
.y8{bottom:80.186667pt;}
.yb5{bottom:80.640000pt;}
.yd9{bottom:83.360000pt;}
.ydb{bottom:84.186667pt;}
.y3{bottom:86.746667pt;}
.y74{bottom:89.920000pt;}
.y8a{bottom:90.080000pt;}
.y1e{bottom:91.040000pt;}
.y2b{bottom:93.280000pt;}
.y10c{bottom:95.200000pt;}
.y45{bottom:96.320000pt;}
.yb4{bottom:98.400000pt;}
.ydc{bottom:100.613333pt;}
.yd8{bottom:100.960000pt;}
.y73{bottom:107.520000pt;}
.y89{bottom:107.680000pt;}
.y1d{bottom:108.666667pt;}
.y2a{bottom:111.066667pt;}
.y10b{bottom:112.800000pt;}
.y44{bottom:113.920000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.yb3{bottom:116.000000pt;}
.ydd{bottom:117.026667pt;}
.yd7{bottom:118.560000pt;}
.y72{bottom:125.120000pt;}
.y88{bottom:125.280000pt;}
.y1c{bottom:126.266667pt;}
.y29{bottom:128.666667pt;}
.y10a{bottom:130.400000pt;}
.y43{bottom:131.520000pt;}
.yde{bottom:133.413333pt;}
.yb2{bottom:133.600000pt;}
.yd6{bottom:136.186667pt;}
.y71{bottom:142.746667pt;}
.y87{bottom:142.906667pt;}
.y1b{bottom:144.026667pt;}
.y28{bottom:146.266667pt;}
.y109{bottom:148.026667pt;}
.y42{bottom:149.146667pt;}
.ydf{bottom:149.826667pt;}
.yb1{bottom:151.226667pt;}
.yd5{bottom:153.946667pt;}
.y70{bottom:160.346667pt;}
.y86{bottom:160.666667pt;}
.y1a{bottom:161.626667pt;}
.y27{bottom:163.866667pt;}
.y108{bottom:165.626667pt;}
.ye0{bottom:166.240000pt;}
.y41{bottom:166.906667pt;}
.yb0{bottom:168.826667pt;}
.yd4{bottom:171.546667pt;}
.y6f{bottom:178.106667pt;}
.y85{bottom:178.266667pt;}
.y19{bottom:179.226667pt;}
.y26{bottom:181.466667pt;}
.ye1{bottom:182.653333pt;}
.y107{bottom:183.386667pt;}
.y40{bottom:184.506667pt;}
.yaf{bottom:186.586667pt;}
.yd3{bottom:189.146667pt;}
.y6e{bottom:195.706667pt;}
.y84{bottom:195.866667pt;}
.y18{bottom:196.826667pt;}
.ye2{bottom:199.040000pt;}
.y25{bottom:199.226667pt;}
.y106{bottom:200.986667pt;}
.y3f{bottom:202.106667pt;}
.yae{bottom:204.186667pt;}
.yd2{bottom:206.746667pt;}
.y6d{bottom:213.306667pt;}
.y83{bottom:213.466667pt;}
.y17{bottom:214.426667pt;}
.ye3{bottom:215.453333pt;}
.y24{bottom:216.826667pt;}
.y105{bottom:218.586667pt;}
.y3e{bottom:219.706667pt;}
.yad{bottom:221.786667pt;}
.yd1{bottom:224.346667pt;}
.y6c{bottom:230.906667pt;}
.y82{bottom:231.066667pt;}
.ye4{bottom:231.866667pt;}
.y16{bottom:232.186667pt;}
.y104{bottom:236.186667pt;}
.y3d{bottom:237.306667pt;}
.yac{bottom:239.386667pt;}
.yd0{bottom:242.106667pt;}
.ye5{bottom:248.293333pt;}
.y6b{bottom:248.506667pt;}
.y81{bottom:248.826667pt;}
.y15{bottom:249.786667pt;}
.y103{bottom:253.786667pt;}
.y3c{bottom:255.066667pt;}
.yab{bottom:256.986667pt;}
.ycf{bottom:259.706667pt;}
.y6a{bottom:266.266667pt;}
.y80{bottom:266.426667pt;}
.y102{bottom:271.546667pt;}
.y3b{bottom:272.666667pt;}
.yaa{bottom:274.746667pt;}
.yce{bottom:277.306667pt;}
.y69{bottom:283.866667pt;}
.y7f{bottom:284.026667pt;}
.y101{bottom:289.146667pt;}
.y3a{bottom:290.266667pt;}
.ya9{bottom:292.346667pt;}
.ycd{bottom:294.906667pt;}
.y7e{bottom:298.746667pt;}
.y68{bottom:301.466667pt;}
.y100{bottom:306.746667pt;}
.y39{bottom:307.866667pt;}
.ya8{bottom:309.946667pt;}
.ycc{bottom:312.506667pt;}
.y67{bottom:319.066667pt;}
.yff{bottom:324.346667pt;}
.y38{bottom:325.466667pt;}
.ycb{bottom:325.786667pt;}
.ya7{bottom:327.546667pt;}
.y66{bottom:336.666667pt;}
.yfe{bottom:341.946667pt;}
.y37{bottom:343.226667pt;}
.yca{bottom:343.386667pt;}
.ya6{bottom:345.146667pt;}
.y65{bottom:354.426667pt;}
.yfd{bottom:359.746667pt;}
.y36{bottom:360.866667pt;}
.yc9{bottom:361.026667pt;}
.ya5{bottom:362.946667pt;}
.y64{bottom:372.066667pt;}
.yfc{bottom:377.346667pt;}
.y35{bottom:378.466667pt;}
.yc8{bottom:378.626667pt;}
.ya4{bottom:380.546667pt;}
.y63{bottom:389.666667pt;}
.yfb{bottom:394.946667pt;}
.y34{bottom:396.066667pt;}
.yc7{bottom:396.226667pt;}
.ya3{bottom:398.146667pt;}
.y62{bottom:402.146667pt;}
.yfa{bottom:412.546667pt;}
.y33{bottom:413.666667pt;}
.yc6{bottom:414.626667pt;}
.ya2{bottom:415.746667pt;}
.y60{bottom:419.746667pt;}
.yf9{bottom:430.146667pt;}
.y32{bottom:431.426667pt;}
.ya1{bottom:433.346667pt;}
.yc5{bottom:437.986667pt;}
.yf8{bottom:447.906667pt;}
.y31{bottom:449.026667pt;}
.ya0{bottom:451.106667pt;}
.yc4{bottom:455.586667pt;}
.yf7{bottom:465.506667pt;}
.y9f{bottom:468.706667pt;}
.yc3{bottom:473.346667pt;}
.y14{bottom:479.746667pt;}
.y9d{bottom:483.106667pt;}
.yc2{bottom:490.946667pt;}
.yf6{bottom:500.706667pt;}
.y9c{bottom:502.786667pt;}
.yc1{bottom:508.546667pt;}
.yf5{bottom:518.306667pt;}
.y9b{bottom:524.066667pt;}
.yc0{bottom:526.146667pt;}
.y7d{bottom:528.066667pt;}
.yf4{bottom:536.066667pt;}
.ybf{bottom:543.746667pt;}
.y9a{bottom:544.386667pt;}
.y7c{bottom:545.666667pt;}
.yf3{bottom:553.666667pt;}
.ybe{bottom:561.506667pt;}
.y7b{bottom:563.266667pt;}
.y99{bottom:565.506667pt;}
.yf2{bottom:571.266667pt;}
.ybd{bottom:579.133333pt;}
.y7a{bottom:580.893333pt;}
.y98{bottom:585.853333pt;}
.yf1{bottom:588.893333pt;}
.ybc{bottom:596.733333pt;}
.y79{bottom:598.493333pt;}
.y97{bottom:606.173333pt;}
.yf0{bottom:606.493333pt;}
.ybb{bottom:614.333333pt;}
.y5f{bottom:616.253333pt;}
.yef{bottom:624.253333pt;}
.y96{bottom:627.453333pt;}
.yba{bottom:631.933333pt;}
.y5e{bottom:633.853333pt;}
.yee{bottom:641.853333pt;}
.y95{bottom:647.773333pt;}
.yb9{bottom:649.693333pt;}
.y5d{bottom:651.453333pt;}
.yed{bottom:659.453333pt;}
.yb8{bottom:667.293333pt;}
.y94{bottom:668.893333pt;}
.y5c{bottom:669.053333pt;}
.yec{bottom:677.053333pt;}
.yb7{bottom:684.893333pt;}
.y5b{bottom:686.653333pt;}
.y93{bottom:689.213333pt;}
.yeb{bottom:694.653333pt;}
.yb6{bottom:699.613333pt;}
.yda{bottom:700.480000pt;}
.y5a{bottom:704.413333pt;}
.y91{bottom:710.493333pt;}
.yea{bottom:712.413333pt;}
.y78{bottom:722.013333pt;}
.y59{bottom:730.013333pt;}
.y90{bottom:730.813333pt;}
.y77{bottom:739.613333pt;}
.y12{bottom:742.653333pt;}
.y58{bottom:747.613333pt;}
.y8f{bottom:752.093333pt;}
.y76{bottom:757.213333pt;}
.y57{bottom:765.213333pt;}
.y11{bottom:771.613333pt;}
.y8d{bottom:772.413333pt;}
.y75{bottom:774.813333pt;}
.y56{bottom:782.813333pt;}
.y8b{bottom:793.373333pt;}
.y10{bottom:793.853333pt;}
.y55{bottom:800.613333pt;}
.yf{bottom:807.493333pt;}
.y54{bottom:818.213333pt;}
.ye{bottom:826.373333pt;}
.y53{bottom:835.813333pt;}
.yd{bottom:847.173333pt;}
.y52{bottom:853.413333pt;}
.y51{bottom:871.013333pt;}
.yc{bottom:875.493333pt;}
.y50{bottom:888.773333pt;}
.yb{bottom:903.653333pt;}
.y4f{bottom:906.373333pt;}
.y4e{bottom:923.973333pt;}
.y9{bottom:926.373333pt;}
.y1{bottom:939.493333pt;}
.y4d{bottom:941.573333pt;}
.y4c{bottom:959.173333pt;}
.y4b{bottom:976.933333pt;}
.y4a{bottom:994.533333pt;}
.y49{bottom:1012.133333pt;}
.y48{bottom:1038.560000pt;}
.y47{bottom:1059.040000pt;}
.h12{height:17.600000pt;}
.h14{height:17.632000pt;}
.h19{height:17.760000pt;}
.h15{height:18.240000pt;}
.h17{height:18.400000pt;}
.h18{height:18.432000pt;}
.h16{height:19.200000pt;}
.hb{height:23.200000pt;}
.ha{height:24.991875pt;}
.hf{height:37.479688pt;}
.h6{height:38.413438pt;}
.h1d{height:38.672812pt;}
.h13{height:39.562500pt;}
.h1b{height:40.453125pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.hc{height:43.551875pt;}
.he{height:43.782500pt;}
.h1c{height:44.768125pt;}
.h10{height:45.961250pt;}
.h5{height:47.125000pt;}
.h9{height:47.310625pt;}
.h3{height:55.136250pt;}
.h8{height:60.057813pt;}
.h2{height:133.946667pt;}
.h11{height:191.226667pt;}
.hd{height:262.266667pt;}
.h1a{height:271.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:108.032000pt;}
.w3{width:112.352000pt;}
.wd{width:128.992000pt;}
.w7{width:154.746667pt;}
.wc{width:198.746667pt;}
.wb{width:263.266667pt;}
.w8{width:348.893333pt;}
.w9{width:349.026667pt;}
.wf{width:524.000000pt;}
.w6{width:538.693333pt;}
.w2{width:584.133333pt;}
.w5{width:693.440000pt;}
.wa{width:697.920000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:0.960000pt;}
.x2{left:7.040000pt;}
.x18{left:15.706667pt;}
.x15{left:39.840000pt;}
.x1{left:48.640000pt;}
.x5{left:50.240000pt;}
.x16{left:67.266667pt;}
.x1b{left:71.999988pt;}
.xa{left:78.592000pt;}
.x1c{left:96.031988pt;}
.x13{left:134.720000pt;}
.x9{left:149.120000pt;}
.x12{left:157.946655pt;}
.x19{left:180.706667pt;}
.x1a{left:242.853333pt;}
.xc{left:263.586655pt;}
.xe{left:311.266667pt;}
.x7{left:341.666667pt;}
.x8{left:396.893333pt;}
.x14{left:443.773333pt;}
.x17{left:478.746667pt;}
.xf{left:510.013333pt;}
.x6{left:588.933333pt;}
.x3{left:632.773333pt;}
.x10{left:639.013333pt;}
.x4{left:646.693322pt;}
.x11{left:659.013322pt;}
.xb{left:676.133322pt;}
}




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