
    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_be96953a1599a5d45fca28c2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ed70f4a2a979f9815b9d8e96.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_33c6518799616a57a52a7c73.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_4a90ef8a5052836b89c72b80.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_0f0aa5b540e0e2ae1693cb9b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_cfee880d82be3081f2ac286e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1546225640ee0878880e6fa3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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);}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsf{letter-spacing:-0.413400px;}
.lsc{letter-spacing:-0.220200px;}
.ls15{letter-spacing:-0.054720px;}
.ls8{letter-spacing:-0.045360px;}
.ls16{letter-spacing:-0.027360px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.027360px;}
.ls3{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.139800px;}
.ls4{letter-spacing:0.140040px;}
.lsd{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:2.370000px;}
.ls11{letter-spacing:9.810000px;}
.lsb{letter-spacing:10.890000px;}
.ls14{letter-spacing:20.907360px;}
.lse{letter-spacing:29.970000px;}
.ls6{letter-spacing:46.286640px;}
.ls12{letter-spacing:49.347360px;}
.ls1{letter-spacing:1054.290000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.470000px;}
.ws5{word-spacing:-16.424640px;}
.ws9{word-spacing:-15.210000px;}
.wsc{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.809800px;}
.wsd{word-spacing:-14.220000px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.530000px;}
.wsa{word-spacing:0.000000px;}
._40{margin-left:-978.880800px;}
._3c{margin-left:-962.936760px;}
._30{margin-left:-895.138680px;}
._31{margin-left:-875.220600px;}
._39{margin-left:-768.783360px;}
._42{margin-left:-653.105280px;}
._2a{margin-left:-641.278920px;}
._3a{margin-left:-609.427200px;}
._3d{margin-left:-606.565920px;}
._36{margin-left:-544.408920px;}
._24{margin-left:-537.753600px;}
._29{margin-left:-524.538720px;}
._26{margin-left:-491.214240px;}
._3e{margin-left:-444.674880px;}
._33{margin-left:-411.494040px;}
._32{margin-left:-410.153400px;}
._2c{margin-left:-374.195520px;}
._25{margin-left:-366.247440px;}
._2b{margin-left:-362.321280px;}
._3b{margin-left:-336.992760px;}
._23{margin-left:-330.337440px;}
._3f{margin-left:-328.996800px;}
._41{margin-left:-327.704040px;}
._27{margin-left:-297.108720px;}
._28{margin-left:-294.427440px;}
._38{margin-left:-279.728280px;}
._34{margin-left:-278.483400px;}
._2f{margin-left:-239.892120px;}
._2e{margin-left:-225.288720px;}
._35{margin-left:-219.974040px;}
._37{margin-left:-213.270840px;}
._2d{margin-left:-201.300840px;}
._b{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._2{width:1.014240px;}
._8{width:2.673360px;}
._4{width:4.550400px;}
._7{width:5.573280px;}
._9{width:7.053120px;}
._3{width:8.532000px;}
._1a{width:9.819720px;}
._14{width:10.881720px;}
._f{width:12.258000px;}
._10{width:13.827600px;}
._5{width:15.755760px;}
._16{width:16.773480px;}
._15{width:17.795520px;}
._1c{width:18.864360px;}
._6{width:20.476800px;}
._c{width:21.870000px;}
._1d{width:23.353920px;}
._18{width:24.829560px;}
._17{width:26.272440px;}
._19{width:27.895680px;}
._22{width:29.759400px;}
._47{width:30.971880px;}
._1e{width:32.182560px;}
._a{width:33.274800px;}
._1f{width:34.447680px;}
._d{width:35.532000px;}
._48{width:36.732240px;}
._46{width:38.917800px;}
._21{width:40.160160px;}
._1b{width:42.204240px;}
._e{width:44.118000px;}
._13{width:45.651240px;}
._12{width:46.653120px;}
._11{width:47.915640px;}
._4b{width:50.206320px;}
._4a{width:51.258240px;}
._43{width:53.079480px;}
._4c{width:54.263520px;}
._49{width:63.727200px;}
._44{width:65.457360px;}
._20{width:66.673080px;}
._45{width:162.444240px;}
._4d{width:169.502400px;}
._1{width:435.469920px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fs3{font-size:29.880000px;}
.fse{font-size:36.000000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y93{bottom:2.700000px;}
.y3c{bottom:2.970000px;}
.y33{bottom:3.060000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y24{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.y8f{bottom:9.540000px;}
.y42{bottom:13.500000px;}
.y90{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y3b{bottom:18.450000px;}
.y32{bottom:19.440000px;}
.yf{bottom:22.320000px;}
.y97{bottom:23.310000px;}
.y94{bottom:23.400000px;}
.y41{bottom:28.980000px;}
.y92{bottom:30.240000px;}
.yf9{bottom:30.270000px;}
.ye{bottom:33.210000px;}
.y3a{bottom:34.020000px;}
.y52{bottom:35.640000px;}
.y31{bottom:35.820000px;}
.yf8{bottom:44.040000px;}
.y40{bottom:44.550000px;}
.y8{bottom:49.140000px;}
.y39{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y30{bottom:52.200000px;}
.y3f{bottom:60.030000px;}
.y38{bottom:65.070000px;}
.yc{bottom:65.820000px;}
.y2f{bottom:68.580000px;}
.y4{bottom:73.530000px;}
.y3e{bottom:75.600000px;}
.y37{bottom:80.580000px;}
.y2e{bottom:84.960000px;}
.y36{bottom:96.060000px;}
.y2d{bottom:101.340000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y35{bottom:111.630000px;}
.yb7{bottom:117.270000px;}
.y2c{bottom:117.810000px;}
.yf5{bottom:118.710000px;}
.y8a{bottom:124.020000px;}
.ybf{bottom:130.680000px;}
.yf7{bottom:132.840000px;}
.y2b{bottom:134.190000px;}
.yb6{bottom:134.460000px;}
.y51{bottom:135.090000px;}
.ya{bottom:136.200000px;}
.y89{bottom:141.210000px;}
.ybe{bottom:147.060000px;}
.y2a{bottom:150.570000px;}
.yb5{bottom:151.740000px;}
.y50{bottom:152.280000px;}
.y88{bottom:158.520000px;}
.ybd{bottom:163.470000px;}
.y29{bottom:166.950000px;}
.yb4{bottom:169.050000px;}
.y4f{bottom:169.590000px;}
.y87{bottom:175.800000px;}
.ybc{bottom:179.940000px;}
.y28{bottom:183.330000px;}
.yb3{bottom:186.240000px;}
.y4e{bottom:186.870000px;}
.yf6{bottom:188.760000px;}
.y86{bottom:192.990000px;}
.ybb{bottom:196.320000px;}
.y27{bottom:199.740000px;}
.yb2{bottom:203.520000px;}
.y4d{bottom:204.060000px;}
.y85{bottom:210.270000px;}
.yba{bottom:212.700000px;}
.y26{bottom:216.120000px;}
.yb1{bottom:220.710000px;}
.yf4{bottom:221.250000px;}
.y4c{bottom:221.340000px;}
.y84{bottom:227.460000px;}
.yb9{bottom:229.080000px;}
.yf3{bottom:237.720000px;}
.yb0{bottom:237.990000px;}
.y4b{bottom:238.620000px;}
.y83{bottom:244.740000px;}
.yb8{bottom:245.460000px;}
.yf2{bottom:254.100000px;}
.yaf{bottom:255.270000px;}
.y4a{bottom:255.810000px;}
.y82{bottom:262.020000px;}
.yf1{bottom:270.480000px;}
.yae{bottom:272.460000px;}
.y49{bottom:273.090000px;}
.y81{bottom:279.210000px;}
.yf0{bottom:286.860000px;}
.yad{bottom:289.740000px;}
.y48{bottom:290.370000px;}
.y80{bottom:296.490000px;}
.yef{bottom:303.240000px;}
.yac{bottom:307.020000px;}
.y47{bottom:307.560000px;}
.y7f{bottom:313.770000px;}
.yee{bottom:319.620000px;}
.yab{bottom:324.210000px;}
.y46{bottom:324.840000px;}
.y7e{bottom:330.960000px;}
.yed{bottom:336.000000px;}
.yaa{bottom:341.490000px;}
.y45{bottom:342.030000px;}
.y7d{bottom:348.240000px;}
.yec{bottom:352.380000px;}
.ya9{bottom:358.770000px;}
.y44{bottom:359.310000px;}
.y7c{bottom:365.520000px;}
.yeb{bottom:368.760000px;}
.ya8{bottom:375.960000px;}
.y43{bottom:376.140000px;}
.y7b{bottom:382.710000px;}
.yea{bottom:385.140000px;}
.y25{bottom:388.740000px;}
.ya7{bottom:393.240000px;}
.y7a{bottom:399.990000px;}
.ye9{bottom:401.520000px;}
.ya6{bottom:410.520000px;}
.y79{bottom:417.270000px;}
.ye8{bottom:417.900000px;}
.ya5{bottom:427.710000px;}
.ye7{bottom:434.280000px;}
.y78{bottom:434.460000px;}
.ya4{bottom:444.990000px;}
.ye6{bottom:450.660000px;}
.y77{bottom:451.740000px;}
.ya3{bottom:462.270000px;}
.ye5{bottom:467.040000px;}
.y76{bottom:469.020000px;}
.y3d{bottom:477.660000px;}
.ya2{bottom:479.460000px;}
.ye4{bottom:483.510000px;}
.y75{bottom:486.210000px;}
.y34{bottom:493.950000px;}
.ya1{bottom:496.740000px;}
.ye3{bottom:499.890000px;}
.y74{bottom:503.490000px;}
.ya0{bottom:514.020000px;}
.ye2{bottom:516.270000px;}
.y73{bottom:520.770000px;}
.y9f{bottom:531.210000px;}
.ye1{bottom:532.650000px;}
.y72{bottom:537.960000px;}
.y9e{bottom:548.490000px;}
.ye0{bottom:549.030000px;}
.y71{bottom:555.240000px;}
.ydf{bottom:565.410000px;}
.y9d{bottom:565.680000px;}
.y70{bottom:572.430000px;}
.yde{bottom:581.820000px;}
.y9c{bottom:582.990000px;}
.y6f{bottom:589.740000px;}
.y9b{bottom:597.750000px;}
.ydd{bottom:598.200000px;}
.y6e{bottom:607.020000px;}
.ydc{bottom:614.580000px;}
.y22{bottom:618.900000px;}
.y6d{bottom:624.210000px;}
.y9a{bottom:626.100000px;}
.ydb{bottom:630.960000px;}
.y20{bottom:636.900000px;}
.y6c{bottom:641.490000px;}
.y1f{bottom:642.660000px;}
.yda{bottom:647.340000px;}
.y99{bottom:654.450000px;}
.y6b{bottom:658.770000px;}
.y1e{bottom:659.850000px;}
.yd9{bottom:663.720000px;}
.y6a{bottom:675.960000px;}
.y1d{bottom:679.740000px;}
.yd8{bottom:680.100000px;}
.y69{bottom:693.240000px;}
.yd7{bottom:696.480000px;}
.y98{bottom:696.570000px;}
.y1c{bottom:708.540000px;}
.y68{bottom:710.520000px;}
.yd6{bottom:712.950000px;}
.y67{bottom:727.710000px;}
.yd5{bottom:729.330000px;}
.y1b{bottom:734.280000px;}
.y96{bottom:738.780000px;}
.y66{bottom:744.990000px;}
.yd4{bottom:745.710000px;}
.y1a{bottom:746.520000px;}
.yd3{bottom:762.090000px;}
.y65{bottom:762.270000px;}
.y19{bottom:772.260000px;}
.yd2{bottom:778.470000px;}
.y64{bottom:779.460000px;}
.y95{bottom:780.900000px;}
.y18{bottom:784.410000px;}
.yd1{bottom:794.850000px;}
.y63{bottom:796.740000px;}
.y17{bottom:805.650000px;}
.yd0{bottom:811.230000px;}
.y62{bottom:814.020000px;}
.y91{bottom:823.020000px;}
.ycf{bottom:827.610000px;}
.y61{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.yce{bottom:843.990000px;}
.y60{bottom:848.490000px;}
.ycd{bottom:860.370000px;}
.y8e{bottom:865.230000px;}
.y5f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.ycc{bottom:876.750000px;}
.y5e{bottom:882.960000px;}
.ycb{bottom:893.130000px;}
.y8d{bottom:895.560000px;}
.y14{bottom:898.800000px;}
.y5d{bottom:900.240000px;}
.y8c{bottom:906.540000px;}
.yca{bottom:909.510000px;}
.y5c{bottom:917.430000px;}
.y8b{bottom:920.310000px;}
.yc9{bottom:925.890000px;}
.y13{bottom:927.240000px;}
.y5b{bottom:934.710000px;}
.yc8{bottom:942.270000px;}
.y5a{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.yc7{bottom:958.740000px;}
.y59{bottom:969.180000px;}
.yc6{bottom:975.120000px;}
.y58{bottom:986.460000px;}
.yc5{bottom:991.500000px;}
.y57{bottom:1003.770000px;}
.yc4{bottom:1007.910000px;}
.y56{bottom:1020.960000px;}
.yc3{bottom:1024.290000px;}
.y55{bottom:1038.240000px;}
.yc2{bottom:1040.670000px;}
.y54{bottom:1055.520000px;}
.yc1{bottom:1057.050000px;}
.y53{bottom:1072.710000px;}
.yc0{bottom:1073.430000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h15{height:1.710000px;}
.h16{height:4.273242px;}
.hf{height:4.318066px;}
.h29{height:13.860000px;}
.h1d{height:15.570000px;}
.h17{height:17.280000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h24{height:25.400391px;}
.h25{height:27.540000px;}
.h4{height:27.630000px;}
.h12{height:29.409961px;}
.h6{height:33.431836px;}
.h23{height:33.782520px;}
.h20{height:36.068555px;}
.h1f{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.082324px;}
.h1a{height:39.716016px;}
.h1c{height:41.343750px;}
.h26{height:41.400000px;}
.h27{height:41.410195px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h21{height:43.769004px;}
.h2{height:45.295488px;}
.h13{height:46.000195px;}
.h28{height:46.881563px;}
.h22{height:49.552031px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h2a{height:55.200000px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h14{height:75.410156px;}
.h10{height:76.201172px;}
.h1e{height:88.200000px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h1b{height:124.230000px;}
.h9{height:143.220000px;}
.h19{height:229.440000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w9{width:117.300000px;}
.w5{width:165.900000px;}
.wc{width:203.070000px;}
.w8{width:217.740000px;}
.wb{width:248.160000px;}
.wa{width:261.630000px;}
.wd{width:371.100000px;}
.w7{width:603.240000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x17{left:3.150000px;}
.x4{left:4.320000px;}
.x1e{left:6.749986px;}
.x18{left:8.100000px;}
.x30{left:9.180000px;}
.x2d{left:10.800000px;}
.x37{left:12.960000px;}
.x2b{left:14.220000px;}
.x2f{left:16.380000px;}
.x31{left:18.180000px;}
.x22{left:20.430000px;}
.x34{left:21.600000px;}
.x24{left:22.770000px;}
.x2a{left:24.570000px;}
.x38{left:25.830000px;}
.x3a{left:28.530000px;}
.x35{left:31.770000px;}
.x32{left:33.390000px;}
.x36{left:35.370000px;}
.x39{left:36.540000px;}
.x1c{left:38.340000px;}
.x29{left:43.110000px;}
.x6{left:45.540000px;}
.x19{left:46.710000px;}
.x3b{left:48.960000px;}
.x1f{left:52.110000px;}
.x1{left:53.999986px;}
.x1b{left:59.760000px;}
.x2e{left:61.590000px;}
.x25{left:66.600000px;}
.xa{left:70.470000px;}
.xe{left:77.129986px;}
.x27{left:81.390000px;}
.x12{left:86.129986px;}
.x20{left:87.210000px;}
.x2c{left:97.110000px;}
.x3{left:99.360000px;}
.x33{left:102.090000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x14{left:113.759986px;}
.x5{left:134.460000px;}
.x23{left:171.030000px;}
.x8{left:200.190000px;}
.xb{left:231.780000px;}
.x11{left:283.709986px;}
.xf{left:307.829986px;}
.x7{left:324.030000px;}
.x15{left:412.319986px;}
.x13{left:414.389986px;}
.x26{left:433.380000px;}
.x16{left:453.539986px;}
.x10{left:464.159986px;}
.x21{left:469.109986px;}
.x1d{left:486.059986px;}
.x3c{left:513.059986px;}
.x3d{left:514.230000px;}
.x1a{left:650.670000px;}
.x28{left:682.260000px;}
.xc{left:693.600000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsf{letter-spacing:-0.367467pt;}
.lsc{letter-spacing:-0.195733pt;}
.ls15{letter-spacing:-0.048640pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls16{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.024320pt;}
.ls3{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.124267pt;}
.ls4{letter-spacing:0.124480pt;}
.lsd{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:2.106667pt;}
.ls11{letter-spacing:8.720000pt;}
.lsb{letter-spacing:9.680000pt;}
.ls14{letter-spacing:18.584320pt;}
.lse{letter-spacing:26.640000pt;}
.ls6{letter-spacing:41.143680pt;}
.ls12{letter-spacing:43.864320pt;}
.ls1{letter-spacing:937.146667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.640000pt;}
.ws5{word-spacing:-14.599680pt;}
.ws9{word-spacing:-13.520000pt;}
.wsc{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.164267pt;}
.wsd{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.360000pt;}
.wsa{word-spacing:0.000000pt;}
._40{margin-left:-870.116267pt;}
._3c{margin-left:-855.943787pt;}
._30{margin-left:-795.678827pt;}
._31{margin-left:-777.973867pt;}
._39{margin-left:-683.362987pt;}
._42{margin-left:-580.538027pt;}
._2a{margin-left:-570.025707pt;}
._3a{margin-left:-541.713067pt;}
._3d{margin-left:-539.169707pt;}
._36{margin-left:-483.919040pt;}
._24{margin-left:-478.003200pt;}
._29{margin-left:-466.256640pt;}
._26{margin-left:-436.634880pt;}
._3e{margin-left:-395.266560pt;}
._33{margin-left:-365.772480pt;}
._32{margin-left:-364.580800pt;}
._2c{margin-left:-332.618240pt;}
._25{margin-left:-325.553280pt;}
._2b{margin-left:-322.063360pt;}
._3b{margin-left:-299.549120pt;}
._23{margin-left:-293.633280pt;}
._3f{margin-left:-292.441600pt;}
._41{margin-left:-291.292480pt;}
._27{margin-left:-264.096640pt;}
._28{margin-left:-261.713280pt;}
._38{margin-left:-248.647360pt;}
._34{margin-left:-247.540800pt;}
._2f{margin-left:-213.237440pt;}
._2e{margin-left:-200.256640pt;}
._35{margin-left:-195.532480pt;}
._37{margin-left:-189.574080pt;}
._2d{margin-left:-178.934080pt;}
._b{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._2{width:0.901547pt;}
._8{width:2.376320pt;}
._4{width:4.044800pt;}
._7{width:4.954027pt;}
._9{width:6.269440pt;}
._3{width:7.584000pt;}
._1a{width:8.728640pt;}
._14{width:9.672640pt;}
._f{width:10.896000pt;}
._10{width:12.291200pt;}
._5{width:14.005120pt;}
._16{width:14.909760pt;}
._15{width:15.818240pt;}
._1c{width:16.768320pt;}
._6{width:18.201600pt;}
._c{width:19.440000pt;}
._1d{width:20.759040pt;}
._18{width:22.070720pt;}
._17{width:23.353280pt;}
._19{width:24.796160pt;}
._22{width:26.452800pt;}
._47{width:27.530560pt;}
._1e{width:28.606720pt;}
._a{width:29.577600pt;}
._1f{width:30.620160pt;}
._d{width:31.584000pt;}
._48{width:32.650880pt;}
._46{width:34.593600pt;}
._21{width:35.697920pt;}
._1b{width:37.514880pt;}
._e{width:39.216000pt;}
._13{width:40.578880pt;}
._12{width:41.469440pt;}
._11{width:42.591680pt;}
._4b{width:44.627840pt;}
._4a{width:45.562880pt;}
._43{width:47.181760pt;}
._4c{width:48.234240pt;}
._49{width:56.646400pt;}
._44{width:58.184320pt;}
._20{width:59.264960pt;}
._45{width:144.394880pt;}
._4d{width:150.668800pt;}
._1{width:387.084373pt;}
.fs8{font-size:5.440000pt;}
.fs3{font-size:26.560000pt;}
.fse{font-size:32.000000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y93{bottom:2.400000pt;}
.y3c{bottom:2.640000pt;}
.y33{bottom:2.720000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y24{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.y8f{bottom:8.480000pt;}
.y42{bottom:12.000000pt;}
.y90{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y3b{bottom:16.400000pt;}
.y32{bottom:17.280000pt;}
.yf{bottom:19.840000pt;}
.y97{bottom:20.720000pt;}
.y94{bottom:20.800000pt;}
.y41{bottom:25.760000pt;}
.y92{bottom:26.880000pt;}
.yf9{bottom:26.906667pt;}
.ye{bottom:29.520000pt;}
.y3a{bottom:30.240000pt;}
.y52{bottom:31.680000pt;}
.y31{bottom:31.840000pt;}
.yf8{bottom:39.146667pt;}
.y40{bottom:39.600000pt;}
.y8{bottom:43.680000pt;}
.y39{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y30{bottom:46.400000pt;}
.y3f{bottom:53.360000pt;}
.y38{bottom:57.840000pt;}
.yc{bottom:58.506667pt;}
.y2f{bottom:60.960000pt;}
.y4{bottom:65.360000pt;}
.y3e{bottom:67.200000pt;}
.y37{bottom:71.626667pt;}
.y2e{bottom:75.520000pt;}
.y36{bottom:85.386667pt;}
.y2d{bottom:90.080000pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y35{bottom:99.226667pt;}
.yb7{bottom:104.240000pt;}
.y2c{bottom:104.720000pt;}
.yf5{bottom:105.520000pt;}
.y8a{bottom:110.240000pt;}
.ybf{bottom:116.160000pt;}
.yf7{bottom:118.080000pt;}
.y2b{bottom:119.280000pt;}
.yb6{bottom:119.520000pt;}
.y51{bottom:120.080000pt;}
.ya{bottom:121.066667pt;}
.y89{bottom:125.520000pt;}
.ybe{bottom:130.720000pt;}
.y2a{bottom:133.840000pt;}
.yb5{bottom:134.880000pt;}
.y50{bottom:135.360000pt;}
.y88{bottom:140.906667pt;}
.ybd{bottom:145.306667pt;}
.y29{bottom:148.400000pt;}
.yb4{bottom:150.266667pt;}
.y4f{bottom:150.746667pt;}
.y87{bottom:156.266667pt;}
.ybc{bottom:159.946667pt;}
.y28{bottom:162.960000pt;}
.yb3{bottom:165.546667pt;}
.y4e{bottom:166.106667pt;}
.yf6{bottom:167.786667pt;}
.y86{bottom:171.546667pt;}
.ybb{bottom:174.506667pt;}
.y27{bottom:177.546667pt;}
.yb2{bottom:180.906667pt;}
.y4d{bottom:181.386667pt;}
.y85{bottom:186.906667pt;}
.yba{bottom:189.066667pt;}
.y26{bottom:192.106667pt;}
.yb1{bottom:196.186667pt;}
.yf4{bottom:196.666667pt;}
.y4c{bottom:196.746667pt;}
.y84{bottom:202.186667pt;}
.yb9{bottom:203.626667pt;}
.yf3{bottom:211.306667pt;}
.yb0{bottom:211.546667pt;}
.y4b{bottom:212.106667pt;}
.y83{bottom:217.546667pt;}
.yb8{bottom:218.186667pt;}
.yf2{bottom:225.866667pt;}
.yaf{bottom:226.906667pt;}
.y4a{bottom:227.386667pt;}
.y82{bottom:232.906667pt;}
.yf1{bottom:240.426667pt;}
.yae{bottom:242.186667pt;}
.y49{bottom:242.746667pt;}
.y81{bottom:248.186667pt;}
.yf0{bottom:254.986667pt;}
.yad{bottom:257.546667pt;}
.y48{bottom:258.106667pt;}
.y80{bottom:263.546667pt;}
.yef{bottom:269.546667pt;}
.yac{bottom:272.906667pt;}
.y47{bottom:273.386667pt;}
.y7f{bottom:278.906667pt;}
.yee{bottom:284.106667pt;}
.yab{bottom:288.186667pt;}
.y46{bottom:288.746667pt;}
.y7e{bottom:294.186667pt;}
.yed{bottom:298.666667pt;}
.yaa{bottom:303.546667pt;}
.y45{bottom:304.026667pt;}
.y7d{bottom:309.546667pt;}
.yec{bottom:313.226667pt;}
.ya9{bottom:318.906667pt;}
.y44{bottom:319.386667pt;}
.y7c{bottom:324.906667pt;}
.yeb{bottom:327.786667pt;}
.ya8{bottom:334.186667pt;}
.y43{bottom:334.346667pt;}
.y7b{bottom:340.186667pt;}
.yea{bottom:342.346667pt;}
.y25{bottom:345.546667pt;}
.ya7{bottom:349.546667pt;}
.y7a{bottom:355.546667pt;}
.ye9{bottom:356.906667pt;}
.ya6{bottom:364.906667pt;}
.y79{bottom:370.906667pt;}
.ye8{bottom:371.466667pt;}
.ya5{bottom:380.186667pt;}
.ye7{bottom:386.026667pt;}
.y78{bottom:386.186667pt;}
.ya4{bottom:395.546667pt;}
.ye6{bottom:400.586667pt;}
.y77{bottom:401.546667pt;}
.ya3{bottom:410.906667pt;}
.ye5{bottom:415.146667pt;}
.y76{bottom:416.906667pt;}
.y3d{bottom:424.586667pt;}
.ya2{bottom:426.186667pt;}
.ye4{bottom:429.786667pt;}
.y75{bottom:432.186667pt;}
.y34{bottom:439.066667pt;}
.ya1{bottom:441.546667pt;}
.ye3{bottom:444.346667pt;}
.y74{bottom:447.546667pt;}
.ya0{bottom:456.906667pt;}
.ye2{bottom:458.906667pt;}
.y73{bottom:462.906667pt;}
.y9f{bottom:472.186667pt;}
.ye1{bottom:473.466667pt;}
.y72{bottom:478.186667pt;}
.y9e{bottom:487.546667pt;}
.ye0{bottom:488.026667pt;}
.y71{bottom:493.546667pt;}
.ydf{bottom:502.586667pt;}
.y9d{bottom:502.826667pt;}
.y70{bottom:508.826667pt;}
.yde{bottom:517.173333pt;}
.y9c{bottom:518.213333pt;}
.y6f{bottom:524.213333pt;}
.y9b{bottom:531.333333pt;}
.ydd{bottom:531.733333pt;}
.y6e{bottom:539.573333pt;}
.ydc{bottom:546.293333pt;}
.y22{bottom:550.133333pt;}
.y6d{bottom:554.853333pt;}
.y9a{bottom:556.533333pt;}
.ydb{bottom:560.853333pt;}
.y20{bottom:566.133333pt;}
.y6c{bottom:570.213333pt;}
.y1f{bottom:571.253333pt;}
.yda{bottom:575.413333pt;}
.y99{bottom:581.733333pt;}
.y6b{bottom:585.573333pt;}
.y1e{bottom:586.533333pt;}
.yd9{bottom:589.973333pt;}
.y6a{bottom:600.853333pt;}
.y1d{bottom:604.213333pt;}
.yd8{bottom:604.533333pt;}
.y69{bottom:616.213333pt;}
.yd7{bottom:619.093333pt;}
.y98{bottom:619.173333pt;}
.y1c{bottom:629.813333pt;}
.y68{bottom:631.573333pt;}
.yd6{bottom:633.733333pt;}
.y67{bottom:646.853333pt;}
.yd5{bottom:648.293333pt;}
.y1b{bottom:652.693333pt;}
.y96{bottom:656.693333pt;}
.y66{bottom:662.213333pt;}
.yd4{bottom:662.853333pt;}
.y1a{bottom:663.573333pt;}
.yd3{bottom:677.413333pt;}
.y65{bottom:677.573333pt;}
.y19{bottom:686.453333pt;}
.yd2{bottom:691.973333pt;}
.y64{bottom:692.853333pt;}
.y95{bottom:694.133333pt;}
.y18{bottom:697.253333pt;}
.yd1{bottom:706.533333pt;}
.y63{bottom:708.213333pt;}
.y17{bottom:716.133333pt;}
.yd0{bottom:721.093333pt;}
.y62{bottom:723.573333pt;}
.y91{bottom:731.573333pt;}
.ycf{bottom:735.653333pt;}
.y61{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.yce{bottom:750.213333pt;}
.y60{bottom:754.213333pt;}
.ycd{bottom:764.773333pt;}
.y8e{bottom:769.093333pt;}
.y5f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.ycc{bottom:779.333333pt;}
.y5e{bottom:784.853333pt;}
.ycb{bottom:793.893333pt;}
.y8d{bottom:796.053333pt;}
.y14{bottom:798.933333pt;}
.y5d{bottom:800.213333pt;}
.y8c{bottom:805.813333pt;}
.yca{bottom:808.453333pt;}
.y5c{bottom:815.493333pt;}
.y8b{bottom:818.053333pt;}
.yc9{bottom:823.013333pt;}
.y13{bottom:824.213333pt;}
.y5b{bottom:830.853333pt;}
.yc8{bottom:837.573333pt;}
.y5a{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.yc7{bottom:852.213333pt;}
.y59{bottom:861.493333pt;}
.yc6{bottom:866.773333pt;}
.y58{bottom:876.853333pt;}
.yc5{bottom:881.333333pt;}
.y57{bottom:892.240000pt;}
.yc4{bottom:895.920000pt;}
.y56{bottom:907.520000pt;}
.yc3{bottom:910.480000pt;}
.y55{bottom:922.880000pt;}
.yc2{bottom:925.040000pt;}
.y54{bottom:938.240000pt;}
.yc1{bottom:939.600000pt;}
.y53{bottom:953.520000pt;}
.yc0{bottom:954.160000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h15{height:1.520000pt;}
.h16{height:3.798437pt;}
.hf{height:3.838281pt;}
.h29{height:12.320000pt;}
.h1d{height:13.840000pt;}
.h17{height:15.360000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h24{height:22.578125pt;}
.h25{height:24.480000pt;}
.h4{height:24.560000pt;}
.h12{height:26.142187pt;}
.h6{height:29.717188pt;}
.h23{height:30.028906pt;}
.h20{height:32.060937pt;}
.h1f{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1a{height:35.303125pt;}
.h1c{height:36.750000pt;}
.h26{height:36.800000pt;}
.h27{height:36.809062pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h21{height:38.905781pt;}
.h2{height:40.262656pt;}
.h13{height:40.889062pt;}
.h28{height:41.672500pt;}
.h22{height:44.046250pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h2a{height:49.066667pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h14{height:67.031250pt;}
.h10{height:67.734375pt;}
.h1e{height:78.400000pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h1b{height:110.426667pt;}
.h9{height:127.306667pt;}
.h19{height:203.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w9{width:104.266667pt;}
.w5{width:147.466667pt;}
.wc{width:180.506667pt;}
.w8{width:193.546667pt;}
.wb{width:220.586667pt;}
.wa{width:232.560000pt;}
.wd{width:329.866667pt;}
.w7{width:536.213333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x17{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1e{left:5.999988pt;}
.x18{left:7.200000pt;}
.x30{left:8.160000pt;}
.x2d{left:9.600000pt;}
.x37{left:11.520000pt;}
.x2b{left:12.640000pt;}
.x2f{left:14.560000pt;}
.x31{left:16.160000pt;}
.x22{left:18.160000pt;}
.x34{left:19.200000pt;}
.x24{left:20.240000pt;}
.x2a{left:21.840000pt;}
.x38{left:22.960000pt;}
.x3a{left:25.360000pt;}
.x35{left:28.240000pt;}
.x32{left:29.680000pt;}
.x36{left:31.440000pt;}
.x39{left:32.480000pt;}
.x1c{left:34.080000pt;}
.x29{left:38.320000pt;}
.x6{left:40.480000pt;}
.x19{left:41.520000pt;}
.x3b{left:43.520000pt;}
.x1f{left:46.320000pt;}
.x1{left:47.999988pt;}
.x1b{left:53.120000pt;}
.x2e{left:54.746667pt;}
.x25{left:59.200000pt;}
.xa{left:62.640000pt;}
.xe{left:68.559988pt;}
.x27{left:72.346667pt;}
.x12{left:76.559988pt;}
.x20{left:77.520000pt;}
.x2c{left:86.320000pt;}
.x3{left:88.320000pt;}
.x33{left:90.746667pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x14{left:101.119988pt;}
.x5{left:119.520000pt;}
.x23{left:152.026667pt;}
.x8{left:177.946667pt;}
.xb{left:206.026667pt;}
.x11{left:252.186655pt;}
.xf{left:273.626655pt;}
.x7{left:288.026667pt;}
.x15{left:366.506655pt;}
.x13{left:368.346655pt;}
.x26{left:385.226667pt;}
.x16{left:403.146655pt;}
.x10{left:412.586655pt;}
.x21{left:416.986655pt;}
.x1d{left:432.053321pt;}
.x3c{left:456.053321pt;}
.x3d{left:457.093333pt;}
.x1a{left:578.373333pt;}
.x28{left:606.453333pt;}
.xc{left:616.533333pt;}
}




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