
    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_34a047187a2180bc99ff7a0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_b6607bc43c772093afa7db55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ae1ac3bb167c2a15271ebd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_79c69de6aa64d6ad6fef9fc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62725b486d74a95b3c1542f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066406;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_d8b37276ffaacdcc01d47dbb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7dd26cc2342b8ea26a33555d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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);}
.v7{vertical-align:-25.920000px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-15.840000px;}
.v4{vertical-align:-13.680000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.v5{vertical-align:13.680000px;}
.v9{vertical-align:16.560000px;}
.v1{vertical-align:18.000000px;}
.vb{vertical-align:33.120000px;}
.va{vertical-align:38.880000px;}
.ls20{letter-spacing:-0.870000px;}
.ls1c{letter-spacing:-0.374400px;}
.ls2{letter-spacing:-0.334200px;}
.ls1b{letter-spacing:-0.207600px;}
.lsd{letter-spacing:-0.204600px;}
.ls1d{letter-spacing:-0.187200px;}
.ls3{letter-spacing:-0.172800px;}
.ls5{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.074880px;}
.ls22{letter-spacing:0.075000px;}
.lse{letter-spacing:0.094800px;}
.ls1{letter-spacing:0.100800px;}
.ls24{letter-spacing:0.103800px;}
.ls4{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.175800px;}
.lsf{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.319680px;}
.ls7{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.385800px;}
.ls12{letter-spacing:2.376000px;}
.ls11{letter-spacing:3.632400px;}
.ls9{letter-spacing:3.934800px;}
.ls18{letter-spacing:10.635840px;}
.ls16{letter-spacing:14.598720px;}
.ls1e{letter-spacing:17.107200px;}
.ls17{letter-spacing:17.429040px;}
.ls15{letter-spacing:18.290160px;}
.ls14{letter-spacing:21.972240px;}
.ls10{letter-spacing:23.703120px;}
.ls1f{letter-spacing:44.467200px;}
.lsa{letter-spacing:66.574800px;}
.ls19{letter-spacing:102.389040px;}
.lsb{letter-spacing:103.515840px;}
.lsc{letter-spacing:111.576000px;}
.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;}
}
.ws17{word-spacing:-84.240000px;}
.wsd{word-spacing:-72.000000px;}
.ws8{word-spacing:-66.240000px;}
.ws12{word-spacing:-65.865600px;}
.ws10{word-spacing:-55.764000px;}
.ws13{word-spacing:-53.654400px;}
.wsc{word-spacing:-52.344000px;}
.ws14{word-spacing:-51.816960px;}
.wsf{word-spacing:-51.624000px;}
.wsa{word-spacing:-48.329280px;}
.ws9{word-spacing:-48.240000px;}
.ws11{word-spacing:-48.041280px;}
.ws16{word-spacing:-18.532800px;}
.ws1{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.696000px;}
.ws1f{word-spacing:-15.226440px;}
.ws19{word-spacing:-14.970240px;}
.ws1e{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.667600px;}
.ws1c{word-spacing:-14.647800px;}
.ws15{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws1b{word-spacing:-14.478000px;}
.ws1d{word-spacing:-14.238600px;}
.ws1a{word-spacing:-13.702800px;}
.ws18{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws6{word-spacing:-9.187200px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:30.192480px;}
.wse{word-spacing:33.761520px;}
._19{margin-left:-7.101120px;}
._1b{margin-left:-5.271120px;}
._7{margin-left:-4.199760px;}
._6{margin-left:-2.980800px;}
._0{margin-left:-1.563120px;}
._1{width:1.203120px;}
._5{width:2.622960px;}
._2{width:4.040640px;}
._3{width:5.696640px;}
._4{width:7.286400px;}
._b{width:8.337360px;}
._9{width:10.224240px;}
._8{width:11.327040px;}
._18{width:12.481920px;}
._14{width:14.739120px;}
._1f{width:15.762000px;}
._15{width:16.992000px;}
._e{width:18.504000px;}
._f{width:19.779120px;}
._11{width:21.216000px;}
._10{width:22.824000px;}
._c{width:23.976000px;}
._d{width:25.136880px;}
._12{width:27.864000px;}
._13{width:28.944000px;}
._1e{width:30.934080px;}
._16{width:32.832000px;}
._17{width:33.840000px;}
._a{width:36.576000px;}
._1a{width:44.339520px;}
._1c{width:50.342400px;}
._1d{width:51.375600px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.700000px;}
.y2{bottom:43.740000px;}
.y1{bottom:57.600000px;}
.yf9{bottom:116.136000px;}
.y77{bottom:117.576000px;}
.y76{bottom:121.716000px;}
.yd7{bottom:126.936000px;}
.y52{bottom:127.476000px;}
.y29{bottom:128.916000px;}
.yb8{bottom:130.176000px;}
.yd6{bottom:147.816000px;}
.yf8{bottom:156.450000px;}
.y75{bottom:161.130000px;}
.yb7{bottom:161.850000px;}
.y73{bottom:165.270000px;}
.y51{bottom:169.590000px;}
.y28{bottom:169.770000px;}
.y74{bottom:172.110000px;}
.yf7{bottom:175.710000px;}
.y116{bottom:180.390000px;}
.yd5{bottom:180.750000px;}
.y97{bottom:182.010000px;}
.y50{bottom:190.470000px;}
.y27{bottom:190.650000px;}
.yb6{bottom:194.790000px;}
.yf6{bottom:195.150000px;}
.y96{bottom:202.890000px;}
.y72{bottom:206.850000px;}
.y26{bottom:211.710000px;}
.y115{bottom:213.150000px;}
.yd4{bottom:213.870000px;}
.yf5{bottom:214.410000px;}
.yb5{bottom:215.670000px;}
.y70{bottom:226.830000px;}
.y4f{bottom:232.770000px;}
.y25{bottom:232.950000px;}
.y71{bottom:233.310000px;}
.y114{bottom:234.030000px;}
.y95{bottom:235.110000px;}
.yb4{bottom:236.550000px;}
.y6f{bottom:247.170000px;}
.yd3{bottom:247.710000px;}
.y24{bottom:254.010000px;}
.yf4{bottom:254.730000px;}
.yb3{bottom:257.430000px;}
.y94{bottom:266.790000px;}
.y113{bottom:266.970000px;}
.yf3{bottom:274.170000px;}
.y4e{bottom:274.890000px;}
.y23{bottom:275.070000px;}
.yd2{bottom:278.670000px;}
.y6e{bottom:287.490000px;}
.y112{bottom:287.850000px;}
.yb2{bottom:290.190000px;}
.y4d{bottom:295.770000px;}
.y22{bottom:296.130000px;}
.y93{bottom:299.550000px;}
.y6d{bottom:306.930000px;}
.y111{bottom:308.730000px;}
.yd1{bottom:309.630000px;}
.yf2{bottom:314.490000px;}
.y4c{bottom:316.830000px;}
.y92{bottom:320.430000px;}
.yb1{bottom:324.570000px;}
.yf1{bottom:333.750000px;}
.yd0{bottom:337.755000px;}
.y4b{bottom:337.935000px;}
.y21{bottom:339.735000px;}
.y91{bottom:341.355000px;}
.y110{bottom:342.975000px;}
.y6c{bottom:347.295000px;}
.y4a{bottom:359.175000px;}
.yb0{bottom:361.695000px;}
.y20{bottom:372.675000px;}
.y90{bottom:373.575000px;}
.yf0{bottom:374.115000px;}
.y49{bottom:380.235000px;}
.y10f{bottom:381.495000px;}
.y6b{bottom:387.615000px;}
.yef{bottom:393.555000px;}
.yaf{bottom:394.635000px;}
.y48{bottom:401.295000px;}
.y8f{bottom:405.255000px;}
.y1f{bottom:405.435000px;}
.yae{bottom:415.515000px;}
.y10e{bottom:418.755000px;}
.y47{bottom:422.355000px;}
.y6a{bottom:427.935000px;}
.yee{bottom:433.875000px;}
.ycf{bottom:436.575000px;}
.y8e{bottom:438.195000px;}
.y1e{bottom:438.375000px;}
.yad{bottom:448.275000px;}
.y10d{bottom:451.695000px;}
.yed{bottom:453.315000px;}
.y8d{bottom:459.075000px;}
.y46{bottom:464.655000px;}
.y69{bottom:468.255000px;}
.yac{bottom:469.155000px;}
.yce{bottom:469.515000px;}
.y1d{bottom:471.135000px;}
.y10c{bottom:472.575000px;}
.y8c{bottom:479.955000px;}
.ycd{bottom:490.395000px;}
.y1c{bottom:492.015000px;}
.y10b{bottom:493.455000px;}
.yec{bottom:493.635000px;}
.y8b{bottom:500.835000px;}
.yab{bottom:502.095000px;}
.y45{bottom:506.775000px;}
.y68{bottom:508.575000px;}
.ycc{bottom:511.275000px;}
.y1b{bottom:512.895000px;}
.y10a{bottom:514.335000px;}
.yaa{bottom:522.975000px;}
.y44{bottom:527.655000px;}
.y67{bottom:528.015000px;}
.y1a{bottom:533.775000px;}
.y8a{bottom:535.035000px;}
.y109{bottom:535.215000px;}
.ycb{bottom:544.035000px;}
.y43{bottom:548.895000px;}
.yeb{bottom:553.215000px;}
.y19{bottom:554.655000px;}
.ya9{bottom:555.915000px;}
.y108{bottom:556.095000px;}
.y42{bottom:569.955000px;}
.y66{bottom:570.315000px;}
.yea{bottom:572.655000px;}
.y89{bottom:573.555000px;}
.y18{bottom:575.535000px;}
.ya8{bottom:576.795000px;}
.yca{bottom:576.975000px;}
.y41{bottom:591.015000px;}
.y65{bottom:593.175000px;}
.y17{bottom:596.415000px;}
.ya7{bottom:597.675000px;}
.yc9{bottom:609.945000px;}
.y40{bottom:612.105000px;}
.ye9{bottom:613.005000px;}
.y16{bottom:617.325000px;}
.ya6{bottom:618.585000px;}
.y107{bottom:630.645000px;}
.yc8{bottom:630.825000px;}
.ye8{bottom:632.265000px;}
.y3f{bottom:633.345000px;}
.y64{bottom:635.505000px;}
.y15{bottom:638.205000px;}
.ya5{bottom:639.465000px;}
.y88{bottom:650.805000px;}
.ye7{bottom:651.705000px;}
.y63{bottom:656.385000px;}
.y14{bottom:659.085000px;}
.ya4{bottom:660.345000px;}
.yc7{bottom:663.585000px;}
.ye6{bottom:670.965000px;}
.y3e{bottom:675.645000px;}
.y62{bottom:677.445000px;}
.y13{bottom:679.965000px;}
.ya3{bottom:681.225000px;}
.y87{bottom:690.225000px;}
.ye5{bottom:690.405000px;}
.y3d{bottom:696.525000px;}
.y61{bottom:698.505000px;}
.y12{bottom:700.845000px;}
.y106{bottom:703.725000px;}
.ye4{bottom:709.665000px;}
.ya2{bottom:713.985000px;}
.yc6{bottom:717.405000px;}
.y3c{bottom:717.585000px;}
.y11{bottom:721.725000px;}
.y105{bottom:722.985000px;}
.ye3{bottom:729.105000px;}
.y86{bottom:730.365000px;}
.y3b{bottom:738.645000px;}
.y60{bottom:740.805000px;}
.y10{bottom:742.605000px;}
.ya1{bottom:748.185000px;}
.yc5{bottom:749.625000px;}
.y3a{bottom:759.705000px;}
.y5f{bottom:761.685000px;}
.y85{bottom:763.125000px;}
.yf{bottom:763.485000px;}
.ye2{bottom:771.045000px;}
.yc4{bottom:780.585000px;}
.y39{bottom:780.945000px;}
.y104{bottom:782.745000px;}
.y5e{bottom:782.925000px;}
.y84{bottom:784.005000px;}
.ye{bottom:784.365000px;}
.ya0{bottom:786.345000px;}
.y38{bottom:802.005000px;}
.y5d{bottom:803.985000px;}
.yd{bottom:805.245000px;}
.ye1{bottom:805.425000px;}
.y9f{bottom:808.485000px;}
.yc3{bottom:811.545000px;}
.y83{bottom:816.945000px;}
.y37{bottom:823.065000px;}
.y5c{bottom:825.045000px;}
.y82{bottom:837.825000px;}
.yc{bottom:838.185000px;}
.ye0{bottom:842.505000px;}
.yc2{bottom:843.225000px;}
.y5b{bottom:846.105000px;}
.y36{bottom:865.365000px;}
.y9e{bottom:866.625000px;}
.y5a{bottom:867.345000px;}
.y81{bottom:870.810000px;}
.yb{bottom:875.130000px;}
.ydf{bottom:875.490000px;}
.yc1{bottom:876.210000px;}
.y103{bottom:882.870000px;}
.y35{bottom:886.290000px;}
.y80{bottom:891.690000px;}
.yde{bottom:896.370000px;}
.yc0{bottom:897.090000px;}
.y102{bottom:902.130000px;}
.y34{bottom:907.530000px;}
.y59{bottom:909.510000px;}
.ybf{bottom:917.970000px;}
.ya{bottom:921.210000px;}
.y7f{bottom:924.450000px;}
.y9d{bottom:924.990000px;}
.y33{bottom:928.590000px;}
.ydd{bottom:929.130000px;}
.y101{bottom:942.450000px;}
.y7e{bottom:943.890000px;}
.y32{bottom:949.650000px;}
.ydc{bottom:950.010000px;}
.ybe{bottom:950.190000px;}
.y58{bottom:951.630000px;}
.y9{bottom:956.130000px;}
.y100{bottom:961.890000px;}
.y7d{bottom:964.770000px;}
.ybd{bottom:969.810000px;}
.y31{bottom:970.710000px;}
.ydb{bottom:970.890000px;}
.y57{bottom:972.690000px;}
.y9c{bottom:983.130000px;}
.y8{bottom:983.310000px;}
.y30{bottom:991.770000px;}
.y56{bottom:993.750000px;}
.y118{bottom:1000.770000px;}
.y7c{bottom:1001.850000px;}
.yff{bottom:1002.210000px;}
.ybc{bottom:1002.570000px;}
.y7b{bottom:1010.130000px;}
.yda{bottom:1012.650000px;}
.y2f{bottom:1013.010000px;}
.y7{bottom:1013.550000px;}
.y55{bottom:1014.810000px;}
.yfe{bottom:1021.470000px;}
.ybb{bottom:1023.450000px;}
.y117{bottom:1033.530000px;}
.y9b{bottom:1041.450000px;}
.yd9{bottom:1045.590000px;}
.y6{bottom:1052.250000px;}
.y2e{bottom:1055.310000px;}
.y7a{bottom:1055.490000px;}
.yba{bottom:1055.670000px;}
.y54{bottom:1056.570000px;}
.yfd{bottom:1061.970000px;}
.yd8{bottom:1066.470000px;}
.y2d{bottom:1076.190000px;}
.yfc{bottom:1081.230000px;}
.yb9{bottom:1087.350000px;}
.y5{bottom:1090.230000px;}
.y2c{bottom:1097.250000px;}
.y79{bottom:1097.610000px;}
.y9a{bottom:1099.410000px;}
.y2b{bottom:1118.310000px;}
.y53{bottom:1118.490000px;}
.y99{bottom:1120.290000px;}
.yfb{bottom:1121.550000px;}
.y4{bottom:1128.210000px;}
.y2a{bottom:1139.580000px;}
.y78{bottom:1139.760000px;}
.yfa{bottom:1141.020000px;}
.y98{bottom:1141.200000px;}
.h3{height:18.360000px;}
.ha{height:40.655391px;}
.he{height:43.082578px;}
.h6{height:44.648438px;}
.h16{height:50.597578px;}
.h15{height:51.998203px;}
.h7{height:56.084062px;}
.h8{height:57.636562px;}
.hb{height:57.985313px;}
.h9{height:60.960938px;}
.h5{height:62.648438px;}
.hd{height:63.559687px;}
.h2{height:65.884219px;}
.h14{height:71.324297px;}
.hc{height:72.644062px;}
.h13{height:73.298672px;}
.hf{height:74.196563px;}
.h10{height:79.535391px;}
.h12{height:83.322422px;}
.h11{height:90.756562px;}
.h4{height:101.804766px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.720000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:23.550000px;}
.x3{left:27.870000px;}
.x1{left:127.656000px;}
.x16{left:138.636000px;}
.x8{left:146.736000px;}
.x15{left:155.010000px;}
.xc{left:174.630000px;}
.x4{left:179.130000px;}
.x5{left:180.210000px;}
.x6{left:194.610000px;}
.x17{left:197.850000px;}
.x7{left:228.990000px;}
.x14{left:238.350000px;}
.x12{left:267.150000px;}
.x1a{left:307.515000px;}
.xd{left:328.035000px;}
.x19{left:335.415000px;}
.xa{left:348.375000px;}
.x11{left:398.595000px;}
.xf{left:419.835000px;}
.x9{left:423.795000px;}
.x13{left:435.675000px;}
.xb{left:446.475000px;}
.x10{left:479.625000px;}
.xe{left:540.285000px;}
.x2{left:797.220000px;}
.x18{left:818.430000px;}
@media print{
.v7{vertical-align:-23.040000pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-14.080000pt;}
.v4{vertical-align:-12.160000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.v5{vertical-align:12.160000pt;}
.v9{vertical-align:14.720000pt;}
.v1{vertical-align:16.000000pt;}
.vb{vertical-align:29.440000pt;}
.va{vertical-align:34.560000pt;}
.ls20{letter-spacing:-0.773333pt;}
.ls1c{letter-spacing:-0.332800pt;}
.ls2{letter-spacing:-0.297067pt;}
.ls1b{letter-spacing:-0.184533pt;}
.lsd{letter-spacing:-0.181867pt;}
.ls1d{letter-spacing:-0.166400pt;}
.ls3{letter-spacing:-0.153600pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.066560pt;}
.ls22{letter-spacing:0.066667pt;}
.lse{letter-spacing:0.084267pt;}
.ls1{letter-spacing:0.089600pt;}
.ls24{letter-spacing:0.092267pt;}
.ls4{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.156267pt;}
.lsf{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.284160pt;}
.ls7{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.342933pt;}
.ls12{letter-spacing:2.112000pt;}
.ls11{letter-spacing:3.228800pt;}
.ls9{letter-spacing:3.497600pt;}
.ls18{letter-spacing:9.454080pt;}
.ls16{letter-spacing:12.976640pt;}
.ls1e{letter-spacing:15.206400pt;}
.ls17{letter-spacing:15.492480pt;}
.ls15{letter-spacing:16.257920pt;}
.ls14{letter-spacing:19.530880pt;}
.ls10{letter-spacing:21.069440pt;}
.ls1f{letter-spacing:39.526400pt;}
.lsa{letter-spacing:59.177600pt;}
.ls19{letter-spacing:91.012480pt;}
.lsb{letter-spacing:92.014080pt;}
.lsc{letter-spacing:99.178667pt;}
.ws17{word-spacing:-74.880000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws12{word-spacing:-58.547200pt;}
.ws10{word-spacing:-49.568000pt;}
.ws13{word-spacing:-47.692800pt;}
.wsc{word-spacing:-46.528000pt;}
.ws14{word-spacing:-46.059520pt;}
.wsf{word-spacing:-45.888000pt;}
.wsa{word-spacing:-42.959360pt;}
.ws9{word-spacing:-42.880000pt;}
.ws11{word-spacing:-42.703360pt;}
.ws16{word-spacing:-16.473600pt;}
.ws1{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.952000pt;}
.ws1f{word-spacing:-13.534613pt;}
.ws19{word-spacing:-13.306880pt;}
.ws1e{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.037867pt;}
.ws1c{word-spacing:-13.020267pt;}
.ws15{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws1b{word-spacing:-12.869333pt;}
.ws1d{word-spacing:-12.656533pt;}
.ws1a{word-spacing:-12.180267pt;}
.ws18{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws6{word-spacing:-8.166400pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:26.837760pt;}
.wse{word-spacing:30.010240pt;}
._19{margin-left:-6.312107pt;}
._1b{margin-left:-4.685440pt;}
._7{margin-left:-3.733120pt;}
._6{margin-left:-2.649600pt;}
._0{margin-left:-1.389440pt;}
._1{width:1.069440pt;}
._5{width:2.331520pt;}
._2{width:3.591680pt;}
._3{width:5.063680pt;}
._4{width:6.476800pt;}
._b{width:7.410987pt;}
._9{width:9.088213pt;}
._8{width:10.068480pt;}
._18{width:11.095040pt;}
._14{width:13.101440pt;}
._1f{width:14.010667pt;}
._15{width:15.104000pt;}
._e{width:16.448000pt;}
._f{width:17.581440pt;}
._11{width:18.858667pt;}
._10{width:20.288000pt;}
._c{width:21.312000pt;}
._d{width:22.343893pt;}
._12{width:24.768000pt;}
._13{width:25.728000pt;}
._1e{width:27.496960pt;}
._16{width:29.184000pt;}
._17{width:30.080000pt;}
._a{width:32.512000pt;}
._1a{width:39.412907pt;}
._1c{width:44.748800pt;}
._1d{width:45.667200pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.400000pt;}
.y2{bottom:38.880000pt;}
.y1{bottom:51.200000pt;}
.yf9{bottom:103.232000pt;}
.y77{bottom:104.512000pt;}
.y76{bottom:108.192000pt;}
.yd7{bottom:112.832000pt;}
.y52{bottom:113.312000pt;}
.y29{bottom:114.592000pt;}
.yb8{bottom:115.712000pt;}
.yd6{bottom:131.392000pt;}
.yf8{bottom:139.066667pt;}
.y75{bottom:143.226667pt;}
.yb7{bottom:143.866667pt;}
.y73{bottom:146.906667pt;}
.y51{bottom:150.746667pt;}
.y28{bottom:150.906667pt;}
.y74{bottom:152.986667pt;}
.yf7{bottom:156.186667pt;}
.y116{bottom:160.346667pt;}
.yd5{bottom:160.666667pt;}
.y97{bottom:161.786667pt;}
.y50{bottom:169.306667pt;}
.y27{bottom:169.466667pt;}
.yb6{bottom:173.146667pt;}
.yf6{bottom:173.466667pt;}
.y96{bottom:180.346667pt;}
.y72{bottom:183.866667pt;}
.y26{bottom:188.186667pt;}
.y115{bottom:189.466667pt;}
.yd4{bottom:190.106667pt;}
.yf5{bottom:190.586667pt;}
.yb5{bottom:191.706667pt;}
.y70{bottom:201.626667pt;}
.y4f{bottom:206.906667pt;}
.y25{bottom:207.066667pt;}
.y71{bottom:207.386667pt;}
.y114{bottom:208.026667pt;}
.y95{bottom:208.986667pt;}
.yb4{bottom:210.266667pt;}
.y6f{bottom:219.706667pt;}
.yd3{bottom:220.186667pt;}
.y24{bottom:225.786667pt;}
.yf4{bottom:226.426667pt;}
.yb3{bottom:228.826667pt;}
.y94{bottom:237.146667pt;}
.y113{bottom:237.306667pt;}
.yf3{bottom:243.706667pt;}
.y4e{bottom:244.346667pt;}
.y23{bottom:244.506667pt;}
.yd2{bottom:247.706667pt;}
.y6e{bottom:255.546667pt;}
.y112{bottom:255.866667pt;}
.yb2{bottom:257.946667pt;}
.y4d{bottom:262.906667pt;}
.y22{bottom:263.226667pt;}
.y93{bottom:266.266667pt;}
.y6d{bottom:272.826667pt;}
.y111{bottom:274.426667pt;}
.yd1{bottom:275.226667pt;}
.yf2{bottom:279.546667pt;}
.y4c{bottom:281.626667pt;}
.y92{bottom:284.826667pt;}
.yb1{bottom:288.506667pt;}
.yf1{bottom:296.666667pt;}
.yd0{bottom:300.226667pt;}
.y4b{bottom:300.386667pt;}
.y21{bottom:301.986667pt;}
.y91{bottom:303.426667pt;}
.y110{bottom:304.866667pt;}
.y6c{bottom:308.706667pt;}
.y4a{bottom:319.266667pt;}
.yb0{bottom:321.506667pt;}
.y20{bottom:331.266667pt;}
.y90{bottom:332.066667pt;}
.yf0{bottom:332.546667pt;}
.y49{bottom:337.986667pt;}
.y10f{bottom:339.106667pt;}
.y6b{bottom:344.546667pt;}
.yef{bottom:349.826667pt;}
.yaf{bottom:350.786667pt;}
.y48{bottom:356.706667pt;}
.y8f{bottom:360.226667pt;}
.y1f{bottom:360.386667pt;}
.yae{bottom:369.346667pt;}
.y10e{bottom:372.226667pt;}
.y47{bottom:375.426667pt;}
.y6a{bottom:380.386667pt;}
.yee{bottom:385.666667pt;}
.ycf{bottom:388.066667pt;}
.y8e{bottom:389.506667pt;}
.y1e{bottom:389.666667pt;}
.yad{bottom:398.466667pt;}
.y10d{bottom:401.506667pt;}
.yed{bottom:402.946667pt;}
.y8d{bottom:408.066667pt;}
.y46{bottom:413.026667pt;}
.y69{bottom:416.226667pt;}
.yac{bottom:417.026667pt;}
.yce{bottom:417.346667pt;}
.y1d{bottom:418.786667pt;}
.y10c{bottom:420.066667pt;}
.y8c{bottom:426.626667pt;}
.ycd{bottom:435.906667pt;}
.y1c{bottom:437.346667pt;}
.y10b{bottom:438.626667pt;}
.yec{bottom:438.786667pt;}
.y8b{bottom:445.186667pt;}
.yab{bottom:446.306667pt;}
.y45{bottom:450.466667pt;}
.y68{bottom:452.066667pt;}
.ycc{bottom:454.466667pt;}
.y1b{bottom:455.906667pt;}
.y10a{bottom:457.186667pt;}
.yaa{bottom:464.866667pt;}
.y44{bottom:469.026667pt;}
.y67{bottom:469.346667pt;}
.y1a{bottom:474.466667pt;}
.y8a{bottom:475.586667pt;}
.y109{bottom:475.746667pt;}
.ycb{bottom:483.586667pt;}
.y43{bottom:487.906667pt;}
.yeb{bottom:491.746667pt;}
.y19{bottom:493.026667pt;}
.ya9{bottom:494.146667pt;}
.y108{bottom:494.306667pt;}
.y42{bottom:506.626667pt;}
.y66{bottom:506.946667pt;}
.yea{bottom:509.026667pt;}
.y89{bottom:509.826667pt;}
.y18{bottom:511.586667pt;}
.ya8{bottom:512.706667pt;}
.yca{bottom:512.866667pt;}
.y41{bottom:525.346667pt;}
.y65{bottom:527.266667pt;}
.y17{bottom:530.146667pt;}
.ya7{bottom:531.266667pt;}
.yc9{bottom:542.173333pt;}
.y40{bottom:544.093333pt;}
.ye9{bottom:544.893333pt;}
.y16{bottom:548.733333pt;}
.ya6{bottom:549.853333pt;}
.y107{bottom:560.573333pt;}
.yc8{bottom:560.733333pt;}
.ye8{bottom:562.013333pt;}
.y3f{bottom:562.973333pt;}
.y64{bottom:564.893333pt;}
.y15{bottom:567.293333pt;}
.ya5{bottom:568.413333pt;}
.y88{bottom:578.493333pt;}
.ye7{bottom:579.293333pt;}
.y63{bottom:583.453333pt;}
.y14{bottom:585.853333pt;}
.ya4{bottom:586.973333pt;}
.yc7{bottom:589.853333pt;}
.ye6{bottom:596.413333pt;}
.y3e{bottom:600.573333pt;}
.y62{bottom:602.173333pt;}
.y13{bottom:604.413333pt;}
.ya3{bottom:605.533333pt;}
.y87{bottom:613.533333pt;}
.ye5{bottom:613.693333pt;}
.y3d{bottom:619.133333pt;}
.y61{bottom:620.893333pt;}
.y12{bottom:622.973333pt;}
.y106{bottom:625.533333pt;}
.ye4{bottom:630.813333pt;}
.ya2{bottom:634.653333pt;}
.yc6{bottom:637.693333pt;}
.y3c{bottom:637.853333pt;}
.y11{bottom:641.533333pt;}
.y105{bottom:642.653333pt;}
.ye3{bottom:648.093333pt;}
.y86{bottom:649.213333pt;}
.y3b{bottom:656.573333pt;}
.y60{bottom:658.493333pt;}
.y10{bottom:660.093333pt;}
.ya1{bottom:665.053333pt;}
.yc5{bottom:666.333333pt;}
.y3a{bottom:675.293333pt;}
.y5f{bottom:677.053333pt;}
.y85{bottom:678.333333pt;}
.yf{bottom:678.653333pt;}
.ye2{bottom:685.373333pt;}
.yc4{bottom:693.853333pt;}
.y39{bottom:694.173333pt;}
.y104{bottom:695.773333pt;}
.y5e{bottom:695.933333pt;}
.y84{bottom:696.893333pt;}
.ye{bottom:697.213333pt;}
.ya0{bottom:698.973333pt;}
.y38{bottom:712.893333pt;}
.y5d{bottom:714.653333pt;}
.yd{bottom:715.773333pt;}
.ye1{bottom:715.933333pt;}
.y9f{bottom:718.653333pt;}
.yc3{bottom:721.373333pt;}
.y83{bottom:726.173333pt;}
.y37{bottom:731.613333pt;}
.y5c{bottom:733.373333pt;}
.y82{bottom:744.733333pt;}
.yc{bottom:745.053333pt;}
.ye0{bottom:748.893333pt;}
.yc2{bottom:749.533333pt;}
.y5b{bottom:752.093333pt;}
.y36{bottom:769.213333pt;}
.y9e{bottom:770.333333pt;}
.y5a{bottom:770.973333pt;}
.y81{bottom:774.053333pt;}
.yb{bottom:777.893333pt;}
.ydf{bottom:778.213333pt;}
.yc1{bottom:778.853333pt;}
.y103{bottom:784.773333pt;}
.y35{bottom:787.813333pt;}
.y80{bottom:792.613333pt;}
.yde{bottom:796.773333pt;}
.yc0{bottom:797.413333pt;}
.y102{bottom:801.893333pt;}
.y34{bottom:806.693333pt;}
.y59{bottom:808.453333pt;}
.ybf{bottom:815.973333pt;}
.ya{bottom:818.853333pt;}
.y7f{bottom:821.733333pt;}
.y9d{bottom:822.213333pt;}
.y33{bottom:825.413333pt;}
.ydd{bottom:825.893333pt;}
.y101{bottom:837.733333pt;}
.y7e{bottom:839.013333pt;}
.y32{bottom:844.133333pt;}
.ydc{bottom:844.453333pt;}
.ybe{bottom:844.613333pt;}
.y58{bottom:845.893333pt;}
.y9{bottom:849.893333pt;}
.y100{bottom:855.013333pt;}
.y7d{bottom:857.573333pt;}
.ybd{bottom:862.053333pt;}
.y31{bottom:862.853333pt;}
.ydb{bottom:863.013333pt;}
.y57{bottom:864.613333pt;}
.y9c{bottom:873.893333pt;}
.y8{bottom:874.053333pt;}
.y30{bottom:881.573333pt;}
.y56{bottom:883.333333pt;}
.y118{bottom:889.573333pt;}
.y7c{bottom:890.533333pt;}
.yff{bottom:890.853333pt;}
.ybc{bottom:891.173333pt;}
.y7b{bottom:897.893333pt;}
.yda{bottom:900.133333pt;}
.y2f{bottom:900.453333pt;}
.y7{bottom:900.933333pt;}
.y55{bottom:902.053333pt;}
.yfe{bottom:907.973333pt;}
.ybb{bottom:909.733333pt;}
.y117{bottom:918.693333pt;}
.y9b{bottom:925.733333pt;}
.yd9{bottom:929.413333pt;}
.y6{bottom:935.333333pt;}
.y2e{bottom:938.053333pt;}
.y7a{bottom:938.213333pt;}
.yba{bottom:938.373333pt;}
.y54{bottom:939.173333pt;}
.yfd{bottom:943.973333pt;}
.yd8{bottom:947.973333pt;}
.y2d{bottom:956.613333pt;}
.yfc{bottom:961.093333pt;}
.yb9{bottom:966.533333pt;}
.y5{bottom:969.093333pt;}
.y2c{bottom:975.333333pt;}
.y79{bottom:975.653333pt;}
.y9a{bottom:977.253333pt;}
.y2b{bottom:994.053333pt;}
.y53{bottom:994.213333pt;}
.y99{bottom:995.813333pt;}
.yfb{bottom:996.933333pt;}
.y4{bottom:1002.853333pt;}
.y2a{bottom:1012.960000pt;}
.y78{bottom:1013.120000pt;}
.yfa{bottom:1014.240000pt;}
.y98{bottom:1014.400000pt;}
.h3{height:16.320000pt;}
.ha{height:36.138125pt;}
.he{height:38.295625pt;}
.h6{height:39.687500pt;}
.h16{height:44.975625pt;}
.h15{height:46.220625pt;}
.h7{height:49.852500pt;}
.h8{height:51.232500pt;}
.hb{height:51.542500pt;}
.h9{height:54.187500pt;}
.h5{height:55.687500pt;}
.hd{height:56.497500pt;}
.h2{height:58.563750pt;}
.h14{height:63.399375pt;}
.hc{height:64.572500pt;}
.h13{height:65.154375pt;}
.hf{height:65.952500pt;}
.h10{height:70.698125pt;}
.h12{height:74.064375pt;}
.h11{height:80.672500pt;}
.h4{height:90.493125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:20.933333pt;}
.x3{left:24.773333pt;}
.x1{left:113.472000pt;}
.x16{left:123.232000pt;}
.x8{left:130.432000pt;}
.x15{left:137.786667pt;}
.xc{left:155.226667pt;}
.x4{left:159.226667pt;}
.x5{left:160.186667pt;}
.x6{left:172.986667pt;}
.x17{left:175.866667pt;}
.x7{left:203.546667pt;}
.x14{left:211.866667pt;}
.x12{left:237.466667pt;}
.x1a{left:273.346667pt;}
.xd{left:291.586667pt;}
.x19{left:298.146667pt;}
.xa{left:309.666667pt;}
.x11{left:354.306667pt;}
.xf{left:373.186667pt;}
.x9{left:376.706667pt;}
.x13{left:387.266667pt;}
.xb{left:396.866667pt;}
.x10{left:426.333333pt;}
.xe{left:480.253333pt;}
.x2{left:708.640000pt;}
.x18{left:727.493333pt;}
}




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