
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_360c430b2c1f52c58ca6dfff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4c6493bffdade168e0f668c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1eacc089634eebf6ba55d510.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ca88780f5d53a4342d1d9b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a2e053f6dd6a65de6bb287ff.woff2')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_c80e0e44ec9dbeb3284adbb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.ls11{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls10{letter-spacing:0.115800px;}
.ls1a{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.ws6{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:0.344880px;}
._4{margin-left:-3.366600px;}
._8{margin-left:-2.297532px;}
._0{margin-left:-1.110000px;}
._3{width:1.354332px;}
._7{width:2.696075px;}
._5{width:3.787800px;}
._6{width:4.869600px;}
._9{width:6.012000px;}
._a{width:7.335001px;}
._10{width:8.837640px;}
._15{width:10.160280px;}
._21{width:12.144240px;}
._11{width:14.368680px;}
._d{width:15.511200px;}
._e{width:16.530595px;}
._19{width:17.651520px;}
._f{width:18.937800px;}
._c{width:20.382240px;}
._2{width:21.420720px;}
._1{width:22.446000px;}
._b{width:23.545800px;}
._1b{width:26.272440px;}
._32{width:27.799200px;}
._26{width:29.218320px;}
._25{width:30.240360px;}
._1d{width:31.863600px;}
._24{width:33.306480px;}
._2b{width:35.470800px;}
._17{width:39.979800px;}
._12{width:41.453400px;}
._2e{width:53.987760px;}
._2f{width:75.330360px;}
._31{width:83.618400px;}
._13{width:86.392440px;}
._16{width:92.284200px;}
._30{width:94.147920px;}
._1c{width:95.868360px;}
._29{width:101.843280px;}
._2a{width:107.013600px;}
._23{width:111.101760px;}
._18{width:129.678840px;}
._1f{width:139.899240px;}
._2d{width:158.596560px;}
._14{width:165.390120px;}
._1a{width:198.215640px;}
._27{width:207.894960px;}
._2c{width:225.149400px;}
._20{width:235.069200px;}
._28{width:248.716440px;}
._22{width:303.966720px;}
._1e{width:335.469600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:7.830000px;}
.y84{bottom:7.860000px;}
.y51{bottom:7.920000px;}
.y59{bottom:25.380000px;}
.y4f{bottom:25.470000px;}
.y4d{bottom:25.500000px;}
.yf7{bottom:43.020000px;}
.yf9{bottom:43.050000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y100{bottom:127.020000px;}
.yd1{bottom:127.110000px;}
.y12d{bottom:128.370000px;}
.y48{bottom:129.450000px;}
.ya9{bottom:135.660000px;}
.y6e{bottom:136.650000px;}
.yd0{bottom:139.260000px;}
.yff{bottom:144.570000px;}
.y47{bottom:147.000000px;}
.ya8{bottom:153.300000px;}
.y6d{bottom:154.200000px;}
.y12c{bottom:155.280000px;}
.yfe{bottom:162.210000px;}
.y46{bottom:164.550000px;}
.ycf{bottom:166.620000px;}
.y6c{bottom:171.840000px;}
.y26{bottom:178.680000px;}
.ye4{bottom:181.110000px;}
.y45{bottom:182.190000px;}
.yfd{bottom:188.760000px;}
.ya7{bottom:188.850000px;}
.y6b{bottom:189.390000px;}
.yce{bottom:193.980000px;}
.y25{bottom:196.320000px;}
.y8e{bottom:199.740000px;}
.y12b{bottom:203.610000px;}
.ya6{bottom:206.400000px;}
.y24{bottom:213.870000px;}
.ye3{bottom:216.390000px;}
.y8d{bottom:217.290000px;}
.y44{bottom:217.740000px;}
.y12a{bottom:221.160000px;}
.ycd{bottom:221.250000px;}
.yfc{bottom:221.700000px;}
.y6a{bottom:224.940000px;}
.y152{bottom:226.200000px;}
.y23{bottom:231.510000px;}
.y8c{bottom:234.930000px;}
.y43{bottom:235.380000px;}
.y129{bottom:238.710000px;}
.ya5{bottom:242.040000px;}
.y69{bottom:242.580000px;}
.y151{bottom:243.840000px;}
.y22{bottom:249.060000px;}
.y8b{bottom:252.480000px;}
.y42{bottom:252.930000px;}
.y128{bottom:256.350000px;}
.ya4{bottom:259.590000px;}
.y68{bottom:260.130000px;}
.y150{bottom:261.390000px;}
.y21{bottom:266.610000px;}
.ycc{bottom:269.940000px;}
.y41{bottom:270.480000px;}
.y127{bottom:273.900000px;}
.ya3{bottom:277.230000px;}
.y67{bottom:277.770000px;}
.y14f{bottom:287.940000px;}
.y40{bottom:288.120000px;}
.y20{bottom:302.250000px;}
.y66{bottom:304.320000px;}
.ycb{bottom:305.580000px;}
.y3f{bottom:305.670000px;}
.y126{bottom:309.540000px;}
.yfb{bottom:311.610000px;}
.ya2{bottom:312.780000px;}
.y14e{bottom:314.580000px;}
.y1f{bottom:319.800000px;}
.yca{bottom:323.130000px;}
.y8a{bottom:323.220000px;}
.y125{bottom:327.090000px;}
.ya1{bottom:330.330000px;}
.y1e{bottom:337.440000px;}
.y65{bottom:339.870000px;}
.yc9{bottom:340.770000px;}
.y89{bottom:340.860000px;}
.y14d{bottom:341.130000px;}
.y3e{bottom:341.310000px;}
.y124{bottom:344.640000px;}
.ya0{bottom:347.970000px;}
.y1d{bottom:354.990000px;}
.y64{bottom:357.510000px;}
.yc8{bottom:358.320000px;}
.y88{bottom:358.410000px;}
.y14c{bottom:358.770000px;}
.y3d{bottom:358.860000px;}
.y123{bottom:362.280000px;}
.y9f{bottom:365.520000px;}
.y1c{bottom:372.540000px;}
.yfa{bottom:374.070000px;}
.y63{bottom:375.060000px;}
.y87{bottom:376.050000px;}
.y3c{bottom:376.410000px;}
.y9e{bottom:383.070000px;}
.yc7{bottom:384.870000px;}
.y14b{bottom:385.320000px;}
.y1b{bottom:390.180000px;}
.y62{bottom:392.700000px;}
.y3b{bottom:394.050000px;}
.y122{bottom:397.830000px;}
.y86{bottom:402.600000px;}
.y9d{bottom:409.710000px;}
.y3a{bottom:411.600000px;}
.y14a{bottom:411.870000px;}
.y121{bottom:415.470000px;}
.y1a{bottom:417.090000px;}
.y61{bottom:419.610000px;}
.yc6{bottom:420.510000px;}
.y149{bottom:429.510000px;}
.y120{bottom:433.020000px;}
.y85{bottom:435.540000px;}
.yf8{bottom:436.620000px;}
.yc5{bottom:438.060000px;}
.y9c{bottom:445.260000px;}
.y39{bottom:447.240000px;}
.y11f{bottom:450.570000px;}
.yc4{bottom:455.700000px;}
.y148{bottom:456.060000px;}
.y83{bottom:462.900000px;}
.y38{bottom:464.790000px;}
.y19{bottom:465.330000px;}
.y60{bottom:467.850000px;}
.y11e{bottom:468.210000px;}
.yc3{bottom:473.280000px;}
.y147{bottom:473.730000px;}
.y9b{bottom:480.480000px;}
.y37{bottom:482.370000px;}
.y18{bottom:483.270000px;}
.y5f{bottom:485.430000px;}
.y82{bottom:490.290000px;}
.yf6{bottom:499.110000px;}
.y36{bottom:500.010000px;}
.y146{bottom:500.280000px;}
.y5e{bottom:503.070000px;}
.y11d{bottom:503.790000px;}
.yc2{bottom:508.830000px;}
.y35{bottom:517.560000px;}
.y145{bottom:517.830000px;}
.y9a{bottom:519.000000px;}
.y17{bottom:520.260000px;}
.y11c{bottom:521.430000px;}
.yc1{bottom:526.470000px;}
.y99{bottom:536.640000px;}
.y16{bottom:537.900000px;}
.y5d{bottom:538.620000px;}
.y11b{bottom:538.980000px;}
.yc0{bottom:544.020000px;}
.y34{bottom:544.470000px;}
.y81{bottom:544.920000px;}
.y98{bottom:554.190000px;}
.y15{bottom:555.450000px;}
.y5c{bottom:556.260000px;}
.y11a{bottom:556.530000px;}
.ybf{bottom:561.660000px;}
.y144{bottom:562.020000px;}
.y14{bottom:573.090000px;}
.y5b{bottom:573.810000px;}
.ybe{bottom:588.210000px;}
.y143{bottom:588.660000px;}
.y80{bottom:589.830000px;}
.y13{bottom:590.640000px;}
.y5a{bottom:591.360000px;}
.y119{bottom:592.170000px;}
.y33{bottom:592.710000px;}
.y97{bottom:592.800000px;}
.y142{bottom:606.210000px;}
.y12{bottom:608.190000px;}
.y118{bottom:609.720000px;}
.y32{bottom:610.350000px;}
.ybd{bottom:623.760000px;}
.y58{bottom:624.390000px;}
.y96{bottom:625.020000px;}
.y11{bottom:625.830000px;}
.y117{bottom:627.270000px;}
.y31{bottom:627.900000px;}
.y141{bottom:632.760000px;}
.y7f{bottom:638.520000px;}
.yf5{bottom:639.780000px;}
.ybc{bottom:641.400000px;}
.y10{bottom:643.380000px;}
.y116{bottom:644.910000px;}
.y140{bottom:650.400000px;}
.yf4{bottom:657.510000px;}
.ybb{bottom:658.950000px;}
.yf{bottom:661.020000px;}
.y30{bottom:663.540000px;}
.y13f{bottom:667.950000px;}
.y57{bottom:669.300000px;}
.y7e{bottom:674.160000px;}
.yf3{bottom:675.060000px;}
.yba{bottom:676.590000px;}
.ye{bottom:678.570000px;}
.y115{bottom:680.460000px;}
.ye2{bottom:685.590000px;}
.y7d{bottom:691.710000px;}
.yf2{bottom:692.700000px;}
.yb9{bottom:694.140000px;}
.y13e{bottom:694.590000px;}
.y2f{bottom:695.760000px;}
.yd{bottom:696.120000px;}
.y114{bottom:698.100000px;}
.ye1{bottom:703.140000px;}
.y7c{bottom:709.350000px;}
.yf1{bottom:710.250000px;}
.yb8{bottom:711.690000px;}
.y13d{bottom:712.140000px;}
.y56{bottom:714.210000px;}
.y113{bottom:715.650000px;}
.ye0{bottom:720.690000px;}
.yc{bottom:723.120000px;}
.y7b{bottom:726.900000px;}
.yf0{bottom:728.700000px;}
.y112{bottom:733.200000px;}
.yb7{bottom:738.330000px;}
.y13c{bottom:738.690000px;}
.yef{bottom:746.250000px;}
.y111{bottom:750.840000px;}
.ydf{bottom:755.880000px;}
.y13b{bottom:756.330000px;}
.y55{bottom:759.120000px;}
.y7a{bottom:762.450000px;}
.yee{bottom:763.800000px;}
.y110{bottom:768.390000px;}
.yb{bottom:769.830000px;}
.yde{bottom:773.520000px;}
.yb6{bottom:773.880000px;}
.y79{bottom:780.090000px;}
.yed{bottom:781.350000px;}
.y13a{bottom:782.880000px;}
.yb5{bottom:791.520000px;}
.y78{bottom:797.640000px;}
.yec{bottom:799.800000px;}
.ydd{bottom:800.070000px;}
.y139{bottom:800.520000px;}
.y54{bottom:804.030000px;}
.ya{bottom:805.380000px;}
.yb4{bottom:809.070000px;}
.y77{bottom:815.280000px;}
.yeb{bottom:817.440000px;}
.y10f{bottom:821.580000px;}
.yb3{bottom:826.620000px;}
.y138{bottom:827.070000px;}
.yea{bottom:834.990000px;}
.ydc{bottom:835.620000px;}
.y10e{bottom:839.130000px;}
.y9{bottom:841.200000px;}
.y76{bottom:841.830000px;}
.y137{bottom:844.620000px;}
.y53{bottom:848.940000px;}
.ye9{bottom:852.540000px;}
.ydb{bottom:853.260000px;}
.yb2{bottom:853.530000px;}
.y10d{bottom:856.770000px;}
.yda{bottom:870.810000px;}
.y136{bottom:871.260000px;}
.y75{bottom:874.770000px;}
.y52{bottom:876.300000px;}
.y8{bottom:880.980000px;}
.yd9{bottom:888.450000px;}
.y135{bottom:888.810000px;}
.ye8{bottom:888.990000px;}
.y10c{bottom:892.320000px;}
.y7{bottom:898.980000px;}
.yb1{bottom:901.860000px;}
.yd8{bottom:906.000000px;}
.y10b{bottom:909.960000px;}
.y134{bottom:915.450000px;}
.y6{bottom:916.980000px;}
.ye7{bottom:918.510000px;}
.yb0{bottom:919.410000px;}
.y74{bottom:919.680000px;}
.y50{bottom:921.210000px;}
.y10a{bottom:927.510000px;}
.yd7{bottom:932.910000px;}
.y133{bottom:933.000000px;}
.ye6{bottom:936.150000px;}
.y109{bottom:945.060000px;}
.y73{bottom:947.040000px;}
.y4e{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.yaf{bottom:954.960000px;}
.y132{bottom:959.550000px;}
.y108{bottom:962.700000px;}
.y95{bottom:968.190000px;}
.yae{bottom:972.600000px;}
.y131{bottom:977.190000px;}
.yd6{bottom:981.150000px;}
.y94{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y107{bottom:989.610000px;}
.yad{bottom:990.150000px;}
.y72{bottom:991.950000px;}
.y4c{bottom:993.480000px;}
.y130{bottom:994.740000px;}
.yd5{bottom:998.790000px;}
.yac{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yd4{bottom:1016.370000px;}
.y71{bottom:1019.340000px;}
.y12f{bottom:1021.320000px;}
.yab{bottom:1025.370000px;}
.y106{bottom:1037.880000px;}
.y4a{bottom:1038.420000px;}
.y12e{bottom:1038.960000px;}
.ye5{bottom:1042.920000px;}
.y70{bottom:1046.700000px;}
.y93{bottom:1047.960000px;}
.yaa{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y105{bottom:1055.520000px;}
.y92{bottom:1065.510000px;}
.yd3{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y91{bottom:1083.150000px;}
.y104{bottom:1084.950000px;}
.y49{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y6f{bottom:1091.610000px;}
.y90{bottom:1100.700000px;}
.y103{bottom:1103.400000px;}
.yd2{bottom:1104.750000px;}
.y2b{bottom:1105.110000px;}
.y102{bottom:1121.850000px;}
.y2a{bottom:1122.750000px;}
.y8f{bottom:1127.610000px;}
.y101{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h8{height:26.550000px;}
.hf{height:26.580000px;}
.hb{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.hc{height:44.100000px;}
.ha{height:44.190000px;}
.h9{height:44.220000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h13{height:61.740000px;}
.h14{height:61.770000px;}
.h12{height:61.793886px;}
.hd{height:62.585859px;}
.h10{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:96.690000px;}
.wd{width:139.500000px;}
.wc{width:140.970000px;}
.wf{width:157.230000px;}
.w3{width:161.670000px;}
.we{width:167.340000px;}
.w7{width:197.580000px;}
.w12{width:201.270000px;}
.w4{width:209.880000px;}
.w13{width:211.680000px;}
.w9{width:215.670000px;}
.w11{width:243.720000px;}
.wb{width:249.120000px;}
.w6{width:266.790000px;}
.wa{width:289.380000px;}
.w8{width:289.890000px;}
.w5{width:382.710000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:95.039987px;}
.x1a{left:111.239987px;}
.x16{left:122.039987px;}
.xf{left:143.010000px;}
.x14{left:152.369987px;}
.x17{left:166.170000px;}
.x12{left:199.019987px;}
.x2{left:202.799987px;}
.xe{left:226.199987px;}
.x6{left:231.150000px;}
.xb{left:285.150000px;}
.x9{left:336.270000px;}
.x18{left:410.700000px;}
.x10{left:424.920000px;}
.x7{left:441.750000px;}
.xa{left:534.570000px;}
.xc{left:575.340000px;}
.x11{left:592.980000px;}
.x19{left:612.780000px;}
.x4{left:652.559987px;}
.x13{left:666.059987px;}
.xd{left:735.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls10{letter-spacing:0.102933pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws6{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:0.306560pt;}
._4{margin-left:-2.992533pt;}
._8{margin-left:-2.042251pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.203850pt;}
._7{width:2.396511pt;}
._5{width:3.366934pt;}
._6{width:4.328533pt;}
._9{width:5.344000pt;}
._a{width:6.520001pt;}
._10{width:7.855680pt;}
._15{width:9.031360pt;}
._21{width:10.794880pt;}
._11{width:12.772160pt;}
._d{width:13.787734pt;}
._e{width:14.693862pt;}
._19{width:15.690240pt;}
._f{width:16.833600pt;}
._c{width:18.117546pt;}
._2{width:19.040640pt;}
._1{width:19.952000pt;}
._b{width:20.929600pt;}
._1b{width:23.353280pt;}
._32{width:24.710400pt;}
._26{width:25.971840pt;}
._25{width:26.880320pt;}
._1d{width:28.323200pt;}
._24{width:29.605760pt;}
._2b{width:31.529600pt;}
._17{width:35.537600pt;}
._12{width:36.847467pt;}
._2e{width:47.989120pt;}
._2f{width:66.960320pt;}
._31{width:74.327467pt;}
._13{width:76.793280pt;}
._16{width:82.030400pt;}
._30{width:83.687040pt;}
._1c{width:85.216320pt;}
._29{width:90.527360pt;}
._2a{width:95.123200pt;}
._23{width:98.757120pt;}
._18{width:115.270080pt;}
._1f{width:124.354880pt;}
._2d{width:140.974720pt;}
._14{width:147.013440pt;}
._1a{width:176.191680pt;}
._27{width:184.795520pt;}
._2c{width:200.132800pt;}
._20{width:208.950400pt;}
._28{width:221.081280pt;}
._22{width:270.192640pt;}
._1e{width:298.195200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:6.960000pt;}
.y84{bottom:6.986667pt;}
.y51{bottom:7.040000pt;}
.y59{bottom:22.560000pt;}
.y4f{bottom:22.640000pt;}
.y4d{bottom:22.666667pt;}
.yf7{bottom:38.240000pt;}
.yf9{bottom:38.266667pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y100{bottom:112.906667pt;}
.yd1{bottom:112.986667pt;}
.y12d{bottom:114.106667pt;}
.y48{bottom:115.066667pt;}
.ya9{bottom:120.586667pt;}
.y6e{bottom:121.466667pt;}
.yd0{bottom:123.786667pt;}
.yff{bottom:128.506667pt;}
.y47{bottom:130.666667pt;}
.ya8{bottom:136.266667pt;}
.y6d{bottom:137.066667pt;}
.y12c{bottom:138.026667pt;}
.yfe{bottom:144.186667pt;}
.y46{bottom:146.266667pt;}
.ycf{bottom:148.106667pt;}
.y6c{bottom:152.746667pt;}
.y26{bottom:158.826667pt;}
.ye4{bottom:160.986667pt;}
.y45{bottom:161.946667pt;}
.yfd{bottom:167.786667pt;}
.ya7{bottom:167.866667pt;}
.y6b{bottom:168.346667pt;}
.yce{bottom:172.426667pt;}
.y25{bottom:174.506667pt;}
.y8e{bottom:177.546667pt;}
.y12b{bottom:180.986667pt;}
.ya6{bottom:183.466667pt;}
.y24{bottom:190.106667pt;}
.ye3{bottom:192.346667pt;}
.y8d{bottom:193.146667pt;}
.y44{bottom:193.546667pt;}
.y12a{bottom:196.586667pt;}
.ycd{bottom:196.666667pt;}
.yfc{bottom:197.066667pt;}
.y6a{bottom:199.946667pt;}
.y152{bottom:201.066667pt;}
.y23{bottom:205.786667pt;}
.y8c{bottom:208.826667pt;}
.y43{bottom:209.226667pt;}
.y129{bottom:212.186667pt;}
.ya5{bottom:215.146667pt;}
.y69{bottom:215.626667pt;}
.y151{bottom:216.746667pt;}
.y22{bottom:221.386667pt;}
.y8b{bottom:224.426667pt;}
.y42{bottom:224.826667pt;}
.y128{bottom:227.866667pt;}
.ya4{bottom:230.746667pt;}
.y68{bottom:231.226667pt;}
.y150{bottom:232.346667pt;}
.y21{bottom:236.986667pt;}
.ycc{bottom:239.946667pt;}
.y41{bottom:240.426667pt;}
.y127{bottom:243.466667pt;}
.ya3{bottom:246.426667pt;}
.y67{bottom:246.906667pt;}
.y14f{bottom:255.946667pt;}
.y40{bottom:256.106667pt;}
.y20{bottom:268.666667pt;}
.y66{bottom:270.506667pt;}
.ycb{bottom:271.626667pt;}
.y3f{bottom:271.706667pt;}
.y126{bottom:275.146667pt;}
.yfb{bottom:276.986667pt;}
.ya2{bottom:278.026667pt;}
.y14e{bottom:279.626667pt;}
.y1f{bottom:284.266667pt;}
.yca{bottom:287.226667pt;}
.y8a{bottom:287.306667pt;}
.y125{bottom:290.746667pt;}
.ya1{bottom:293.626667pt;}
.y1e{bottom:299.946667pt;}
.y65{bottom:302.106667pt;}
.yc9{bottom:302.906667pt;}
.y89{bottom:302.986667pt;}
.y14d{bottom:303.226667pt;}
.y3e{bottom:303.386667pt;}
.y124{bottom:306.346667pt;}
.ya0{bottom:309.306667pt;}
.y1d{bottom:315.546667pt;}
.y64{bottom:317.786667pt;}
.yc8{bottom:318.506667pt;}
.y88{bottom:318.586667pt;}
.y14c{bottom:318.906667pt;}
.y3d{bottom:318.986667pt;}
.y123{bottom:322.026667pt;}
.y9f{bottom:324.906667pt;}
.y1c{bottom:331.146667pt;}
.yfa{bottom:332.506667pt;}
.y63{bottom:333.386667pt;}
.y87{bottom:334.266667pt;}
.y3c{bottom:334.586667pt;}
.y9e{bottom:340.506667pt;}
.yc7{bottom:342.106667pt;}
.y14b{bottom:342.506667pt;}
.y1b{bottom:346.826667pt;}
.y62{bottom:349.066667pt;}
.y3b{bottom:350.266667pt;}
.y122{bottom:353.626667pt;}
.y86{bottom:357.866667pt;}
.y9d{bottom:364.186667pt;}
.y3a{bottom:365.866667pt;}
.y14a{bottom:366.106667pt;}
.y121{bottom:369.306667pt;}
.y1a{bottom:370.746667pt;}
.y61{bottom:372.986667pt;}
.yc6{bottom:373.786667pt;}
.y149{bottom:381.786667pt;}
.y120{bottom:384.906667pt;}
.y85{bottom:387.146667pt;}
.yf8{bottom:388.106667pt;}
.yc5{bottom:389.386667pt;}
.y9c{bottom:395.786667pt;}
.y39{bottom:397.546667pt;}
.y11f{bottom:400.506667pt;}
.yc4{bottom:405.066667pt;}
.y148{bottom:405.386667pt;}
.y83{bottom:411.466667pt;}
.y38{bottom:413.146667pt;}
.y19{bottom:413.626667pt;}
.y60{bottom:415.866667pt;}
.y11e{bottom:416.186667pt;}
.yc3{bottom:420.693333pt;}
.y147{bottom:421.093333pt;}
.y9b{bottom:427.093333pt;}
.y37{bottom:428.773333pt;}
.y18{bottom:429.573333pt;}
.y5f{bottom:431.493333pt;}
.y82{bottom:435.813333pt;}
.yf6{bottom:443.653333pt;}
.y36{bottom:444.453333pt;}
.y146{bottom:444.693333pt;}
.y5e{bottom:447.173333pt;}
.y11d{bottom:447.813333pt;}
.yc2{bottom:452.293333pt;}
.y35{bottom:460.053333pt;}
.y145{bottom:460.293333pt;}
.y9a{bottom:461.333333pt;}
.y17{bottom:462.453333pt;}
.y11c{bottom:463.493333pt;}
.yc1{bottom:467.973333pt;}
.y99{bottom:477.013333pt;}
.y16{bottom:478.133333pt;}
.y5d{bottom:478.773333pt;}
.y11b{bottom:479.093333pt;}
.yc0{bottom:483.573333pt;}
.y34{bottom:483.973333pt;}
.y81{bottom:484.373333pt;}
.y98{bottom:492.613333pt;}
.y15{bottom:493.733333pt;}
.y5c{bottom:494.453333pt;}
.y11a{bottom:494.693333pt;}
.ybf{bottom:499.253333pt;}
.y144{bottom:499.573333pt;}
.y14{bottom:509.413333pt;}
.y5b{bottom:510.053333pt;}
.ybe{bottom:522.853333pt;}
.y143{bottom:523.253333pt;}
.y80{bottom:524.293333pt;}
.y13{bottom:525.013333pt;}
.y5a{bottom:525.653333pt;}
.y119{bottom:526.373333pt;}
.y33{bottom:526.853333pt;}
.y97{bottom:526.933333pt;}
.y142{bottom:538.853333pt;}
.y12{bottom:540.613333pt;}
.y118{bottom:541.973333pt;}
.y32{bottom:542.533333pt;}
.ybd{bottom:554.453333pt;}
.y58{bottom:555.013333pt;}
.y96{bottom:555.573333pt;}
.y11{bottom:556.293333pt;}
.y117{bottom:557.573333pt;}
.y31{bottom:558.133333pt;}
.y141{bottom:562.453333pt;}
.y7f{bottom:567.573333pt;}
.yf5{bottom:568.693333pt;}
.ybc{bottom:570.133333pt;}
.y10{bottom:571.893333pt;}
.y116{bottom:573.253333pt;}
.y140{bottom:578.133333pt;}
.yf4{bottom:584.453333pt;}
.ybb{bottom:585.733333pt;}
.yf{bottom:587.573333pt;}
.y30{bottom:589.813333pt;}
.y13f{bottom:593.733333pt;}
.y57{bottom:594.933333pt;}
.y7e{bottom:599.253333pt;}
.yf3{bottom:600.053333pt;}
.yba{bottom:601.413333pt;}
.ye{bottom:603.173333pt;}
.y115{bottom:604.853333pt;}
.ye2{bottom:609.413333pt;}
.y7d{bottom:614.853333pt;}
.yf2{bottom:615.733333pt;}
.yb9{bottom:617.013333pt;}
.y13e{bottom:617.413333pt;}
.y2f{bottom:618.453333pt;}
.yd{bottom:618.773333pt;}
.y114{bottom:620.533333pt;}
.ye1{bottom:625.013333pt;}
.y7c{bottom:630.533333pt;}
.yf1{bottom:631.333333pt;}
.yb8{bottom:632.613333pt;}
.y13d{bottom:633.013333pt;}
.y56{bottom:634.853333pt;}
.y113{bottom:636.133333pt;}
.ye0{bottom:640.613333pt;}
.yc{bottom:642.773333pt;}
.y7b{bottom:646.133333pt;}
.yf0{bottom:647.733333pt;}
.y112{bottom:651.733333pt;}
.yb7{bottom:656.293333pt;}
.y13c{bottom:656.613333pt;}
.yef{bottom:663.333333pt;}
.y111{bottom:667.413333pt;}
.ydf{bottom:671.893333pt;}
.y13b{bottom:672.293333pt;}
.y55{bottom:674.773333pt;}
.y7a{bottom:677.733333pt;}
.yee{bottom:678.933333pt;}
.y110{bottom:683.013333pt;}
.yb{bottom:684.293333pt;}
.yde{bottom:687.573333pt;}
.yb6{bottom:687.893333pt;}
.y79{bottom:693.413333pt;}
.yed{bottom:694.533333pt;}
.y13a{bottom:695.893333pt;}
.yb5{bottom:703.573333pt;}
.y78{bottom:709.013333pt;}
.yec{bottom:710.933333pt;}
.ydd{bottom:711.173333pt;}
.y139{bottom:711.573333pt;}
.y54{bottom:714.693333pt;}
.ya{bottom:715.893333pt;}
.yb4{bottom:719.173333pt;}
.y77{bottom:724.693333pt;}
.yeb{bottom:726.613333pt;}
.y10f{bottom:730.293333pt;}
.yb3{bottom:734.773333pt;}
.y138{bottom:735.173333pt;}
.yea{bottom:742.213333pt;}
.ydc{bottom:742.773333pt;}
.y10e{bottom:745.893333pt;}
.y9{bottom:747.733333pt;}
.y76{bottom:748.293333pt;}
.y137{bottom:750.773333pt;}
.y53{bottom:754.613333pt;}
.ye9{bottom:757.813333pt;}
.ydb{bottom:758.453333pt;}
.yb2{bottom:758.693333pt;}
.y10d{bottom:761.573333pt;}
.yda{bottom:774.053333pt;}
.y136{bottom:774.453333pt;}
.y75{bottom:777.573333pt;}
.y52{bottom:778.933333pt;}
.y8{bottom:783.093333pt;}
.yd9{bottom:789.733333pt;}
.y135{bottom:790.053333pt;}
.ye8{bottom:790.213333pt;}
.y10c{bottom:793.173333pt;}
.y7{bottom:799.093333pt;}
.yb1{bottom:801.653333pt;}
.yd8{bottom:805.333333pt;}
.y10b{bottom:808.853333pt;}
.y134{bottom:813.733333pt;}
.y6{bottom:815.093333pt;}
.ye7{bottom:816.453333pt;}
.yb0{bottom:817.253333pt;}
.y74{bottom:817.493333pt;}
.y50{bottom:818.853333pt;}
.y10a{bottom:824.453333pt;}
.yd7{bottom:829.253333pt;}
.y133{bottom:829.333333pt;}
.ye6{bottom:832.133333pt;}
.y109{bottom:840.053333pt;}
.y73{bottom:841.813333pt;}
.y4e{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.yaf{bottom:848.853333pt;}
.y132{bottom:852.933333pt;}
.y108{bottom:855.733333pt;}
.y95{bottom:860.613333pt;}
.yae{bottom:864.533333pt;}
.y131{bottom:868.613333pt;}
.yd6{bottom:872.133333pt;}
.y94{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y107{bottom:879.653333pt;}
.yad{bottom:880.133333pt;}
.y72{bottom:881.733333pt;}
.y4c{bottom:883.093333pt;}
.y130{bottom:884.213333pt;}
.yd5{bottom:887.813333pt;}
.yac{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yd4{bottom:903.440000pt;}
.y71{bottom:906.080000pt;}
.y12f{bottom:907.840000pt;}
.yab{bottom:911.440000pt;}
.y106{bottom:922.560000pt;}
.y4a{bottom:923.040000pt;}
.y12e{bottom:923.520000pt;}
.ye5{bottom:927.040000pt;}
.y70{bottom:930.400000pt;}
.y93{bottom:931.520000pt;}
.yaa{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y105{bottom:938.240000pt;}
.y92{bottom:947.120000pt;}
.yd3{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y91{bottom:962.800000pt;}
.y104{bottom:964.400000pt;}
.y49{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y6f{bottom:970.320000pt;}
.y90{bottom:978.400000pt;}
.y103{bottom:980.800000pt;}
.yd2{bottom:982.000000pt;}
.y2b{bottom:982.320000pt;}
.y102{bottom:997.200000pt;}
.y2a{bottom:998.000000pt;}
.y8f{bottom:1002.320000pt;}
.y101{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.hf{height:23.626667pt;}
.hb{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.hc{height:39.200000pt;}
.ha{height:39.280000pt;}
.h9{height:39.306667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h13{height:54.880000pt;}
.h14{height:54.906667pt;}
.h12{height:54.927899pt;}
.hd{height:55.631875pt;}
.h10{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:85.946667pt;}
.wd{width:124.000000pt;}
.wc{width:125.306667pt;}
.wf{width:139.760000pt;}
.w3{width:143.706667pt;}
.we{width:148.746667pt;}
.w7{width:175.626667pt;}
.w12{width:178.906667pt;}
.w4{width:186.560000pt;}
.w13{width:188.160000pt;}
.w9{width:191.706667pt;}
.w11{width:216.640000pt;}
.wb{width:221.440000pt;}
.w6{width:237.146667pt;}
.wa{width:257.226667pt;}
.w8{width:257.680000pt;}
.w5{width:340.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:84.479988pt;}
.x1a{left:98.879988pt;}
.x16{left:108.479988pt;}
.xf{left:127.120000pt;}
.x14{left:135.439988pt;}
.x17{left:147.706667pt;}
.x12{left:176.906655pt;}
.x2{left:180.266655pt;}
.xe{left:201.066655pt;}
.x6{left:205.466667pt;}
.xb{left:253.466667pt;}
.x9{left:298.906667pt;}
.x18{left:365.066667pt;}
.x10{left:377.706667pt;}
.x7{left:392.666667pt;}
.xa{left:475.173333pt;}
.xc{left:511.413333pt;}
.x11{left:527.093333pt;}
.x19{left:544.693333pt;}
.x4{left:580.053322pt;}
.x13{left:592.053322pt;}
.xd{left:654.053322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  