
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_553d97e373f95b62502df4a3.woff')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_b733d0b7af0ab6f84cf44b9c.woff')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_a7975e88771e7ee5a2039260.woff')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_6747b9c7ac05f324f9f3e571.woff')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_0cfc330f37ced2ad6cad7707.woff')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_c11050a725771c025a318cf0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_c5813512aecce3ed94867408.woff')format("woff");}.ff9{font-family:ff9;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;}
.v3{vertical-align:9.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls24{letter-spacing:-3.066000px;}
.ls27{letter-spacing:-2.112000px;}
.ls23{letter-spacing:-1.626000px;}
.ls21{letter-spacing:-1.236000px;}
.ls19{letter-spacing:-0.876000px;}
.ls2a{letter-spacing:-0.576600px;}
.ls18{letter-spacing:-0.538800px;}
.ls1a{letter-spacing:-0.520800px;}
.ls26{letter-spacing:-0.368400px;}
.ls17{letter-spacing:-0.290400px;}
.ls11{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.185400px;}
.ls16{letter-spacing:-0.160800px;}
.ls13{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.125400px;}
.ls1e{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls2b{letter-spacing:-0.067200px;}
.ls1b{letter-spacing:-0.031800px;}
.ls2e{letter-spacing:-0.011160px;}
.ls22{letter-spacing:-0.007560px;}
.ls20{letter-spacing:-0.003960px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.045360px;}
.ls1d{letter-spacing:0.050400px;}
.ls28{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.069600px;}
.ls4{letter-spacing:0.074160px;}
.ls1f{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.113400px;}
.ls14{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.143400px;}
.ls9{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.174600px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls2d{letter-spacing:47.726640px;}
.ls29{letter-spacing:63.566640px;}
.ls2c{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;}
}
.ws1d{word-spacing:-14.493600px;}
.ws13{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.369800px;}
.wsb{word-spacing:-13.342800px;}
.ws14{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.296000px;}
.ws16{word-spacing:-13.276800px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.222440px;}
.ws18{word-spacing:-13.218840px;}
.ws20{word-spacing:-13.215240px;}
.ws1f{word-spacing:-13.159200px;}
.ws5{word-spacing:-13.101000px;}
.wsa{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws7{word-spacing:-12.982800px;}
.wse{word-spacing:-12.936000px;}
.ws1b{word-spacing:-12.858000px;}
.ws11{word-spacing:-12.705600px;}
.wsf{word-spacing:-12.687600px;}
.ws1e{word-spacing:-12.649800px;}
.ws10{word-spacing:-12.350400px;}
.ws17{word-spacing:-11.990400px;}
.ws19{word-spacing:-11.600400px;}
.ws1c{word-spacing:-11.114400px;}
.ws1a{word-spacing:-10.160400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws12{word-spacing:0.000000px;}
._5{margin-left:-6.807023px;}
._6{margin-left:-5.603400px;}
._a{margin-left:-4.543800px;}
._3{margin-left:-3.536040px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._8{width:2.739228px;}
._9{width:4.281530px;}
._7{width:5.430600px;}
._f{width:6.476823px;}
._b{width:7.645334px;}
._c{width:9.048523px;}
._2{width:10.063897px;}
._10{width:11.122200px;}
._d{width:12.204600px;}
._16{width:15.210360px;}
._1b{width:17.314560px;}
._1c{width:18.336600px;}
._e{width:20.140200px;}
._19{width:21.837120px;}
._12{width:23.745840px;}
._17{width:30.060000px;}
._18{width:31.082040px;}
._21{width:37.184400px;}
._22{width:38.716560px;}
._1a{width:41.498400px;}
._1d{width:48.306240px;}
._13{width:51.626640px;}
._26{width:72.288000px;}
._27{width:85.754880px;}
._28{width:87.067800px;}
._24{width:89.553960px;}
._23{width:90.565560px;}
._1e{width:124.412040px;}
._1f{width:125.544600px;}
._14{width:140.044320px;}
._25{width:160.774440px;}
._15{width:167.554440px;}
._11{width:171.682454px;}
._20{width:678.021000px;}
.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;}
.y77{bottom:6.210000px;}
.y79{bottom:6.300000px;}
.y5e{bottom:7.830000px;}
.y5b{bottom:7.920000px;}
.y5a{bottom:25.470000px;}
.y76{bottom:26.820000px;}
.y59{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaa{bottom:112.440000px;}
.y82{bottom:118.650000px;}
.y57{bottom:122.790000px;}
.ya9{bottom:129.990000px;}
.y56{bottom:140.340000px;}
.y81{bottom:142.950000px;}
.ycd{bottom:146.010000px;}
.ya8{bottom:147.540000px;}
.yf7{bottom:157.890000px;}
.ycc{bottom:163.560000px;}
.y80{bottom:167.250000px;}
.y27{bottom:170.490000px;}
.yf6{bottom:175.440000px;}
.y55{bottom:175.710000px;}
.ya7{bottom:180.570000px;}
.ycb{bottom:181.110000px;}
.y54{bottom:185.790000px;}
.y7f{bottom:191.640000px;}
.yca{bottom:198.750000px;}
.yf5{bottom:202.080000px;}
.y26{bottom:207.480000px;}
.ya6{bottom:207.840000px;}
.y7e{bottom:215.940000px;}
.yc9{bottom:216.300000px;}
.yf4{bottom:219.630000px;}
.y25{bottom:225.120000px;}
.y53{bottom:231.240000px;}
.yc8{bottom:233.940000px;}
.ya5{bottom:235.200000px;}
.y7d{bottom:240.330000px;}
.y24{bottom:242.670000px;}
.yf3{bottom:246.180000px;}
.yc7{bottom:251.490000px;}
.y23{bottom:260.310000px;}
.ya4{bottom:262.560000px;}
.yf2{bottom:263.820000px;}
.y7c{bottom:264.630000px;}
.y52{bottom:266.790000px;}
.yc6{bottom:269.040000px;}
.y22{bottom:277.860000px;}
.y51{bottom:284.430000px;}
.yc5{bottom:286.680000px;}
.y7b{bottom:288.930000px;}
.ya3{bottom:289.920000px;}
.yf1{bottom:290.370000px;}
.y21{bottom:295.410000px;}
.y50{bottom:301.980000px;}
.yc4{bottom:304.230000px;}
.yf0{bottom:308.010000px;}
.y20{bottom:313.050000px;}
.y7a{bottom:313.320000px;}
.ya2{bottom:317.190000px;}
.y4f{bottom:319.530000px;}
.yc3{bottom:321.870000px;}
.yef{bottom:334.560000px;}
.y78{bottom:337.620000px;}
.yc2{bottom:339.420000px;}
.ya1{bottom:344.550000px;}
.y4e{bottom:346.440000px;}
.y1f{bottom:348.600000px;}
.yee{bottom:352.110000px;}
.y75{bottom:362.010000px;}
.y1e{bottom:366.240000px;}
.yc1{bottom:366.330000px;}
.yed{bottom:369.750000px;}
.ya0{bottom:371.910000px;}
.y1d{bottom:383.790000px;}
.y4d{bottom:394.770000px;}
.yec{bottom:396.300000px;}
.y9f{bottom:399.270000px;}
.y1c{bottom:401.340000px;}
.y4c{bottom:412.320000px;}
.yeb{bottom:413.940000px;}
.yc0{bottom:414.570000px;}
.y1b{bottom:418.980000px;}
.y9e{bottom:426.540000px;}
.y74{bottom:428.250000px;}
.y4b{bottom:429.870000px;}
.ybf{bottom:432.120000px;}
.y1a{bottom:436.530000px;}
.yea{bottom:440.490000px;}
.y4a{bottom:447.510000px;}
.ybe{bottom:450.570000px;}
.y9d{bottom:453.900000px;}
.y19{bottom:454.170000px;}
.ye9{bottom:458.040000px;}
.y73{bottom:463.800000px;}
.y49{bottom:465.060000px;}
.ybd{bottom:469.020000px;}
.y18{bottom:471.750000px;}
.y72{bottom:481.470000px;}
.y48{bottom:482.730000px;}
.ye8{bottom:484.710000px;}
.ybc{bottom:487.500000px;}
.y71{bottom:499.020000px;}
.y47{bottom:500.280000px;}
.ye7{bottom:502.260000px;}
.y9c{bottom:502.620000px;}
.ybb{bottom:505.050000px;}
.y17{bottom:507.300000px;}
.y70{bottom:516.660000px;}
.yba{bottom:523.410000px;}
.y16{bottom:524.940000px;}
.ye6{bottom:528.900000px;}
.y6f{bottom:534.210000px;}
.y46{bottom:535.830000px;}
.y9b{bottom:538.260000px;}
.yb9{bottom:541.860000px;}
.y15{bottom:542.490000px;}
.y6e{bottom:551.760000px;}
.y45{bottom:553.470000px;}
.ye5{bottom:555.450000px;}
.y9a{bottom:555.810000px;}
.y14{bottom:560.130000px;}
.y6d{bottom:569.400000px;}
.yb8{bottom:569.580000px;}
.y44{bottom:571.020000px;}
.ye4{bottom:573.000000px;}
.y99{bottom:573.360000px;}
.y13{bottom:577.680000px;}
.y43{bottom:588.660000px;}
.ye3{bottom:590.640000px;}
.y98{bottom:591.000000px;}
.y6c{bottom:604.950000px;}
.y42{bottom:606.210000px;}
.yb7{bottom:606.660000px;}
.y12{bottom:613.230000px;}
.ye2{bottom:617.190000px;}
.y6b{bottom:622.590000px;}
.yb6{bottom:624.210000px;}
.y97{bottom:626.550000px;}
.y11{bottom:630.870000px;}
.ye1{bottom:634.830000px;}
.y6a{bottom:640.140000px;}
.y41{bottom:641.760000px;}
.y96{bottom:644.190000px;}
.y10{bottom:648.420000px;}
.y69{bottom:657.690000px;}
.y40{bottom:659.400000px;}
.ye0{bottom:661.380000px;}
.yf{bottom:665.970000px;}
.y68{bottom:675.330000px;}
.y3f{bottom:676.950000px;}
.ydf{bottom:678.930000px;}
.y95{bottom:679.740000px;}
.ye{bottom:683.610000px;}
.y67{bottom:692.880000px;}
.y3e{bottom:694.590000px;}
.y94{bottom:697.290000px;}
.yd{bottom:701.160000px;}
.yde{bottom:705.570000px;}
.y3d{bottom:712.140000px;}
.yc{bottom:718.800000px;}
.ydd{bottom:723.120000px;}
.y66{bottom:725.820000px;}
.y3c{bottom:729.690000px;}
.y93{bottom:732.930000px;}
.yb{bottom:736.350000px;}
.y3b{bottom:747.330000px;}
.ydc{bottom:749.670000px;}
.y92{bottom:750.480000px;}
.y65{bottom:753.180000px;}
.ya{bottom:753.900000px;}
.yb5{bottom:764.880000px;}
.ydb{bottom:767.310000px;}
.y64{bottom:780.540000px;}
.y9{bottom:780.810000px;}
.yb4{bottom:782.520000px;}
.y3a{bottom:782.880000px;}
.y91{bottom:786.030000px;}
.yda{bottom:793.860000px;}
.yb3{bottom:800.070000px;}
.y39{bottom:800.520000px;}
.y90{bottom:803.670000px;}
.y63{bottom:807.900000px;}
.yd9{bottom:811.500000px;}
.y38{bottom:818.070000px;}
.yb2{bottom:826.980000px;}
.y8{bottom:829.140000px;}
.y62{bottom:835.170000px;}
.yd8{bottom:838.050000px;}
.y8f{bottom:839.220000px;}
.y37{bottom:853.620000px;}
.yd7{bottom:855.600000px;}
.y8e{bottom:856.860000px;}
.y7{bottom:864.960000px;}
.y36{bottom:871.260000px;}
.yb1{bottom:875.220000px;}
.y61{bottom:880.170000px;}
.yd6{bottom:882.240000px;}
.y8d{bottom:892.410000px;}
.yb0{bottom:892.860000px;}
.yd5{bottom:899.790000px;}
.y6{bottom:900.960000px;}
.y35{bottom:906.810000px;}
.y60{bottom:907.440000px;}
.y8c{bottom:909.960000px;}
.y34{bottom:924.450000px;}
.yd4{bottom:926.430000px;}
.yaf{bottom:928.410000px;}
.y5f{bottom:934.800000px;}
.y5{bottom:936.960000px;}
.y33{bottom:942.000000px;}
.yd3{bottom:943.980000px;}
.y8b{bottom:945.600000px;}
.yae{bottom:945.960000px;}
.y32{bottom:959.550000px;}
.y5d{bottom:962.160000px;}
.y8a{bottom:963.150000px;}
.yad{bottom:963.600000px;}
.yd2{bottom:970.530000px;}
.y4{bottom:973.050000px;}
.y31{bottom:977.190000px;}
.yac{bottom:981.150000px;}
.yd1{bottom:988.170000px;}
.y5c{bottom:989.430000px;}
.y89{bottom:998.790000px;}
.y3{bottom:1012.230000px;}
.y30{bottom:1012.770000px;}
.yd0{bottom:1015.110000px;}
.y88{bottom:1016.370000px;}
.y58{bottom:1016.820000px;}
.y2f{bottom:1030.320000px;}
.yab{bottom:1034.370000px;}
.y2e{bottom:1047.960000px;}
.y87{bottom:1051.920000px;}
.ycf{bottom:1063.350000px;}
.y2d{bottom:1065.510000px;}
.y86{bottom:1069.560000px;}
.y2c{bottom:1083.150000px;}
.yce{bottom:1090.260000px;}
.y2b{bottom:1100.700000px;}
.y85{bottom:1105.110000px;}
.y84{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y83{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h10{height:23.580000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.hd{height:26.640000px;}
.hb{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:44.100000px;}
.he{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.740000px;}
.h12{height:61.793886px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h9{height:91.222383px;}
.h8{height:96.027539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:42.120000px;}
.w5{width:42.210000px;}
.we{width:92.280000px;}
.wd{width:92.340000px;}
.w10{width:109.080000px;}
.w6{width:124.290000px;}
.wf{width:130.050000px;}
.w8{width:130.230000px;}
.w3{width:160.140000px;}
.w7{width:167.160000px;}
.wa{width:245.550000px;}
.wb{width:246.600000px;}
.w9{width:254.460000px;}
.wc{width:257.160000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.xe{left:72.540000px;}
.x16{left:95.039987px;}
.x11{left:104.670000px;}
.x18{left:111.239987px;}
.x17{left:122.039987px;}
.x4{left:168.419987px;}
.x2{left:209.819987px;}
.x7{left:229.710000px;}
.x8{left:272.550000px;}
.x9{left:315.480000px;}
.xf{left:327.720000px;}
.x12{left:362.550000px;}
.xa{left:440.490000px;}
.x13{left:455.700000px;}
.x5{left:457.409987px;}
.x14{left:548.790000px;}
.x10{left:574.080000px;}
.xb{left:608.370000px;}
.xc{left:651.300000px;}
.x15{left:679.560000px;}
.xd{left:694.230000px;}
.x3{left:816.989987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls24{letter-spacing:-2.725333pt;}
.ls27{letter-spacing:-1.877333pt;}
.ls23{letter-spacing:-1.445333pt;}
.ls21{letter-spacing:-1.098667pt;}
.ls19{letter-spacing:-0.778667pt;}
.ls2a{letter-spacing:-0.512533pt;}
.ls18{letter-spacing:-0.478933pt;}
.ls1a{letter-spacing:-0.462933pt;}
.ls26{letter-spacing:-0.327467pt;}
.ls17{letter-spacing:-0.258133pt;}
.ls11{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.164800pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls13{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.111467pt;}
.ls1e{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls2b{letter-spacing:-0.059733pt;}
.ls1b{letter-spacing:-0.028267pt;}
.ls2e{letter-spacing:-0.009920pt;}
.ls22{letter-spacing:-0.006720pt;}
.ls20{letter-spacing:-0.003520pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls1d{letter-spacing:0.044800pt;}
.ls28{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.061867pt;}
.ls4{letter-spacing:0.065920pt;}
.ls1f{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.100800pt;}
.ls14{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.127467pt;}
.ls9{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.155200pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:42.423680pt;}
.ls29{letter-spacing:56.503680pt;}
.ls2c{letter-spacing:71.863680pt;}
.ws1d{word-spacing:-12.883200pt;}
.ws13{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.884267pt;}
.wsb{word-spacing:-11.860267pt;}
.ws14{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.818667pt;}
.ws16{word-spacing:-11.801600pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.753280pt;}
.ws18{word-spacing:-11.750080pt;}
.ws20{word-spacing:-11.746880pt;}
.ws1f{word-spacing:-11.697067pt;}
.ws5{word-spacing:-11.645333pt;}
.wsa{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws7{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.498667pt;}
.ws1b{word-spacing:-11.429333pt;}
.ws11{word-spacing:-11.293867pt;}
.wsf{word-spacing:-11.277867pt;}
.ws1e{word-spacing:-11.244267pt;}
.ws10{word-spacing:-10.978133pt;}
.ws17{word-spacing:-10.658133pt;}
.ws19{word-spacing:-10.311467pt;}
.ws1c{word-spacing:-9.879467pt;}
.ws1a{word-spacing:-9.031467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws12{word-spacing:0.000000pt;}
._5{margin-left:-6.050687pt;}
._6{margin-left:-4.980800pt;}
._a{margin-left:-4.038933pt;}
._3{margin-left:-3.143147pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._8{width:2.434870pt;}
._9{width:3.805805pt;}
._7{width:4.827200pt;}
._f{width:5.757176pt;}
._b{width:6.795853pt;}
._c{width:8.043131pt;}
._2{width:8.945686pt;}
._10{width:9.886400pt;}
._d{width:10.848534pt;}
._16{width:13.520320pt;}
._1b{width:15.390720pt;}
._1c{width:16.299200pt;}
._e{width:17.902400pt;}
._19{width:19.410773pt;}
._12{width:21.107413pt;}
._17{width:26.720000pt;}
._18{width:27.628480pt;}
._21{width:33.052800pt;}
._22{width:34.414720pt;}
._1a{width:36.887467pt;}
._1d{width:42.938880pt;}
._13{width:45.890347pt;}
._26{width:64.256000pt;}
._27{width:76.226560pt;}
._28{width:77.393600pt;}
._24{width:79.603520pt;}
._23{width:80.502720pt;}
._1e{width:110.588480pt;}
._1f{width:111.595200pt;}
._14{width:124.483840pt;}
._25{width:142.910613pt;}
._15{width:148.937280pt;}
._11{width:152.606626pt;}
._20{width:602.685333pt;}
.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;}
.y77{bottom:5.520000pt;}
.y79{bottom:5.600000pt;}
.y5e{bottom:6.960000pt;}
.y5b{bottom:7.040000pt;}
.y5a{bottom:22.640000pt;}
.y76{bottom:23.840000pt;}
.y59{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaa{bottom:99.946667pt;}
.y82{bottom:105.466667pt;}
.y57{bottom:109.146667pt;}
.ya9{bottom:115.546667pt;}
.y56{bottom:124.746667pt;}
.y81{bottom:127.066667pt;}
.ycd{bottom:129.786667pt;}
.ya8{bottom:131.146667pt;}
.yf7{bottom:140.346667pt;}
.ycc{bottom:145.386667pt;}
.y80{bottom:148.666667pt;}
.y27{bottom:151.546667pt;}
.yf6{bottom:155.946667pt;}
.y55{bottom:156.186667pt;}
.ya7{bottom:160.506667pt;}
.ycb{bottom:160.986667pt;}
.y54{bottom:165.146667pt;}
.y7f{bottom:170.346667pt;}
.yca{bottom:176.666667pt;}
.yf5{bottom:179.626667pt;}
.y26{bottom:184.426667pt;}
.ya6{bottom:184.746667pt;}
.y7e{bottom:191.946667pt;}
.yc9{bottom:192.266667pt;}
.yf4{bottom:195.226667pt;}
.y25{bottom:200.106667pt;}
.y53{bottom:205.546667pt;}
.yc8{bottom:207.946667pt;}
.ya5{bottom:209.066667pt;}
.y7d{bottom:213.626667pt;}
.y24{bottom:215.706667pt;}
.yf3{bottom:218.826667pt;}
.yc7{bottom:223.546667pt;}
.y23{bottom:231.386667pt;}
.ya4{bottom:233.386667pt;}
.yf2{bottom:234.506667pt;}
.y7c{bottom:235.226667pt;}
.y52{bottom:237.146667pt;}
.yc6{bottom:239.146667pt;}
.y22{bottom:246.986667pt;}
.y51{bottom:252.826667pt;}
.yc5{bottom:254.826667pt;}
.y7b{bottom:256.826667pt;}
.ya3{bottom:257.706667pt;}
.yf1{bottom:258.106667pt;}
.y21{bottom:262.586667pt;}
.y50{bottom:268.426667pt;}
.yc4{bottom:270.426667pt;}
.yf0{bottom:273.786667pt;}
.y20{bottom:278.266667pt;}
.y7a{bottom:278.506667pt;}
.ya2{bottom:281.946667pt;}
.y4f{bottom:284.026667pt;}
.yc3{bottom:286.106667pt;}
.yef{bottom:297.386667pt;}
.y78{bottom:300.106667pt;}
.yc2{bottom:301.706667pt;}
.ya1{bottom:306.266667pt;}
.y4e{bottom:307.946667pt;}
.y1f{bottom:309.866667pt;}
.yee{bottom:312.986667pt;}
.y75{bottom:321.786667pt;}
.y1e{bottom:325.546667pt;}
.yc1{bottom:325.626667pt;}
.yed{bottom:328.666667pt;}
.ya0{bottom:330.586667pt;}
.y1d{bottom:341.146667pt;}
.y4d{bottom:350.906667pt;}
.yec{bottom:352.266667pt;}
.y9f{bottom:354.906667pt;}
.y1c{bottom:356.746667pt;}
.y4c{bottom:366.506667pt;}
.yeb{bottom:367.946667pt;}
.yc0{bottom:368.506667pt;}
.y1b{bottom:372.426667pt;}
.y9e{bottom:379.146667pt;}
.y74{bottom:380.666667pt;}
.y4b{bottom:382.106667pt;}
.ybf{bottom:384.106667pt;}
.y1a{bottom:388.026667pt;}
.yea{bottom:391.546667pt;}
.y4a{bottom:397.786667pt;}
.ybe{bottom:400.506667pt;}
.y9d{bottom:403.466667pt;}
.y19{bottom:403.706667pt;}
.ye9{bottom:407.146667pt;}
.y73{bottom:412.266667pt;}
.y49{bottom:413.386667pt;}
.ybd{bottom:416.906667pt;}
.y18{bottom:419.333333pt;}
.y72{bottom:427.973333pt;}
.y48{bottom:429.093333pt;}
.ye8{bottom:430.853333pt;}
.ybc{bottom:433.333333pt;}
.y71{bottom:443.573333pt;}
.y47{bottom:444.693333pt;}
.ye7{bottom:446.453333pt;}
.y9c{bottom:446.773333pt;}
.ybb{bottom:448.933333pt;}
.y17{bottom:450.933333pt;}
.y70{bottom:459.253333pt;}
.yba{bottom:465.253333pt;}
.y16{bottom:466.613333pt;}
.ye6{bottom:470.133333pt;}
.y6f{bottom:474.853333pt;}
.y46{bottom:476.293333pt;}
.y9b{bottom:478.453333pt;}
.yb9{bottom:481.653333pt;}
.y15{bottom:482.213333pt;}
.y6e{bottom:490.453333pt;}
.y45{bottom:491.973333pt;}
.ye5{bottom:493.733333pt;}
.y9a{bottom:494.053333pt;}
.y14{bottom:497.893333pt;}
.y6d{bottom:506.133333pt;}
.yb8{bottom:506.293333pt;}
.y44{bottom:507.573333pt;}
.ye4{bottom:509.333333pt;}
.y99{bottom:509.653333pt;}
.y13{bottom:513.493333pt;}
.y43{bottom:523.253333pt;}
.ye3{bottom:525.013333pt;}
.y98{bottom:525.333333pt;}
.y6c{bottom:537.733333pt;}
.y42{bottom:538.853333pt;}
.yb7{bottom:539.253333pt;}
.y12{bottom:545.093333pt;}
.ye2{bottom:548.613333pt;}
.y6b{bottom:553.413333pt;}
.yb6{bottom:554.853333pt;}
.y97{bottom:556.933333pt;}
.y11{bottom:560.773333pt;}
.ye1{bottom:564.293333pt;}
.y6a{bottom:569.013333pt;}
.y41{bottom:570.453333pt;}
.y96{bottom:572.613333pt;}
.y10{bottom:576.373333pt;}
.y69{bottom:584.613333pt;}
.y40{bottom:586.133333pt;}
.ye0{bottom:587.893333pt;}
.yf{bottom:591.973333pt;}
.y68{bottom:600.293333pt;}
.y3f{bottom:601.733333pt;}
.ydf{bottom:603.493333pt;}
.y95{bottom:604.213333pt;}
.ye{bottom:607.653333pt;}
.y67{bottom:615.893333pt;}
.y3e{bottom:617.413333pt;}
.y94{bottom:619.813333pt;}
.yd{bottom:623.253333pt;}
.yde{bottom:627.173333pt;}
.y3d{bottom:633.013333pt;}
.yc{bottom:638.933333pt;}
.ydd{bottom:642.773333pt;}
.y66{bottom:645.173333pt;}
.y3c{bottom:648.613333pt;}
.y93{bottom:651.493333pt;}
.yb{bottom:654.533333pt;}
.y3b{bottom:664.293333pt;}
.ydc{bottom:666.373333pt;}
.y92{bottom:667.093333pt;}
.y65{bottom:669.493333pt;}
.ya{bottom:670.133333pt;}
.yb5{bottom:679.893333pt;}
.ydb{bottom:682.053333pt;}
.y64{bottom:693.813333pt;}
.y9{bottom:694.053333pt;}
.yb4{bottom:695.573333pt;}
.y3a{bottom:695.893333pt;}
.y91{bottom:698.693333pt;}
.yda{bottom:705.653333pt;}
.yb3{bottom:711.173333pt;}
.y39{bottom:711.573333pt;}
.y90{bottom:714.373333pt;}
.y63{bottom:718.133333pt;}
.yd9{bottom:721.333333pt;}
.y38{bottom:727.173333pt;}
.yb2{bottom:735.093333pt;}
.y8{bottom:737.013333pt;}
.y62{bottom:742.373333pt;}
.yd8{bottom:744.933333pt;}
.y8f{bottom:745.973333pt;}
.y37{bottom:758.773333pt;}
.yd7{bottom:760.533333pt;}
.y8e{bottom:761.653333pt;}
.y7{bottom:768.853333pt;}
.y36{bottom:774.453333pt;}
.yb1{bottom:777.973333pt;}
.y61{bottom:782.373333pt;}
.yd6{bottom:784.213333pt;}
.y8d{bottom:793.253333pt;}
.yb0{bottom:793.653333pt;}
.yd5{bottom:799.813333pt;}
.y6{bottom:800.853333pt;}
.y35{bottom:806.053333pt;}
.y60{bottom:806.613333pt;}
.y8c{bottom:808.853333pt;}
.y34{bottom:821.733333pt;}
.yd4{bottom:823.493333pt;}
.yaf{bottom:825.253333pt;}
.y5f{bottom:830.933333pt;}
.y5{bottom:832.853333pt;}
.y33{bottom:837.333333pt;}
.yd3{bottom:839.093333pt;}
.y8b{bottom:840.533333pt;}
.yae{bottom:840.853333pt;}
.y32{bottom:852.933333pt;}
.y5d{bottom:855.253333pt;}
.y8a{bottom:856.133333pt;}
.yad{bottom:856.533333pt;}
.yd2{bottom:862.693333pt;}
.y4{bottom:864.933333pt;}
.y31{bottom:868.613333pt;}
.yac{bottom:872.133333pt;}
.yd1{bottom:878.373333pt;}
.y5c{bottom:879.493333pt;}
.y89{bottom:887.813333pt;}
.y3{bottom:899.760000pt;}
.y30{bottom:900.240000pt;}
.yd0{bottom:902.320000pt;}
.y88{bottom:903.440000pt;}
.y58{bottom:903.840000pt;}
.y2f{bottom:915.840000pt;}
.yab{bottom:919.440000pt;}
.y2e{bottom:931.520000pt;}
.y87{bottom:935.040000pt;}
.ycf{bottom:945.200000pt;}
.y2d{bottom:947.120000pt;}
.y86{bottom:950.720000pt;}
.y2c{bottom:962.800000pt;}
.yce{bottom:969.120000pt;}
.y2b{bottom:978.400000pt;}
.y85{bottom:982.320000pt;}
.y84{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y83{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h10{height:20.960000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.hd{height:23.680000pt;}
.hb{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:39.200000pt;}
.he{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.880000pt;}
.h12{height:54.927899pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h9{height:81.086562pt;}
.h8{height:85.357813pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:37.440000pt;}
.w5{width:37.520000pt;}
.we{width:82.026667pt;}
.wd{width:82.080000pt;}
.w10{width:96.960000pt;}
.w6{width:110.480000pt;}
.wf{width:115.600000pt;}
.w8{width:115.760000pt;}
.w3{width:142.346667pt;}
.w7{width:148.586667pt;}
.wa{width:218.266667pt;}
.wb{width:219.200000pt;}
.w9{width:226.186667pt;}
.wc{width:228.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.xe{left:64.480000pt;}
.x16{left:84.479988pt;}
.x11{left:93.040000pt;}
.x18{left:98.879988pt;}
.x17{left:108.479988pt;}
.x4{left:149.706655pt;}
.x2{left:186.506655pt;}
.x7{left:204.186667pt;}
.x8{left:242.266667pt;}
.x9{left:280.426667pt;}
.xf{left:291.306667pt;}
.x12{left:322.266667pt;}
.xa{left:391.546667pt;}
.x13{left:405.066667pt;}
.x5{left:406.586655pt;}
.x14{left:487.813333pt;}
.x10{left:510.293333pt;}
.xb{left:540.773333pt;}
.xc{left:578.933333pt;}
.x15{left:604.053333pt;}
.xd{left:617.093333pt;}
.x3{left:726.213322pt;}
}




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