
    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_a136604fd9713feaa63c1deb.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_3df05086cf8601cc98f99af5.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_68b247b5a7c8dec6e5a78f4d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4958995ec3890025a29552bc.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_bc41e7fce9ee9cd90691d171.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_a40b16b4ccc668c07091c153.woff2')format("woff");}.ff7{font-family:ff7;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.299400px;}
.ls23{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls22{letter-spacing:-0.178800px;}
.ls1f{letter-spacing:-0.160800px;}
.ls1c{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls21{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.038880px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.199200px;}
.ls1b{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls12{letter-spacing:0.420480px;}
.ls16{letter-spacing:13.413600px;}
.ls1d{letter-spacing:47.726640px;}
.ls19{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;}
}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.369800px;}
.ws5{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.160400px;}
.ws14{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.065600px;}
.ws15{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.614200px;}
.wse{word-spacing:-8.553600px;}
.wsf{word-spacing:-8.254200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._8{margin-left:-3.727801px;}
._3{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._1{width:1.090272px;}
._2{width:2.645400px;}
._6{width:3.961920px;}
._7{width:5.317198px;}
._4{width:6.493200px;}
._5{width:7.513798px;}
._9{width:8.899203px;}
._b{width:10.097274px;}
._16{width:11.726286px;}
._a{width:14.248440px;}
._11{width:15.931800px;}
._10{width:17.134200px;}
._17{width:21.222360px;}
._25{width:22.357247px;}
._20{width:27.154080px;}
._15{width:28.436760px;}
._f{width:31.683240px;}
._12{width:34.148160px;}
._14{width:38.957760px;}
._13{width:40.581000px;}
._d{width:60.600960px;}
._23{width:71.211960px;}
._e{width:72.213840px;}
._2a{width:78.660720px;}
._2b{width:80.176320px;}
._1b{width:89.458560px;}
._27{width:90.665040px;}
._26{width:91.887120px;}
._2e{width:93.269880px;}
._2f{width:94.568760px;}
._30{width:95.783640px;}
._18{width:99.979560px;}
._28{width:110.945160px;}
._24{width:136.442160px;}
._1a{width:150.059520px;}
._29{width:157.658400px;}
._1d{width:159.227640px;}
._1e{width:160.250400px;}
._1c{width:163.706760px;}
._19{width:194.728680px;}
._2c{width:218.620080px;}
._2d{width:219.931560px;}
._31{width:221.721120px;}
._22{width:264.708360px;}
._21{width:266.308800px;}
._c{width:286.471800px;}
._1f{width:346.382400px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.830000px;}
.y5a{bottom:7.920000px;}
.ya1{bottom:25.380000px;}
.y59{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y80{bottom:113.880000px;}
.yf7{bottom:124.140000px;}
.y7f{bottom:131.430000px;}
.yd3{bottom:138.720000px;}
.y28{bottom:140.250000px;}
.ya5{bottom:140.430000px;}
.yf6{bottom:141.780000px;}
.y7e{bottom:149.070000px;}
.ya4{bottom:151.590000px;}
.yd2{bottom:156.270000px;}
.y27{bottom:157.800000px;}
.y57{bottom:159.240000px;}
.yf5{bottom:168.330000px;}
.yd1{bottom:173.910000px;}
.y26{bottom:175.350000px;}
.y7d{bottom:175.620000px;}
.yf4{bottom:185.880000px;}
.yd0{bottom:191.460000px;}
.y25{bottom:192.990000px;}
.y56{bottom:194.880000px;}
.ya3{bottom:196.500000px;}
.ycf{bottom:209.100000px;}
.y7c{bottom:211.260000px;}
.yf3{bottom:212.520000px;}
.y24{bottom:228.540000px;}
.y7b{bottom:228.810000px;}
.yf2{bottom:230.070000px;}
.y55{bottom:230.430000px;}
.yce{bottom:235.650000px;}
.ya2{bottom:241.410000px;}
.y23{bottom:246.090000px;}
.y7a{bottom:246.360000px;}
.yf1{bottom:247.710000px;}
.y22{bottom:263.730000px;}
.y79{bottom:264.000000px;}
.y54{bottom:265.980000px;}
.ycd{bottom:271.200000px;}
.yf0{bottom:274.260000px;}
.y21{bottom:281.280000px;}
.y78{bottom:281.550000px;}
.ya0{bottom:286.410000px;}
.ycc{bottom:288.840000px;}
.yef{bottom:291.810000px;}
.y53{bottom:297.840000px;}
.y20{bottom:298.920000px;}
.y77{bottom:299.190000px;}
.ycb{bottom:306.390000px;}
.y52{bottom:315.390000px;}
.y1f{bottom:316.470000px;}
.y76{bottom:316.740000px;}
.yee{bottom:318.450000px;}
.yca{bottom:323.940000px;}
.y51{bottom:332.940000px;}
.y1e{bottom:334.020000px;}
.y75{bottom:334.290000px;}
.yed{bottom:336.000000px;}
.y118{bottom:336.990000px;}
.yc9{bottom:341.580000px;}
.y50{bottom:350.580000px;}
.y1d{bottom:351.660000px;}
.y74{bottom:351.930000px;}
.y9f{bottom:352.650000px;}
.y117{bottom:354.540000px;}
.yec{bottom:362.640000px;}
.y4f{bottom:368.130000px;}
.y1c{bottom:369.210000px;}
.y116{bottom:372.180000px;}
.yc8{bottom:377.130000px;}
.yeb{bottom:380.190000px;}
.y4e{bottom:385.770000px;}
.y73{bottom:387.480000px;}
.y9e{bottom:388.290000px;}
.yc7{bottom:394.770000px;}
.y1b{bottom:396.120000px;}
.y115{bottom:398.730000px;}
.y4d{bottom:403.320000px;}
.y72{bottom:405.120000px;}
.y9d{bottom:405.840000px;}
.yea{bottom:406.740000px;}
.yc6{bottom:412.320000px;}
.y114{bottom:416.370000px;}
.y4c{bottom:420.870000px;}
.y71{bottom:422.670000px;}
.y9c{bottom:423.390000px;}
.yc5{bottom:429.870000px;}
.ye9{bottom:433.380000px;}
.y4b{bottom:438.510000px;}
.y9b{bottom:441.030000px;}
.y113{bottom:442.920000px;}
.y1a{bottom:444.450000px;}
.yc4{bottom:447.510000px;}
.y70{bottom:449.220000px;}
.y4a{bottom:456.060000px;}
.y9a{bottom:458.580000px;}
.ye8{bottom:459.930000px;}
.y112{bottom:460.470000px;}
.y19{bottom:462.360000px;}
.yc3{bottom:465.060000px;}
.y99{bottom:476.160000px;}
.ye7{bottom:477.600000px;}
.y111{bottom:478.140000px;}
.yc2{bottom:482.730000px;}
.y6f{bottom:484.890000px;}
.y49{bottom:491.730000px;}
.y18{bottom:499.380000px;}
.yc1{bottom:500.280000px;}
.y6e{bottom:502.440000px;}
.ye6{bottom:504.510000px;}
.y110{bottom:504.690000px;}
.y48{bottom:509.280000px;}
.y98{bottom:511.800000px;}
.y17{bottom:516.930000px;}
.y6d{bottom:520.080000px;}
.y10f{bottom:522.330000px;}
.y47{bottom:526.830000px;}
.y97{bottom:529.350000px;}
.y16{bottom:534.570000px;}
.y6c{bottom:537.630000px;}
.y10e{bottom:539.880000px;}
.y46{bottom:544.470000px;}
.y96{bottom:546.990000px;}
.y15{bottom:552.120000px;}
.ye5{bottom:553.830000px;}
.y6b{bottom:555.180000px;}
.y45{bottom:562.020000px;}
.yc0{bottom:562.740000px;}
.y95{bottom:564.540000px;}
.y10d{bottom:566.430000px;}
.y14{bottom:569.670000px;}
.ye4{bottom:571.470000px;}
.y6a{bottom:572.820000px;}
.y94{bottom:582.090000px;}
.y10c{bottom:584.070000px;}
.y13{bottom:587.310000px;}
.ye3{bottom:589.020000px;}
.y69{bottom:590.370000px;}
.y44{bottom:597.660000px;}
.y93{bottom:599.730000px;}
.y10b{bottom:601.620000px;}
.y12{bottom:604.860000px;}
.ye2{bottom:606.660000px;}
.ybf{bottom:611.070000px;}
.y43{bottom:615.210000px;}
.y92{bottom:617.280000px;}
.y11{bottom:622.500000px;}
.ye1{bottom:624.210000px;}
.y68{bottom:626.010000px;}
.y10a{bottom:628.260000px;}
.ybe{bottom:628.620000px;}
.y42{bottom:632.760000px;}
.y10{bottom:640.050000px;}
.ye0{bottom:641.760000px;}
.y67{bottom:643.560000px;}
.y109{bottom:645.810000px;}
.ybd{bottom:646.260000px;}
.y41{bottom:650.400000px;}
.y91{bottom:652.920000px;}
.yf{bottom:657.600000px;}
.ydf{bottom:659.400000px;}
.y66{bottom:661.110000px;}
.y108{bottom:663.360000px;}
.ybc{bottom:663.810000px;}
.y90{bottom:670.470000px;}
.ye{bottom:675.240000px;}
.y40{bottom:676.950000px;}
.y65{bottom:678.750000px;}
.ybb{bottom:681.360000px;}
.y8f{bottom:688.020000px;}
.y107{bottom:690.000000px;}
.yd{bottom:692.790000px;}
.y64{bottom:696.300000px;}
.yba{bottom:699.000000px;}
.y8e{bottom:705.660000px;}
.y106{bottom:707.550000px;}
.yc{bottom:710.430000px;}
.y3f{bottom:712.590000px;}
.yb9{bottom:716.550000px;}
.y63{bottom:722.850000px;}
.yb{bottom:727.980000px;}
.y3e{bottom:730.140000px;}
.y8d{bottom:732.210000px;}
.yb8{bottom:734.190000px;}
.y3d{bottom:747.690000px;}
.y105{bottom:751.740000px;}
.ya{bottom:754.890000px;}
.y62{bottom:758.760000px;}
.y3c{bottom:765.330000px;}
.y8c{bottom:768.120000px;}
.yb7{bottom:769.740000px;}
.y104{bottom:778.290000px;}
.y3b{bottom:782.880000px;}
.yb6{bottom:787.290000px;}
.y103{bottom:795.930000px;}
.y3a{bottom:800.520000px;}
.yde{bottom:800.880000px;}
.y9{bottom:803.130000px;}
.y61{bottom:804.480000px;}
.yb5{bottom:804.930000px;}
.y102{bottom:813.480000px;}
.y8b{bottom:813.750000px;}
.y39{bottom:818.070000px;}
.ydd{bottom:818.520000px;}
.yb4{bottom:822.480000px;}
.y38{bottom:835.620000px;}
.ydc{bottom:836.070000px;}
.y8{bottom:838.950000px;}
.y101{bottom:840.030000px;}
.y8a{bottom:841.110000px;}
.yb3{bottom:849.030000px;}
.y60{bottom:849.390000px;}
.y37{bottom:853.260000px;}
.ydb{bottom:853.620000px;}
.y100{bottom:857.670000px;}
.y89{bottom:868.470000px;}
.yda{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.yff{bottom:884.220000px;}
.yb2{bottom:884.670000px;}
.y36{bottom:888.810000px;}
.y5e{bottom:894.300000px;}
.y88{bottom:895.830000px;}
.yfe{bottom:901.860000px;}
.yb1{bottom:902.220000px;}
.y35{bottom:906.450000px;}
.y6{bottom:910.950000px;}
.yfd{bottom:919.410000px;}
.yb0{bottom:919.860000px;}
.y87{bottom:923.100000px;}
.y34{bottom:924.000000px;}
.yd9{bottom:924.450000px;}
.yaf{bottom:937.410000px;}
.y5d{bottom:939.210000px;}
.y33{bottom:941.550000px;}
.yd8{bottom:942.000000px;}
.yfc{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y86{bottom:950.460000px;}
.yae{bottom:954.960000px;}
.y32{bottom:959.190000px;}
.yd7{bottom:959.550000px;}
.yfb{bottom:963.600000px;}
.yad{bottom:972.600000px;}
.y31{bottom:976.740000px;}
.yd6{bottom:977.190000px;}
.y5c{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.yac{bottom:990.150000px;}
.y30{bottom:994.290000px;}
.yd5{bottom:994.740000px;}
.y85{bottom:999.150000px;}
.yfa{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1020.960000px;}
.yd4{bottom:1021.680000px;}
.yf9{bottom:1025.370000px;}
.yab{bottom:1025.820000px;}
.y5b{bottom:1029.060000px;}
.y84{bottom:1034.820000px;}
.yaa{bottom:1043.370000px;}
.yf8{bottom:1051.920000px;}
.y83{bottom:1052.370000px;}
.y2e{bottom:1056.870000px;}
.ya9{bottom:1060.920000px;}
.y82{bottom:1069.920000px;}
.y58{bottom:1073.970000px;}
.ya8{bottom:1078.560000px;}
.y81{bottom:1087.560000px;}
.ya7{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.ya6{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.ha{height:32.918906px;}
.h3{height:38.100586px;}
.hf{height:44.100000px;}
.hb{height:44.190000px;}
.hc{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:61.650000px;}
.w5{width:99.990000px;}
.wb{width:102.090000px;}
.wd{width:110.160000px;}
.w6{width:112.530000px;}
.w9{width:140.310000px;}
.wc{width:143.190000px;}
.we{width:144.390000px;}
.w8{width:149.700000px;}
.w4{width:175.170000px;}
.wf{width:252.900000px;}
.w7{width:303.210000px;}
.wa{width:412.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:94.500000px;}
.x10{left:111.239987px;}
.x5{left:131.220000px;}
.xc{left:171.660000px;}
.x2{left:201.539987px;}
.xa{left:245.010000px;}
.x6{left:307.200000px;}
.xd{left:315.570000px;}
.xb{left:386.040000px;}
.x7{left:408.000000px;}
.xe{left:426.450000px;}
.x8{left:521.250000px;}
.xf{left:571.560000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.266133pt;}
.ls23{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls22{letter-spacing:-0.158933pt;}
.ls1f{letter-spacing:-0.142933pt;}
.ls1c{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls21{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.177067pt;}
.ls1b{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls12{letter-spacing:0.373760pt;}
.ls16{letter-spacing:11.923200pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.884267pt;}
.ws5{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.698133pt;}
.ws14{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.613867pt;}
.ws15{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.657067pt;}
.wse{word-spacing:-7.603200pt;}
.wsf{word-spacing:-7.337067pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._8{margin-left:-3.313601pt;}
._3{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969131pt;}
._2{width:2.351467pt;}
._6{width:3.521707pt;}
._7{width:4.726398pt;}
._4{width:5.771734pt;}
._5{width:6.678931pt;}
._9{width:7.910403pt;}
._b{width:8.975355pt;}
._16{width:10.423365pt;}
._a{width:12.665280pt;}
._11{width:14.161600pt;}
._10{width:15.230400pt;}
._17{width:18.864320pt;}
._25{width:19.873108pt;}
._20{width:24.136960pt;}
._15{width:25.277120pt;}
._f{width:28.162880pt;}
._12{width:30.353920pt;}
._14{width:34.629120pt;}
._13{width:36.072000pt;}
._d{width:53.867520pt;}
._23{width:63.299520pt;}
._e{width:64.190080pt;}
._2a{width:69.920640pt;}
._2b{width:71.267840pt;}
._1b{width:79.518720pt;}
._27{width:80.591147pt;}
._26{width:81.677440pt;}
._2e{width:82.906560pt;}
._2f{width:84.061120pt;}
._30{width:85.141013pt;}
._18{width:88.870720pt;}
._28{width:98.617920pt;}
._24{width:121.281920pt;}
._1a{width:133.386240pt;}
._29{width:140.140800pt;}
._1d{width:141.535680pt;}
._1e{width:142.444800pt;}
._1c{width:145.517120pt;}
._19{width:173.092160pt;}
._2c{width:194.328960pt;}
._2d{width:195.494720pt;}
._31{width:197.085440pt;}
._22{width:235.296320pt;}
._21{width:236.718933pt;}
._c{width:254.641600pt;}
._1f{width:307.895467pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.960000pt;}
.y5a{bottom:7.040000pt;}
.ya1{bottom:22.560000pt;}
.y59{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y80{bottom:101.226667pt;}
.yf7{bottom:110.346667pt;}
.y7f{bottom:116.826667pt;}
.yd3{bottom:123.306667pt;}
.y28{bottom:124.666667pt;}
.ya5{bottom:124.826667pt;}
.yf6{bottom:126.026667pt;}
.y7e{bottom:132.506667pt;}
.ya4{bottom:134.746667pt;}
.yd2{bottom:138.906667pt;}
.y27{bottom:140.266667pt;}
.y57{bottom:141.546667pt;}
.yf5{bottom:149.626667pt;}
.yd1{bottom:154.586667pt;}
.y26{bottom:155.866667pt;}
.y7d{bottom:156.106667pt;}
.yf4{bottom:165.226667pt;}
.yd0{bottom:170.186667pt;}
.y25{bottom:171.546667pt;}
.y56{bottom:173.226667pt;}
.ya3{bottom:174.666667pt;}
.ycf{bottom:185.866667pt;}
.y7c{bottom:187.786667pt;}
.yf3{bottom:188.906667pt;}
.y24{bottom:203.146667pt;}
.y7b{bottom:203.386667pt;}
.yf2{bottom:204.506667pt;}
.y55{bottom:204.826667pt;}
.yce{bottom:209.466667pt;}
.ya2{bottom:214.586667pt;}
.y23{bottom:218.746667pt;}
.y7a{bottom:218.986667pt;}
.yf1{bottom:220.186667pt;}
.y22{bottom:234.426667pt;}
.y79{bottom:234.666667pt;}
.y54{bottom:236.426667pt;}
.ycd{bottom:241.066667pt;}
.yf0{bottom:243.786667pt;}
.y21{bottom:250.026667pt;}
.y78{bottom:250.266667pt;}
.ya0{bottom:254.586667pt;}
.ycc{bottom:256.746667pt;}
.yef{bottom:259.386667pt;}
.y53{bottom:264.746667pt;}
.y20{bottom:265.706667pt;}
.y77{bottom:265.946667pt;}
.ycb{bottom:272.346667pt;}
.y52{bottom:280.346667pt;}
.y1f{bottom:281.306667pt;}
.y76{bottom:281.546667pt;}
.yee{bottom:283.066667pt;}
.yca{bottom:287.946667pt;}
.y51{bottom:295.946667pt;}
.y1e{bottom:296.906667pt;}
.y75{bottom:297.146667pt;}
.yed{bottom:298.666667pt;}
.y118{bottom:299.546667pt;}
.yc9{bottom:303.626667pt;}
.y50{bottom:311.626667pt;}
.y1d{bottom:312.586667pt;}
.y74{bottom:312.826667pt;}
.y9f{bottom:313.466667pt;}
.y117{bottom:315.146667pt;}
.yec{bottom:322.346667pt;}
.y4f{bottom:327.226667pt;}
.y1c{bottom:328.186667pt;}
.y116{bottom:330.826667pt;}
.yc8{bottom:335.226667pt;}
.yeb{bottom:337.946667pt;}
.y4e{bottom:342.906667pt;}
.y73{bottom:344.426667pt;}
.y9e{bottom:345.146667pt;}
.yc7{bottom:350.906667pt;}
.y1b{bottom:352.106667pt;}
.y115{bottom:354.426667pt;}
.y4d{bottom:358.506667pt;}
.y72{bottom:360.106667pt;}
.y9d{bottom:360.746667pt;}
.yea{bottom:361.546667pt;}
.yc6{bottom:366.506667pt;}
.y114{bottom:370.106667pt;}
.y4c{bottom:374.106667pt;}
.y71{bottom:375.706667pt;}
.y9c{bottom:376.346667pt;}
.yc5{bottom:382.106667pt;}
.ye9{bottom:385.226667pt;}
.y4b{bottom:389.786667pt;}
.y9b{bottom:392.026667pt;}
.y113{bottom:393.706667pt;}
.y1a{bottom:395.066667pt;}
.yc4{bottom:397.786667pt;}
.y70{bottom:399.306667pt;}
.y4a{bottom:405.386667pt;}
.y9a{bottom:407.626667pt;}
.ye8{bottom:408.826667pt;}
.y112{bottom:409.306667pt;}
.y19{bottom:410.986667pt;}
.yc3{bottom:413.386667pt;}
.y99{bottom:423.253333pt;}
.ye7{bottom:424.533333pt;}
.y111{bottom:425.013333pt;}
.yc2{bottom:429.093333pt;}
.y6f{bottom:431.013333pt;}
.y49{bottom:437.093333pt;}
.y18{bottom:443.893333pt;}
.yc1{bottom:444.693333pt;}
.y6e{bottom:446.613333pt;}
.ye6{bottom:448.453333pt;}
.y110{bottom:448.613333pt;}
.y48{bottom:452.693333pt;}
.y98{bottom:454.933333pt;}
.y17{bottom:459.493333pt;}
.y6d{bottom:462.293333pt;}
.y10f{bottom:464.293333pt;}
.y47{bottom:468.293333pt;}
.y97{bottom:470.533333pt;}
.y16{bottom:475.173333pt;}
.y6c{bottom:477.893333pt;}
.y10e{bottom:479.893333pt;}
.y46{bottom:483.973333pt;}
.y96{bottom:486.213333pt;}
.y15{bottom:490.773333pt;}
.ye5{bottom:492.293333pt;}
.y6b{bottom:493.493333pt;}
.y45{bottom:499.573333pt;}
.yc0{bottom:500.213333pt;}
.y95{bottom:501.813333pt;}
.y10d{bottom:503.493333pt;}
.y14{bottom:506.373333pt;}
.ye4{bottom:507.973333pt;}
.y6a{bottom:509.173333pt;}
.y94{bottom:517.413333pt;}
.y10c{bottom:519.173333pt;}
.y13{bottom:522.053333pt;}
.ye3{bottom:523.573333pt;}
.y69{bottom:524.773333pt;}
.y44{bottom:531.253333pt;}
.y93{bottom:533.093333pt;}
.y10b{bottom:534.773333pt;}
.y12{bottom:537.653333pt;}
.ye2{bottom:539.253333pt;}
.ybf{bottom:543.173333pt;}
.y43{bottom:546.853333pt;}
.y92{bottom:548.693333pt;}
.y11{bottom:553.333333pt;}
.ye1{bottom:554.853333pt;}
.y68{bottom:556.453333pt;}
.y10a{bottom:558.453333pt;}
.ybe{bottom:558.773333pt;}
.y42{bottom:562.453333pt;}
.y10{bottom:568.933333pt;}
.ye0{bottom:570.453333pt;}
.y67{bottom:572.053333pt;}
.y109{bottom:574.053333pt;}
.ybd{bottom:574.453333pt;}
.y41{bottom:578.133333pt;}
.y91{bottom:580.373333pt;}
.yf{bottom:584.533333pt;}
.ydf{bottom:586.133333pt;}
.y66{bottom:587.653333pt;}
.y108{bottom:589.653333pt;}
.ybc{bottom:590.053333pt;}
.y90{bottom:595.973333pt;}
.ye{bottom:600.213333pt;}
.y40{bottom:601.733333pt;}
.y65{bottom:603.333333pt;}
.ybb{bottom:605.653333pt;}
.y8f{bottom:611.573333pt;}
.y107{bottom:613.333333pt;}
.yd{bottom:615.813333pt;}
.y64{bottom:618.933333pt;}
.yba{bottom:621.333333pt;}
.y8e{bottom:627.253333pt;}
.y106{bottom:628.933333pt;}
.yc{bottom:631.493333pt;}
.y3f{bottom:633.413333pt;}
.yb9{bottom:636.933333pt;}
.y63{bottom:642.533333pt;}
.yb{bottom:647.093333pt;}
.y3e{bottom:649.013333pt;}
.y8d{bottom:650.853333pt;}
.yb8{bottom:652.613333pt;}
.y3d{bottom:664.613333pt;}
.y105{bottom:668.213333pt;}
.ya{bottom:671.013333pt;}
.y62{bottom:674.453333pt;}
.y3c{bottom:680.293333pt;}
.y8c{bottom:682.773333pt;}
.yb7{bottom:684.213333pt;}
.y104{bottom:691.813333pt;}
.y3b{bottom:695.893333pt;}
.yb6{bottom:699.813333pt;}
.y103{bottom:707.493333pt;}
.y3a{bottom:711.573333pt;}
.yde{bottom:711.893333pt;}
.y9{bottom:713.893333pt;}
.y61{bottom:715.093333pt;}
.yb5{bottom:715.493333pt;}
.y102{bottom:723.093333pt;}
.y8b{bottom:723.333333pt;}
.y39{bottom:727.173333pt;}
.ydd{bottom:727.573333pt;}
.yb4{bottom:731.093333pt;}
.y38{bottom:742.773333pt;}
.ydc{bottom:743.173333pt;}
.y8{bottom:745.733333pt;}
.y101{bottom:746.693333pt;}
.y8a{bottom:747.653333pt;}
.yb3{bottom:754.693333pt;}
.y60{bottom:755.013333pt;}
.y37{bottom:758.453333pt;}
.ydb{bottom:758.773333pt;}
.y100{bottom:762.373333pt;}
.y89{bottom:771.973333pt;}
.yda{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.yff{bottom:785.973333pt;}
.yb2{bottom:786.373333pt;}
.y36{bottom:790.053333pt;}
.y5e{bottom:794.933333pt;}
.y88{bottom:796.293333pt;}
.yfe{bottom:801.653333pt;}
.yb1{bottom:801.973333pt;}
.y35{bottom:805.733333pt;}
.y6{bottom:809.733333pt;}
.yfd{bottom:817.253333pt;}
.yb0{bottom:817.653333pt;}
.y87{bottom:820.533333pt;}
.y34{bottom:821.333333pt;}
.yd9{bottom:821.733333pt;}
.yaf{bottom:833.253333pt;}
.y5d{bottom:834.853333pt;}
.y33{bottom:836.933333pt;}
.yd8{bottom:837.333333pt;}
.yfc{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y86{bottom:844.853333pt;}
.yae{bottom:848.853333pt;}
.y32{bottom:852.613333pt;}
.yd7{bottom:852.933333pt;}
.yfb{bottom:856.533333pt;}
.yad{bottom:864.533333pt;}
.y31{bottom:868.213333pt;}
.yd6{bottom:868.613333pt;}
.y5c{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.yac{bottom:880.133333pt;}
.y30{bottom:883.813333pt;}
.yd5{bottom:884.213333pt;}
.y85{bottom:888.133333pt;}
.yfa{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:907.520000pt;}
.yd4{bottom:908.160000pt;}
.yf9{bottom:911.440000pt;}
.yab{bottom:911.840000pt;}
.y5b{bottom:914.720000pt;}
.y84{bottom:919.840000pt;}
.yaa{bottom:927.440000pt;}
.yf8{bottom:935.040000pt;}
.y83{bottom:935.440000pt;}
.y2e{bottom:939.440000pt;}
.ya9{bottom:943.040000pt;}
.y82{bottom:951.040000pt;}
.y58{bottom:954.640000pt;}
.ya8{bottom:958.720000pt;}
.y81{bottom:966.720000pt;}
.ya7{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.ya6{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.ha{height:29.261250pt;}
.h3{height:33.867188pt;}
.hf{height:39.200000pt;}
.hb{height:39.280000pt;}
.hc{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:54.800000pt;}
.w5{width:88.880000pt;}
.wb{width:90.746667pt;}
.wd{width:97.920000pt;}
.w6{width:100.026667pt;}
.w9{width:124.720000pt;}
.wc{width:127.280000pt;}
.we{width:128.346667pt;}
.w8{width:133.066667pt;}
.w4{width:155.706667pt;}
.wf{width:224.800000pt;}
.w7{width:269.520000pt;}
.wa{width:366.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:84.000000pt;}
.x10{left:98.879988pt;}
.x5{left:116.640000pt;}
.xc{left:152.586667pt;}
.x2{left:179.146655pt;}
.xa{left:217.786667pt;}
.x6{left:273.066667pt;}
.xd{left:280.506667pt;}
.xb{left:343.146667pt;}
.x7{left:362.666667pt;}
.xe{left:379.066667pt;}
.x8{left:463.333333pt;}
.xf{left:508.053333pt;}
.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; }
  