
    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_eb30c5967b219a9bc837b87d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_07182f8ea5ee80329eab6537.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_08025149be9a2486ca0f1244.woff')format("woff");}.ff3{font-family:ff3;line-height:0.805176;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_6f0af6244cfdf99c99d52507.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bd7c31d6d8292a21c875ed59.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4c0440f84c7a27e9b00cdb7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.886719;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.233280px;}
.ls16{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.365760px;}
.lsa{letter-spacing:5.220000px;}
.ls6{letter-spacing:14.580000px;}
.ls2{letter-spacing:16.560000px;}
.ls9{letter-spacing:21.780000px;}
.ls12{letter-spacing:24.660000px;}
.ls15{letter-spacing:40.266720px;}
.ls14{letter-spacing:69.786720px;}
.ls13{letter-spacing:69.930720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws4{word-spacing:-9.732960px;}
.ws6{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._35{margin-left:-8.396640px;}
._2d{margin-left:-7.247520px;}
._d{margin-left:-4.840560px;}
._8{margin-left:-3.556080px;}
._f{margin-left:-2.369520px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._5{width:2.958480px;}
._4{width:4.213440px;}
._7{width:5.288400px;}
._15{width:6.480000px;}
._1c{width:7.525920px;}
._11{width:8.644320px;}
._10{width:9.979920px;}
._9{width:11.758320px;}
._6{width:13.730400px;}
._a{width:16.194960px;}
._e{width:17.509680px;}
._1e{width:18.824400px;}
._1d{width:20.139120px;}
._2a{width:21.238560px;}
._1b{width:22.260720px;}
._19{width:23.459040px;}
._18{width:25.398000px;}
._29{width:26.652960px;}
._14{width:27.668880px;}
._c{width:28.744560px;}
._b{width:30.537360px;}
._1a{width:32.031360px;}
._2b{width:33.943680px;}
._23{width:35.318160px;}
._22{width:36.752400px;}
._13{width:38.485440px;}
._12{width:39.740400px;}
._20{width:40.816080px;}
._1f{width:41.832000px;}
._26{width:42.967440px;}
._30{width:44.102880px;}
._2f{width:45.118800px;}
._2e{width:46.672560px;}
._21{width:47.808000px;}
._27{width:49.899600px;}
._28{width:51.513120px;}
._3a{width:53.186400px;}
._24{width:54.202320px;}
._2c{width:55.278000px;}
._25{width:58.584240px;}
._34{width:59.855040px;}
._2{width:64.800000px;}
._40{width:67.827600px;}
._17{width:74.102400px;}
._16{width:75.237840px;}
._3e{width:76.970880px;}
._3f{width:78.106320px;}
._36{width:87.608160px;}
._3b{width:97.229520px;}
._32{width:99.739440px;}
._31{width:110.197440px;}
._3c{width:113.821920px;}
._3d{width:114.858720px;}
._37{width:117.030960px;}
._39{width:130.217040px;}
._38{width:131.292720px;}
._33{width:663.873840px;}
._3{width:674.100000px;}
.fc4{color:transparent;}
.fc3{color:rgb(24,23,23);}
.fc5{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs9{font-size:27.360000px;}
.fs8{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y36{bottom:6.300000px;}
.yea{bottom:6.345000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.y1b{bottom:8.100000px;}
.yad{bottom:10.080000px;}
.yb3{bottom:10.110000px;}
.ybd{bottom:10.125000px;}
.yaa{bottom:10.260000px;}
.yb0{bottom:10.800000px;}
.yb7{bottom:10.980000px;}
.y28{bottom:12.780000px;}
.ya8{bottom:21.960000px;}
.yd{bottom:25.740000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y35{bottom:29.700000px;}
.ya9{bottom:33.660000px;}
.yab{bottom:37.440000px;}
.y27{bottom:39.600000px;}
.y6{bottom:47.700000px;}
.y34{bottom:53.100000px;}
.yc{bottom:54.540000px;}
.y13{bottom:56.160000px;}
.y26{bottom:66.600000px;}
.y10{bottom:69.120000px;}
.y5{bottom:69.840000px;}
.yb{bottom:74.340000px;}
.y33{bottom:76.500000px;}
.y11b{bottom:79.380000px;}
.y11a{bottom:92.520000px;}
.y25{bottom:93.420000px;}
.y160{bottom:95.580000px;}
.y9e{bottom:95.940000px;}
.yca{bottom:96.660000px;}
.yf7{bottom:97.380000px;}
.y4{bottom:97.590000px;}
.y119{bottom:99.540000px;}
.y32{bottom:99.900000px;}
.y75{bottom:100.800000px;}
.ya{bottom:103.170000px;}
.y46{bottom:111.600000px;}
.y9d{bottom:113.400000px;}
.y99{bottom:115.200000px;}
.y15f{bottom:118.980000px;}
.y133{bottom:119.340000px;}
.yc9{bottom:120.060000px;}
.y24{bottom:120.420000px;}
.yf6{bottom:120.780000px;}
.y118{bottom:122.940000px;}
.y9{bottom:122.970000px;}
.y31{bottom:123.300000px;}
.y74{bottom:124.200000px;}
.y9c{bottom:130.860000px;}
.y3{bottom:131.970000px;}
.y183{bottom:133.380000px;}
.y45{bottom:135.000000px;}
.y132{bottom:136.800000px;}
.y9b{bottom:137.700000px;}
.y98{bottom:138.600000px;}
.y15e{bottom:142.380000px;}
.yc8{bottom:143.460000px;}
.yf5{bottom:144.180000px;}
.y117{bottom:146.340000px;}
.y30{bottom:146.700000px;}
.y23{bottom:147.240000px;}
.y73{bottom:147.600000px;}
.y9a{bottom:150.480000px;}
.y131{bottom:154.290000px;}
.y182{bottom:156.810000px;}
.y44{bottom:158.430000px;}
.y97{bottom:162.030000px;}
.y15d{bottom:165.810000px;}
.yc7{bottom:166.890000px;}
.yf4{bottom:167.610000px;}
.y116{bottom:169.770000px;}
.y2f{bottom:170.130000px;}
.y72{bottom:171.030000px;}
.y130{bottom:171.750000px;}
.y22{bottom:174.270000px;}
.y12f{bottom:178.590000px;}
.y181{bottom:180.210000px;}
.y43{bottom:181.830000px;}
.y96{bottom:185.430000px;}
.y15c{bottom:189.210000px;}
.yc6{bottom:190.290000px;}
.yf3{bottom:191.010000px;}
.y12e{bottom:191.370000px;}
.y115{bottom:193.170000px;}
.y2e{bottom:193.530000px;}
.y71{bottom:194.430000px;}
.y21{bottom:201.090000px;}
.y180{bottom:203.610000px;}
.y42{bottom:205.230000px;}
.y95{bottom:208.830000px;}
.y15b{bottom:212.610000px;}
.yc5{bottom:213.690000px;}
.yf2{bottom:214.410000px;}
.y114{bottom:216.570000px;}
.y2d{bottom:216.930000px;}
.y70{bottom:217.830000px;}
.y17f{bottom:227.010000px;}
.y20{bottom:228.090000px;}
.y41{bottom:228.630000px;}
.y12d{bottom:229.350000px;}
.y94{bottom:232.230000px;}
.y15a{bottom:236.010000px;}
.yc4{bottom:237.090000px;}
.yf1{bottom:237.810000px;}
.y113{bottom:239.970000px;}
.y2c{bottom:240.330000px;}
.y6f{bottom:241.230000px;}
.y17e{bottom:250.410000px;}
.y40{bottom:252.030000px;}
.y12c{bottom:252.750000px;}
.y1f{bottom:254.910000px;}
.y93{bottom:255.630000px;}
.y159{bottom:259.410000px;}
.yc3{bottom:260.490000px;}
.yf0{bottom:261.210000px;}
.y112{bottom:263.370000px;}
.y2b{bottom:263.730000px;}
.y6e{bottom:264.630000px;}
.y17d{bottom:273.810000px;}
.y3f{bottom:275.430000px;}
.y12b{bottom:276.150000px;}
.y92{bottom:279.030000px;}
.y1e{bottom:281.910000px;}
.y158{bottom:282.810000px;}
.yc2{bottom:283.890000px;}
.yef{bottom:284.610000px;}
.y111{bottom:286.770000px;}
.y2a{bottom:287.130000px;}
.y6d{bottom:288.030000px;}
.y17c{bottom:297.210000px;}
.y3e{bottom:298.830000px;}
.y12a{bottom:299.550000px;}
.y91{bottom:302.430000px;}
.y157{bottom:306.210000px;}
.yc1{bottom:307.290000px;}
.yee{bottom:308.010000px;}
.y1d{bottom:308.730000px;}
.y110{bottom:310.170000px;}
.y29{bottom:310.530000px;}
.y6c{bottom:311.430000px;}
.y17b{bottom:320.610000px;}
.y3d{bottom:322.230000px;}
.y129{bottom:324.030000px;}
.y90{bottom:325.830000px;}
.y156{bottom:329.610000px;}
.yc0{bottom:330.690000px;}
.yed{bottom:331.410000px;}
.y10f{bottom:333.570000px;}
.y6b{bottom:334.830000px;}
.y17a{bottom:344.010000px;}
.y3c{bottom:345.630000px;}
.y128{bottom:347.430000px;}
.y8f{bottom:349.230000px;}
.y10e{bottom:351.750000px;}
.y155{bottom:353.010000px;}
.ybf{bottom:354.090000px;}
.yec{bottom:354.810000px;}
.y6a{bottom:358.230000px;}
.y179{bottom:368.670000px;}
.y3b{bottom:369.030000px;}
.ybe{bottom:372.270000px;}
.y8e{bottom:372.630000px;}
.yeb{bottom:373.170000px;}
.y10d{bottom:375.150000px;}
.y154{bottom:376.410000px;}
.yf9{bottom:378.210000px;}
.y69{bottom:381.630000px;}
.y178{bottom:392.070000px;}
.y3a{bottom:392.430000px;}
.y8d{bottom:396.030000px;}
.ye9{bottom:396.570000px;}
.y10c{bottom:398.550000px;}
.ybc{bottom:399.630000px;}
.y153{bottom:399.810000px;}
.yf8{bottom:401.655000px;}
.y68{bottom:405.075000px;}
.y39{bottom:415.875000px;}
.y8c{bottom:419.475000px;}
.ye8{bottom:420.015000px;}
.y10b{bottom:421.995000px;}
.y177{bottom:422.895000px;}
.y152{bottom:423.255000px;}
.y127{bottom:425.055000px;}
.ybb{bottom:426.855000px;}
.y67{bottom:428.475000px;}
.y38{bottom:439.275000px;}
.y151{bottom:441.075000px;}
.y8b{bottom:442.875000px;}
.ye7{bottom:443.415000px;}
.y10a{bottom:445.395000px;}
.y176{bottom:446.295000px;}
.y126{bottom:448.455000px;}
.y66{bottom:451.875000px;}
.yba{bottom:454.935000px;}
.y37{bottom:457.095000px;}
.y150{bottom:464.475000px;}
.y8a{bottom:466.275000px;}
.ye6{bottom:466.815000px;}
.y109{bottom:468.795000px;}
.y175{bottom:469.695000px;}
.y125{bottom:471.855000px;}
.y65{bottom:475.275000px;}
.y1c{bottom:481.215000px;}
.yb9{bottom:482.115000px;}
.y14f{bottom:487.875000px;}
.y89{bottom:489.675000px;}
.ye5{bottom:490.215000px;}
.y108{bottom:492.195000px;}
.y174{bottom:493.095000px;}
.y124{bottom:495.255000px;}
.y64{bottom:498.675000px;}
.yb8{bottom:509.295000px;}
.y14e{bottom:511.275000px;}
.y88{bottom:513.075000px;}
.ye4{bottom:513.615000px;}
.y107{bottom:515.595000px;}
.y173{bottom:516.495000px;}
.y123{bottom:518.655000px;}
.y63{bottom:522.075000px;}
.y14d{bottom:534.675000px;}
.y87{bottom:536.475000px;}
.ye3{bottom:537.015000px;}
.y106{bottom:538.995000px;}
.y172{bottom:539.895000px;}
.y122{bottom:542.055000px;}
.y62{bottom:545.475000px;}
.y14c{bottom:558.075000px;}
.y86{bottom:559.875000px;}
.ye2{bottom:560.415000px;}
.y105{bottom:562.395000px;}
.y171{bottom:563.295000px;}
.yb6{bottom:563.835000px;}
.y121{bottom:565.455000px;}
.y61{bottom:568.875000px;}
.y14b{bottom:581.475000px;}
.y85{bottom:583.275000px;}
.ye1{bottom:583.815000px;}
.y170{bottom:586.695000px;}
.y104{bottom:586.875000px;}
.y120{bottom:588.855000px;}
.yb5{bottom:591.915000px;}
.y60{bottom:592.275000px;}
.y14a{bottom:604.875000px;}
.y84{bottom:606.675000px;}
.ye0{bottom:607.215000px;}
.y16f{bottom:610.095000px;}
.y103{bottom:610.275000px;}
.y11f{bottom:612.255000px;}
.y5f{bottom:615.675000px;}
.yb4{bottom:619.095000px;}
.y149{bottom:628.995000px;}
.y83{bottom:630.075000px;}
.ydf{bottom:630.615000px;}
.y16e{bottom:633.495000px;}
.y11e{bottom:635.655000px;}
.y5e{bottom:639.075000px;}
.y102{bottom:641.055000px;}
.yb2{bottom:646.275000px;}
.y148{bottom:653.145000px;}
.y82{bottom:653.505000px;}
.yde{bottom:654.045000px;}
.y16d{bottom:656.925000px;}
.y11d{bottom:659.085000px;}
.y5d{bottom:662.505000px;}
.yb1{bottom:673.485000px;}
.y147{bottom:676.545000px;}
.y81{bottom:676.905000px;}
.ydd{bottom:677.445000px;}
.y16c{bottom:680.325000px;}
.y101{bottom:682.485000px;}
.y5c{bottom:685.905000px;}
.y11c{bottom:687.705000px;}
.y146{bottom:699.945000px;}
.y80{bottom:700.305000px;}
.yaf{bottom:700.845000px;}
.y16b{bottom:703.725000px;}
.y100{bottom:705.885000px;}
.y5b{bottom:709.305000px;}
.y16a{bottom:721.545000px;}
.y145{bottom:723.345000px;}
.y7f{bottom:723.705000px;}
.ydc{bottom:724.245000px;}
.yae{bottom:728.745000px;}
.yff{bottom:729.285000px;}
.y5a{bottom:732.705000px;}
.y169{bottom:744.945000px;}
.y144{bottom:746.745000px;}
.y7e{bottom:747.105000px;}
.ydb{bottom:747.645000px;}
.yfe{bottom:752.685000px;}
.y59{bottom:756.105000px;}
.y168{bottom:768.345000px;}
.y143{bottom:770.145000px;}
.y7d{bottom:770.505000px;}
.yda{bottom:771.045000px;}
.yfd{bottom:776.085000px;}
.y58{bottom:779.505000px;}
.yac{bottom:783.285000px;}
.y167{bottom:791.745000px;}
.y142{bottom:793.545000px;}
.y7c{bottom:793.905000px;}
.yd9{bottom:794.445000px;}
.yfc{bottom:799.485000px;}
.y57{bottom:802.905000px;}
.y1a{bottom:809.565000px;}
.ya7{bottom:811.185000px;}
.y166{bottom:815.145000px;}
.y141{bottom:816.945000px;}
.y7b{bottom:817.305000px;}
.yd8{bottom:817.845000px;}
.yfb{bottom:822.885000px;}
.y56{bottom:826.305000px;}
.y165{bottom:838.545000px;}
.y7a{bottom:840.705000px;}
.yd7{bottom:841.245000px;}
.y19{bottom:843.585000px;}
.yfa{bottom:846.285000px;}
.y55{bottom:849.705000px;}
.y164{bottom:862.665000px;}
.y79{bottom:864.105000px;}
.yd6{bottom:864.645000px;}
.y140{bottom:865.365000px;}
.y18{bottom:866.985000px;}
.y54{bottom:873.105000px;}
.y163{bottom:886.785000px;}
.y78{bottom:887.505000px;}
.yd5{bottom:888.045000px;}
.y13f{bottom:888.765000px;}
.y17{bottom:889.845000px;}
.y53{bottom:896.505000px;}
.y162{bottom:910.230000px;}
.y77{bottom:910.950000px;}
.yd4{bottom:911.490000px;}
.y13e{bottom:912.210000px;}
.y185{bottom:912.570000px;}
.y16{bottom:913.290000px;}
.y52{bottom:919.950000px;}
.y9f{bottom:925.170000px;}
.y76{bottom:934.350000px;}
.yd3{bottom:934.890000px;}
.y13d{bottom:935.610000px;}
.y184{bottom:935.970000px;}
.y51{bottom:943.350000px;}
.y15{bottom:945.690000px;}
.ya6{bottom:957.750000px;}
.yd2{bottom:958.290000px;}
.y13c{bottom:959.010000px;}
.y50{bottom:966.750000px;}
.ya5{bottom:981.150000px;}
.yd1{bottom:981.690000px;}
.y13b{bottom:982.410000px;}
.y4f{bottom:990.150000px;}
.y14{bottom:992.490000px;}
.ya4{bottom:1004.550000px;}
.yd0{bottom:1005.090000px;}
.y13a{bottom:1005.810000px;}
.y4e{bottom:1013.550000px;}
.ya3{bottom:1027.950000px;}
.ycf{bottom:1028.490000px;}
.y139{bottom:1029.210000px;}
.yf{bottom:1030.650000px;}
.y4d{bottom:1036.950000px;}
.ya2{bottom:1051.350000px;}
.yce{bottom:1051.890000px;}
.y1{bottom:1052.610000px;}
.y138{bottom:1053.330000px;}
.y4c{bottom:1060.350000px;}
.ya1{bottom:1074.750000px;}
.ycd{bottom:1075.290000px;}
.y161{bottom:1075.650000px;}
.y137{bottom:1077.450000px;}
.y4b{bottom:1083.750000px;}
.ya0{bottom:1098.150000px;}
.ycc{bottom:1099.770000px;}
.y136{bottom:1100.850000px;}
.y4a{bottom:1107.150000px;}
.ycb{bottom:1123.170000px;}
.y135{bottom:1124.250000px;}
.y49{bottom:1130.550000px;}
.y134{bottom:1147.680000px;}
.y48{bottom:1153.980000px;}
.y47{bottom:1183.500000px;}
.h3{height:2.010938px;}
.h13{height:20.626875px;}
.ha{height:21.960000px;}
.h10{height:23.400000px;}
.h1c{height:23.436000px;}
.he{height:27.000000px;}
.h15{height:27.147656px;}
.h17{height:27.180000px;}
.h1a{height:27.216000px;}
.h18{height:27.360000px;}
.h19{height:27.900000px;}
.h1b{height:28.080000px;}
.h14{height:40.710938px;}
.hc{height:40.842773px;}
.h7{height:41.726953px;}
.h4{height:42.164648px;}
.h1d{height:43.506914px;}
.h8{height:46.251562px;}
.h6{height:46.736719px;}
.h9{height:47.922187px;}
.h11{height:48.027656px;}
.h12{height:48.207656px;}
.hb{height:53.224453px;}
.h16{height:54.540000px;}
.h5{height:59.436914px;}
.hd{height:67.565039px;}
.h2{height:146.016000px;}
.hf{height:327.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.056000px;}
.w2b{width:92.376000px;}
.w25{width:94.860000px;}
.w26{width:94.896000px;}
.w24{width:95.076000px;}
.we{width:97.380000px;}
.w28{width:100.836000px;}
.w1c{width:101.196000px;}
.w12{width:103.896000px;}
.wf{width:104.256000px;}
.w11{width:104.400000px;}
.wd{width:104.436000px;}
.w1d{width:104.580000px;}
.w2e{width:109.620000px;}
.w2d{width:109.836000px;}
.w10{width:111.456000px;}
.w27{width:113.796000px;}
.w1e{width:115.020000px;}
.w1f{width:115.056000px;}
.w20{width:115.776000px;}
.w2c{width:125.496000px;}
.w2a{width:125.820000px;}
.w29{width:126.000000px;}
.w2f{width:126.576000px;}
.w23{width:128.016000px;}
.w22{width:128.160000px;}
.w21{width:128.196000px;}
.w1b{width:133.056000px;}
.w15{width:139.176000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.w14{width:160.950000px;}
.wc{width:177.690000px;}
.w13{width:184.890000px;}
.w35{width:187.230000px;}
.w34{width:187.410000px;}
.w32{width:188.670000px;}
.w30{width:188.850000px;}
.w31{width:189.030000px;}
.w1a{width:189.210000px;}
.w8{width:192.270000px;}
.w19{width:217.515000px;}
.w18{width:218.595000px;}
.w33{width:223.095000px;}
.w16{width:268.635000px;}
.w17{width:297.930000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:5.580000px;}
.x5{left:8.640000px;}
.x15{left:44.820000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xc{left:57.600000px;}
.x3e{left:71.099987px;}
.xe{left:84.059987px;}
.x42{left:86.975987px;}
.x3f{left:104.075987px;}
.xb{left:106.776000px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x11{left:155.549987px;}
.x35{left:163.830000px;}
.x30{left:167.790000px;}
.x2b{left:169.770000px;}
.x25{left:187.050000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x17{left:222.510000px;}
.x2f{left:227.189987px;}
.x1c{left:238.890000px;}
.xd{left:249.870000px;}
.x31{left:268.635000px;}
.x12{left:270.074987px;}
.x22{left:271.515000px;}
.x3a{left:272.595000px;}
.x36{left:273.675000px;}
.x3b{left:277.095000px;}
.x26{left:288.255000px;}
.x2c{left:297.975000px;}
.x20{left:322.635000px;}
.x18{left:326.955000px;}
.x37{left:383.295000px;}
.x27{left:392.835000px;}
.x32{left:394.635000px;}
.x1d{left:399.855000px;}
.x19{left:424.335000px;}
.x2d{left:426.315000px;}
.x23{left:460.725000px;}
.x3c{left:464.505000px;}
.xf{left:473.504987px;}
.x41{left:490.604987px;}
.x28{left:494.025000px;}
.x33{left:495.465000px;}
.x10{left:503.564987px;}
.x40{left:523.544987px;}
.x13{left:529.484973px;}
.x14{left:534.344987px;}
.x1e{left:539.025000px;}
.x2e{left:554.325000px;}
.x38{left:602.745000px;}
.x29{left:609.045000px;}
.x21{left:620.565000px;}
.x1a{left:640.050000px;}
.x24{left:649.950000px;}
.x3d{left:651.750000px;}
.x1f{left:699.990000px;}
.x9{left:703.050000px;}
.x39{left:712.590000px;}
.x34{left:713.670000px;}
.x2a{left:724.110000px;}
.x1b{left:744.450000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.207360pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.325120pt;}
.lsa{letter-spacing:4.640000pt;}
.ls6{letter-spacing:12.960000pt;}
.ls2{letter-spacing:14.720000pt;}
.ls9{letter-spacing:19.360000pt;}
.ls12{letter-spacing:21.920000pt;}
.ls15{letter-spacing:35.792640pt;}
.ls14{letter-spacing:62.032640pt;}
.ls13{letter-spacing:62.160640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws4{word-spacing:-8.651520pt;}
.ws6{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._35{margin-left:-7.463680pt;}
._2d{margin-left:-6.442240pt;}
._d{margin-left:-4.302720pt;}
._8{margin-left:-3.160960pt;}
._f{margin-left:-2.106240pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._5{width:2.629760pt;}
._4{width:3.745280pt;}
._7{width:4.700800pt;}
._15{width:5.760000pt;}
._1c{width:6.689707pt;}
._11{width:7.683840pt;}
._10{width:8.871040pt;}
._9{width:10.451840pt;}
._6{width:12.204800pt;}
._a{width:14.395520pt;}
._e{width:15.564160pt;}
._1e{width:16.732800pt;}
._1d{width:17.901440pt;}
._2a{width:18.878720pt;}
._1b{width:19.787307pt;}
._19{width:20.852480pt;}
._18{width:22.576000pt;}
._29{width:23.691520pt;}
._14{width:24.594560pt;}
._c{width:25.550720pt;}
._b{width:27.144320pt;}
._1a{width:28.472320pt;}
._2b{width:30.172160pt;}
._23{width:31.393920pt;}
._22{width:32.668800pt;}
._13{width:34.209280pt;}
._12{width:35.324800pt;}
._20{width:36.280960pt;}
._1f{width:37.184000pt;}
._26{width:38.193280pt;}
._30{width:39.202560pt;}
._2f{width:40.105600pt;}
._2e{width:41.486720pt;}
._21{width:42.496000pt;}
._27{width:44.355200pt;}
._28{width:45.789440pt;}
._3a{width:47.276800pt;}
._24{width:48.179840pt;}
._2c{width:49.136000pt;}
._25{width:52.074880pt;}
._34{width:53.204480pt;}
._2{width:57.600000pt;}
._40{width:60.291200pt;}
._17{width:65.868800pt;}
._16{width:66.878080pt;}
._3e{width:68.418560pt;}
._3f{width:69.427840pt;}
._36{width:77.873920pt;}
._3b{width:86.426240pt;}
._32{width:88.657280pt;}
._31{width:97.953280pt;}
._3c{width:101.175040pt;}
._3d{width:102.096640pt;}
._37{width:104.027520pt;}
._39{width:115.748480pt;}
._38{width:116.704640pt;}
._33{width:590.110080pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs9{font-size:24.320000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y36{bottom:5.600000pt;}
.yea{bottom:5.640000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.y1b{bottom:7.200000pt;}
.yad{bottom:8.960000pt;}
.yb3{bottom:8.986667pt;}
.ybd{bottom:9.000000pt;}
.yaa{bottom:9.120000pt;}
.yb0{bottom:9.600000pt;}
.yb7{bottom:9.760000pt;}
.y28{bottom:11.360000pt;}
.ya8{bottom:19.520000pt;}
.yd{bottom:22.880000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y35{bottom:26.400000pt;}
.ya9{bottom:29.920000pt;}
.yab{bottom:33.280000pt;}
.y27{bottom:35.200000pt;}
.y6{bottom:42.400000pt;}
.y34{bottom:47.200000pt;}
.yc{bottom:48.480000pt;}
.y13{bottom:49.920000pt;}
.y26{bottom:59.200000pt;}
.y10{bottom:61.440000pt;}
.y5{bottom:62.080000pt;}
.yb{bottom:66.080000pt;}
.y33{bottom:68.000000pt;}
.y11b{bottom:70.560000pt;}
.y11a{bottom:82.240000pt;}
.y25{bottom:83.040000pt;}
.y160{bottom:84.960000pt;}
.y9e{bottom:85.280000pt;}
.yca{bottom:85.920000pt;}
.yf7{bottom:86.560000pt;}
.y4{bottom:86.746667pt;}
.y119{bottom:88.480000pt;}
.y32{bottom:88.800000pt;}
.y75{bottom:89.600000pt;}
.ya{bottom:91.706667pt;}
.y46{bottom:99.200000pt;}
.y9d{bottom:100.800000pt;}
.y99{bottom:102.400000pt;}
.y15f{bottom:105.760000pt;}
.y133{bottom:106.080000pt;}
.yc9{bottom:106.720000pt;}
.y24{bottom:107.040000pt;}
.yf6{bottom:107.360000pt;}
.y118{bottom:109.280000pt;}
.y9{bottom:109.306667pt;}
.y31{bottom:109.600000pt;}
.y74{bottom:110.400000pt;}
.y9c{bottom:116.320000pt;}
.y3{bottom:117.306667pt;}
.y183{bottom:118.560000pt;}
.y45{bottom:120.000000pt;}
.y132{bottom:121.600000pt;}
.y9b{bottom:122.400000pt;}
.y98{bottom:123.200000pt;}
.y15e{bottom:126.560000pt;}
.yc8{bottom:127.520000pt;}
.yf5{bottom:128.160000pt;}
.y117{bottom:130.080000pt;}
.y30{bottom:130.400000pt;}
.y23{bottom:130.880000pt;}
.y73{bottom:131.200000pt;}
.y9a{bottom:133.760000pt;}
.y131{bottom:137.146667pt;}
.y182{bottom:139.386667pt;}
.y44{bottom:140.826667pt;}
.y97{bottom:144.026667pt;}
.y15d{bottom:147.386667pt;}
.yc7{bottom:148.346667pt;}
.yf4{bottom:148.986667pt;}
.y116{bottom:150.906667pt;}
.y2f{bottom:151.226667pt;}
.y72{bottom:152.026667pt;}
.y130{bottom:152.666667pt;}
.y22{bottom:154.906667pt;}
.y12f{bottom:158.746667pt;}
.y181{bottom:160.186667pt;}
.y43{bottom:161.626667pt;}
.y96{bottom:164.826667pt;}
.y15c{bottom:168.186667pt;}
.yc6{bottom:169.146667pt;}
.yf3{bottom:169.786667pt;}
.y12e{bottom:170.106667pt;}
.y115{bottom:171.706667pt;}
.y2e{bottom:172.026667pt;}
.y71{bottom:172.826667pt;}
.y21{bottom:178.746667pt;}
.y180{bottom:180.986667pt;}
.y42{bottom:182.426667pt;}
.y95{bottom:185.626667pt;}
.y15b{bottom:188.986667pt;}
.yc5{bottom:189.946667pt;}
.yf2{bottom:190.586667pt;}
.y114{bottom:192.506667pt;}
.y2d{bottom:192.826667pt;}
.y70{bottom:193.626667pt;}
.y17f{bottom:201.786667pt;}
.y20{bottom:202.746667pt;}
.y41{bottom:203.226667pt;}
.y12d{bottom:203.866667pt;}
.y94{bottom:206.426667pt;}
.y15a{bottom:209.786667pt;}
.yc4{bottom:210.746667pt;}
.yf1{bottom:211.386667pt;}
.y113{bottom:213.306667pt;}
.y2c{bottom:213.626667pt;}
.y6f{bottom:214.426667pt;}
.y17e{bottom:222.586667pt;}
.y40{bottom:224.026667pt;}
.y12c{bottom:224.666667pt;}
.y1f{bottom:226.586667pt;}
.y93{bottom:227.226667pt;}
.y159{bottom:230.586667pt;}
.yc3{bottom:231.546667pt;}
.yf0{bottom:232.186667pt;}
.y112{bottom:234.106667pt;}
.y2b{bottom:234.426667pt;}
.y6e{bottom:235.226667pt;}
.y17d{bottom:243.386667pt;}
.y3f{bottom:244.826667pt;}
.y12b{bottom:245.466667pt;}
.y92{bottom:248.026667pt;}
.y1e{bottom:250.586667pt;}
.y158{bottom:251.386667pt;}
.yc2{bottom:252.346667pt;}
.yef{bottom:252.986667pt;}
.y111{bottom:254.906667pt;}
.y2a{bottom:255.226667pt;}
.y6d{bottom:256.026667pt;}
.y17c{bottom:264.186667pt;}
.y3e{bottom:265.626667pt;}
.y12a{bottom:266.266667pt;}
.y91{bottom:268.826667pt;}
.y157{bottom:272.186667pt;}
.yc1{bottom:273.146667pt;}
.yee{bottom:273.786667pt;}
.y1d{bottom:274.426667pt;}
.y110{bottom:275.706667pt;}
.y29{bottom:276.026667pt;}
.y6c{bottom:276.826667pt;}
.y17b{bottom:284.986667pt;}
.y3d{bottom:286.426667pt;}
.y129{bottom:288.026667pt;}
.y90{bottom:289.626667pt;}
.y156{bottom:292.986667pt;}
.yc0{bottom:293.946667pt;}
.yed{bottom:294.586667pt;}
.y10f{bottom:296.506667pt;}
.y6b{bottom:297.626667pt;}
.y17a{bottom:305.786667pt;}
.y3c{bottom:307.226667pt;}
.y128{bottom:308.826667pt;}
.y8f{bottom:310.426667pt;}
.y10e{bottom:312.666667pt;}
.y155{bottom:313.786667pt;}
.ybf{bottom:314.746667pt;}
.yec{bottom:315.386667pt;}
.y6a{bottom:318.426667pt;}
.y179{bottom:327.706667pt;}
.y3b{bottom:328.026667pt;}
.ybe{bottom:330.906667pt;}
.y8e{bottom:331.226667pt;}
.yeb{bottom:331.706667pt;}
.y10d{bottom:333.466667pt;}
.y154{bottom:334.586667pt;}
.yf9{bottom:336.186667pt;}
.y69{bottom:339.226667pt;}
.y178{bottom:348.506667pt;}
.y3a{bottom:348.826667pt;}
.y8d{bottom:352.026667pt;}
.ye9{bottom:352.506667pt;}
.y10c{bottom:354.266667pt;}
.ybc{bottom:355.226667pt;}
.y153{bottom:355.386667pt;}
.yf8{bottom:357.026667pt;}
.y68{bottom:360.066667pt;}
.y39{bottom:369.666667pt;}
.y8c{bottom:372.866667pt;}
.ye8{bottom:373.346667pt;}
.y10b{bottom:375.106667pt;}
.y177{bottom:375.906667pt;}
.y152{bottom:376.226667pt;}
.y127{bottom:377.826667pt;}
.ybb{bottom:379.426667pt;}
.y67{bottom:380.866667pt;}
.y38{bottom:390.466667pt;}
.y151{bottom:392.066667pt;}
.y8b{bottom:393.666667pt;}
.ye7{bottom:394.146667pt;}
.y10a{bottom:395.906667pt;}
.y176{bottom:396.706667pt;}
.y126{bottom:398.626667pt;}
.y66{bottom:401.666667pt;}
.yba{bottom:404.386667pt;}
.y37{bottom:406.306667pt;}
.y150{bottom:412.866667pt;}
.y8a{bottom:414.466667pt;}
.ye6{bottom:414.946667pt;}
.y109{bottom:416.706667pt;}
.y175{bottom:417.506667pt;}
.y125{bottom:419.426667pt;}
.y65{bottom:422.466667pt;}
.y1c{bottom:427.746667pt;}
.yb9{bottom:428.546667pt;}
.y14f{bottom:433.666667pt;}
.y89{bottom:435.266667pt;}
.ye5{bottom:435.746667pt;}
.y108{bottom:437.506667pt;}
.y174{bottom:438.306667pt;}
.y124{bottom:440.226667pt;}
.y64{bottom:443.266667pt;}
.yb8{bottom:452.706667pt;}
.y14e{bottom:454.466667pt;}
.y88{bottom:456.066667pt;}
.ye4{bottom:456.546667pt;}
.y107{bottom:458.306667pt;}
.y173{bottom:459.106667pt;}
.y123{bottom:461.026667pt;}
.y63{bottom:464.066667pt;}
.y14d{bottom:475.266667pt;}
.y87{bottom:476.866667pt;}
.ye3{bottom:477.346667pt;}
.y106{bottom:479.106667pt;}
.y172{bottom:479.906667pt;}
.y122{bottom:481.826667pt;}
.y62{bottom:484.866667pt;}
.y14c{bottom:496.066667pt;}
.y86{bottom:497.666667pt;}
.ye2{bottom:498.146667pt;}
.y105{bottom:499.906667pt;}
.y171{bottom:500.706667pt;}
.yb6{bottom:501.186667pt;}
.y121{bottom:502.626667pt;}
.y61{bottom:505.666667pt;}
.y14b{bottom:516.866667pt;}
.y85{bottom:518.466667pt;}
.ye1{bottom:518.946667pt;}
.y170{bottom:521.506667pt;}
.y104{bottom:521.666667pt;}
.y120{bottom:523.426667pt;}
.yb5{bottom:526.146667pt;}
.y60{bottom:526.466667pt;}
.y14a{bottom:537.666667pt;}
.y84{bottom:539.266667pt;}
.ye0{bottom:539.746667pt;}
.y16f{bottom:542.306667pt;}
.y103{bottom:542.466667pt;}
.y11f{bottom:544.226667pt;}
.y5f{bottom:547.266667pt;}
.yb4{bottom:550.306667pt;}
.y149{bottom:559.106667pt;}
.y83{bottom:560.066667pt;}
.ydf{bottom:560.546667pt;}
.y16e{bottom:563.106667pt;}
.y11e{bottom:565.026667pt;}
.y5e{bottom:568.066667pt;}
.y102{bottom:569.826667pt;}
.yb2{bottom:574.466667pt;}
.y148{bottom:580.573333pt;}
.y82{bottom:580.893333pt;}
.yde{bottom:581.373333pt;}
.y16d{bottom:583.933333pt;}
.y11d{bottom:585.853333pt;}
.y5d{bottom:588.893333pt;}
.yb1{bottom:598.653333pt;}
.y147{bottom:601.373333pt;}
.y81{bottom:601.693333pt;}
.ydd{bottom:602.173333pt;}
.y16c{bottom:604.733333pt;}
.y101{bottom:606.653333pt;}
.y5c{bottom:609.693333pt;}
.y11c{bottom:611.293333pt;}
.y146{bottom:622.173333pt;}
.y80{bottom:622.493333pt;}
.yaf{bottom:622.973333pt;}
.y16b{bottom:625.533333pt;}
.y100{bottom:627.453333pt;}
.y5b{bottom:630.493333pt;}
.y16a{bottom:641.373333pt;}
.y145{bottom:642.973333pt;}
.y7f{bottom:643.293333pt;}
.ydc{bottom:643.773333pt;}
.yae{bottom:647.773333pt;}
.yff{bottom:648.253333pt;}
.y5a{bottom:651.293333pt;}
.y169{bottom:662.173333pt;}
.y144{bottom:663.773333pt;}
.y7e{bottom:664.093333pt;}
.ydb{bottom:664.573333pt;}
.yfe{bottom:669.053333pt;}
.y59{bottom:672.093333pt;}
.y168{bottom:682.973333pt;}
.y143{bottom:684.573333pt;}
.y7d{bottom:684.893333pt;}
.yda{bottom:685.373333pt;}
.yfd{bottom:689.853333pt;}
.y58{bottom:692.893333pt;}
.yac{bottom:696.253333pt;}
.y167{bottom:703.773333pt;}
.y142{bottom:705.373333pt;}
.y7c{bottom:705.693333pt;}
.yd9{bottom:706.173333pt;}
.yfc{bottom:710.653333pt;}
.y57{bottom:713.693333pt;}
.y1a{bottom:719.613333pt;}
.ya7{bottom:721.053333pt;}
.y166{bottom:724.573333pt;}
.y141{bottom:726.173333pt;}
.y7b{bottom:726.493333pt;}
.yd8{bottom:726.973333pt;}
.yfb{bottom:731.453333pt;}
.y56{bottom:734.493333pt;}
.y165{bottom:745.373333pt;}
.y7a{bottom:747.293333pt;}
.yd7{bottom:747.773333pt;}
.y19{bottom:749.853333pt;}
.yfa{bottom:752.253333pt;}
.y55{bottom:755.293333pt;}
.y164{bottom:766.813333pt;}
.y79{bottom:768.093333pt;}
.yd6{bottom:768.573333pt;}
.y140{bottom:769.213333pt;}
.y18{bottom:770.653333pt;}
.y54{bottom:776.093333pt;}
.y163{bottom:788.253333pt;}
.y78{bottom:788.893333pt;}
.yd5{bottom:789.373333pt;}
.y13f{bottom:790.013333pt;}
.y17{bottom:790.973333pt;}
.y53{bottom:796.893333pt;}
.y162{bottom:809.093333pt;}
.y77{bottom:809.733333pt;}
.yd4{bottom:810.213333pt;}
.y13e{bottom:810.853333pt;}
.y185{bottom:811.173333pt;}
.y16{bottom:811.813333pt;}
.y52{bottom:817.733333pt;}
.y9f{bottom:822.373333pt;}
.y76{bottom:830.533333pt;}
.yd3{bottom:831.013333pt;}
.y13d{bottom:831.653333pt;}
.y184{bottom:831.973333pt;}
.y51{bottom:838.533333pt;}
.y15{bottom:840.613333pt;}
.ya6{bottom:851.333333pt;}
.yd2{bottom:851.813333pt;}
.y13c{bottom:852.453333pt;}
.y50{bottom:859.333333pt;}
.ya5{bottom:872.133333pt;}
.yd1{bottom:872.613333pt;}
.y13b{bottom:873.253333pt;}
.y4f{bottom:880.133333pt;}
.y14{bottom:882.213333pt;}
.ya4{bottom:892.933333pt;}
.yd0{bottom:893.413333pt;}
.y13a{bottom:894.053333pt;}
.y4e{bottom:900.933333pt;}
.ya3{bottom:913.733333pt;}
.ycf{bottom:914.213333pt;}
.y139{bottom:914.853333pt;}
.yf{bottom:916.133333pt;}
.y4d{bottom:921.733333pt;}
.ya2{bottom:934.533333pt;}
.yce{bottom:935.013333pt;}
.y1{bottom:935.653333pt;}
.y138{bottom:936.293333pt;}
.y4c{bottom:942.533333pt;}
.ya1{bottom:955.333333pt;}
.ycd{bottom:955.813333pt;}
.y161{bottom:956.133333pt;}
.y137{bottom:957.733333pt;}
.y4b{bottom:963.333333pt;}
.ya0{bottom:976.133333pt;}
.ycc{bottom:977.573333pt;}
.y136{bottom:978.533333pt;}
.y4a{bottom:984.133333pt;}
.ycb{bottom:998.373333pt;}
.y135{bottom:999.333333pt;}
.y49{bottom:1004.933333pt;}
.y134{bottom:1020.160000pt;}
.y48{bottom:1025.760000pt;}
.y47{bottom:1052.000000pt;}
.h3{height:1.787500pt;}
.h13{height:18.335000pt;}
.ha{height:19.520000pt;}
.h10{height:20.800000pt;}
.h1c{height:20.832000pt;}
.he{height:24.000000pt;}
.h15{height:24.131250pt;}
.h17{height:24.160000pt;}
.h1a{height:24.192000pt;}
.h18{height:24.320000pt;}
.h19{height:24.800000pt;}
.h1b{height:24.960000pt;}
.h14{height:36.187500pt;}
.hc{height:36.304688pt;}
.h7{height:37.090625pt;}
.h4{height:37.479688pt;}
.h1d{height:38.672812pt;}
.h8{height:41.112500pt;}
.h6{height:41.543750pt;}
.h9{height:42.597500pt;}
.h11{height:42.691250pt;}
.h12{height:42.851250pt;}
.hb{height:47.310625pt;}
.h16{height:48.480000pt;}
.h5{height:52.832812pt;}
.hd{height:60.057813pt;}
.h2{height:129.792000pt;}
.hf{height:291.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.272000pt;}
.w2b{width:82.112000pt;}
.w25{width:84.320000pt;}
.w26{width:84.352000pt;}
.w24{width:84.512000pt;}
.we{width:86.560000pt;}
.w28{width:89.632000pt;}
.w1c{width:89.952000pt;}
.w12{width:92.352000pt;}
.wf{width:92.672000pt;}
.w11{width:92.800000pt;}
.wd{width:92.832000pt;}
.w1d{width:92.960000pt;}
.w2e{width:97.440000pt;}
.w2d{width:97.632000pt;}
.w10{width:99.072000pt;}
.w27{width:101.152000pt;}
.w1e{width:102.240000pt;}
.w1f{width:102.272000pt;}
.w20{width:102.912000pt;}
.w2c{width:111.552000pt;}
.w2a{width:111.840000pt;}
.w29{width:112.000000pt;}
.w2f{width:112.512000pt;}
.w23{width:113.792000pt;}
.w22{width:113.920000pt;}
.w21{width:113.952000pt;}
.w1b{width:118.272000pt;}
.w15{width:123.712000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.w14{width:143.066667pt;}
.wc{width:157.946667pt;}
.w13{width:164.346667pt;}
.w35{width:166.426667pt;}
.w34{width:166.586667pt;}
.w32{width:167.706667pt;}
.w30{width:167.866667pt;}
.w31{width:168.026667pt;}
.w1a{width:168.186667pt;}
.w8{width:170.906667pt;}
.w19{width:193.346667pt;}
.w18{width:194.306667pt;}
.w33{width:198.306667pt;}
.w16{width:238.786667pt;}
.w17{width:264.826667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:4.960000pt;}
.x5{left:7.680000pt;}
.x15{left:39.840000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xc{left:51.200000pt;}
.x3e{left:63.199988pt;}
.xe{left:74.719988pt;}
.x42{left:77.311988pt;}
.x3f{left:92.511988pt;}
.xb{left:94.912000pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x11{left:138.266655pt;}
.x35{left:145.626667pt;}
.x30{left:149.146667pt;}
.x2b{left:150.906667pt;}
.x25{left:166.266667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x17{left:197.786667pt;}
.x2f{left:201.946655pt;}
.x1c{left:212.346667pt;}
.xd{left:222.106667pt;}
.x31{left:238.786667pt;}
.x12{left:240.066655pt;}
.x22{left:241.346667pt;}
.x3a{left:242.306667pt;}
.x36{left:243.266667pt;}
.x3b{left:246.306667pt;}
.x26{left:256.226667pt;}
.x2c{left:264.866667pt;}
.x20{left:286.786667pt;}
.x18{left:290.626667pt;}
.x37{left:340.706667pt;}
.x27{left:349.186667pt;}
.x32{left:350.786667pt;}
.x1d{left:355.426667pt;}
.x19{left:377.186667pt;}
.x2d{left:378.946667pt;}
.x23{left:409.533333pt;}
.x3c{left:412.893333pt;}
.xf{left:420.893322pt;}
.x41{left:436.093322pt;}
.x28{left:439.133333pt;}
.x33{left:440.413333pt;}
.x10{left:447.613322pt;}
.x40{left:465.373322pt;}
.x13{left:470.653310pt;}
.x14{left:474.973322pt;}
.x1e{left:479.133333pt;}
.x2e{left:492.733333pt;}
.x38{left:535.773333pt;}
.x29{left:541.373333pt;}
.x21{left:551.613333pt;}
.x1a{left:568.933333pt;}
.x24{left:577.733333pt;}
.x3d{left:579.333333pt;}
.x1f{left:622.213333pt;}
.x9{left:624.933333pt;}
.x39{left:633.413333pt;}
.x34{left:634.373333pt;}
.x2a{left:643.653333pt;}
.x1b{left:661.733333pt;}
}




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