
    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_cee6d7644e00a8291792b56a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ebee582eb64f649d374bcf33.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_0bd4d35127a489ee3fa32407.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_b13330807a92dea6ed763e5e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003418;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_b7dea4c8ae77c6ffbe4a69e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.874023;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_cc5daca11fe7fd98591017dd.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_905227db2b44837f009b8029.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_b66ff622dad159bbb083d701.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_f0a31db6b44c09e17ff812e9.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d860d9c860f6d06261ccac5f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003418;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.298200px;}
.ls16{letter-spacing:-0.208800px;}
.ls12{letter-spacing:-0.175800px;}
.ls7{letter-spacing:-0.112200px;}
.ls9{letter-spacing:-0.102000px;}
.ls8{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.043920px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.036000px;}
.ls19{letter-spacing:0.060600px;}
.lse{letter-spacing:0.064200px;}
.ls1{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.511200px;}
.ls3{letter-spacing:0.617760px;}
.lsc{letter-spacing:5.321280px;}
.ls2{letter-spacing:19.008000px;}
.lsd{letter-spacing:46.746720px;}
.ls13{letter-spacing:53.946720px;}
.lsf{letter-spacing:55.386720px;}
.ls10{letter-spacing:69.401280px;}
.lsa{letter-spacing:78.041280px;}
.lsb{letter-spacing:82.722720px;}
.ls5{letter-spacing:182.196000px;}
.ls6{letter-spacing:1055.154240px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws4{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.016960px;}
.ws5{word-spacing:-13.569960px;}
.ws7{word-spacing:-13.530960px;}
.ws1{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.461840px;}
.ws2{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.296960px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-10.771920px;}
._24{margin-left:-4.106880px;}
._11{margin-left:-2.826000px;}
._8{margin-left:-1.062000px;}
._0{width:1.436400px;}
._3{width:2.571840px;}
._13{width:4.230000px;}
._12{width:5.986560px;}
._16{width:6.991920px;}
._1a{width:8.366400px;}
._25{width:9.400320px;}
._1b{width:10.458000px;}
._14{width:11.653200px;}
._15{width:14.999760px;}
._1c{width:16.194960px;}
._17{width:17.868240px;}
._18{width:18.943920px;}
._26{width:20.013120px;}
._19{width:21.214800px;}
._20{width:23.425920px;}
._1d{width:25.517520px;}
._1f{width:28.505520px;}
._23{width:35.796240px;}
._21{width:36.991440px;}
._22{width:38.008560px;}
._1e{width:83.783520px;}
._f{width:95.910240px;}
._4{width:126.091920px;}
._a{width:173.871600px;}
._9{width:337.443120px;}
._2{width:850.674240px;}
._28{width:1161.572880px;}
._d{width:1639.582320px;}
._1{width:1754.370240px;}
._e{width:1988.754960px;}
._10{width:2001.627120px;}
._7{width:2012.307600px;}
._b{width:2016.729840px;}
._c{width:2041.829040px;}
._5{width:2079.300720px;}
._6{width:2171.092080px;}
.fc7{color:rgb(68,114,196);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(0,123,192);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(126,126,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:3.960000px;}
.y24{bottom:12.780000px;}
.yaa{bottom:12.825000px;}
.y12{bottom:12.960000px;}
.y13b{bottom:12.990000px;}
.y106{bottom:13.005000px;}
.y100{bottom:15.660000px;}
.y119{bottom:17.640000px;}
.y103{bottom:21.960000px;}
.yae{bottom:22.140000px;}
.y14f{bottom:22.314000px;}
.y13c{bottom:22.350000px;}
.y98{bottom:31.140000px;}
.y9e{bottom:31.170000px;}
.y14{bottom:31.320000px;}
.y114{bottom:31.350000px;}
.y105{bottom:31.365000px;}
.yff{bottom:34.020000px;}
.ya0{bottom:35.670000px;}
.y101{bottom:36.900000px;}
.ya9{bottom:40.185000px;}
.y23{bottom:40.320000px;}
.y107{bottom:40.365000px;}
.yad{bottom:40.500000px;}
.y14e{bottom:40.674000px;}
.ya1{bottom:44.850000px;}
.y118{bottom:45.000000px;}
.ya5{bottom:49.500000px;}
.y9d{bottom:49.530000px;}
.y134{bottom:49.545000px;}
.y126{bottom:49.680000px;}
.y13a{bottom:49.710000px;}
.ya6{bottom:54.000000px;}
.y9f{bottom:54.030000px;}
.y2{bottom:56.880000px;}
.y9a{bottom:58.500000px;}
.y124{bottom:58.680000px;}
.y128{bottom:58.860000px;}
.y14d{bottom:59.034000px;}
.y11d{bottom:63.210000px;}
.y122{bottom:67.350000px;}
.yac{bottom:67.680000px;}
.ya4{bottom:67.860000px;}
.y113{bottom:67.890000px;}
.y133{bottom:67.905000px;}
.y117{bottom:72.180000px;}
.y1{bottom:75.276000px;}
.y13e{bottom:76.860000px;}
.y9c{bottom:76.890000px;}
.y14c{bottom:77.214000px;}
.y11c{bottom:81.570000px;}
.y121{bottom:85.710000px;}
.y138{bottom:86.040000px;}
.y131{bottom:86.085000px;}
.y125{bottom:86.220000px;}
.y112{bottom:86.250000px;}
.y132{bottom:86.265000px;}
.y11b{bottom:94.860000px;}
.ya3{bottom:95.040000px;}
.y14b{bottom:95.574000px;}
.y116{bottom:99.540000px;}
.y120{bottom:104.070000px;}
.y137{bottom:104.400000px;}
.y111{bottom:104.610000px;}
.y62{bottom:112.176000px;}
.y11a{bottom:113.220000px;}
.y14a{bottom:113.934000px;}
.yd4{bottom:118.476000px;}
.yb2{bottom:121.176000px;}
.y11f{bottom:122.430000px;}
.y136{bottom:122.760000px;}
.y110{bottom:122.790000px;}
.y61{bottom:130.536000px;}
.y149{bottom:132.114000px;}
.y11e{bottom:140.790000px;}
.y10f{bottom:141.150000px;}
.y141{bottom:142.596000px;}
.yd3{bottom:145.836000px;}
.y12d{bottom:146.016000px;}
.y90{bottom:147.996000px;}
.yb1{bottom:148.536000px;}
.y60{bottom:148.716000px;}
.y148{bottom:150.474000px;}
.y10e{bottom:159.510000px;}
.y8f{bottom:166.350000px;}
.y5f{bottom:167.070000px;}
.y147{bottom:168.834000px;}
.yd2{bottom:173.190000px;}
.yb0{bottom:175.710000px;}
.y12c{bottom:182.190000px;}
.y8e{bottom:184.710000px;}
.y5e{bottom:185.430000px;}
.y10d{bottom:186.690000px;}
.y146{bottom:187.194000px;}
.yd1{bottom:191.370000px;}
.y20{bottom:194.070000px;}
.yfd{bottom:197.490000px;}
.y8d{bottom:202.890000px;}
.y5d{bottom:203.610000px;}
.y10c{bottom:205.050000px;}
.y145{bottom:205.419000px;}
.yfc{bottom:215.670000px;}
.y12b{bottom:218.550000px;}
.yd0{bottom:218.730000px;}
.y8c{bottom:221.250000px;}
.y1f{bottom:221.430000px;}
.y5c{bottom:221.970000px;}
.y10b{bottom:223.410000px;}
.y144{bottom:223.779000px;}
.yfb{bottom:234.030000px;}
.yab{bottom:238.170000px;}
.y8b{bottom:239.610000px;}
.y5b{bottom:240.330000px;}
.y10a{bottom:241.770000px;}
.y142{bottom:241.959000px;}
.y143{bottom:242.139000px;}
.ycf{bottom:246.090000px;}
.y1e{bottom:248.790000px;}
.yfa{bottom:252.390000px;}
.y12a{bottom:254.910000px;}
.y8a{bottom:257.970000px;}
.y5a{bottom:258.690000px;}
.y109{bottom:259.950000px;}
.yce{bottom:264.450000px;}
.yf9{bottom:270.750000px;}
.y1d{bottom:276.150000px;}
.y59{bottom:276.870000px;}
.yf8{bottom:288.930000px;}
.y129{bottom:291.090000px;}
.ycd{bottom:291.630000px;}
.y89{bottom:294.510000px;}
.y58{bottom:295.230000px;}
.y1c{bottom:303.330000px;}
.yf7{bottom:307.290000px;}
.y88{bottom:312.870000px;}
.y57{bottom:313.590000px;}
.ycc{bottom:318.990000px;}
.ya8{bottom:330.150000px;}
.y1b{bottom:330.690000px;}
.y87{bottom:331.050000px;}
.y56{bottom:331.950000px;}
.yf6{bottom:334.470000px;}
.ycb{bottom:346.935000px;}
.y55{bottom:350.175000px;}
.y86{bottom:350.895000px;}
.y1a{bottom:358.095000px;}
.yf5{bottom:361.875000px;}
.y127{bottom:363.315000px;}
.y54{bottom:368.535000px;}
.y85{bottom:369.255000px;}
.yf4{bottom:380.235000px;}
.yca{bottom:384.375000px;}
.y19{bottom:385.275000px;}
.y53{bottom:386.895000px;}
.y84{bottom:387.615000px;}
.ya7{bottom:394.455000px;}
.yf3{bottom:398.595000px;}
.y52{bottom:405.075000px;}
.y83{bottom:405.795000px;}
.y140{bottom:408.855000px;}
.yc9{bottom:411.735000px;}
.y18{bottom:412.635000px;}
.yf2{bottom:416.955000px;}
.y51{bottom:423.435000px;}
.y82{bottom:424.155000px;}
.yf1{bottom:435.135000px;}
.yc8{bottom:439.095000px;}
.y17{bottom:439.995000px;}
.y50{bottom:441.795000px;}
.y81{bottom:442.515000px;}
.y13f{bottom:445.935000px;}
.ya2{bottom:458.895000px;}
.y4f{bottom:460.155000px;}
.y80{bottom:460.695000px;}
.yf0{bottom:462.495000px;}
.yc7{bottom:466.455000px;}
.y16{bottom:467.355000px;}
.y123{bottom:473.655000px;}
.y4e{bottom:478.335000px;}
.y7f{bottom:479.055000px;}
.yef{bottom:489.855000px;}
.yc6{bottom:493.635000px;}
.y15{bottom:494.535000px;}
.y4d{bottom:496.695000px;}
.y13d{bottom:501.195000px;}
.yee{bottom:508.215000px;}
.y4c{bottom:515.055000px;}
.y7e{bottom:516.855000px;}
.y13{bottom:518.655000px;}
.yc5{bottom:520.995000px;}
.yed{bottom:526.395000px;}
.y4b{bottom:533.415000px;}
.y7d{bottom:535.215000px;}
.yec{bottom:544.755000px;}
.yc4{bottom:548.355000px;}
.y4a{bottom:551.595000px;}
.y7c{bottom:553.395000px;}
.y49{bottom:569.955000px;}
.y7b{bottom:571.755000px;}
.yeb{bottom:571.935000px;}
.y11{bottom:574.095000px;}
.yc3{bottom:575.535000px;}
.y9b{bottom:578.235000px;}
.y108{bottom:583.995000px;}
.y48{bottom:588.315000px;}
.y7a{bottom:590.115000px;}
.yea{bottom:599.295000px;}
.y139{bottom:602.175000px;}
.yc2{bottom:602.895000px;}
.y47{bottom:606.525000px;}
.y79{bottom:608.325000px;}
.ye9{bottom:617.685000px;}
.y10{bottom:624.165000px;}
.y46{bottom:624.885000px;}
.y78{bottom:626.685000px;}
.yc1{bottom:630.285000px;}
.y35{bottom:634.245000px;}
.ye8{bottom:636.045000px;}
.y45{bottom:643.245000px;}
.y77{bottom:645.045000px;}
.yf{bottom:651.345000px;}
.y34{bottom:652.425000px;}
.ye7{bottom:654.405000px;}
.yc0{bottom:657.645000px;}
.y44{bottom:661.605000px;}
.y76{bottom:663.405000px;}
.ye6{bottom:672.585000px;}
.y135{bottom:676.005000px;}
.y33{bottom:678.165000px;}
.ye{bottom:678.705000px;}
.y99{bottom:679.245000px;}
.y43{bottom:679.785000px;}
.y75{bottom:681.585000px;}
.ybf{bottom:685.545000px;}
.ye5{bottom:690.945000px;}
.y42{bottom:698.145000px;}
.y74{bottom:699.945000px;}
.y32{bottom:705.525000px;}
.ye4{bottom:709.305000px;}
.yd{bottom:710.925000px;}
.y41{bottom:716.505000px;}
.y73{bottom:718.305000px;}
.ybe{bottom:719.745000px;}
.ye3{bottom:727.665000px;}
.y31{bottom:732.885000px;}
.y72{bottom:736.665000px;}
.y115{bottom:739.725000px;}
.ye2{bottom:745.845000px;}
.ybd{bottom:747.105000px;}
.y40{bottom:752.865000px;}
.y71{bottom:754.845000px;}
.y30{bottom:760.065000px;}
.yc{bottom:760.245000px;}
.y97{bottom:761.865000px;}
.ye1{bottom:764.205000px;}
.y3f{bottom:771.045000px;}
.y70{bottom:773.205000px;}
.ybc{bottom:774.465000px;}
.ye0{bottom:782.565000px;}
.y2f{bottom:787.425000px;}
.y6f{bottom:791.565000px;}
.ydf{bottom:800.745000px;}
.ybb{bottom:801.645000px;}
.y3e{bottom:807.405000px;}
.y6e{bottom:809.745000px;}
.yb{bottom:813.165000px;}
.y2e{bottom:814.785000px;}
.yde{bottom:819.105000px;}
.y130{bottom:822.885000px;}
.y6d{bottom:828.105000px;}
.yba{bottom:829.005000px;}
.ydd{bottom:837.465000px;}
.y2d{bottom:842.145000px;}
.ya{bottom:842.505000px;}
.y3d{bottom:843.765000px;}
.y6c{bottom:846.465000px;}
.yb9{bottom:847.365000px;}
.ydc{bottom:855.825000px;}
.y96{bottom:860.865000px;}
.y3c{bottom:861.945000px;}
.y6b{bottom:864.825000px;}
.y104{bottom:868.785000px;}
.y2c{bottom:868.965000px;}
.ydb{bottom:874.050000px;}
.yb8{bottom:874.770000px;}
.y95{bottom:879.270000px;}
.y3b{bottom:880.350000px;}
.y6a{bottom:883.050000px;}
.y9{bottom:886.830000px;}
.yda{bottom:892.410000px;}
.y2b{bottom:894.570000px;}
.y69{bottom:901.410000px;}
.yb7{bottom:901.950000px;}
.y94{bottom:907.170000px;}
.yd9{bottom:910.770000px;}
.y8{bottom:916.170000px;}
.y3a{bottom:917.250000px;}
.y68{bottom:919.770000px;}
.y2a{bottom:920.310000px;}
.y102{bottom:924.990000px;}
.yd8{bottom:929.130000px;}
.yb6{bottom:929.310000px;}
.y12f{bottom:933.270000px;}
.y67{bottom:938.130000px;}
.y93{bottom:944.790000px;}
.y152{bottom:946.050000px;}
.yd7{bottom:947.310000px;}
.y29{bottom:947.670000px;}
.y39{bottom:954.870000px;}
.y66{bottom:956.310000px;}
.yb5{bottom:956.670000px;}
.y7{bottom:957.930000px;}
.yfe{bottom:962.790000px;}
.yd6{bottom:965.670000px;}
.y92{bottom:971.970000px;}
.y38{bottom:973.230000px;}
.y151{bottom:973.410000px;}
.y65{bottom:974.670000px;}
.y28{bottom:975.030000px;}
.yb4{bottom:983.850000px;}
.yd5{bottom:984.030000px;}
.y12e{bottom:988.530000px;}
.y91{bottom:990.330000px;}
.y6{bottom:991.230000px;}
.y37{bottom:991.410000px;}
.y64{bottom:993.030000px;}
.y150{bottom:997.530000px;}
.yb3{bottom:1002.210000px;}
.y27{bottom:1002.390000px;}
.y63{bottom:1011.210000px;}
.y5{bottom:1024.530000px;}
.y36{bottom:1028.310000px;}
.y26{bottom:1029.570000px;}
.y4{bottom:1051.710000px;}
.y25{bottom:1056.930000px;}
.y3{bottom:1079.610000px;}
.y22{bottom:1081.050000px;}
.y21{bottom:1195.380000px;}
.h22{height:36.180000px;}
.h17{height:36.360000px;}
.h6{height:36.396000px;}
.ha{height:44.534180px;}
.h24{height:45.720000px;}
.h1e{height:49.284492px;}
.hd{height:54.540000px;}
.h7{height:54.720000px;}
.h18{height:54.756000px;}
.h2{height:59.439023px;}
.h16{height:60.300000px;}
.h3{height:61.189805px;}
.h14{height:61.423863px;}
.hc{height:62.211094px;}
.h12{height:63.576000px;}
.h11{height:63.720000px;}
.h15{height:68.084282px;}
.hb{height:68.956875px;}
.h20{height:72.936000px;}
.h9{height:73.722656px;}
.he{height:81.900000px;}
.h13{height:91.080000px;}
.h4{height:98.051133px;}
.h21{height:100.260000px;}
.hf{height:100.296000px;}
.h8{height:106.956000px;}
.h1d{height:109.476000px;}
.h1c{height:109.620000px;}
.h10{height:118.440000px;}
.h1a{height:127.620000px;}
.h5{height:134.912461px;}
.h1f{height:146.160000px;}
.h1b{height:155.010000px;}
.h23{height:265.350000px;}
.h19{height:283.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:45.180000px;}
.w11{width:62.640000px;}
.w13{width:105.660000px;}
.w8{width:111.420000px;}
.w5{width:135.396000px;}
.wf{width:145.656000px;}
.wa{width:155.370000px;}
.w9{width:170.310000px;}
.wb{width:191.550000px;}
.w7{width:203.070000px;}
.w3{width:204.870000px;}
.w4{width:292.890000px;}
.wd{width:461.055000px;}
.wc{width:461.775000px;}
.w12{width:488.445000px;}
.w6{width:654.765000px;}
.w10{width:658.185000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:5.220000px;}
.x1b{left:7.740000px;}
.x28{left:16.560000px;}
.x2b{left:17.640000px;}
.x2c{left:18.900000px;}
.x10{left:20.520000px;}
.xc{left:22.494000px;}
.x25{left:26.454000px;}
.x31{left:28.800000px;}
.x2f{left:29.880000px;}
.x13{left:31.545000px;}
.x32{left:42.300000px;}
.x33{left:46.974000px;}
.x2a{left:51.114000px;}
.xe{left:61.200000px;}
.x30{left:62.640000px;}
.x34{left:66.774000px;}
.x26{left:71.094000px;}
.x2e{left:72.720000px;}
.x11{left:76.494000px;}
.x12{left:94.140000px;}
.x14{left:119.196000px;}
.x1a{left:120.456000px;}
.x24{left:126.576000px;}
.x2{left:127.655987px;}
.xb{left:129.996000px;}
.x19{left:154.649987px;}
.x18{left:160.049987px;}
.xa{left:165.629987px;}
.x22{left:170.309987px;}
.x2d{left:172.470000px;}
.x21{left:181.649987px;}
.x35{left:191.730000px;}
.x23{left:197.309987px;}
.x1f{left:208.649987px;}
.x5{left:234.389987px;}
.x20{left:235.649987px;}
.x7{left:241.229987px;}
.x27{left:318.855000px;}
.x1c{left:324.255000px;}
.x16{left:327.279000px;}
.xd{left:335.775000px;}
.x15{left:371.409000px;}
.x8{left:427.754987px;}
.x1d{left:436.395000px;}
.x9{left:446.474987px;}
.x6{left:457.094987px;}
.x4{left:467.924987px;}
.x1e{left:607.605000px;}
.xf{left:629.385000px;}
.x17{left:667.769987px;}
.x3{left:676.049987px;}
.x36{left:680.910000px;}
.x1{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.265067pt;}
.ls16{letter-spacing:-0.185600pt;}
.ls12{letter-spacing:-0.156267pt;}
.ls7{letter-spacing:-0.099733pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.039040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.032000pt;}
.ls19{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.057067pt;}
.ls1{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.454400pt;}
.ls3{letter-spacing:0.549120pt;}
.lsc{letter-spacing:4.730027pt;}
.ls2{letter-spacing:16.896000pt;}
.lsd{letter-spacing:41.552640pt;}
.ls13{letter-spacing:47.952640pt;}
.lsf{letter-spacing:49.232640pt;}
.ls10{letter-spacing:61.690027pt;}
.lsa{letter-spacing:69.370027pt;}
.lsb{letter-spacing:73.531307pt;}
.ls5{letter-spacing:161.952000pt;}
.ls6{letter-spacing:937.914880pt;}
.ws6{word-spacing:-53.120000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws9{word-spacing:-12.459520pt;}
.ws5{word-spacing:-12.062187pt;}
.ws7{word-spacing:-12.027520pt;}
.ws1{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.966080pt;}
.ws2{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.819520pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-9.575040pt;}
._24{margin-left:-3.650560pt;}
._11{margin-left:-2.512000pt;}
._8{margin-left:-0.944000pt;}
._0{width:1.276800pt;}
._3{width:2.286080pt;}
._13{width:3.760000pt;}
._12{width:5.321387pt;}
._16{width:6.215040pt;}
._1a{width:7.436800pt;}
._25{width:8.355840pt;}
._1b{width:9.296000pt;}
._14{width:10.358400pt;}
._15{width:13.333120pt;}
._1c{width:14.395520pt;}
._17{width:15.882880pt;}
._18{width:16.839040pt;}
._26{width:17.789440pt;}
._19{width:18.857600pt;}
._20{width:20.823040pt;}
._1d{width:22.682240pt;}
._1f{width:25.338240pt;}
._23{width:31.818880pt;}
._21{width:32.881280pt;}
._22{width:33.785387pt;}
._1e{width:74.474240pt;}
._f{width:85.253547pt;}
._4{width:112.081707pt;}
._a{width:154.552533pt;}
._9{width:299.949440pt;}
._2{width:756.154880pt;}
._28{width:1032.509227pt;}
._d{width:1457.406507pt;}
._1{width:1559.440213pt;}
._e{width:1767.782187pt;}
._10{width:1779.224107pt;}
._7{width:1788.717867pt;}
._b{width:1792.648747pt;}
._c{width:1814.959147pt;}
._5{width:1848.267307pt;}
._6{width:1929.859627pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:3.520000pt;}
.y24{bottom:11.360000pt;}
.yaa{bottom:11.400000pt;}
.y12{bottom:11.520000pt;}
.y13b{bottom:11.546667pt;}
.y106{bottom:11.560000pt;}
.y100{bottom:13.920000pt;}
.y119{bottom:15.680000pt;}
.y103{bottom:19.520000pt;}
.yae{bottom:19.680000pt;}
.y14f{bottom:19.834667pt;}
.y13c{bottom:19.866667pt;}
.y98{bottom:27.680000pt;}
.y9e{bottom:27.706667pt;}
.y14{bottom:27.840000pt;}
.y114{bottom:27.866667pt;}
.y105{bottom:27.880000pt;}
.yff{bottom:30.240000pt;}
.ya0{bottom:31.706667pt;}
.y101{bottom:32.800000pt;}
.ya9{bottom:35.720000pt;}
.y23{bottom:35.840000pt;}
.y107{bottom:35.880000pt;}
.yad{bottom:36.000000pt;}
.y14e{bottom:36.154667pt;}
.ya1{bottom:39.866667pt;}
.y118{bottom:40.000000pt;}
.ya5{bottom:44.000000pt;}
.y9d{bottom:44.026667pt;}
.y134{bottom:44.040000pt;}
.y126{bottom:44.160000pt;}
.y13a{bottom:44.186667pt;}
.ya6{bottom:48.000000pt;}
.y9f{bottom:48.026667pt;}
.y2{bottom:50.560000pt;}
.y9a{bottom:52.000000pt;}
.y124{bottom:52.160000pt;}
.y128{bottom:52.320000pt;}
.y14d{bottom:52.474667pt;}
.y11d{bottom:56.186667pt;}
.y122{bottom:59.866667pt;}
.yac{bottom:60.160000pt;}
.ya4{bottom:60.320000pt;}
.y113{bottom:60.346667pt;}
.y133{bottom:60.360000pt;}
.y117{bottom:64.160000pt;}
.y1{bottom:66.912000pt;}
.y13e{bottom:68.320000pt;}
.y9c{bottom:68.346667pt;}
.y14c{bottom:68.634667pt;}
.y11c{bottom:72.506667pt;}
.y121{bottom:76.186667pt;}
.y138{bottom:76.480000pt;}
.y131{bottom:76.520000pt;}
.y125{bottom:76.640000pt;}
.y112{bottom:76.666667pt;}
.y132{bottom:76.680000pt;}
.y11b{bottom:84.320000pt;}
.ya3{bottom:84.480000pt;}
.y14b{bottom:84.954667pt;}
.y116{bottom:88.480000pt;}
.y120{bottom:92.506667pt;}
.y137{bottom:92.800000pt;}
.y111{bottom:92.986667pt;}
.y62{bottom:99.712000pt;}
.y11a{bottom:100.640000pt;}
.y14a{bottom:101.274667pt;}
.yd4{bottom:105.312000pt;}
.yb2{bottom:107.712000pt;}
.y11f{bottom:108.826667pt;}
.y136{bottom:109.120000pt;}
.y110{bottom:109.146667pt;}
.y61{bottom:116.032000pt;}
.y149{bottom:117.434667pt;}
.y11e{bottom:125.146667pt;}
.y10f{bottom:125.466667pt;}
.y141{bottom:126.752000pt;}
.yd3{bottom:129.632000pt;}
.y12d{bottom:129.792000pt;}
.y90{bottom:131.552000pt;}
.yb1{bottom:132.032000pt;}
.y60{bottom:132.192000pt;}
.y148{bottom:133.754667pt;}
.y10e{bottom:141.786667pt;}
.y8f{bottom:147.866667pt;}
.y5f{bottom:148.506667pt;}
.y147{bottom:150.074667pt;}
.yd2{bottom:153.946667pt;}
.yb0{bottom:156.186667pt;}
.y12c{bottom:161.946667pt;}
.y8e{bottom:164.186667pt;}
.y5e{bottom:164.826667pt;}
.y10d{bottom:165.946667pt;}
.y146{bottom:166.394667pt;}
.yd1{bottom:170.106667pt;}
.y20{bottom:172.506667pt;}
.yfd{bottom:175.546667pt;}
.y8d{bottom:180.346667pt;}
.y5d{bottom:180.986667pt;}
.y10c{bottom:182.266667pt;}
.y145{bottom:182.594667pt;}
.yfc{bottom:191.706667pt;}
.y12b{bottom:194.266667pt;}
.yd0{bottom:194.426667pt;}
.y8c{bottom:196.666667pt;}
.y1f{bottom:196.826667pt;}
.y5c{bottom:197.306667pt;}
.y10b{bottom:198.586667pt;}
.y144{bottom:198.914667pt;}
.yfb{bottom:208.026667pt;}
.yab{bottom:211.706667pt;}
.y8b{bottom:212.986667pt;}
.y5b{bottom:213.626667pt;}
.y10a{bottom:214.906667pt;}
.y142{bottom:215.074667pt;}
.y143{bottom:215.234667pt;}
.ycf{bottom:218.746667pt;}
.y1e{bottom:221.146667pt;}
.yfa{bottom:224.346667pt;}
.y12a{bottom:226.586667pt;}
.y8a{bottom:229.306667pt;}
.y5a{bottom:229.946667pt;}
.y109{bottom:231.066667pt;}
.yce{bottom:235.066667pt;}
.yf9{bottom:240.666667pt;}
.y1d{bottom:245.466667pt;}
.y59{bottom:246.106667pt;}
.yf8{bottom:256.826667pt;}
.y129{bottom:258.746667pt;}
.ycd{bottom:259.226667pt;}
.y89{bottom:261.786667pt;}
.y58{bottom:262.426667pt;}
.y1c{bottom:269.626667pt;}
.yf7{bottom:273.146667pt;}
.y88{bottom:278.106667pt;}
.y57{bottom:278.746667pt;}
.ycc{bottom:283.546667pt;}
.ya8{bottom:293.466667pt;}
.y1b{bottom:293.946667pt;}
.y87{bottom:294.266667pt;}
.y56{bottom:295.066667pt;}
.yf6{bottom:297.306667pt;}
.ycb{bottom:308.386667pt;}
.y55{bottom:311.266667pt;}
.y86{bottom:311.906667pt;}
.y1a{bottom:318.306667pt;}
.yf5{bottom:321.666667pt;}
.y127{bottom:322.946667pt;}
.y54{bottom:327.586667pt;}
.y85{bottom:328.226667pt;}
.yf4{bottom:337.986667pt;}
.yca{bottom:341.666667pt;}
.y19{bottom:342.466667pt;}
.y53{bottom:343.906667pt;}
.y84{bottom:344.546667pt;}
.ya7{bottom:350.626667pt;}
.yf3{bottom:354.306667pt;}
.y52{bottom:360.066667pt;}
.y83{bottom:360.706667pt;}
.y140{bottom:363.426667pt;}
.yc9{bottom:365.986667pt;}
.y18{bottom:366.786667pt;}
.yf2{bottom:370.626667pt;}
.y51{bottom:376.386667pt;}
.y82{bottom:377.026667pt;}
.yf1{bottom:386.786667pt;}
.yc8{bottom:390.306667pt;}
.y17{bottom:391.106667pt;}
.y50{bottom:392.706667pt;}
.y81{bottom:393.346667pt;}
.y13f{bottom:396.386667pt;}
.ya2{bottom:407.906667pt;}
.y4f{bottom:409.026667pt;}
.y80{bottom:409.506667pt;}
.yf0{bottom:411.106667pt;}
.yc7{bottom:414.626667pt;}
.y16{bottom:415.426667pt;}
.y123{bottom:421.026667pt;}
.y4e{bottom:425.186667pt;}
.y7f{bottom:425.826667pt;}
.yef{bottom:435.426667pt;}
.yc6{bottom:438.786667pt;}
.y15{bottom:439.586667pt;}
.y4d{bottom:441.506667pt;}
.y13d{bottom:445.506667pt;}
.yee{bottom:451.746667pt;}
.y4c{bottom:457.826667pt;}
.y7e{bottom:459.426667pt;}
.y13{bottom:461.026667pt;}
.yc5{bottom:463.106667pt;}
.yed{bottom:467.906667pt;}
.y4b{bottom:474.146667pt;}
.y7d{bottom:475.746667pt;}
.yec{bottom:484.226667pt;}
.yc4{bottom:487.426667pt;}
.y4a{bottom:490.306667pt;}
.y7c{bottom:491.906667pt;}
.y49{bottom:506.626667pt;}
.y7b{bottom:508.226667pt;}
.yeb{bottom:508.386667pt;}
.y11{bottom:510.306667pt;}
.yc3{bottom:511.586667pt;}
.y9b{bottom:513.986667pt;}
.y108{bottom:519.106667pt;}
.y48{bottom:522.946667pt;}
.y7a{bottom:524.546667pt;}
.yea{bottom:532.706667pt;}
.y139{bottom:535.266667pt;}
.yc2{bottom:535.906667pt;}
.y47{bottom:539.133333pt;}
.y79{bottom:540.733333pt;}
.ye9{bottom:549.053333pt;}
.y10{bottom:554.813333pt;}
.y46{bottom:555.453333pt;}
.y78{bottom:557.053333pt;}
.yc1{bottom:560.253333pt;}
.y35{bottom:563.773333pt;}
.ye8{bottom:565.373333pt;}
.y45{bottom:571.773333pt;}
.y77{bottom:573.373333pt;}
.yf{bottom:578.973333pt;}
.y34{bottom:579.933333pt;}
.ye7{bottom:581.693333pt;}
.yc0{bottom:584.573333pt;}
.y44{bottom:588.093333pt;}
.y76{bottom:589.693333pt;}
.ye6{bottom:597.853333pt;}
.y135{bottom:600.893333pt;}
.y33{bottom:602.813333pt;}
.ye{bottom:603.293333pt;}
.y99{bottom:603.773333pt;}
.y43{bottom:604.253333pt;}
.y75{bottom:605.853333pt;}
.ybf{bottom:609.373333pt;}
.ye5{bottom:614.173333pt;}
.y42{bottom:620.573333pt;}
.y74{bottom:622.173333pt;}
.y32{bottom:627.133333pt;}
.ye4{bottom:630.493333pt;}
.yd{bottom:631.933333pt;}
.y41{bottom:636.893333pt;}
.y73{bottom:638.493333pt;}
.ybe{bottom:639.773333pt;}
.ye3{bottom:646.813333pt;}
.y31{bottom:651.453333pt;}
.y72{bottom:654.813333pt;}
.y115{bottom:657.533333pt;}
.ye2{bottom:662.973333pt;}
.ybd{bottom:664.093333pt;}
.y40{bottom:669.213333pt;}
.y71{bottom:670.973333pt;}
.y30{bottom:675.613333pt;}
.yc{bottom:675.773333pt;}
.y97{bottom:677.213333pt;}
.ye1{bottom:679.293333pt;}
.y3f{bottom:685.373333pt;}
.y70{bottom:687.293333pt;}
.ybc{bottom:688.413333pt;}
.ye0{bottom:695.613333pt;}
.y2f{bottom:699.933333pt;}
.y6f{bottom:703.613333pt;}
.ydf{bottom:711.773333pt;}
.ybb{bottom:712.573333pt;}
.y3e{bottom:717.693333pt;}
.y6e{bottom:719.773333pt;}
.yb{bottom:722.813333pt;}
.y2e{bottom:724.253333pt;}
.yde{bottom:728.093333pt;}
.y130{bottom:731.453333pt;}
.y6d{bottom:736.093333pt;}
.yba{bottom:736.893333pt;}
.ydd{bottom:744.413333pt;}
.y2d{bottom:748.573333pt;}
.ya{bottom:748.893333pt;}
.y3d{bottom:750.013333pt;}
.y6c{bottom:752.413333pt;}
.yb9{bottom:753.213333pt;}
.ydc{bottom:760.733333pt;}
.y96{bottom:765.213333pt;}
.y3c{bottom:766.173333pt;}
.y6b{bottom:768.733333pt;}
.y104{bottom:772.253333pt;}
.y2c{bottom:772.413333pt;}
.ydb{bottom:776.933333pt;}
.yb8{bottom:777.573333pt;}
.y95{bottom:781.573333pt;}
.y3b{bottom:782.533333pt;}
.y6a{bottom:784.933333pt;}
.y9{bottom:788.293333pt;}
.yda{bottom:793.253333pt;}
.y2b{bottom:795.173333pt;}
.y69{bottom:801.253333pt;}
.yb7{bottom:801.733333pt;}
.y94{bottom:806.373333pt;}
.yd9{bottom:809.573333pt;}
.y8{bottom:814.373333pt;}
.y3a{bottom:815.333333pt;}
.y68{bottom:817.573333pt;}
.y2a{bottom:818.053333pt;}
.y102{bottom:822.213333pt;}
.yd8{bottom:825.893333pt;}
.yb6{bottom:826.053333pt;}
.y12f{bottom:829.573333pt;}
.y67{bottom:833.893333pt;}
.y93{bottom:839.813333pt;}
.y152{bottom:840.933333pt;}
.yd7{bottom:842.053333pt;}
.y29{bottom:842.373333pt;}
.y39{bottom:848.773333pt;}
.y66{bottom:850.053333pt;}
.yb5{bottom:850.373333pt;}
.y7{bottom:851.493333pt;}
.yfe{bottom:855.813333pt;}
.yd6{bottom:858.373333pt;}
.y92{bottom:863.973333pt;}
.y38{bottom:865.093333pt;}
.y151{bottom:865.253333pt;}
.y65{bottom:866.373333pt;}
.y28{bottom:866.693333pt;}
.yb4{bottom:874.533333pt;}
.yd5{bottom:874.693333pt;}
.y12e{bottom:878.693333pt;}
.y91{bottom:880.293333pt;}
.y6{bottom:881.093333pt;}
.y37{bottom:881.253333pt;}
.y64{bottom:882.693333pt;}
.y150{bottom:886.693333pt;}
.yb3{bottom:890.853333pt;}
.y27{bottom:891.013333pt;}
.y63{bottom:898.853333pt;}
.y5{bottom:910.693333pt;}
.y36{bottom:914.053333pt;}
.y26{bottom:915.173333pt;}
.y4{bottom:934.853333pt;}
.y25{bottom:939.493333pt;}
.y3{bottom:959.653333pt;}
.y22{bottom:960.933333pt;}
.y21{bottom:1062.560000pt;}
.h22{height:32.160000pt;}
.h17{height:32.320000pt;}
.h6{height:32.352000pt;}
.ha{height:39.585938pt;}
.h24{height:40.640000pt;}
.h1e{height:43.808438pt;}
.hd{height:48.480000pt;}
.h7{height:48.640000pt;}
.h18{height:48.672000pt;}
.h2{height:52.834688pt;}
.h16{height:53.600000pt;}
.h3{height:54.390938pt;}
.h14{height:54.598989pt;}
.hc{height:55.298750pt;}
.h12{height:56.512000pt;}
.h11{height:56.640000pt;}
.h15{height:60.519362pt;}
.hb{height:61.295000pt;}
.h20{height:64.832000pt;}
.h9{height:65.531250pt;}
.he{height:72.800000pt;}
.h13{height:80.960000pt;}
.h4{height:87.156562pt;}
.h21{height:89.120000pt;}
.hf{height:89.152000pt;}
.h8{height:95.072000pt;}
.h1d{height:97.312000pt;}
.h1c{height:97.440000pt;}
.h10{height:105.280000pt;}
.h1a{height:113.440000pt;}
.h5{height:119.922187pt;}
.h1f{height:129.920000pt;}
.h1b{height:137.786667pt;}
.h23{height:235.866667pt;}
.h19{height:251.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:40.160000pt;}
.w11{width:55.680000pt;}
.w13{width:93.920000pt;}
.w8{width:99.040000pt;}
.w5{width:120.352000pt;}
.wf{width:129.472000pt;}
.wa{width:138.106667pt;}
.w9{width:151.386667pt;}
.wb{width:170.266667pt;}
.w7{width:180.506667pt;}
.w3{width:182.106667pt;}
.w4{width:260.346667pt;}
.wd{width:409.826667pt;}
.wc{width:410.466667pt;}
.w12{width:434.173333pt;}
.w6{width:582.013333pt;}
.w10{width:585.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:4.640000pt;}
.x1b{left:6.880000pt;}
.x28{left:14.720000pt;}
.x2b{left:15.680000pt;}
.x2c{left:16.800000pt;}
.x10{left:18.240000pt;}
.xc{left:19.994667pt;}
.x25{left:23.514667pt;}
.x31{left:25.600000pt;}
.x2f{left:26.560000pt;}
.x13{left:28.040000pt;}
.x32{left:37.600000pt;}
.x33{left:41.754667pt;}
.x2a{left:45.434667pt;}
.xe{left:54.400000pt;}
.x30{left:55.680000pt;}
.x34{left:59.354667pt;}
.x26{left:63.194667pt;}
.x2e{left:64.640000pt;}
.x11{left:67.994667pt;}
.x12{left:83.680000pt;}
.x14{left:105.952000pt;}
.x1a{left:107.072000pt;}
.x24{left:112.512000pt;}
.x2{left:113.471988pt;}
.xb{left:115.552000pt;}
.x19{left:137.466655pt;}
.x18{left:142.266655pt;}
.xa{left:147.226655pt;}
.x22{left:151.386655pt;}
.x2d{left:153.306667pt;}
.x21{left:161.466655pt;}
.x35{left:170.426667pt;}
.x23{left:175.386655pt;}
.x1f{left:185.466655pt;}
.x5{left:208.346655pt;}
.x20{left:209.466655pt;}
.x7{left:214.426655pt;}
.x27{left:283.426667pt;}
.x1c{left:288.226667pt;}
.x16{left:290.914667pt;}
.xd{left:298.466667pt;}
.x15{left:330.141333pt;}
.x8{left:380.226655pt;}
.x1d{left:387.906667pt;}
.x9{left:396.866655pt;}
.x6{left:406.306655pt;}
.x4{left:415.933322pt;}
.x1e{left:540.093333pt;}
.xf{left:559.453333pt;}
.x17{left:593.573322pt;}
.x3{left:600.933322pt;}
.x36{left:605.253333pt;}
.x1{left:680.453322pt;}
}




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