
    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_b8c327195112a0643c21cae7.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_91bebd4e77d3eca393ea05a0.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_a8c64c7dcaaafcda49bc1fb2.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_d64020e074cf2dbc4ef819b7.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_6b4ae744843e7f3c18a2de10.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_532258e0e261bc52cea0304d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.993652;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_e0d9111a02ca1b509198c51e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f206a1f9568725e25559e344.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ab6e4906c202445b8ad5227.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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;}
.ls1b{letter-spacing:-2.784000px;}
.ls2b{letter-spacing:-1.602000px;}
.ls1d{letter-spacing:-1.452000px;}
.ls23{letter-spacing:-0.513600px;}
.ls29{letter-spacing:-0.368400px;}
.ls1c{letter-spacing:-0.310800px;}
.ls27{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.186600px;}
.ls2a{letter-spacing:-0.178800px;}
.ls24{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls25{letter-spacing:-0.011160px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.006840px;}
.ls3{letter-spacing:0.014760px;}
.ls1a{letter-spacing:0.020880px;}
.ls17{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.049200px;}
.ls22{letter-spacing:0.053280px;}
.ls2c{letter-spacing:0.068400px;}
.ls10{letter-spacing:0.074160px;}
.ls1f{letter-spacing:0.074400px;}
.ls18{letter-spacing:0.075000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.114600px;}
.ls28{letter-spacing:0.115800px;}
.ls1e{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.146520px;}
.ls14{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.174600px;}
.ls2e{letter-spacing:0.180000px;}
.lse{letter-spacing:0.181200px;}
.ls26{letter-spacing:0.199200px;}
.ls16{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.394800px;}
.ls6{letter-spacing:1.706400px;}
.ls2f{letter-spacing:47.726640px;}
.ls13{letter-spacing:75.446640px;}
.ls2d{letter-spacing:80.846640px;}
.ls21{letter-spacing:205.466400px;}
.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;}
}
.ws3{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws15{word-spacing:-13.425600px;}
.ws17{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.wse{word-spacing:-13.300800px;}
.ws1c{word-spacing:-13.294800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.215240px;}
.ws13{word-spacing:-13.072800px;}
.ws1a{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.982800px;}
.ws18{word-spacing:-12.858000px;}
.ws12{word-spacing:-12.712800px;}
.wsb{word-spacing:-11.774400px;}
.ws1b{word-spacing:-11.624400px;}
.ws11{word-spacing:-10.928400px;}
.wsf{word-spacing:-10.648200px;}
.wsc{word-spacing:-10.608600px;}
.ws10{word-spacing:-10.554480px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._15{margin-left:-5.652564px;}
._1{margin-left:-4.529436px;}
._e{margin-left:-3.398760px;}
._4{margin-left:-2.284800px;}
._0{margin-left:-1.110000px;}
._2{width:1.090272px;}
._3{width:2.188729px;}
._c{width:3.760792px;}
._b{width:4.990200px;}
._6{width:6.613200px;}
._7{width:7.897968px;}
._5{width:9.078000px;}
._8{width:10.353986px;}
._d{width:11.709814px;}
._a{width:14.248200px;}
._9{width:15.637848px;}
._f{width:16.773480px;}
._16{width:18.036000px;}
._11{width:19.659240px;}
._12{width:20.801520px;}
._13{width:22.424760px;}
._14{width:24.069360px;}
._10{width:25.070040px;}
._1d{width:27.474840px;}
._1c{width:43.226280px;}
._1e{width:49.478760px;}
._1f{width:50.681160px;}
._19{width:57.715200px;}
._1b{width:59.158080px;}
._1a{width:99.258120px;}
._17{width:128.957400px;}
._18{width:130.219920px;}
.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;}
.y85{bottom:7.830000px;}
.ya8{bottom:7.860000px;}
.y87{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf8{bottom:120.720000px;}
.y11f{bottom:132.150000px;}
.yc9{bottom:134.130000px;}
.yf7{bottom:138.270000px;}
.y5a{bottom:142.680000px;}
.y28{bottom:142.860000px;}
.y11e{bottom:149.700000px;}
.yf6{bottom:155.910000px;}
.y59{bottom:160.320000px;}
.y27{bottom:160.500000px;}
.y11d{bottom:167.250000px;}
.yc8{bottom:169.680000px;}
.yf5{bottom:173.460000px;}
.y81{bottom:176.610000px;}
.y26{bottom:178.050000px;}
.y58{bottom:186.870000px;}
.yc7{bottom:187.230000px;}
.yf4{bottom:191.100000px;}
.y11c{bottom:193.890000px;}
.y25{bottom:195.600000px;}
.yc6{bottom:204.870000px;}
.y11b{bottom:211.440000px;}
.y80{bottom:212.250000px;}
.ya3{bottom:212.880000px;}
.y24{bottom:213.240000px;}
.yf3{bottom:217.650000px;}
.y57{bottom:222.510000px;}
.ya2{bottom:225.120000px;}
.y7f{bottom:229.800000px;}
.y23{bottom:230.790000px;}
.y11a{bottom:238.080000px;}
.y56{bottom:240.060000px;}
.yc5{bottom:240.420000px;}
.y7e{bottom:247.440000px;}
.y22{bottom:248.340000px;}
.ya1{bottom:252.480000px;}
.yf2{bottom:253.200000px;}
.y119{bottom:255.630000px;}
.yc4{bottom:258.060000px;}
.y7d{bottom:264.990000px;}
.y21{bottom:265.980000px;}
.y55{bottom:266.610000px;}
.yf1{bottom:270.840000px;}
.yc3{bottom:275.610000px;}
.ya0{bottom:279.750000px;}
.y118{bottom:282.180000px;}
.y7c{bottom:282.540000px;}
.y20{bottom:283.530000px;}
.yf0{bottom:288.390000px;}
.yc2{bottom:293.160000px;}
.y117{bottom:299.820000px;}
.y7b{bottom:300.180000px;}
.y1f{bottom:301.170000px;}
.y54{bottom:302.250000px;}
.yef{bottom:305.940000px;}
.y9f{bottom:307.110000px;}
.y116{bottom:317.370000px;}
.y7a{bottom:317.730000px;}
.y1e{bottom:318.720000px;}
.y53{bottom:319.800000px;}
.yee{bottom:323.580000px;}
.yc1{bottom:328.800000px;}
.y79{bottom:335.370000px;}
.y52{bottom:337.440000px;}
.yed{bottom:341.130000px;}
.y115{bottom:344.010000px;}
.y1d{bottom:345.270000px;}
.yc0{bottom:346.350000px;}
.y78{bottom:352.920000px;}
.y51{bottom:354.990000px;}
.y9e{bottom:355.800000px;}
.yec{bottom:358.770000px;}
.y114{bottom:361.560000px;}
.ybf{bottom:363.990000px;}
.y50{bottom:372.540000px;}
.yeb{bottom:376.320000px;}
.y113{bottom:379.110000px;}
.y1c{bottom:381.180000px;}
.ybe{bottom:381.540000px;}
.y77{bottom:388.470000px;}
.y4f{bottom:390.180000px;}
.y9d{bottom:391.440000px;}
.yea{bottom:393.870000px;}
.ybd{bottom:399.090000px;}
.y112{bottom:405.750000px;}
.y4e{bottom:407.730000px;}
.y9c{bottom:408.990000px;}
.ye9{bottom:420.780000px;}
.y76{bottom:424.110000px;}
.y4d{bottom:425.370000px;}
.ybc{bottom:425.730000px;}
.y1b{bottom:429.510000px;}
.y111{bottom:432.300000px;}
.y75{bottom:441.660000px;}
.y9b{bottom:444.540000px;}
.y1a{bottom:447.420000px;}
.y110{bottom:449.940000px;}
.y4c{bottom:451.920000px;}
.y74{bottom:459.300000px;}
.ybb{bottom:461.280000px;}
.ye8{bottom:469.110000px;}
.y10f{bottom:476.520000px;}
.y73{bottom:476.880000px;}
.yba{bottom:478.950000px;}
.y9a{bottom:480.210000px;}
.y19{bottom:484.440000px;}
.ye7{bottom:486.690000px;}
.y4b{bottom:487.500000px;}
.y10e{bottom:494.070000px;}
.y72{bottom:494.430000px;}
.yb9{bottom:496.500000px;}
.y18{bottom:502.080000px;}
.ye6{bottom:504.330000px;}
.y4a{bottom:505.140000px;}
.y10d{bottom:511.710000px;}
.y71{bottom:512.070000px;}
.y99{bottom:515.040000px;}
.y17{bottom:519.630000px;}
.ye5{bottom:521.880000px;}
.y49{bottom:522.690000px;}
.yb8{bottom:523.410000px;}
.y98{bottom:527.190000px;}
.y70{bottom:529.620000px;}
.y16{bottom:537.180000px;}
.y10c{bottom:538.260000px;}
.ye4{bottom:539.430000px;}
.y48{bottom:540.330000px;}
.y6f{bottom:547.260000px;}
.y97{bottom:554.550000px;}
.y15{bottom:554.820000px;}
.y10b{bottom:555.900000px;}
.y47{bottom:557.880000px;}
.y6e{bottom:564.810000px;}
.yb7{bottom:571.650000px;}
.y14{bottom:572.370000px;}
.y10a{bottom:573.450000px;}
.ye3{bottom:575.070000px;}
.y46{bottom:575.430000px;}
.y96{bottom:581.910000px;}
.y6d{bottom:582.360000px;}
.yb6{bottom:589.290000px;}
.y13{bottom:589.920000px;}
.ye2{bottom:592.620000px;}
.y45{bottom:593.070000px;}
.y6c{bottom:600.000000px;}
.y12{bottom:607.560000px;}
.y95{bottom:609.270000px;}
.ye1{bottom:610.260000px;}
.y6b{bottom:617.550000px;}
.y109{bottom:617.640000px;}
.yb5{bottom:624.840000px;}
.y11{bottom:625.110000px;}
.ye0{bottom:627.810000px;}
.y44{bottom:628.620000px;}
.y108{bottom:635.190000px;}
.y10{bottom:642.750000px;}
.y43{bottom:646.260000px;}
.y6a{bottom:653.190000px;}
.y94{bottom:657.960000px;}
.yf{bottom:660.300000px;}
.yb4{bottom:660.480000px;}
.y107{bottom:661.830000px;}
.ydf{bottom:663.360000px;}
.y42{bottom:663.810000px;}
.ye{bottom:677.850000px;}
.y106{bottom:679.380000px;}
.yde{bottom:681.000000px;}
.y41{bottom:681.360000px;}
.y69{bottom:688.740000px;}
.y93{bottom:693.510000px;}
.yb3{bottom:695.310000px;}
.yd{bottom:695.490000px;}
.y105{bottom:696.930000px;}
.ydd{bottom:698.550000px;}
.y40{bottom:699.000000px;}
.y68{bottom:706.290000px;}
.yb2{bottom:707.460000px;}
.y12b{bottom:708.000000px;}
.y92{bottom:711.060000px;}
.yc{bottom:713.040000px;}
.ydc{bottom:716.190000px;}
.y104{bottom:723.840000px;}
.y67{bottom:723.930000px;}
.y12a{bottom:725.550000px;}
.yb{bottom:730.680000px;}
.y3f{bottom:734.550000px;}
.yb1{bottom:734.820000px;}
.y66{bottom:741.480000px;}
.y129{bottom:743.190000px;}
.y91{bottom:746.700000px;}
.ydb{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.ya{bottom:757.590000px;}
.yb0{bottom:762.180000px;}
.yda{bottom:769.290000px;}
.y128{bottom:769.740000px;}
.y103{bottom:772.170000px;}
.y65{bottom:777.030000px;}
.y90{bottom:781.530000px;}
.yd9{bottom:786.930000px;}
.y127{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.yaf{bottom:789.450000px;}
.y8f{bottom:793.680000px;}
.y102{bottom:799.080000px;}
.yd8{bottom:804.480000px;}
.y126{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y9{bottom:805.830000px;}
.y64{bottom:812.670000px;}
.y8e{bottom:821.040000px;}
.y3b{bottom:822.930000px;}
.y63{bottom:830.220000px;}
.y125{bottom:831.480000px;}
.y101{bottom:836.340000px;}
.yae{bottom:838.140000px;}
.yd7{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.y8{bottom:841.380000px;}
.y62{bottom:847.860000px;}
.y8d{bottom:848.400000px;}
.y124{bottom:849.030000px;}
.yd6{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y123{bottom:866.670000px;}
.yad{bottom:873.780000px;}
.y61{bottom:874.410000px;}
.yd5{bottom:875.220000px;}
.y38{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y100{bottom:884.670000px;}
.yac{bottom:891.330000px;}
.yd4{bottom:892.860000px;}
.y37{bottom:893.220000px;}
.y8c{bottom:897.090000px;}
.yff{bottom:902.220000px;}
.y60{bottom:909.960000px;}
.y36{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yd3{bottom:919.410000px;}
.yfe{bottom:919.860000px;}
.yab{bottom:926.970000px;}
.y5f{bottom:927.600000px;}
.y35{bottom:928.410000px;}
.y8b{bottom:932.640000px;}
.yfd{bottom:937.410000px;}
.y5e{bottom:945.150000px;}
.y34{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y8a{bottom:950.280000px;}
.yd2{bottom:954.960000px;}
.yaa{bottom:962.520000px;}
.y33{bottom:963.600000px;}
.y5d{bottom:971.790000px;}
.yd1{bottom:972.600000px;}
.y32{bottom:981.150000px;}
.y122{bottom:981.600000px;}
.y89{bottom:985.110000px;}
.y4{bottom:987.630000px;}
.yd0{bottom:990.150000px;}
.y88{bottom:997.260000px;}
.ya9{bottom:997.350000px;}
.y121{bottom:999.150000px;}
.y5c{bottom:1007.340000px;}
.ycf{bottom:1007.790000px;}
.ya7{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y86{bottom:1024.650000px;}
.yce{bottom:1025.370000px;}
.y5b{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.ya6{bottom:1036.890000px;}
.y120{bottom:1043.370000px;}
.y2f{bottom:1051.920000px;}
.y84{bottom:1052.010000px;}
.yfc{bottom:1052.370000px;}
.ycd{bottom:1060.920000px;}
.ya5{bottom:1064.250000px;}
.y2e{bottom:1069.560000px;}
.yfb{bottom:1069.920000px;}
.ycc{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.yfa{bottom:1087.560000px;}
.ya4{bottom:1091.610000px;}
.ycb{bottom:1096.110000px;}
.y83{bottom:1100.700000px;}
.yf9{bottom:1105.110000px;}
.yca{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y82{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.he{height:26.580000px;}
.hb{height:26.640000px;}
.hc{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:60.589687px;}
.h8{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:50.250000px;}
.w5{width:50.310000px;}
.w16{width:63.450000px;}
.we{width:63.990000px;}
.w8{width:64.620000px;}
.w7{width:64.650000px;}
.w13{width:66.720000px;}
.w17{width:66.810000px;}
.wf{width:73.470000px;}
.wb{width:73.530000px;}
.wa{width:73.560000px;}
.wc{width:79.200000px;}
.w12{width:94.320000px;}
.w14{width:97.650000px;}
.w10{width:104.850000px;}
.w18{width:106.290000px;}
.w11{width:187.560000px;}
.w3{width:197.190000px;}
.w6{width:198.270000px;}
.wd{width:203.670000px;}
.w15{width:210.960000px;}
.w9{width:253.440000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.650000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x1e{left:111.239987px;}
.x4{left:122.039987px;}
.x7{left:124.739987px;}
.x5{left:151.739987px;}
.x2{left:202.799987px;}
.xf{left:205.680000px;}
.x13{left:222.420000px;}
.x1b{left:247.979987px;}
.x17{left:274.979987px;}
.xc{left:282.180000px;}
.x8{left:297.030000px;}
.xe{left:383.789987px;}
.x18{left:410.610000px;}
.x14{left:426.900000px;}
.x1c{left:433.470000px;}
.x10{left:459.840000px;}
.xd{left:481.170000px;}
.x15{left:491.700000px;}
.xa{left:495.030000px;}
.x1d{left:497.640000px;}
.x19{left:505.740000px;}
.x11{left:534.120000px;}
.xb{left:546.000000px;}
.x16{left:565.980000px;}
.x1a{left:573.270000px;}
.x12{left:608.370000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-2.474667pt;}
.ls2b{letter-spacing:-1.424000pt;}
.ls1d{letter-spacing:-1.290667pt;}
.ls23{letter-spacing:-0.456533pt;}
.ls29{letter-spacing:-0.327467pt;}
.ls1c{letter-spacing:-0.276267pt;}
.ls27{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls2a{letter-spacing:-0.158933pt;}
.ls24{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls25{letter-spacing:-0.009920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.006080pt;}
.ls3{letter-spacing:0.013120pt;}
.ls1a{letter-spacing:0.018560pt;}
.ls17{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.043733pt;}
.ls22{letter-spacing:0.047360pt;}
.ls2c{letter-spacing:0.060800pt;}
.ls10{letter-spacing:0.065920pt;}
.ls1f{letter-spacing:0.066133pt;}
.ls18{letter-spacing:0.066667pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.101867pt;}
.ls28{letter-spacing:0.102933pt;}
.ls1e{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.130240pt;}
.ls14{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.155200pt;}
.ls2e{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.161067pt;}
.ls26{letter-spacing:0.177067pt;}
.ls16{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.350933pt;}
.ls6{letter-spacing:1.516800pt;}
.ls2f{letter-spacing:42.423680pt;}
.ls13{letter-spacing:67.063680pt;}
.ls2d{letter-spacing:71.863680pt;}
.ls21{letter-spacing:182.636800pt;}
.ws3{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws15{word-spacing:-11.933867pt;}
.ws17{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.822933pt;}
.ws1c{word-spacing:-11.817600pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.746880pt;}
.ws13{word-spacing:-11.620267pt;}
.ws1a{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.540267pt;}
.ws18{word-spacing:-11.429333pt;}
.ws12{word-spacing:-11.300267pt;}
.wsb{word-spacing:-10.466133pt;}
.ws1b{word-spacing:-10.332800pt;}
.ws11{word-spacing:-9.714133pt;}
.wsf{word-spacing:-9.465067pt;}
.wsc{word-spacing:-9.429867pt;}
.ws10{word-spacing:-9.381760pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._15{margin-left:-5.024501pt;}
._1{margin-left:-4.026165pt;}
._e{margin-left:-3.021120pt;}
._4{margin-left:-2.030934pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.969131pt;}
._3{width:1.945537pt;}
._c{width:3.342927pt;}
._b{width:4.435734pt;}
._6{width:5.878400pt;}
._7{width:7.020416pt;}
._5{width:8.069333pt;}
._8{width:9.203543pt;}
._d{width:10.408723pt;}
._a{width:12.665066pt;}
._9{width:13.900310pt;}
._f{width:14.909760pt;}
._16{width:16.032000pt;}
._11{width:17.474880pt;}
._12{width:18.490240pt;}
._13{width:19.933120pt;}
._14{width:21.394987pt;}
._10{width:22.284480pt;}
._1d{width:24.422080pt;}
._1c{width:38.423360pt;}
._1e{width:43.981120pt;}
._1f{width:45.049920pt;}
._19{width:51.302400pt;}
._1b{width:52.584960pt;}
._1a{width:88.229440pt;}
._17{width:114.628800pt;}
._18{width:115.751040pt;}
.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;}
.y85{bottom:6.960000pt;}
.ya8{bottom:6.986667pt;}
.y87{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf8{bottom:107.306667pt;}
.y11f{bottom:117.466667pt;}
.yc9{bottom:119.226667pt;}
.yf7{bottom:122.906667pt;}
.y5a{bottom:126.826667pt;}
.y28{bottom:126.986667pt;}
.y11e{bottom:133.066667pt;}
.yf6{bottom:138.586667pt;}
.y59{bottom:142.506667pt;}
.y27{bottom:142.666667pt;}
.y11d{bottom:148.666667pt;}
.yc8{bottom:150.826667pt;}
.yf5{bottom:154.186667pt;}
.y81{bottom:156.986667pt;}
.y26{bottom:158.266667pt;}
.y58{bottom:166.106667pt;}
.yc7{bottom:166.426667pt;}
.yf4{bottom:169.866667pt;}
.y11c{bottom:172.346667pt;}
.y25{bottom:173.866667pt;}
.yc6{bottom:182.106667pt;}
.y11b{bottom:187.946667pt;}
.y80{bottom:188.666667pt;}
.ya3{bottom:189.226667pt;}
.y24{bottom:189.546667pt;}
.yf3{bottom:193.466667pt;}
.y57{bottom:197.786667pt;}
.ya2{bottom:200.106667pt;}
.y7f{bottom:204.266667pt;}
.y23{bottom:205.146667pt;}
.y11a{bottom:211.626667pt;}
.y56{bottom:213.386667pt;}
.yc5{bottom:213.706667pt;}
.y7e{bottom:219.946667pt;}
.y22{bottom:220.746667pt;}
.ya1{bottom:224.426667pt;}
.yf2{bottom:225.066667pt;}
.y119{bottom:227.226667pt;}
.yc4{bottom:229.386667pt;}
.y7d{bottom:235.546667pt;}
.y21{bottom:236.426667pt;}
.y55{bottom:236.986667pt;}
.yf1{bottom:240.746667pt;}
.yc3{bottom:244.986667pt;}
.ya0{bottom:248.666667pt;}
.y118{bottom:250.826667pt;}
.y7c{bottom:251.146667pt;}
.y20{bottom:252.026667pt;}
.yf0{bottom:256.346667pt;}
.yc2{bottom:260.586667pt;}
.y117{bottom:266.506667pt;}
.y7b{bottom:266.826667pt;}
.y1f{bottom:267.706667pt;}
.y54{bottom:268.666667pt;}
.yef{bottom:271.946667pt;}
.y9f{bottom:272.986667pt;}
.y116{bottom:282.106667pt;}
.y7a{bottom:282.426667pt;}
.y1e{bottom:283.306667pt;}
.y53{bottom:284.266667pt;}
.yee{bottom:287.626667pt;}
.yc1{bottom:292.266667pt;}
.y79{bottom:298.106667pt;}
.y52{bottom:299.946667pt;}
.yed{bottom:303.226667pt;}
.y115{bottom:305.786667pt;}
.y1d{bottom:306.906667pt;}
.yc0{bottom:307.866667pt;}
.y78{bottom:313.706667pt;}
.y51{bottom:315.546667pt;}
.y9e{bottom:316.266667pt;}
.yec{bottom:318.906667pt;}
.y114{bottom:321.386667pt;}
.ybf{bottom:323.546667pt;}
.y50{bottom:331.146667pt;}
.yeb{bottom:334.506667pt;}
.y113{bottom:336.986667pt;}
.y1c{bottom:338.826667pt;}
.ybe{bottom:339.146667pt;}
.y77{bottom:345.306667pt;}
.y4f{bottom:346.826667pt;}
.y9d{bottom:347.946667pt;}
.yea{bottom:350.106667pt;}
.ybd{bottom:354.746667pt;}
.y112{bottom:360.666667pt;}
.y4e{bottom:362.426667pt;}
.y9c{bottom:363.546667pt;}
.ye9{bottom:374.026667pt;}
.y76{bottom:376.986667pt;}
.y4d{bottom:378.106667pt;}
.ybc{bottom:378.426667pt;}
.y1b{bottom:381.786667pt;}
.y111{bottom:384.266667pt;}
.y75{bottom:392.586667pt;}
.y9b{bottom:395.146667pt;}
.y1a{bottom:397.706667pt;}
.y110{bottom:399.946667pt;}
.y4c{bottom:401.706667pt;}
.y74{bottom:408.266667pt;}
.ybb{bottom:410.026667pt;}
.ye8{bottom:416.986667pt;}
.y10f{bottom:423.573333pt;}
.y73{bottom:423.893333pt;}
.yba{bottom:425.733333pt;}
.y9a{bottom:426.853333pt;}
.y19{bottom:430.613333pt;}
.ye7{bottom:432.613333pt;}
.y4b{bottom:433.333333pt;}
.y10e{bottom:439.173333pt;}
.y72{bottom:439.493333pt;}
.yb9{bottom:441.333333pt;}
.y18{bottom:446.293333pt;}
.ye6{bottom:448.293333pt;}
.y4a{bottom:449.013333pt;}
.y10d{bottom:454.853333pt;}
.y71{bottom:455.173333pt;}
.y99{bottom:457.813333pt;}
.y17{bottom:461.893333pt;}
.ye5{bottom:463.893333pt;}
.y49{bottom:464.613333pt;}
.yb8{bottom:465.253333pt;}
.y98{bottom:468.613333pt;}
.y70{bottom:470.773333pt;}
.y16{bottom:477.493333pt;}
.y10c{bottom:478.453333pt;}
.ye4{bottom:479.493333pt;}
.y48{bottom:480.293333pt;}
.y6f{bottom:486.453333pt;}
.y97{bottom:492.933333pt;}
.y15{bottom:493.173333pt;}
.y10b{bottom:494.133333pt;}
.y47{bottom:495.893333pt;}
.y6e{bottom:502.053333pt;}
.yb7{bottom:508.133333pt;}
.y14{bottom:508.773333pt;}
.y10a{bottom:509.733333pt;}
.ye3{bottom:511.173333pt;}
.y46{bottom:511.493333pt;}
.y96{bottom:517.253333pt;}
.y6d{bottom:517.653333pt;}
.yb6{bottom:523.813333pt;}
.y13{bottom:524.373333pt;}
.ye2{bottom:526.773333pt;}
.y45{bottom:527.173333pt;}
.y6c{bottom:533.333333pt;}
.y12{bottom:540.053333pt;}
.y95{bottom:541.573333pt;}
.ye1{bottom:542.453333pt;}
.y6b{bottom:548.933333pt;}
.y109{bottom:549.013333pt;}
.yb5{bottom:555.413333pt;}
.y11{bottom:555.653333pt;}
.ye0{bottom:558.053333pt;}
.y44{bottom:558.773333pt;}
.y108{bottom:564.613333pt;}
.y10{bottom:571.333333pt;}
.y43{bottom:574.453333pt;}
.y6a{bottom:580.613333pt;}
.y94{bottom:584.853333pt;}
.yf{bottom:586.933333pt;}
.yb4{bottom:587.093333pt;}
.y107{bottom:588.293333pt;}
.ydf{bottom:589.653333pt;}
.y42{bottom:590.053333pt;}
.ye{bottom:602.533333pt;}
.y106{bottom:603.893333pt;}
.yde{bottom:605.333333pt;}
.y41{bottom:605.653333pt;}
.y69{bottom:612.213333pt;}
.y93{bottom:616.453333pt;}
.yb3{bottom:618.053333pt;}
.yd{bottom:618.213333pt;}
.y105{bottom:619.493333pt;}
.ydd{bottom:620.933333pt;}
.y40{bottom:621.333333pt;}
.y68{bottom:627.813333pt;}
.yb2{bottom:628.853333pt;}
.y12b{bottom:629.333333pt;}
.y92{bottom:632.053333pt;}
.yc{bottom:633.813333pt;}
.ydc{bottom:636.613333pt;}
.y104{bottom:643.413333pt;}
.y67{bottom:643.493333pt;}
.y12a{bottom:644.933333pt;}
.yb{bottom:649.493333pt;}
.y3f{bottom:652.933333pt;}
.yb1{bottom:653.173333pt;}
.y66{bottom:659.093333pt;}
.y129{bottom:660.613333pt;}
.y91{bottom:663.733333pt;}
.ydb{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.ya{bottom:673.413333pt;}
.yb0{bottom:677.493333pt;}
.yda{bottom:683.813333pt;}
.y128{bottom:684.213333pt;}
.y103{bottom:686.373333pt;}
.y65{bottom:690.693333pt;}
.y90{bottom:694.693333pt;}
.yd9{bottom:699.493333pt;}
.y127{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.yaf{bottom:701.733333pt;}
.y8f{bottom:705.493333pt;}
.y102{bottom:710.293333pt;}
.yd8{bottom:715.093333pt;}
.y126{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y9{bottom:716.293333pt;}
.y64{bottom:722.373333pt;}
.y8e{bottom:729.813333pt;}
.y3b{bottom:731.493333pt;}
.y63{bottom:737.973333pt;}
.y125{bottom:739.093333pt;}
.y101{bottom:743.413333pt;}
.yae{bottom:745.013333pt;}
.yd7{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.y8{bottom:747.893333pt;}
.y62{bottom:753.653333pt;}
.y8d{bottom:754.133333pt;}
.y124{bottom:754.693333pt;}
.yd6{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y123{bottom:770.373333pt;}
.yad{bottom:776.693333pt;}
.y61{bottom:777.253333pt;}
.yd5{bottom:777.973333pt;}
.y38{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y100{bottom:786.373333pt;}
.yac{bottom:792.293333pt;}
.yd4{bottom:793.653333pt;}
.y37{bottom:793.973333pt;}
.y8c{bottom:797.413333pt;}
.yff{bottom:801.973333pt;}
.y60{bottom:808.853333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yd3{bottom:817.253333pt;}
.yfe{bottom:817.653333pt;}
.yab{bottom:823.973333pt;}
.y5f{bottom:824.533333pt;}
.y35{bottom:825.253333pt;}
.y8b{bottom:829.013333pt;}
.yfd{bottom:833.253333pt;}
.y5e{bottom:840.133333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y8a{bottom:844.693333pt;}
.yd2{bottom:848.853333pt;}
.yaa{bottom:855.573333pt;}
.y33{bottom:856.533333pt;}
.y5d{bottom:863.813333pt;}
.yd1{bottom:864.533333pt;}
.y32{bottom:872.133333pt;}
.y122{bottom:872.533333pt;}
.y89{bottom:875.653333pt;}
.y4{bottom:877.893333pt;}
.yd0{bottom:880.133333pt;}
.y88{bottom:886.453333pt;}
.ya9{bottom:886.533333pt;}
.y121{bottom:888.133333pt;}
.y5c{bottom:895.413333pt;}
.ycf{bottom:895.813333pt;}
.ya7{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y86{bottom:910.800000pt;}
.yce{bottom:911.440000pt;}
.y5b{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.ya6{bottom:921.680000pt;}
.y120{bottom:927.440000pt;}
.y2f{bottom:935.040000pt;}
.y84{bottom:935.120000pt;}
.yfc{bottom:935.440000pt;}
.ycd{bottom:943.040000pt;}
.ya5{bottom:946.000000pt;}
.y2e{bottom:950.720000pt;}
.yfb{bottom:951.040000pt;}
.ycc{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.yfa{bottom:966.720000pt;}
.ya4{bottom:970.320000pt;}
.ycb{bottom:974.320000pt;}
.y83{bottom:978.400000pt;}
.yf9{bottom:982.320000pt;}
.yca{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y82{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.he{height:23.626667pt;}
.hb{height:23.680000pt;}
.hc{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:53.857500pt;}
.h8{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:44.666667pt;}
.w5{width:44.720000pt;}
.w16{width:56.400000pt;}
.we{width:56.880000pt;}
.w8{width:57.440000pt;}
.w7{width:57.466667pt;}
.w13{width:59.306667pt;}
.w17{width:59.386667pt;}
.wf{width:65.306667pt;}
.wb{width:65.360000pt;}
.wa{width:65.386667pt;}
.wc{width:70.400000pt;}
.w12{width:83.840000pt;}
.w14{width:86.800000pt;}
.w10{width:93.200000pt;}
.w18{width:94.480000pt;}
.w11{width:166.720000pt;}
.w3{width:175.280000pt;}
.w6{width:176.240000pt;}
.wd{width:181.040000pt;}
.w15{width:187.520000pt;}
.w9{width:225.280000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.800000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x1e{left:98.879988pt;}
.x4{left:108.479988pt;}
.x7{left:110.879988pt;}
.x5{left:134.879988pt;}
.x2{left:180.266655pt;}
.xf{left:182.826667pt;}
.x13{left:197.706667pt;}
.x1b{left:220.426655pt;}
.x17{left:244.426655pt;}
.xc{left:250.826667pt;}
.x8{left:264.026667pt;}
.xe{left:341.146655pt;}
.x18{left:364.986667pt;}
.x14{left:379.466667pt;}
.x1c{left:385.306667pt;}
.x10{left:408.746667pt;}
.xd{left:427.706667pt;}
.x15{left:437.066667pt;}
.xa{left:440.026667pt;}
.x1d{left:442.346667pt;}
.x19{left:449.546667pt;}
.x11{left:474.773333pt;}
.xb{left:485.333333pt;}
.x16{left:503.093333pt;}
.x1a{left:509.573333pt;}
.x12{left:540.773333pt;}
.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; }
  