
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3e1e4102a79b727fc296e78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_45c9e0d7ac18db22be2e8465.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1253c9325504b52cc8ef3ac2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_14d8a64eafb02a5b98306b3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ec916c7c3fb7b2f221f831e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90f468cc6920ad68706088e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_b550b3d3374cec2df465b1d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_53c008d3f4f2791fdae6b0e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff136f172fee835ba228e34a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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_b63221524a8be39c855dee0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_326680f37f0e3cf721379020.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.409800px;}
.ls15{letter-spacing:-0.285600px;}
.ls14{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.232800px;}
.lsa{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.038880px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls16{letter-spacing:0.051840px;}
.lsb{letter-spacing:0.057000px;}
.ls12{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206640px;}
.ls10{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10{word-spacing:-60.120000px;}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.283400px;}
.wse{word-spacing:-13.278240px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.993600px;}
.wsf{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._1b{margin-left:-4.966560px;}
._6{margin-left:-3.547200px;}
._7{margin-left:-2.140800px;}
._0{margin-left:-1.110000px;}
._1{width:1.406640px;}
._4{width:2.681760px;}
._5{width:4.148877px;}
._2{width:6.012000px;}
._3{width:7.244880px;}
._9{width:8.506320px;}
._a{width:10.401000px;}
._8{width:12.000600px;}
._e{width:14.345160px;}
._1a{width:15.403560px;}
._b{width:17.194200px;}
._c{width:19.772521px;}
._1c{width:20.958599px;}
._10{width:22.184280px;}
._d{width:24.709320px;}
._f{width:32.645160px;}
._11{width:34.388640px;}
._12{width:35.951760px;}
._18{width:43.587000px;}
._14{width:45.090000px;}
._13{width:94.268160px;}
._17{width:111.642840px;}
._16{width:134.668800px;}
._19{width:144.889200px;}
._15{width:218.596320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yab{bottom:7.830000px;}
.ydb{bottom:7.860000px;}
.yae{bottom:7.920000px;}
.yb3{bottom:25.470000px;}
.yc7{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd6{bottom:125.490000px;}
.y89{bottom:127.740000px;}
.y10f{bottom:127.920000px;}
.yf4{bottom:135.750000px;}
.y5a{bottom:139.170000px;}
.y88{bottom:145.290000px;}
.y10e{bottom:145.470000px;}
.yee{bottom:153.390000px;}
.yd5{bottom:161.040000px;}
.y87{bottom:162.930000px;}
.yf3{bottom:171.300000px;}
.y10d{bottom:172.020000px;}
.y59{bottom:174.720000px;}
.y27{bottom:177.600000px;}
.yd4{bottom:178.680000px;}
.y86{bottom:180.480000px;}
.yed{bottom:188.940000px;}
.y26{bottom:195.240000px;}
.yd3{bottom:196.230000px;}
.y85{bottom:198.030000px;}
.y10c{bottom:198.660000px;}
.ya9{bottom:200.640000px;}
.yf2{bottom:203.520000px;}
.y58{bottom:210.270000px;}
.y25{bottom:212.790000px;}
.yd2{bottom:213.870000px;}
.y84{bottom:215.670000px;}
.y10b{bottom:216.210000px;}
.yec{bottom:224.490000px;}
.y24{bottom:230.340000px;}
.yd1{bottom:231.420000px;}
.y83{bottom:233.220000px;}
.ya8{bottom:236.190000px;}
.y10a{bottom:243.120000px;}
.y57{bottom:245.910000px;}
.y23{bottom:247.980000px;}
.yd0{bottom:248.970000px;}
.y82{bottom:250.860000px;}
.yeb{bottom:260.130000px;}
.y56{bottom:263.460000px;}
.y22{bottom:265.530000px;}
.ycf{bottom:266.610000px;}
.ya7{bottom:271.740000px;}
.y81{bottom:277.410000px;}
.y55{bottom:281.100000px;}
.y21{bottom:283.170000px;}
.yce{bottom:284.160000px;}
.y109{bottom:291.450000px;}
.yea{bottom:295.680000px;}
.y54{bottom:298.650000px;}
.y20{bottom:300.720000px;}
.ycd{bottom:301.800000px;}
.ya6{bottom:307.380000px;}
.y80{bottom:312.960000px;}
.y53{bottom:316.200000px;}
.y1f{bottom:318.270000px;}
.y108{bottom:318.360000px;}
.ya5{bottom:324.930000px;}
.ycc{bottom:328.350000px;}
.y7f{bottom:330.600000px;}
.ye9{bottom:331.320000px;}
.y52{bottom:333.840000px;}
.y1e{bottom:335.910000px;}
.ya4{bottom:342.570000px;}
.y7e{bottom:348.150000px;}
.y51{bottom:351.390000px;}
.y1d{bottom:353.460000px;}
.y107{bottom:355.350000px;}
.ya3{bottom:360.120000px;}
.ycb{bottom:361.290000px;}
.ye8{bottom:366.870000px;}
.y50{bottom:368.940000px;}
.y1c{bottom:371.100000px;}
.y106{bottom:372.900000px;}
.y7d{bottom:374.790000px;}
.ya2{bottom:377.670000px;}
.y4f{bottom:386.580000px;}
.y1b{bottom:388.650000px;}
.y105{bottom:390.540000px;}
.ya1{bottom:395.310000px;}
.ye7{bottom:399.090000px;}
.y1a{bottom:406.200000px;}
.y104{bottom:408.090000px;}
.y7c{bottom:410.340000px;}
.ya0{bottom:412.860000px;}
.y4e{bottom:413.130000px;}
.yca{bottom:416.010000px;}
.y19{bottom:423.840000px;}
.y103{bottom:425.640000px;}
.y7b{bottom:427.890000px;}
.y9f{bottom:439.500000px;}
.y18{bottom:441.390000px;}
.y102{bottom:443.280000px;}
.yc9{bottom:443.370000px;}
.y4d{bottom:448.770000px;}
.y7a{bottom:454.530000px;}
.y17{bottom:459.030000px;}
.y101{bottom:460.830000px;}
.y4c{bottom:466.320000px;}
.yc8{bottom:470.670000px;}
.y9e{bottom:474.360000px;}
.y16{bottom:476.610000px;}
.y4b{bottom:483.900000px;}
.yb1{bottom:486.510000px;}
.y100{bottom:487.770000px;}
.y79{bottom:490.110000px;}
.yc6{bottom:498.030000px;}
.y4a{bottom:501.540000px;}
.y15{bottom:503.520000px;}
.y78{bottom:507.750000px;}
.yb0{bottom:513.870000px;}
.y49{bottom:519.090000px;}
.yff{bottom:525.120000px;}
.y77{bottom:525.300000px;}
.y48{bottom:536.730000px;}
.yaf{bottom:541.230000px;}
.y76{bottom:542.850000px;}
.y14{bottom:552.120000px;}
.y47{bottom:554.280000px;}
.y75{bottom:560.490000px;}
.yad{bottom:568.500000px;}
.y46{bottom:571.830000px;}
.yfe{bottom:573.450000px;}
.y74{bottom:578.040000px;}
.yc5{bottom:581.910000px;}
.y13{bottom:589.110000px;}
.y45{bottom:589.470000px;}
.yfd{bottom:591.000000px;}
.y73{bottom:595.590000px;}
.yac{bottom:595.860000px;}
.yc4{bottom:599.460000px;}
.y12{bottom:606.750000px;}
.y44{bottom:607.020000px;}
.yfc{bottom:608.550000px;}
.y72{bottom:613.230000px;}
.yaa{bottom:623.220000px;}
.y11{bottom:624.300000px;}
.yfb{bottom:626.190000px;}
.y71{bottom:630.780000px;}
.y43{bottom:633.660000px;}
.yc3{bottom:635.100000px;}
.y10{bottom:641.850000px;}
.yfa{bottom:643.740000px;}
.y70{bottom:648.420000px;}
.yc2{bottom:652.650000px;}
.yf{bottom:659.490000px;}
.yf9{bottom:661.290000px;}
.y6f{bottom:665.970000px;}
.y42{bottom:669.570000px;}
.yc1{bottom:670.200000px;}
.y9d{bottom:676.590000px;}
.ye{bottom:677.040000px;}
.yf8{bottom:678.930000px;}
.y6e{bottom:683.520000px;}
.yc0{bottom:687.840000px;}
.yd{bottom:694.680000px;}
.yf7{bottom:696.480000px;}
.ybf{bottom:705.390000px;}
.y6d{bottom:710.160000px;}
.y9c{bottom:712.140000px;}
.yc{bottom:712.230000px;}
.yf6{bottom:714.120000px;}
.y41{bottom:717.810000px;}
.ybe{bottom:723.030000px;}
.y6c{bottom:727.710000px;}
.y9b{bottom:729.690000px;}
.y40{bottom:735.360000px;}
.yb{bottom:739.140000px;}
.ybd{bottom:740.580000px;}
.yf5{bottom:741.030000px;}
.y9a{bottom:747.330000px;}
.y3f{bottom:753.000000px;}
.yf1{bottom:753.720000px;}
.ybc{bottom:758.130000px;}
.y6b{bottom:763.350000px;}
.y99{bottom:764.880000px;}
.y3e{bottom:770.550000px;}
.ybb{bottom:775.770000px;}
.y6a{bottom:780.900000px;}
.y98{bottom:782.520000px;}
.ya{bottom:787.380000px;}
.y3d{bottom:788.190000px;}
.yf0{bottom:789.270000px;}
.ye6{bottom:791.700000px;}
.y69{bottom:798.450000px;}
.y97{bottom:800.070000px;}
.yba{bottom:802.320000px;}
.y3c{bottom:805.740000px;}
.ye5{bottom:809.340000px;}
.y68{bottom:816.090000px;}
.y96{bottom:817.620000px;}
.yef{bottom:821.490000px;}
.y9{bottom:823.200000px;}
.y3b{bottom:823.290000px;}
.ye4{bottom:826.890000px;}
.y67{bottom:833.640000px;}
.y95{bottom:835.260000px;}
.yb9{bottom:837.240000px;}
.y3a{bottom:840.930000px;}
.ye3{bottom:844.530000px;}
.y117{bottom:848.670000px;}
.yb8{bottom:849.390000px;}
.y66{bottom:851.280000px;}
.y39{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.y94{bottom:861.810000px;}
.ye2{bottom:862.080000px;}
.y116{bottom:866.220000px;}
.y65{bottom:868.830000px;}
.y38{bottom:876.030000px;}
.ye1{bottom:879.630000px;}
.y64{bottom:886.380000px;}
.y115{bottom:892.860000px;}
.y37{bottom:893.670000px;}
.yb7{bottom:894.300000px;}
.y7{bottom:895.200000px;}
.ye0{bottom:897.270000px;}
.y93{bottom:897.720000px;}
.y63{bottom:904.020000px;}
.y36{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.ydf{bottom:914.820000px;}
.y114{bottom:919.410000px;}
.y62{bottom:921.570000px;}
.y35{bottom:928.860000px;}
.yde{bottom:932.460000px;}
.yb6{bottom:939.210000px;}
.y92{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y61{bottom:948.210000px;}
.y5{bottom:949.290000px;}
.ydd{bottom:950.010000px;}
.y91{bottom:963.600000px;}
.ydc{bottom:976.560000px;}
.y90{bottom:981.150000px;}
.y33{bottom:981.960000px;}
.y60{bottom:983.760000px;}
.yb5{bottom:984.120000px;}
.y4{bottom:987.630000px;}
.y113{bottom:990.150000px;}
.y8f{bottom:998.790000px;}
.y32{bottom:999.600000px;}
.y5f{bottom:1001.310000px;}
.y112{bottom:1007.790000px;}
.yda{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y8e{bottom:1016.370000px;}
.y31{bottom:1017.180000px;}
.y5e{bottom:1027.980000px;}
.yb4{bottom:1029.060000px;}
.y111{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yd9{bottom:1036.890000px;}
.y8d{bottom:1042.920000px;}
.y110{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y5d{bottom:1063.530000px;}
.yd8{bottom:1064.250000px;}
.y2e{bottom:1069.920000px;}
.yb2{bottom:1073.970000px;}
.y8c{bottom:1078.560000px;}
.y5c{bottom:1081.170000px;}
.y2d{bottom:1087.560000px;}
.yd7{bottom:1091.610000px;}
.y8b{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y5b{bottom:1107.720000px;}
.y8a{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h12{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:31.901133px;}
.h3{height:38.100586px;}
.hc{height:40.539023px;}
.hf{height:44.190000px;}
.h10{height:44.220000px;}
.h6{height:50.902383px;}
.hb{height:52.781133px;}
.h5{height:55.779258px;}
.h7{height:57.838008px;}
.ha{height:59.973223px;}
.h11{height:61.740000px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:39.060000px;}
.wa{width:39.420000px;}
.w5{width:50.220000px;}
.w8{width:50.310000px;}
.w3{width:59.040000px;}
.w18{width:64.560000px;}
.w9{width:79.200000px;}
.w7{width:86.490000px;}
.w16{width:103.500000px;}
.w12{width:107.280000px;}
.wc{width:114.030000px;}
.w14{width:117.270000px;}
.wd{width:120.810000px;}
.we{width:122.400000px;}
.w15{width:138.240000px;}
.w13{width:141.330000px;}
.wf{width:167.130000px;}
.wb{width:188.310000px;}
.w19{width:190.710000px;}
.w17{width:193.680000px;}
.w4{width:194.880000px;}
.w6{width:204.960000px;}
.w11{width:208.830000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:81.810000px;}
.x21{left:105.389987px;}
.xd{left:108.900000px;}
.x22{left:111.239987px;}
.x7{left:141.660000px;}
.x4{left:152.819987px;}
.x17{left:169.230000px;}
.x1f{left:187.049987px;}
.x2{left:201.539987px;}
.x1d{left:246.449987px;}
.x18{left:273.540000px;}
.x1b{left:283.979987px;}
.xe{left:297.930000px;}
.x12{left:305.489987px;}
.x13{left:318.180000px;}
.x8{left:337.260000px;}
.x9{left:388.200000px;}
.xf{left:412.680000px;}
.x14{left:426.180000px;}
.x19{left:468.030000px;}
.x10{left:534.210000px;}
.x15{left:568.230000px;}
.xa{left:593.880000px;}
.x20{left:614.309987px;}
.x1a{left:615.389987px;}
.x1c{left:628.889987px;}
.x11{left:657.330000px;}
.x1e{left:675.059987px;}
.xb{left:681.090000px;}
.x16{left:686.220000px;}
.xc{left:732.210000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.364267pt;}
.ls15{letter-spacing:-0.253867pt;}
.ls14{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.206933pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.034560pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls16{letter-spacing:0.046080pt;}
.lsb{letter-spacing:0.050667pt;}
.ls12{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183680pt;}
.ls10{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws10{word-spacing:-53.440000pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.807467pt;}
.wse{word-spacing:-11.802880pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.549867pt;}
.wsf{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._1b{margin-left:-4.414720pt;}
._6{margin-left:-3.153067pt;}
._7{margin-left:-1.902933pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.250347pt;}
._4{width:2.383787pt;}
._5{width:3.687890pt;}
._2{width:5.344000pt;}
._3{width:6.439893pt;}
._9{width:7.561173pt;}
._a{width:9.245334pt;}
._8{width:10.667200pt;}
._e{width:12.751253pt;}
._1a{width:13.692053pt;}
._b{width:15.283733pt;}
._c{width:17.575574pt;}
._1c{width:18.629866pt;}
._10{width:19.719360pt;}
._d{width:21.963840pt;}
._f{width:29.017920pt;}
._11{width:30.567680pt;}
._12{width:31.957120pt;}
._18{width:38.744000pt;}
._14{width:40.080000pt;}
._13{width:83.793920pt;}
._17{width:99.238080pt;}
._16{width:119.705600pt;}
._19{width:128.790400pt;}
._15{width:194.307840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:6.960000pt;}
.ydb{bottom:6.986667pt;}
.yae{bottom:7.040000pt;}
.yb3{bottom:22.640000pt;}
.yc7{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd6{bottom:111.546667pt;}
.y89{bottom:113.546667pt;}
.y10f{bottom:113.706667pt;}
.yf4{bottom:120.666667pt;}
.y5a{bottom:123.706667pt;}
.y88{bottom:129.146667pt;}
.y10e{bottom:129.306667pt;}
.yee{bottom:136.346667pt;}
.yd5{bottom:143.146667pt;}
.y87{bottom:144.826667pt;}
.yf3{bottom:152.266667pt;}
.y10d{bottom:152.906667pt;}
.y59{bottom:155.306667pt;}
.y27{bottom:157.866667pt;}
.yd4{bottom:158.826667pt;}
.y86{bottom:160.426667pt;}
.yed{bottom:167.946667pt;}
.y26{bottom:173.546667pt;}
.yd3{bottom:174.426667pt;}
.y85{bottom:176.026667pt;}
.y10c{bottom:176.586667pt;}
.ya9{bottom:178.346667pt;}
.yf2{bottom:180.906667pt;}
.y58{bottom:186.906667pt;}
.y25{bottom:189.146667pt;}
.yd2{bottom:190.106667pt;}
.y84{bottom:191.706667pt;}
.y10b{bottom:192.186667pt;}
.yec{bottom:199.546667pt;}
.y24{bottom:204.746667pt;}
.yd1{bottom:205.706667pt;}
.y83{bottom:207.306667pt;}
.ya8{bottom:209.946667pt;}
.y10a{bottom:216.106667pt;}
.y57{bottom:218.586667pt;}
.y23{bottom:220.426667pt;}
.yd0{bottom:221.306667pt;}
.y82{bottom:222.986667pt;}
.yeb{bottom:231.226667pt;}
.y56{bottom:234.186667pt;}
.y22{bottom:236.026667pt;}
.ycf{bottom:236.986667pt;}
.ya7{bottom:241.546667pt;}
.y81{bottom:246.586667pt;}
.y55{bottom:249.866667pt;}
.y21{bottom:251.706667pt;}
.yce{bottom:252.586667pt;}
.y109{bottom:259.066667pt;}
.yea{bottom:262.826667pt;}
.y54{bottom:265.466667pt;}
.y20{bottom:267.306667pt;}
.ycd{bottom:268.266667pt;}
.ya6{bottom:273.226667pt;}
.y80{bottom:278.186667pt;}
.y53{bottom:281.066667pt;}
.y1f{bottom:282.906667pt;}
.y108{bottom:282.986667pt;}
.ya5{bottom:288.826667pt;}
.ycc{bottom:291.866667pt;}
.y7f{bottom:293.866667pt;}
.ye9{bottom:294.506667pt;}
.y52{bottom:296.746667pt;}
.y1e{bottom:298.586667pt;}
.ya4{bottom:304.506667pt;}
.y7e{bottom:309.466667pt;}
.y51{bottom:312.346667pt;}
.y1d{bottom:314.186667pt;}
.y107{bottom:315.866667pt;}
.ya3{bottom:320.106667pt;}
.ycb{bottom:321.146667pt;}
.ye8{bottom:326.106667pt;}
.y50{bottom:327.946667pt;}
.y1c{bottom:329.866667pt;}
.y106{bottom:331.466667pt;}
.y7d{bottom:333.146667pt;}
.ya2{bottom:335.706667pt;}
.y4f{bottom:343.626667pt;}
.y1b{bottom:345.466667pt;}
.y105{bottom:347.146667pt;}
.ya1{bottom:351.386667pt;}
.ye7{bottom:354.746667pt;}
.y1a{bottom:361.066667pt;}
.y104{bottom:362.746667pt;}
.y7c{bottom:364.746667pt;}
.ya0{bottom:366.986667pt;}
.y4e{bottom:367.226667pt;}
.yca{bottom:369.786667pt;}
.y19{bottom:376.746667pt;}
.y103{bottom:378.346667pt;}
.y7b{bottom:380.346667pt;}
.y9f{bottom:390.666667pt;}
.y18{bottom:392.346667pt;}
.y102{bottom:394.026667pt;}
.yc9{bottom:394.106667pt;}
.y4d{bottom:398.906667pt;}
.y7a{bottom:404.026667pt;}
.y17{bottom:408.026667pt;}
.y101{bottom:409.626667pt;}
.y4c{bottom:414.506667pt;}
.yc8{bottom:418.373333pt;}
.y9e{bottom:421.653333pt;}
.y16{bottom:423.653333pt;}
.y4b{bottom:430.133333pt;}
.yb1{bottom:432.453333pt;}
.y100{bottom:433.573333pt;}
.y79{bottom:435.653333pt;}
.yc6{bottom:442.693333pt;}
.y4a{bottom:445.813333pt;}
.y15{bottom:447.573333pt;}
.y78{bottom:451.333333pt;}
.yb0{bottom:456.773333pt;}
.y49{bottom:461.413333pt;}
.yff{bottom:466.773333pt;}
.y77{bottom:466.933333pt;}
.y48{bottom:477.093333pt;}
.yaf{bottom:481.093333pt;}
.y76{bottom:482.533333pt;}
.y14{bottom:490.773333pt;}
.y47{bottom:492.693333pt;}
.y75{bottom:498.213333pt;}
.yad{bottom:505.333333pt;}
.y46{bottom:508.293333pt;}
.yfe{bottom:509.733333pt;}
.y74{bottom:513.813333pt;}
.yc5{bottom:517.253333pt;}
.y13{bottom:523.653333pt;}
.y45{bottom:523.973333pt;}
.yfd{bottom:525.333333pt;}
.y73{bottom:529.413333pt;}
.yac{bottom:529.653333pt;}
.yc4{bottom:532.853333pt;}
.y12{bottom:539.333333pt;}
.y44{bottom:539.573333pt;}
.yfc{bottom:540.933333pt;}
.y72{bottom:545.093333pt;}
.yaa{bottom:553.973333pt;}
.y11{bottom:554.933333pt;}
.yfb{bottom:556.613333pt;}
.y71{bottom:560.693333pt;}
.y43{bottom:563.253333pt;}
.yc3{bottom:564.533333pt;}
.y10{bottom:570.533333pt;}
.yfa{bottom:572.213333pt;}
.y70{bottom:576.373333pt;}
.yc2{bottom:580.133333pt;}
.yf{bottom:586.213333pt;}
.yf9{bottom:587.813333pt;}
.y6f{bottom:591.973333pt;}
.y42{bottom:595.173333pt;}
.yc1{bottom:595.733333pt;}
.y9d{bottom:601.413333pt;}
.ye{bottom:601.813333pt;}
.yf8{bottom:603.493333pt;}
.y6e{bottom:607.573333pt;}
.yc0{bottom:611.413333pt;}
.yd{bottom:617.493333pt;}
.yf7{bottom:619.093333pt;}
.ybf{bottom:627.013333pt;}
.y6d{bottom:631.253333pt;}
.y9c{bottom:633.013333pt;}
.yc{bottom:633.093333pt;}
.yf6{bottom:634.773333pt;}
.y41{bottom:638.053333pt;}
.ybe{bottom:642.693333pt;}
.y6c{bottom:646.853333pt;}
.y9b{bottom:648.613333pt;}
.y40{bottom:653.653333pt;}
.yb{bottom:657.013333pt;}
.ybd{bottom:658.293333pt;}
.yf5{bottom:658.693333pt;}
.y9a{bottom:664.293333pt;}
.y3f{bottom:669.333333pt;}
.yf1{bottom:669.973333pt;}
.ybc{bottom:673.893333pt;}
.y6b{bottom:678.533333pt;}
.y99{bottom:679.893333pt;}
.y3e{bottom:684.933333pt;}
.ybb{bottom:689.573333pt;}
.y6a{bottom:694.133333pt;}
.y98{bottom:695.573333pt;}
.ya{bottom:699.893333pt;}
.y3d{bottom:700.613333pt;}
.yf0{bottom:701.573333pt;}
.ye6{bottom:703.733333pt;}
.y69{bottom:709.733333pt;}
.y97{bottom:711.173333pt;}
.yba{bottom:713.173333pt;}
.y3c{bottom:716.213333pt;}
.ye5{bottom:719.413333pt;}
.y68{bottom:725.413333pt;}
.y96{bottom:726.773333pt;}
.yef{bottom:730.213333pt;}
.y9{bottom:731.733333pt;}
.y3b{bottom:731.813333pt;}
.ye4{bottom:735.013333pt;}
.y67{bottom:741.013333pt;}
.y95{bottom:742.453333pt;}
.yb9{bottom:744.213333pt;}
.y3a{bottom:747.493333pt;}
.ye3{bottom:750.693333pt;}
.y117{bottom:754.373333pt;}
.yb8{bottom:755.013333pt;}
.y66{bottom:756.693333pt;}
.y39{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.y94{bottom:766.053333pt;}
.ye2{bottom:766.293333pt;}
.y116{bottom:769.973333pt;}
.y65{bottom:772.293333pt;}
.y38{bottom:778.693333pt;}
.ye1{bottom:781.893333pt;}
.y64{bottom:787.893333pt;}
.y115{bottom:793.653333pt;}
.y37{bottom:794.373333pt;}
.yb7{bottom:794.933333pt;}
.y7{bottom:795.733333pt;}
.ye0{bottom:797.573333pt;}
.y93{bottom:797.973333pt;}
.y63{bottom:803.573333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.ydf{bottom:813.173333pt;}
.y114{bottom:817.253333pt;}
.y62{bottom:819.173333pt;}
.y35{bottom:825.653333pt;}
.yde{bottom:828.853333pt;}
.yb6{bottom:834.853333pt;}
.y92{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y61{bottom:842.853333pt;}
.y5{bottom:843.813333pt;}
.ydd{bottom:844.453333pt;}
.y91{bottom:856.533333pt;}
.ydc{bottom:868.053333pt;}
.y90{bottom:872.133333pt;}
.y33{bottom:872.853333pt;}
.y60{bottom:874.453333pt;}
.yb5{bottom:874.773333pt;}
.y4{bottom:877.893333pt;}
.y113{bottom:880.133333pt;}
.y8f{bottom:887.813333pt;}
.y32{bottom:888.533333pt;}
.y5f{bottom:890.053333pt;}
.y112{bottom:895.813333pt;}
.yda{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y8e{bottom:903.440000pt;}
.y31{bottom:904.160000pt;}
.y5e{bottom:913.760000pt;}
.yb4{bottom:914.720000pt;}
.y111{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yd9{bottom:921.680000pt;}
.y8d{bottom:927.040000pt;}
.y110{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y5d{bottom:945.360000pt;}
.yd8{bottom:946.000000pt;}
.y2e{bottom:951.040000pt;}
.yb2{bottom:954.640000pt;}
.y8c{bottom:958.720000pt;}
.y5c{bottom:961.040000pt;}
.y2d{bottom:966.720000pt;}
.yd7{bottom:970.320000pt;}
.y8b{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y5b{bottom:984.640000pt;}
.y8a{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h12{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:28.356562pt;}
.h3{height:33.867188pt;}
.hc{height:36.034687pt;}
.hf{height:39.280000pt;}
.h10{height:39.306667pt;}
.h6{height:45.246562pt;}
.hb{height:46.916562pt;}
.h5{height:49.581562pt;}
.h7{height:51.411562pt;}
.ha{height:53.309531pt;}
.h11{height:54.880000pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:34.720000pt;}
.wa{width:35.040000pt;}
.w5{width:44.640000pt;}
.w8{width:44.720000pt;}
.w3{width:52.480000pt;}
.w18{width:57.386667pt;}
.w9{width:70.400000pt;}
.w7{width:76.880000pt;}
.w16{width:92.000000pt;}
.w12{width:95.360000pt;}
.wc{width:101.360000pt;}
.w14{width:104.240000pt;}
.wd{width:107.386667pt;}
.we{width:108.800000pt;}
.w15{width:122.880000pt;}
.w13{width:125.626667pt;}
.wf{width:148.560000pt;}
.wb{width:167.386667pt;}
.w19{width:169.520000pt;}
.w17{width:172.160000pt;}
.w4{width:173.226667pt;}
.w6{width:182.186667pt;}
.w11{width:185.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:72.720000pt;}
.x21{left:93.679988pt;}
.xd{left:96.800000pt;}
.x22{left:98.879988pt;}
.x7{left:125.920000pt;}
.x4{left:135.839988pt;}
.x17{left:150.426667pt;}
.x1f{left:166.266655pt;}
.x2{left:179.146655pt;}
.x1d{left:219.066655pt;}
.x18{left:243.146667pt;}
.x1b{left:252.426655pt;}
.xe{left:264.826667pt;}
.x12{left:271.546655pt;}
.x13{left:282.826667pt;}
.x8{left:299.786667pt;}
.x9{left:345.066667pt;}
.xf{left:366.826667pt;}
.x14{left:378.826667pt;}
.x19{left:416.026667pt;}
.x10{left:474.853333pt;}
.x15{left:505.093333pt;}
.xa{left:527.893333pt;}
.x20{left:546.053322pt;}
.x1a{left:547.013322pt;}
.x1c{left:559.013322pt;}
.x11{left:584.293333pt;}
.x1e{left:600.053322pt;}
.xb{left:605.413333pt;}
.x16{left:609.973333pt;}
.xc{left:650.853333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  