
    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_170bf8ffb2f14ee7d62e07dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_08798514cf2ed8cc8273e963.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096191;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_06e059b245807511292702ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_2b2cf703a3002079fb66ddf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d366254a937965a07a1be34f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_d42d2fd01d6e1f2d5a0ce698.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_ea31a265ae8df0c941547e8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_ab2f77af76de5aeeb84505ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a56f085844aed3d38f65e2c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1850f34443d2c5c717da4f1b.woff2')format("woff");}.ffb{font-family:ffb;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:-104.400000px;}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.640000px;}
.ls14{letter-spacing:-0.942000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.768000px;}
.ls1b{letter-spacing:-0.684000px;}
.ls15{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.028080px;}
.ls7{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.125280px;}
.lsc{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.208080px;}
.ls19{letter-spacing:0.217440px;}
.ls5{letter-spacing:0.341400px;}
.ls11{letter-spacing:0.350400px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.378720px;}
.lsb{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.558720px;}
.lse{letter-spacing:0.900000px;}
.ls17{letter-spacing:5.760000px;}
.ls1a{letter-spacing:35.820000px;}
.ls8{letter-spacing:36.540000px;}
.ls9{letter-spacing:979.176000px;}
.ls1d{letter-spacing:1254.936000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-27.000000px;}
.ws6{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws5{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.097440px;}
.wsd{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.041280px;}
.ws11{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.292000px;}
.ws8{word-spacing:0.000000px;}
._20{margin-left:-5.728560px;}
._15{margin-left:-4.296240px;}
._13{margin-left:-2.358720px;}
._0{margin-left:-1.347840px;}
._1{width:1.753440px;}
._c{width:2.797200px;}
._4{width:4.440720px;}
._2{width:5.559840px;}
._3{width:6.867600px;}
._11{width:8.688240px;}
._18{width:9.923520px;}
._1a{width:11.587200px;}
._b{width:12.804480px;}
._5{width:13.983840px;}
._19{width:15.010320px;}
._8{width:16.303920px;}
._7{width:17.943120px;}
._14{width:19.459440px;}
._a{width:22.182960px;}
._9{width:23.839920px;}
._f{width:25.524720px;}
._1b{width:26.535600px;}
._1c{width:28.051920px;}
._1d{width:29.057280px;}
._2b{width:30.242160px;}
._16{width:32.224080px;}
._17{width:33.567360px;}
._21{width:35.212320px;}
._24{width:36.223200px;}
._12{width:37.402560px;}
._10{width:38.581920px;}
._22{width:39.728160px;}
._23{width:41.372640px;}
._25{width:42.631920px;}
._2e{width:43.720560px;}
._2f{width:45.255120px;}
._1f{width:51.330240px;}
._1e{width:52.385760px;}
._6{width:54.166320px;}
._e{width:56.609280px;}
._d{width:57.620160px;}
._27{width:59.534640px;}
._2d{width:63.769680px;}
._2c{width:64.864800px;}
._26{width:69.498000px;}
._2a{width:93.422160px;}
._28{width:97.128720px;}
._29{width:155.422800px;}
.fc6{color:transparent;}
.fc4{color:rgb(51,102,204);}
.fc3{color:rgb(32,33,34);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(191,60,44);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.yee{bottom:-18.720000px;}
.y0{bottom:0.000000px;}
.yed{bottom:3.420000px;}
.y2{bottom:4.500000px;}
.ya{bottom:5.760000px;}
.y3{bottom:7.380000px;}
.yb{bottom:7.920000px;}
.y9{bottom:9.000000px;}
.y5{bottom:11.520000px;}
.y6{bottom:15.300000px;}
.yec{bottom:29.520000px;}
.y8{bottom:32.220000px;}
.y58{bottom:87.516000px;}
.yfb{bottom:96.336000px;}
.y105{bottom:99.756000px;}
.y57{bottom:101.196000px;}
.y92{bottom:102.636000px;}
.y112{bottom:105.156000px;}
.y91{bottom:107.856000px;}
.yea{bottom:108.936000px;}
.y30{bottom:109.836000px;}
.y56{bottom:115.056000px;}
.y90{bottom:121.536000px;}
.yfa{bottom:124.056000px;}
.ycd{bottom:124.236000px;}
.y7c{bottom:128.916000px;}
.yba{bottom:129.816000px;}
.y55{bottom:130.356000px;}
.ya6{bottom:131.076000px;}
.y54{bottom:135.576000px;}
.ye9{bottom:136.656000px;}
.y2f{bottom:137.736000px;}
.y7b{bottom:144.036000px;}
.y111{bottom:144.936000px;}
.y53{bottom:149.076000px;}
.y7a{bottom:149.256000px;}
.yf9{bottom:151.950000px;}
.y104{bottom:153.570000px;}
.yb9{bottom:157.530000px;}
.ycc{bottom:160.410000px;}
.y79{bottom:162.930000px;}
.ye8{bottom:164.370000px;}
.y2e{bottom:165.450000px;}
.ya5{bottom:167.250000px;}
.y52{bottom:179.130000px;}
.yf8{bottom:179.670000px;}
.y110{bottom:184.710000px;}
.yb8{bottom:185.250000px;}
.y103{bottom:189.750000px;}
.ye7{bottom:192.090000px;}
.y2d{bottom:193.170000px;}
.ycb{bottom:196.770000px;}
.y78{bottom:201.810000px;}
.ya4{bottom:203.610000px;}
.y8f{bottom:206.310000px;}
.y51{bottom:207.030000px;}
.yf7{bottom:207.390000px;}
.yb7{bottom:212.970000px;}
.ye6{bottom:219.990000px;}
.y2c{bottom:221.070000px;}
.y10f{bottom:224.490000px;}
.y102{bottom:225.930000px;}
.y77{bottom:229.530000px;}
.yca{bottom:232.950000px;}
.y8d{bottom:234.030000px;}
.y50{bottom:234.750000px;}
.yf6{bottom:235.290000px;}
.ya3{bottom:239.790000px;}
.yb6{bottom:240.870000px;}
.y8e{bottom:241.590000px;}
.ye5{bottom:247.710000px;}
.y2b{bottom:248.790000px;}
.y76{bottom:257.430000px;}
.y8c{bottom:261.750000px;}
.y101{bottom:262.110000px;}
.y4f{bottom:262.470000px;}
.yf5{bottom:263.010000px;}
.y10e{bottom:264.270000px;}
.yb5{bottom:268.590000px;}
.yc9{bottom:269.130000px;}
.ye4{bottom:275.430000px;}
.ya2{bottom:275.970000px;}
.y2a{bottom:276.510000px;}
.y75{bottom:285.150000px;}
.y8b{bottom:289.470000px;}
.y4e{bottom:290.190000px;}
.yf4{bottom:290.730000px;}
.yb4{bottom:296.310000px;}
.y100{bottom:298.470000px;}
.ye3{bottom:303.330000px;}
.y10d{bottom:304.050000px;}
.y29{bottom:304.230000px;}
.yc8{bottom:305.310000px;}
.ya1{bottom:312.150000px;}
.y74{bottom:312.870000px;}
.y8a{bottom:317.370000px;}
.y4d{bottom:318.090000px;}
.yf3{bottom:318.450000px;}
.yb3{bottom:324.210000px;}
.ye2{bottom:331.050000px;}
.y28{bottom:332.130000px;}
.yff{bottom:334.650000px;}
.y73{bottom:340.635000px;}
.yc7{bottom:341.535000px;}
.y10c{bottom:343.875000px;}
.y89{bottom:345.135000px;}
.y4c{bottom:345.855000px;}
.yf2{bottom:346.395000px;}
.ya0{bottom:348.555000px;}
.yb2{bottom:351.975000px;}
.ye1{bottom:358.815000px;}
.y27{bottom:359.895000px;}
.y72{bottom:368.535000px;}
.yfe{bottom:370.875000px;}
.y88{bottom:372.855000px;}
.y4b{bottom:373.575000px;}
.yf1{bottom:374.115000px;}
.yc6{bottom:377.895000px;}
.yb1{bottom:379.695000px;}
.yeb{bottom:383.475000px;}
.y10b{bottom:383.655000px;}
.y9f{bottom:384.735000px;}
.y26{bottom:385.995000px;}
.ye0{bottom:386.535000px;}
.y71{bottom:396.255000px;}
.y87{bottom:400.755000px;}
.y4a{bottom:401.475000px;}
.yf0{bottom:401.835000px;}
.yfd{bottom:407.055000px;}
.yb0{bottom:407.415000px;}
.y25{bottom:411.915000px;}
.yc5{bottom:414.075000px;}
.ydf{bottom:414.435000px;}
.y9e{bottom:420.915000px;}
.y10a{bottom:423.255000px;}
.y70{bottom:423.975000px;}
.yef{bottom:425.055000px;}
.y86{bottom:428.475000px;}
.y49{bottom:429.195000px;}
.yaf{bottom:435.315000px;}
.y24{bottom:439.815000px;}
.yde{bottom:442.155000px;}
.yfc{bottom:443.415000px;}
.yc4{bottom:450.255000px;}
.y6f{bottom:451.875000px;}
.y85{bottom:456.195000px;}
.y48{bottom:456.915000px;}
.y9d{bottom:457.095000px;}
.yae{bottom:463.035000px;}
.y23{bottom:467.535000px;}
.ydd{bottom:469.875000px;}
.y6e{bottom:479.595000px;}
.y84{bottom:483.915000px;}
.y47{bottom:484.635000px;}
.yc3{bottom:486.435000px;}
.yad{bottom:489.135000px;}
.y9c{bottom:493.455000px;}
.y22{bottom:495.255000px;}
.ydc{bottom:497.595000px;}
.y109{bottom:502.815000px;}
.y6d{bottom:507.315000px;}
.y83{bottom:511.815000px;}
.y46{bottom:512.535000px;}
.yac{bottom:516.855000px;}
.yc2{bottom:522.795000px;}
.y21{bottom:523.155000px;}
.ydb{bottom:525.495000px;}
.y9b{bottom:529.635000px;}
.y6c{bottom:535.035000px;}
.y82{bottom:539.535000px;}
.yab{bottom:540.075000px;}
.y44{bottom:540.255000px;}
.y108{bottom:542.595000px;}
.y45{bottom:547.815000px;}
.y20{bottom:550.875000px;}
.yda{bottom:553.215000px;}
.yc1{bottom:558.975000px;}
.y6b{bottom:562.935000px;}
.y9a{bottom:565.815000px;}
.y81{bottom:567.255000px;}
.y43{bottom:567.975000px;}
.y1f{bottom:578.595000px;}
.yd9{bottom:580.935000px;}
.y107{bottom:582.375000px;}
.y6a{bottom:590.655000px;}
.y80{bottom:594.975000px;}
.yc0{bottom:595.155000px;}
.y42{bottom:595.695000px;}
.y99{bottom:601.995000px;}
.y1e{bottom:606.345000px;}
.yd8{bottom:608.865000px;}
.y69{bottom:618.405000px;}
.y7f{bottom:621.105000px;}
.y106{bottom:622.185000px;}
.y41{bottom:623.625000px;}
.ybf{bottom:631.365000px;}
.y1d{bottom:634.245000px;}
.yd7{bottom:636.585000px;}
.y98{bottom:638.205000px;}
.y68{bottom:646.305000px;}
.y7e{bottom:649.005000px;}
.y40{bottom:651.345000px;}
.y1c{bottom:661.965000px;}
.yd6{bottom:664.305000px;}
.ybe{bottom:667.725000px;}
.y7d{bottom:670.425000px;}
.y67{bottom:674.025000px;}
.y97{bottom:674.565000px;}
.y3f{bottom:679.065000px;}
.y1b{bottom:689.685000px;}
.yd5{bottom:692.025000px;}
.ybd{bottom:695.445000px;}
.y66{bottom:701.745000px;}
.y3e{bottom:706.965000px;}
.y96{bottom:710.745000px;}
.y1a{bottom:717.585000px;}
.yd4{bottom:719.925000px;}
.ybc{bottom:723.165000px;}
.y65{bottom:729.465000px;}
.y3d{bottom:732.885000px;}
.y19{bottom:743.505000px;}
.ybb{bottom:746.385000px;}
.y95{bottom:746.925000px;}
.yd3{bottom:756.105000px;}
.y64{bottom:757.365000px;}
.y3c{bottom:760.785000px;}
.y18{bottom:769.605000px;}
.y94{bottom:783.105000px;}
.y63{bottom:785.085000px;}
.y3b{bottom:788.505000px;}
.yd2{bottom:792.285000px;}
.y17{bottom:797.325000px;}
.y93{bottom:811.005000px;}
.y62{bottom:812.805000px;}
.y3a{bottom:816.225000px;}
.y16{bottom:823.425000px;}
.yd1{bottom:828.465000px;}
.y61{bottom:840.525000px;}
.y39{bottom:843.945000px;}
.y15{bottom:849.525000px;}
.yd0{bottom:864.825000px;}
.y60{bottom:868.425000px;}
.y38{bottom:871.890000px;}
.y14{bottom:875.670000px;}
.y5f{bottom:896.190000px;}
.y37{bottom:899.610000px;}
.ycf{bottom:901.050000px;}
.y13{bottom:901.590000px;}
.y5e{bottom:923.910000px;}
.y36{bottom:927.330000px;}
.y12{bottom:929.490000px;}
.yce{bottom:937.230000px;}
.y5d{bottom:951.810000px;}
.y35{bottom:955.230000px;}
.y11{bottom:957.210000px;}
.yaa{bottom:973.410000px;}
.y5c{bottom:979.530000px;}
.y34{bottom:982.950000px;}
.y10{bottom:983.310000px;}
.y5b{bottom:1007.250000px;}
.ya9{bottom:1009.770000px;}
.y33{bottom:1010.670000px;}
.yf{bottom:1011.030000px;}
.y5a{bottom:1034.970000px;}
.ya8{bottom:1045.950000px;}
.ye{bottom:1050.810000px;}
.y32{bottom:1062.870000px;}
.yd{bottom:1078.530000px;}
.ya7{bottom:1082.130000px;}
.y31{bottom:1090.590000px;}
.y59{bottom:1098.150000px;}
.yc{bottom:1118.310000px;}
.y7{bottom:1141.740000px;}
.y4{bottom:1157.040000px;}
.y1{bottom:1196.100000px;}
.h2{height:24.120000px;}
.h5{height:28.260000px;}
.h8{height:30.960000px;}
.h11{height:38.671172px;}
.h14{height:42.516211px;}
.h13{height:47.344922px;}
.h16{height:49.140000px;}
.h10{height:52.998047px;}
.h4{height:53.709961px;}
.hc{height:59.436914px;}
.h12{height:59.439023px;}
.hb{height:65.884219px;}
.h7{height:66.757500px;}
.h9{height:70.664062px;}
.h6{height:72.562500px;}
.h15{height:74.244727px;}
.hf{height:75.067383px;}
.he{height:82.635820px;}
.hd{height:82.676953px;}
.h3{height:84.898125px;}
.h17{height:86.585445px;}
.ha{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w6{width:63.756000px;}
.w8{width:381.855000px;}
.w5{width:755.070000px;}
.w2{width:840.240000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x6{left:8.640000px;}
.x9{left:10.620000px;}
.xb{left:18.360000px;}
.x26{left:30.996000px;}
.x4{left:35.640000px;}
.x8{left:42.480000px;}
.x7{left:84.959987px;}
.x19{left:89.855987px;}
.x2{left:92.556000px;}
.x2b{left:106.235987px;}
.xd{left:115.775987px;}
.xc{left:127.475987px;}
.x1e{left:131.255973px;}
.x1f{left:141.335987px;}
.x27{left:153.930000px;}
.xe{left:186.149987px;}
.x28{left:191.010000px;}
.x11{left:209.369987px;}
.x20{left:255.269987px;}
.x10{left:265.889987px;}
.x2a{left:271.109987px;}
.x12{left:277.814987px;}
.x18{left:301.034987px;}
.x13{left:323.894987px;}
.x16{left:357.374973px;}
.x17{left:364.214987px;}
.x1d{left:365.654987px;}
.x14{left:373.574987px;}
.x15{left:378.434987px;}
.x1a{left:438.374973px;}
.x1b{left:445.214987px;}
.xf{left:446.474987px;}
.x25{left:480.344987px;}
.x23{left:492.044987px;}
.x24{left:534.524987px;}
.x5{left:609.405000px;}
.x22{left:739.589987px;}
.x21{left:767.129987px;}
.x1c{left:781.709987px;}
.x29{left:787.109987px;}
.xa{left:797.550000px;}
.x3{left:844.560000px;}
@media print{
.v1{vertical-align:-92.800000pt;}
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.680000pt;}
.ls14{letter-spacing:-0.837333pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.682667pt;}
.ls1b{letter-spacing:-0.608000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.111360pt;}
.lsc{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.184960pt;}
.ls19{letter-spacing:0.193280pt;}
.ls5{letter-spacing:0.303467pt;}
.ls11{letter-spacing:0.311467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.336640pt;}
.lsb{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.496640pt;}
.lse{letter-spacing:0.800000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:31.840000pt;}
.ls8{letter-spacing:32.480000pt;}
.ls9{letter-spacing:870.378667pt;}
.ls1d{letter-spacing:1115.498667pt;}
.ws1{word-spacing:-24.000000pt;}
.ws6{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws5{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.753280pt;}
.wsd{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.703360pt;}
.ws11{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.wsf{word-spacing:-10.037333pt;}
.ws8{word-spacing:0.000000pt;}
._20{margin-left:-5.092053pt;}
._15{margin-left:-3.818880pt;}
._13{margin-left:-2.096640pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.558613pt;}
._c{width:2.486400pt;}
._4{width:3.947307pt;}
._2{width:4.942080pt;}
._3{width:6.104533pt;}
._11{width:7.722880pt;}
._18{width:8.820907pt;}
._1a{width:10.299733pt;}
._b{width:11.381760pt;}
._5{width:12.430080pt;}
._19{width:13.342507pt;}
._8{width:14.492373pt;}
._7{width:15.949440pt;}
._14{width:17.297280pt;}
._a{width:19.718187pt;}
._9{width:21.191040pt;}
._f{width:22.688640pt;}
._1b{width:23.587200pt;}
._1c{width:24.935040pt;}
._1d{width:25.828693pt;}
._2b{width:26.881920pt;}
._16{width:28.643627pt;}
._17{width:29.837653pt;}
._21{width:31.299840pt;}
._24{width:32.198400pt;}
._12{width:33.246720pt;}
._10{width:34.295040pt;}
._22{width:35.313920pt;}
._23{width:36.775680pt;}
._25{width:37.895040pt;}
._2e{width:38.862720pt;}
._2f{width:40.226773pt;}
._1f{width:45.626880pt;}
._1e{width:46.565120pt;}
._6{width:48.147840pt;}
._e{width:50.319360pt;}
._d{width:51.217920pt;}
._27{width:52.919680pt;}
._2d{width:56.684160pt;}
._2c{width:57.657600pt;}
._26{width:61.776000pt;}
._2a{width:83.041920pt;}
._28{width:86.336640pt;}
._29{width:138.153600pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.yee{bottom:-16.640000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:3.040000pt;}
.y2{bottom:4.000000pt;}
.ya{bottom:5.120000pt;}
.y3{bottom:6.560000pt;}
.yb{bottom:7.040000pt;}
.y9{bottom:8.000000pt;}
.y5{bottom:10.240000pt;}
.y6{bottom:13.600000pt;}
.yec{bottom:26.240000pt;}
.y8{bottom:28.640000pt;}
.y58{bottom:77.792000pt;}
.yfb{bottom:85.632000pt;}
.y105{bottom:88.672000pt;}
.y57{bottom:89.952000pt;}
.y92{bottom:91.232000pt;}
.y112{bottom:93.472000pt;}
.y91{bottom:95.872000pt;}
.yea{bottom:96.832000pt;}
.y30{bottom:97.632000pt;}
.y56{bottom:102.272000pt;}
.y90{bottom:108.032000pt;}
.yfa{bottom:110.272000pt;}
.ycd{bottom:110.432000pt;}
.y7c{bottom:114.592000pt;}
.yba{bottom:115.392000pt;}
.y55{bottom:115.872000pt;}
.ya6{bottom:116.512000pt;}
.y54{bottom:120.512000pt;}
.ye9{bottom:121.472000pt;}
.y2f{bottom:122.432000pt;}
.y7b{bottom:128.032000pt;}
.y111{bottom:128.832000pt;}
.y53{bottom:132.512000pt;}
.y7a{bottom:132.672000pt;}
.yf9{bottom:135.066667pt;}
.y104{bottom:136.506667pt;}
.yb9{bottom:140.026667pt;}
.ycc{bottom:142.586667pt;}
.y79{bottom:144.826667pt;}
.ye8{bottom:146.106667pt;}
.y2e{bottom:147.066667pt;}
.ya5{bottom:148.666667pt;}
.y52{bottom:159.226667pt;}
.yf8{bottom:159.706667pt;}
.y110{bottom:164.186667pt;}
.yb8{bottom:164.666667pt;}
.y103{bottom:168.666667pt;}
.ye7{bottom:170.746667pt;}
.y2d{bottom:171.706667pt;}
.ycb{bottom:174.906667pt;}
.y78{bottom:179.386667pt;}
.ya4{bottom:180.986667pt;}
.y8f{bottom:183.386667pt;}
.y51{bottom:184.026667pt;}
.yf7{bottom:184.346667pt;}
.yb7{bottom:189.306667pt;}
.ye6{bottom:195.546667pt;}
.y2c{bottom:196.506667pt;}
.y10f{bottom:199.546667pt;}
.y102{bottom:200.826667pt;}
.y77{bottom:204.026667pt;}
.yca{bottom:207.066667pt;}
.y8d{bottom:208.026667pt;}
.y50{bottom:208.666667pt;}
.yf6{bottom:209.146667pt;}
.ya3{bottom:213.146667pt;}
.yb6{bottom:214.106667pt;}
.y8e{bottom:214.746667pt;}
.ye5{bottom:220.186667pt;}
.y2b{bottom:221.146667pt;}
.y76{bottom:228.826667pt;}
.y8c{bottom:232.666667pt;}
.y101{bottom:232.986667pt;}
.y4f{bottom:233.306667pt;}
.yf5{bottom:233.786667pt;}
.y10e{bottom:234.906667pt;}
.yb5{bottom:238.746667pt;}
.yc9{bottom:239.226667pt;}
.ye4{bottom:244.826667pt;}
.ya2{bottom:245.306667pt;}
.y2a{bottom:245.786667pt;}
.y75{bottom:253.466667pt;}
.y8b{bottom:257.306667pt;}
.y4e{bottom:257.946667pt;}
.yf4{bottom:258.426667pt;}
.yb4{bottom:263.386667pt;}
.y100{bottom:265.306667pt;}
.ye3{bottom:269.626667pt;}
.y10d{bottom:270.266667pt;}
.y29{bottom:270.426667pt;}
.yc8{bottom:271.386667pt;}
.ya1{bottom:277.466667pt;}
.y74{bottom:278.106667pt;}
.y8a{bottom:282.106667pt;}
.y4d{bottom:282.746667pt;}
.yf3{bottom:283.066667pt;}
.yb3{bottom:288.186667pt;}
.ye2{bottom:294.266667pt;}
.y28{bottom:295.226667pt;}
.yff{bottom:297.466667pt;}
.y73{bottom:302.786667pt;}
.yc7{bottom:303.586667pt;}
.y10c{bottom:305.666667pt;}
.y89{bottom:306.786667pt;}
.y4c{bottom:307.426667pt;}
.yf2{bottom:307.906667pt;}
.ya0{bottom:309.826667pt;}
.yb2{bottom:312.866667pt;}
.ye1{bottom:318.946667pt;}
.y27{bottom:319.906667pt;}
.y72{bottom:327.586667pt;}
.yfe{bottom:329.666667pt;}
.y88{bottom:331.426667pt;}
.y4b{bottom:332.066667pt;}
.yf1{bottom:332.546667pt;}
.yc6{bottom:335.906667pt;}
.yb1{bottom:337.506667pt;}
.yeb{bottom:340.866667pt;}
.y10b{bottom:341.026667pt;}
.y9f{bottom:341.986667pt;}
.y26{bottom:343.106667pt;}
.ye0{bottom:343.586667pt;}
.y71{bottom:352.226667pt;}
.y87{bottom:356.226667pt;}
.y4a{bottom:356.866667pt;}
.yf0{bottom:357.186667pt;}
.yfd{bottom:361.826667pt;}
.yb0{bottom:362.146667pt;}
.y25{bottom:366.146667pt;}
.yc5{bottom:368.066667pt;}
.ydf{bottom:368.386667pt;}
.y9e{bottom:374.146667pt;}
.y10a{bottom:376.226667pt;}
.y70{bottom:376.866667pt;}
.yef{bottom:377.826667pt;}
.y86{bottom:380.866667pt;}
.y49{bottom:381.506667pt;}
.yaf{bottom:386.946667pt;}
.y24{bottom:390.946667pt;}
.yde{bottom:393.026667pt;}
.yfc{bottom:394.146667pt;}
.yc4{bottom:400.226667pt;}
.y6f{bottom:401.666667pt;}
.y85{bottom:405.506667pt;}
.y48{bottom:406.146667pt;}
.y9d{bottom:406.306667pt;}
.yae{bottom:411.586667pt;}
.y23{bottom:415.586667pt;}
.ydd{bottom:417.666667pt;}
.y6e{bottom:426.306667pt;}
.y84{bottom:430.146667pt;}
.y47{bottom:430.786667pt;}
.yc3{bottom:432.386667pt;}
.yad{bottom:434.786667pt;}
.y9c{bottom:438.626667pt;}
.y22{bottom:440.226667pt;}
.ydc{bottom:442.306667pt;}
.y109{bottom:446.946667pt;}
.y6d{bottom:450.946667pt;}
.y83{bottom:454.946667pt;}
.y46{bottom:455.586667pt;}
.yac{bottom:459.426667pt;}
.yc2{bottom:464.706667pt;}
.y21{bottom:465.026667pt;}
.ydb{bottom:467.106667pt;}
.y9b{bottom:470.786667pt;}
.y6c{bottom:475.586667pt;}
.y82{bottom:479.586667pt;}
.yab{bottom:480.066667pt;}
.y44{bottom:480.226667pt;}
.y108{bottom:482.306667pt;}
.y45{bottom:486.946667pt;}
.y20{bottom:489.666667pt;}
.yda{bottom:491.746667pt;}
.yc1{bottom:496.866667pt;}
.y6b{bottom:500.386667pt;}
.y9a{bottom:502.946667pt;}
.y81{bottom:504.226667pt;}
.y43{bottom:504.866667pt;}
.y1f{bottom:514.306667pt;}
.yd9{bottom:516.386667pt;}
.y107{bottom:517.666667pt;}
.y6a{bottom:525.026667pt;}
.y80{bottom:528.866667pt;}
.yc0{bottom:529.026667pt;}
.y42{bottom:529.506667pt;}
.y99{bottom:535.106667pt;}
.y1e{bottom:538.973333pt;}
.yd8{bottom:541.213333pt;}
.y69{bottom:549.693333pt;}
.y7f{bottom:552.093333pt;}
.y106{bottom:553.053333pt;}
.y41{bottom:554.333333pt;}
.ybf{bottom:561.213333pt;}
.y1d{bottom:563.773333pt;}
.yd7{bottom:565.853333pt;}
.y98{bottom:567.293333pt;}
.y68{bottom:574.493333pt;}
.y7e{bottom:576.893333pt;}
.y40{bottom:578.973333pt;}
.y1c{bottom:588.413333pt;}
.yd6{bottom:590.493333pt;}
.ybe{bottom:593.533333pt;}
.y7d{bottom:595.933333pt;}
.y67{bottom:599.133333pt;}
.y97{bottom:599.613333pt;}
.y3f{bottom:603.613333pt;}
.y1b{bottom:613.053333pt;}
.yd5{bottom:615.133333pt;}
.ybd{bottom:618.173333pt;}
.y66{bottom:623.773333pt;}
.y3e{bottom:628.413333pt;}
.y96{bottom:631.773333pt;}
.y1a{bottom:637.853333pt;}
.yd4{bottom:639.933333pt;}
.ybc{bottom:642.813333pt;}
.y65{bottom:648.413333pt;}
.y3d{bottom:651.453333pt;}
.y19{bottom:660.893333pt;}
.ybb{bottom:663.453333pt;}
.y95{bottom:663.933333pt;}
.yd3{bottom:672.093333pt;}
.y64{bottom:673.213333pt;}
.y3c{bottom:676.253333pt;}
.y18{bottom:684.093333pt;}
.y94{bottom:696.093333pt;}
.y63{bottom:697.853333pt;}
.y3b{bottom:700.893333pt;}
.yd2{bottom:704.253333pt;}
.y17{bottom:708.733333pt;}
.y93{bottom:720.893333pt;}
.y62{bottom:722.493333pt;}
.y3a{bottom:725.533333pt;}
.y16{bottom:731.933333pt;}
.yd1{bottom:736.413333pt;}
.y61{bottom:747.133333pt;}
.y39{bottom:750.173333pt;}
.y15{bottom:755.133333pt;}
.yd0{bottom:768.733333pt;}
.y60{bottom:771.933333pt;}
.y38{bottom:775.013333pt;}
.y14{bottom:778.373333pt;}
.y5f{bottom:796.613333pt;}
.y37{bottom:799.653333pt;}
.ycf{bottom:800.933333pt;}
.y13{bottom:801.413333pt;}
.y5e{bottom:821.253333pt;}
.y36{bottom:824.293333pt;}
.y12{bottom:826.213333pt;}
.yce{bottom:833.093333pt;}
.y5d{bottom:846.053333pt;}
.y35{bottom:849.093333pt;}
.y11{bottom:850.853333pt;}
.yaa{bottom:865.253333pt;}
.y5c{bottom:870.693333pt;}
.y34{bottom:873.733333pt;}
.y10{bottom:874.053333pt;}
.y5b{bottom:895.333333pt;}
.ya9{bottom:897.573333pt;}
.y33{bottom:898.373333pt;}
.yf{bottom:898.693333pt;}
.y5a{bottom:919.973333pt;}
.ya8{bottom:929.733333pt;}
.ye{bottom:934.053333pt;}
.y32{bottom:944.773333pt;}
.yd{bottom:958.693333pt;}
.ya7{bottom:961.893333pt;}
.y31{bottom:969.413333pt;}
.y59{bottom:976.133333pt;}
.yc{bottom:994.053333pt;}
.y7{bottom:1014.880000pt;}
.y4{bottom:1028.480000pt;}
.y1{bottom:1063.200000pt;}
.h2{height:21.440000pt;}
.h5{height:25.120000pt;}
.h8{height:27.520000pt;}
.h11{height:34.374375pt;}
.h14{height:37.792187pt;}
.h13{height:42.084375pt;}
.h16{height:43.680000pt;}
.h10{height:47.109375pt;}
.h4{height:47.742188pt;}
.hc{height:52.832812pt;}
.h12{height:52.834688pt;}
.hb{height:58.563750pt;}
.h7{height:59.340000pt;}
.h9{height:62.812500pt;}
.h6{height:64.500000pt;}
.h15{height:65.995312pt;}
.hf{height:66.726562pt;}
.he{height:73.454062pt;}
.hd{height:73.490625pt;}
.h3{height:75.465000pt;}
.h17{height:76.964840pt;}
.ha{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w6{width:56.672000pt;}
.w8{width:339.426667pt;}
.w5{width:671.173333pt;}
.w2{width:746.880000pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x6{left:7.680000pt;}
.x9{left:9.440000pt;}
.xb{left:16.320000pt;}
.x26{left:27.552000pt;}
.x4{left:31.680000pt;}
.x8{left:37.760000pt;}
.x7{left:75.519988pt;}
.x19{left:79.871988pt;}
.x2{left:82.272000pt;}
.x2b{left:94.431988pt;}
.xd{left:102.911988pt;}
.xc{left:113.311988pt;}
.x1e{left:116.671976pt;}
.x1f{left:125.631988pt;}
.x27{left:136.826667pt;}
.xe{left:165.466655pt;}
.x28{left:169.786667pt;}
.x11{left:186.106655pt;}
.x20{left:226.906655pt;}
.x10{left:236.346655pt;}
.x2a{left:240.986655pt;}
.x12{left:246.946655pt;}
.x18{left:267.586655pt;}
.x13{left:287.906655pt;}
.x16{left:317.666643pt;}
.x17{left:323.746655pt;}
.x1d{left:325.026655pt;}
.x14{left:332.066655pt;}
.x15{left:336.386655pt;}
.x1a{left:389.666643pt;}
.x1b{left:395.746655pt;}
.xf{left:396.866655pt;}
.x25{left:426.973322pt;}
.x23{left:437.373322pt;}
.x24{left:475.133322pt;}
.x5{left:541.693333pt;}
.x22{left:657.413322pt;}
.x21{left:681.893322pt;}
.x1c{left:694.853322pt;}
.x29{left:699.653322pt;}
.xa{left:708.933333pt;}
.x3{left:750.720000pt;}
}




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