
    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_b8c327195112a0643c21cae7.woff')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_021d14ab2b6fd9dedebf1096.woff')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_4dc83488bf1e23e2942a550e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c8e2b8bbdf8ffd097aa1b295.woff')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_9aec653c41493d3f726eada3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_95eadc9ec2ace262785a96a7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_b8546e331f2c6480dc1358d7.woff')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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.125400px;}
.lsd{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.113400px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:8.280000px;}
.ls16{letter-spacing:47.726640px;}
.ls15{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.425600px;}
.ws2{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.133400px;}
.wsc{word-spacing:-13.101000px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._9{margin-left:-3.634800px;}
._4{margin-left:-2.377200px;}
._0{margin-left:-1.110000px;}
._1{width:1.985160px;}
._8{width:3.306600px;}
._7{width:4.809600px;}
._a{width:5.902559px;}
._6{width:7.395000px;}
._5{width:9.278401px;}
._2{width:10.280400px;}
._10{width:11.931600px;}
._f{width:14.725560px;}
._e{width:15.871800px;}
._d{width:16.948799px;}
._3{width:17.976000px;}
._b{width:19.057800px;}
._c{width:20.562002px;}
._1b{width:21.694663px;}
._1c{width:22.712726px;}
._12{width:23.807520px;}
._15{width:25.611120px;}
._20{width:27.174240px;}
._2c{width:28.764000px;}
._31{width:39.017880px;}
._2d{width:40.941720px;}
._30{width:43.286400px;}
._18{width:49.418640px;}
._14{width:58.256280px;}
._16{width:60.661080px;}
._13{width:67.093920px;}
._1a{width:69.017760px;}
._17{width:82.184040px;}
._32{width:86.572800px;}
._2e{width:94.087800px;}
._2f{width:95.230080px;}
._11{width:98.717040px;}
._1f{width:113.145840px;}
._19{width:115.911360px;}
._24{width:138.797280px;}
._22{width:151.442280px;}
._25{width:159.859080px;}
._2b{width:166.171680px;}
._27{width:170.800920px;}
._26{width:171.822960px;}
._28{width:221.542200px;}
._21{width:222.684480px;}
._23{width:227.373840px;}
._1d{width:229.898880px;}
._2a{width:292.002840px;}
._1e{width:303.305400px;}
._29{width:306.191160px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:3.330000px;}
.ye6{bottom:3.420000px;}
.y4d{bottom:7.830000px;}
.y4b{bottom:7.920000px;}
.ye2{bottom:20.880000px;}
.ye5{bottom:20.970000px;}
.y4a{bottom:25.470000px;}
.y50{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y15a{bottom:117.570000px;}
.y10c{bottom:121.980000px;}
.y55{bottom:124.410000px;}
.yf2{bottom:124.950000px;}
.y27{bottom:131.250000px;}
.y159{bottom:135.120000px;}
.y79{bottom:139.170000px;}
.y10b{bottom:139.530000px;}
.y54{bottom:141.960000px;}
.ya1{bottom:142.050000px;}
.yf1{bottom:142.500000px;}
.y129{bottom:144.840000px;}
.y26{bottom:148.800000px;}
.y158{bottom:152.670000px;}
.y10a{bottom:157.170000px;}
.y53{bottom:159.600000px;}
.yf0{bottom:160.140000px;}
.y128{bottom:162.390000px;}
.y25{bottom:166.350000px;}
.yda{bottom:166.800000px;}
.ybc{bottom:170.130000px;}
.y78{bottom:174.720000px;}
.y52{bottom:177.150000px;}
.ya0{bottom:177.240000px;}
.yef{bottom:177.690000px;}
.y157{bottom:179.310000px;}
.y127{bottom:179.940000px;}
.y24{bottom:183.990000px;}
.yd9{bottom:184.440000px;}
.y77{bottom:192.270000px;}
.y9f{bottom:194.790000px;}
.yee{bottom:195.330000px;}
.y156{bottom:196.860000px;}
.y126{bottom:197.580000px;}
.y109{bottom:201.270000px;}
.y23{bottom:201.540000px;}
.yd8{bottom:201.990000px;}
.ybb{bottom:205.680000px;}
.y76{bottom:209.910000px;}
.y51{bottom:210.090000px;}
.y9e{bottom:212.430000px;}
.yed{bottom:212.880000px;}
.y155{bottom:214.500000px;}
.y125{bottom:215.130000px;}
.yd7{bottom:219.630000px;}
.yba{bottom:223.320000px;}
.y75{bottom:227.460000px;}
.y22{bottom:228.090000px;}
.y9d{bottom:229.980000px;}
.yec{bottom:230.430000px;}
.y154{bottom:232.050000px;}
.y124{bottom:232.680000px;}
.yd6{bottom:237.180000px;}
.yb9{bottom:240.870000px;}
.y74{bottom:245.100000px;}
.y9c{bottom:247.530000px;}
.y123{bottom:250.320000px;}
.yd5{bottom:254.730000px;}
.y4f{bottom:255.000000px;}
.yb8{bottom:258.510000px;}
.y153{bottom:258.600000px;}
.y73{bottom:262.650000px;}
.yeb{bottom:263.460000px;}
.y21{bottom:263.730000px;}
.y9b{bottom:265.170000px;}
.y122{bottom:267.870000px;}
.yd4{bottom:272.370000px;}
.yb7{bottom:276.060000px;}
.y152{bottom:276.240000px;}
.y72{bottom:280.200000px;}
.y20{bottom:281.280000px;}
.y9a{bottom:282.720000px;}
.y108{bottom:285.510000px;}
.yd3{bottom:289.920000px;}
.yb6{bottom:293.610000px;}
.y151{bottom:293.790000px;}
.y71{bottom:297.840000px;}
.y1f{bottom:298.920000px;}
.yea{bottom:299.370000px;}
.y107{bottom:303.060000px;}
.yd2{bottom:307.560000px;}
.y99{bottom:309.360000px;}
.yb5{bottom:311.250000px;}
.y70{bottom:315.390000px;}
.y1e{bottom:316.470000px;}
.y4e{bottom:317.550000px;}
.y150{bottom:320.430000px;}
.y106{bottom:320.610000px;}
.yd1{bottom:325.110000px;}
.yb4{bottom:328.800000px;}
.y6f{bottom:332.940000px;}
.y1d{bottom:334.020000px;}
.ye9{bottom:335.280000px;}
.y14f{bottom:337.980000px;}
.y105{bottom:338.250000px;}
.yd0{bottom:342.660000px;}
.y98{bottom:345.180000px;}
.yb3{bottom:346.440000px;}
.y6e{bottom:350.580000px;}
.y1c{bottom:351.660000px;}
.y104{bottom:355.800000px;}
.ycf{bottom:360.300000px;}
.y4c{bottom:362.460000px;}
.yb2{bottom:363.990000px;}
.y14e{bottom:364.530000px;}
.ye8{bottom:371.190000px;}
.y103{bottom:373.440000px;}
.y6d{bottom:377.130000px;}
.y1b{bottom:378.210000px;}
.yb1{bottom:381.540000px;}
.y14d{bottom:382.170000px;}
.yce{bottom:386.850000px;}
.y97{bottom:390.900000px;}
.y102{bottom:390.990000px;}
.y14c{bottom:399.720000px;}
.y121{bottom:399.990000px;}
.ye7{bottom:407.100000px;}
.y49{bottom:407.370000px;}
.yb0{bottom:408.180000px;}
.y101{bottom:408.540000px;}
.y6c{bottom:412.770000px;}
.y1a{bottom:414.120000px;}
.ycd{bottom:422.490000px;}
.y100{bottom:426.180000px;}
.y14b{bottom:426.360000px;}
.y6b{bottom:430.320000px;}
.y120{bottom:435.540000px;}
.y96{bottom:435.810000px;}
.ye4{bottom:443.010000px;}
.yaf{bottom:443.730000px;}
.y14a{bottom:443.910000px;}
.y6a{bottom:447.870000px;}
.y11f{bottom:453.180000px;}
.ycc{bottom:454.710000px;}
.yae{bottom:461.370000px;}
.y149{bottom:461.460000px;}
.y19{bottom:462.450000px;}
.y69{bottom:465.510000px;}
.y11e{bottom:470.760000px;}
.y48{bottom:473.730000px;}
.yad{bottom:478.950000px;}
.ye1{bottom:479.040000px;}
.y18{bottom:480.390000px;}
.y95{bottom:480.750000px;}
.y68{bottom:483.090000px;}
.y148{bottom:488.130000px;}
.y11d{bottom:488.400000px;}
.yac{bottom:496.500000px;}
.y47{bottom:500.280000px;}
.y67{bottom:500.730000px;}
.y147{bottom:505.680000px;}
.y11c{bottom:505.950000px;}
.y94{bottom:508.110000px;}
.yab{bottom:514.140000px;}
.y17{bottom:517.380000px;}
.y66{bottom:518.280000px;}
.yff{bottom:523.140000px;}
.y11b{bottom:523.500000px;}
.yaa{bottom:531.690000px;}
.y146{bottom:532.230000px;}
.y16{bottom:534.930000px;}
.y46{bottom:535.830000px;}
.ye0{bottom:536.280000px;}
.y11a{bottom:541.140000px;}
.ya9{bottom:549.330000px;}
.y145{bottom:549.870000px;}
.y15{bottom:552.570000px;}
.y93{bottom:553.020000px;}
.y45{bottom:553.470000px;}
.yfe{bottom:558.690000px;}
.ydf{bottom:562.830000px;}
.ya8{bottom:566.880000px;}
.y144{bottom:567.420000px;}
.y14{bottom:570.120000px;}
.y44{bottom:571.020000px;}
.yfd{bottom:576.330000px;}
.ya7{bottom:584.430000px;}
.y13{bottom:587.670000px;}
.y43{bottom:588.660000px;}
.yfc{bottom:593.880000px;}
.y143{bottom:594.060000px;}
.y65{bottom:597.660000px;}
.y92{bottom:597.930000px;}
.yde{bottom:598.740000px;}
.ya6{bottom:602.070000px;}
.y12{bottom:605.310000px;}
.y42{bottom:606.210000px;}
.yfb{bottom:611.430000px;}
.y142{bottom:611.610000px;}
.y11{bottom:622.860000px;}
.y41{bottom:623.760000px;}
.ya5{bottom:628.620000px;}
.yfa{bottom:629.070000px;}
.y64{bottom:633.570000px;}
.y141{bottom:638.160000px;}
.y10{bottom:640.500000px;}
.y40{bottom:641.400000px;}
.y91{bottom:646.620000px;}
.ydd{bottom:647.070000px;}
.y140{bottom:655.800000px;}
.yf{bottom:658.050000px;}
.y3f{bottom:658.950000px;}
.ya4{bottom:664.260000px;}
.ydc{bottom:664.620000px;}
.y119{bottom:673.260000px;}
.y13f{bottom:673.350000px;}
.ye{bottom:675.600000px;}
.y3e{bottom:676.590000px;}
.y63{bottom:681.810000px;}
.y90{bottom:682.260000px;}
.yd{bottom:693.240000px;}
.y62{bottom:699.360000px;}
.y8f{bottom:699.810000px;}
.y13e{bottom:699.990000px;}
.y3d{bottom:703.140000px;}
.y118{bottom:708.810000px;}
.yc{bottom:710.790000px;}
.y61{bottom:717.000000px;}
.y8e{bottom:717.360000px;}
.y13d{bottom:717.540000px;}
.y117{bottom:726.360000px;}
.yb{bottom:728.430000px;}
.y60{bottom:734.550000px;}
.y8d{bottom:735.000000px;}
.y13c{bottom:735.090000px;}
.y3c{bottom:739.050000px;}
.y116{bottom:744.000000px;}
.y5f{bottom:752.190000px;}
.y8c{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y115{bottom:761.550000px;}
.y13b{bottom:761.730000px;}
.y5e{bottom:769.740000px;}
.y8b{bottom:770.190000px;}
.yf9{bottom:778.740000px;}
.y114{bottom:779.190000px;}
.y13a{bottom:779.280000px;}
.y3b{bottom:787.290000px;}
.y8a{bottom:787.740000px;}
.y113{bottom:796.740000px;}
.y9{bottom:803.580000px;}
.y3a{bottom:804.930000px;}
.y89{bottom:805.290000px;}
.y139{bottom:806.190000px;}
.yf8{bottom:814.290000px;}
.y39{bottom:822.480000px;}
.y88{bottom:822.930000px;}
.yf7{bottom:831.930000px;}
.y8{bottom:839.130000px;}
.y38{bottom:840.030000px;}
.y87{bottom:840.480000px;}
.ya3{bottom:849.030000px;}
.yf6{bottom:849.480000px;}
.ycb{bottom:854.070000px;}
.y138{bottom:854.520000px;}
.y37{bottom:857.670000px;}
.y86{bottom:858.030000px;}
.y5d{bottom:866.670000px;}
.yf5{bottom:867.030000px;}
.yca{bottom:871.620000px;}
.y137{bottom:872.070000px;}
.y7{bottom:874.950000px;}
.y36{bottom:875.220000px;}
.y85{bottom:875.670000px;}
.ya2{bottom:884.670000px;}
.yc9{bottom:889.260000px;}
.y136{bottom:889.620000px;}
.y35{bottom:892.860000px;}
.y5c{bottom:902.220000px;}
.yc8{bottom:906.810000px;}
.y135{bottom:907.260000px;}
.y34{bottom:910.410000px;}
.y6{bottom:910.950000px;}
.y5b{bottom:919.860000px;}
.ydb{bottom:920.220000px;}
.yc7{bottom:924.450000px;}
.y134{bottom:924.810000px;}
.y33{bottom:936.960000px;}
.y5a{bottom:937.410000px;}
.y84{bottom:937.860000px;}
.yc6{bottom:942.000000px;}
.y133{bottom:942.450000px;}
.y112{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y59{bottom:954.960000px;}
.y83{bottom:955.410000px;}
.yc5{bottom:959.550000px;}
.y132{bottom:960.000000px;}
.y32{bottom:972.600000px;}
.y82{bottom:972.960000px;}
.yc4{bottom:977.190000px;}
.y131{bottom:977.550000px;}
.y111{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y31{bottom:990.150000px;}
.y81{bottom:990.600000px;}
.yc3{bottom:994.740000px;}
.y130{bottom:995.190000px;}
.y110{bottom:999.600000px;}
.y30{bottom:1007.790000px;}
.y80{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.yc2{bottom:1012.320000px;}
.y12f{bottom:1012.770000px;}
.y10f{bottom:1017.180000px;}
.y2f{bottom:1025.370000px;}
.y7f{bottom:1025.820000px;}
.yc1{bottom:1029.960000px;}
.y12e{bottom:1030.320000px;}
.yf4{bottom:1034.370000px;}
.y10e{bottom:1034.820000px;}
.y2e{bottom:1042.920000px;}
.y7e{bottom:1043.370000px;}
.yc0{bottom:1047.510000px;}
.y12d{bottom:1047.960000px;}
.y58{bottom:1051.920000px;}
.y10d{bottom:1052.370000px;}
.y2d{bottom:1060.560000px;}
.y7d{bottom:1060.920000px;}
.ybf{bottom:1065.150000px;}
.y12c{bottom:1065.510000px;}
.yf3{bottom:1069.920000px;}
.y7c{bottom:1078.560000px;}
.y12b{bottom:1083.150000px;}
.y2c{bottom:1087.110000px;}
.y57{bottom:1087.560000px;}
.ybe{bottom:1091.700000px;}
.y7b{bottom:1096.110000px;}
.y12a{bottom:1100.700000px;}
.y56{bottom:1105.110000px;}
.y7a{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.ybd{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h2{height:30.022383px;}
.h11{height:35.100000px;}
.h13{height:35.190000px;}
.h12{height:35.220000px;}
.h3{height:39.155273px;}
.hc{height:44.190000px;}
.h10{height:44.220000px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h14{height:61.793886px;}
.he{height:61.830000px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:126.720000px;}
.w7{width:144.630000px;}
.w5{width:148.590000px;}
.w3{width:151.050000px;}
.wc{width:169.500000px;}
.wa{width:175.980000px;}
.w9{width:180.450000px;}
.w6{width:181.740000px;}
.w8{width:185.790000px;}
.we{width:188.670000px;}
.wd{width:191.250000px;}
.wf{width:204.030000px;}
.wb{width:211.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.x2{left:211.079987px;}
.x5{left:220.530000px;}
.xd{left:224.759987px;}
.xe{left:238.980000px;}
.x9{left:255.270000px;}
.x6{left:348.060000px;}
.xf{left:430.950000px;}
.xa{left:436.440000px;}
.x7{left:497.370000px;}
.xb{left:613.230000px;}
.x10{left:620.430000px;}
.x8{left:679.830000px;}
.xc{left:733.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.111467pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.100800pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:7.360000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.933867pt;}
.ws2{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.674133pt;}
.wsc{word-spacing:-11.645333pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._9{margin-left:-3.230933pt;}
._4{margin-left:-2.113067pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.764587pt;}
._8{width:2.939200pt;}
._7{width:4.275200pt;}
._a{width:5.246719pt;}
._6{width:6.573334pt;}
._5{width:8.247467pt;}
._2{width:9.138133pt;}
._10{width:10.605867pt;}
._f{width:13.089387pt;}
._e{width:14.108267pt;}
._d{width:15.065599pt;}
._3{width:15.978667pt;}
._b{width:16.940266pt;}
._c{width:18.277335pt;}
._1b{width:19.284145pt;}
._1c{width:20.189090pt;}
._12{width:21.162240pt;}
._15{width:22.765440pt;}
._20{width:24.154880pt;}
._2c{width:25.568000pt;}
._31{width:34.682560pt;}
._2d{width:36.392640pt;}
._30{width:38.476800pt;}
._18{width:43.927680pt;}
._14{width:51.783360pt;}
._16{width:53.920960pt;}
._13{width:59.639040pt;}
._1a{width:61.349120pt;}
._17{width:73.052480pt;}
._32{width:76.953600pt;}
._2e{width:83.633600pt;}
._2f{width:84.648960pt;}
._11{width:87.748480pt;}
._1f{width:100.574080pt;}
._19{width:103.032320pt;}
._24{width:123.375360pt;}
._22{width:134.615360pt;}
._25{width:142.096960pt;}
._2b{width:147.708160pt;}
._27{width:151.823040pt;}
._26{width:152.731520pt;}
._28{width:196.926400pt;}
._21{width:197.941760pt;}
._23{width:202.110080pt;}
._1d{width:204.354560pt;}
._2a{width:259.558080pt;}
._1e{width:269.604800pt;}
._29{width:272.169920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:2.960000pt;}
.ye6{bottom:3.040000pt;}
.y4d{bottom:6.960000pt;}
.y4b{bottom:7.040000pt;}
.ye2{bottom:18.560000pt;}
.ye5{bottom:18.640000pt;}
.y4a{bottom:22.640000pt;}
.y50{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y15a{bottom:104.506667pt;}
.y10c{bottom:108.426667pt;}
.y55{bottom:110.586667pt;}
.yf2{bottom:111.066667pt;}
.y27{bottom:116.666667pt;}
.y159{bottom:120.106667pt;}
.y79{bottom:123.706667pt;}
.y10b{bottom:124.026667pt;}
.y54{bottom:126.186667pt;}
.ya1{bottom:126.266667pt;}
.yf1{bottom:126.666667pt;}
.y129{bottom:128.746667pt;}
.y26{bottom:132.266667pt;}
.y158{bottom:135.706667pt;}
.y10a{bottom:139.706667pt;}
.y53{bottom:141.866667pt;}
.yf0{bottom:142.346667pt;}
.y128{bottom:144.346667pt;}
.y25{bottom:147.866667pt;}
.yda{bottom:148.266667pt;}
.ybc{bottom:151.226667pt;}
.y78{bottom:155.306667pt;}
.y52{bottom:157.466667pt;}
.ya0{bottom:157.546667pt;}
.yef{bottom:157.946667pt;}
.y157{bottom:159.386667pt;}
.y127{bottom:159.946667pt;}
.y24{bottom:163.546667pt;}
.yd9{bottom:163.946667pt;}
.y77{bottom:170.906667pt;}
.y9f{bottom:173.146667pt;}
.yee{bottom:173.626667pt;}
.y156{bottom:174.986667pt;}
.y126{bottom:175.626667pt;}
.y109{bottom:178.906667pt;}
.y23{bottom:179.146667pt;}
.yd8{bottom:179.546667pt;}
.ybb{bottom:182.826667pt;}
.y76{bottom:186.586667pt;}
.y51{bottom:186.746667pt;}
.y9e{bottom:188.826667pt;}
.yed{bottom:189.226667pt;}
.y155{bottom:190.666667pt;}
.y125{bottom:191.226667pt;}
.yd7{bottom:195.226667pt;}
.yba{bottom:198.506667pt;}
.y75{bottom:202.186667pt;}
.y22{bottom:202.746667pt;}
.y9d{bottom:204.426667pt;}
.yec{bottom:204.826667pt;}
.y154{bottom:206.266667pt;}
.y124{bottom:206.826667pt;}
.yd6{bottom:210.826667pt;}
.yb9{bottom:214.106667pt;}
.y74{bottom:217.866667pt;}
.y9c{bottom:220.026667pt;}
.y123{bottom:222.506667pt;}
.yd5{bottom:226.426667pt;}
.y4f{bottom:226.666667pt;}
.yb8{bottom:229.786667pt;}
.y153{bottom:229.866667pt;}
.y73{bottom:233.466667pt;}
.yeb{bottom:234.186667pt;}
.y21{bottom:234.426667pt;}
.y9b{bottom:235.706667pt;}
.y122{bottom:238.106667pt;}
.yd4{bottom:242.106667pt;}
.yb7{bottom:245.386667pt;}
.y152{bottom:245.546667pt;}
.y72{bottom:249.066667pt;}
.y20{bottom:250.026667pt;}
.y9a{bottom:251.306667pt;}
.y108{bottom:253.786667pt;}
.yd3{bottom:257.706667pt;}
.yb6{bottom:260.986667pt;}
.y151{bottom:261.146667pt;}
.y71{bottom:264.746667pt;}
.y1f{bottom:265.706667pt;}
.yea{bottom:266.106667pt;}
.y107{bottom:269.386667pt;}
.yd2{bottom:273.386667pt;}
.y99{bottom:274.986667pt;}
.yb5{bottom:276.666667pt;}
.y70{bottom:280.346667pt;}
.y1e{bottom:281.306667pt;}
.y4e{bottom:282.266667pt;}
.y150{bottom:284.826667pt;}
.y106{bottom:284.986667pt;}
.yd1{bottom:288.986667pt;}
.yb4{bottom:292.266667pt;}
.y6f{bottom:295.946667pt;}
.y1d{bottom:296.906667pt;}
.ye9{bottom:298.026667pt;}
.y14f{bottom:300.426667pt;}
.y105{bottom:300.666667pt;}
.yd0{bottom:304.586667pt;}
.y98{bottom:306.826667pt;}
.yb3{bottom:307.946667pt;}
.y6e{bottom:311.626667pt;}
.y1c{bottom:312.586667pt;}
.y104{bottom:316.266667pt;}
.ycf{bottom:320.266667pt;}
.y4c{bottom:322.186667pt;}
.yb2{bottom:323.546667pt;}
.y14e{bottom:324.026667pt;}
.ye8{bottom:329.946667pt;}
.y103{bottom:331.946667pt;}
.y6d{bottom:335.226667pt;}
.y1b{bottom:336.186667pt;}
.yb1{bottom:339.146667pt;}
.y14d{bottom:339.706667pt;}
.yce{bottom:343.866667pt;}
.y97{bottom:347.466667pt;}
.y102{bottom:347.546667pt;}
.y14c{bottom:355.306667pt;}
.y121{bottom:355.546667pt;}
.ye7{bottom:361.866667pt;}
.y49{bottom:362.106667pt;}
.yb0{bottom:362.826667pt;}
.y101{bottom:363.146667pt;}
.y6c{bottom:366.906667pt;}
.y1a{bottom:368.106667pt;}
.ycd{bottom:375.546667pt;}
.y100{bottom:378.826667pt;}
.y14b{bottom:378.986667pt;}
.y6b{bottom:382.506667pt;}
.y120{bottom:387.146667pt;}
.y96{bottom:387.386667pt;}
.ye4{bottom:393.786667pt;}
.yaf{bottom:394.426667pt;}
.y14a{bottom:394.586667pt;}
.y6a{bottom:398.106667pt;}
.y11f{bottom:402.826667pt;}
.ycc{bottom:404.186667pt;}
.yae{bottom:410.106667pt;}
.y149{bottom:410.186667pt;}
.y19{bottom:411.066667pt;}
.y69{bottom:413.786667pt;}
.y11e{bottom:418.453333pt;}
.y48{bottom:421.093333pt;}
.yad{bottom:425.733333pt;}
.ye1{bottom:425.813333pt;}
.y18{bottom:427.013333pt;}
.y95{bottom:427.333333pt;}
.y68{bottom:429.413333pt;}
.y148{bottom:433.893333pt;}
.y11d{bottom:434.133333pt;}
.yac{bottom:441.333333pt;}
.y47{bottom:444.693333pt;}
.y67{bottom:445.093333pt;}
.y147{bottom:449.493333pt;}
.y11c{bottom:449.733333pt;}
.y94{bottom:451.653333pt;}
.yab{bottom:457.013333pt;}
.y17{bottom:459.893333pt;}
.y66{bottom:460.693333pt;}
.yff{bottom:465.013333pt;}
.y11b{bottom:465.333333pt;}
.yaa{bottom:472.613333pt;}
.y146{bottom:473.093333pt;}
.y16{bottom:475.493333pt;}
.y46{bottom:476.293333pt;}
.ye0{bottom:476.693333pt;}
.y11a{bottom:481.013333pt;}
.ya9{bottom:488.293333pt;}
.y145{bottom:488.773333pt;}
.y15{bottom:491.173333pt;}
.y93{bottom:491.573333pt;}
.y45{bottom:491.973333pt;}
.yfe{bottom:496.613333pt;}
.ydf{bottom:500.293333pt;}
.ya8{bottom:503.893333pt;}
.y144{bottom:504.373333pt;}
.y14{bottom:506.773333pt;}
.y44{bottom:507.573333pt;}
.yfd{bottom:512.293333pt;}
.ya7{bottom:519.493333pt;}
.y13{bottom:522.373333pt;}
.y43{bottom:523.253333pt;}
.yfc{bottom:527.893333pt;}
.y143{bottom:528.053333pt;}
.y65{bottom:531.253333pt;}
.y92{bottom:531.493333pt;}
.yde{bottom:532.213333pt;}
.ya6{bottom:535.173333pt;}
.y12{bottom:538.053333pt;}
.y42{bottom:538.853333pt;}
.yfb{bottom:543.493333pt;}
.y142{bottom:543.653333pt;}
.y11{bottom:553.653333pt;}
.y41{bottom:554.453333pt;}
.ya5{bottom:558.773333pt;}
.yfa{bottom:559.173333pt;}
.y64{bottom:563.173333pt;}
.y141{bottom:567.253333pt;}
.y10{bottom:569.333333pt;}
.y40{bottom:570.133333pt;}
.y91{bottom:574.773333pt;}
.ydd{bottom:575.173333pt;}
.y140{bottom:582.933333pt;}
.yf{bottom:584.933333pt;}
.y3f{bottom:585.733333pt;}
.ya4{bottom:590.453333pt;}
.ydc{bottom:590.773333pt;}
.y119{bottom:598.453333pt;}
.y13f{bottom:598.533333pt;}
.ye{bottom:600.533333pt;}
.y3e{bottom:601.413333pt;}
.y63{bottom:606.053333pt;}
.y90{bottom:606.453333pt;}
.yd{bottom:616.213333pt;}
.y62{bottom:621.653333pt;}
.y8f{bottom:622.053333pt;}
.y13e{bottom:622.213333pt;}
.y3d{bottom:625.013333pt;}
.y118{bottom:630.053333pt;}
.yc{bottom:631.813333pt;}
.y61{bottom:637.333333pt;}
.y8e{bottom:637.653333pt;}
.y13d{bottom:637.813333pt;}
.y117{bottom:645.653333pt;}
.yb{bottom:647.493333pt;}
.y60{bottom:652.933333pt;}
.y8d{bottom:653.333333pt;}
.y13c{bottom:653.413333pt;}
.y3c{bottom:656.933333pt;}
.y116{bottom:661.333333pt;}
.y5f{bottom:668.613333pt;}
.y8c{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y115{bottom:676.933333pt;}
.y13b{bottom:677.093333pt;}
.y5e{bottom:684.213333pt;}
.y8b{bottom:684.613333pt;}
.yf9{bottom:692.213333pt;}
.y114{bottom:692.613333pt;}
.y13a{bottom:692.693333pt;}
.y3b{bottom:699.813333pt;}
.y8a{bottom:700.213333pt;}
.y113{bottom:708.213333pt;}
.y9{bottom:714.293333pt;}
.y3a{bottom:715.493333pt;}
.y89{bottom:715.813333pt;}
.y139{bottom:716.613333pt;}
.yf8{bottom:723.813333pt;}
.y39{bottom:731.093333pt;}
.y88{bottom:731.493333pt;}
.yf7{bottom:739.493333pt;}
.y8{bottom:745.893333pt;}
.y38{bottom:746.693333pt;}
.y87{bottom:747.093333pt;}
.ya3{bottom:754.693333pt;}
.yf6{bottom:755.093333pt;}
.ycb{bottom:759.173333pt;}
.y138{bottom:759.573333pt;}
.y37{bottom:762.373333pt;}
.y86{bottom:762.693333pt;}
.y5d{bottom:770.373333pt;}
.yf5{bottom:770.693333pt;}
.yca{bottom:774.773333pt;}
.y137{bottom:775.173333pt;}
.y7{bottom:777.733333pt;}
.y36{bottom:777.973333pt;}
.y85{bottom:778.373333pt;}
.ya2{bottom:786.373333pt;}
.yc9{bottom:790.453333pt;}
.y136{bottom:790.773333pt;}
.y35{bottom:793.653333pt;}
.y5c{bottom:801.973333pt;}
.yc8{bottom:806.053333pt;}
.y135{bottom:806.453333pt;}
.y34{bottom:809.253333pt;}
.y6{bottom:809.733333pt;}
.y5b{bottom:817.653333pt;}
.ydb{bottom:817.973333pt;}
.yc7{bottom:821.733333pt;}
.y134{bottom:822.053333pt;}
.y33{bottom:832.853333pt;}
.y5a{bottom:833.253333pt;}
.y84{bottom:833.653333pt;}
.yc6{bottom:837.333333pt;}
.y133{bottom:837.733333pt;}
.y112{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y59{bottom:848.853333pt;}
.y83{bottom:849.253333pt;}
.yc5{bottom:852.933333pt;}
.y132{bottom:853.333333pt;}
.y32{bottom:864.533333pt;}
.y82{bottom:864.853333pt;}
.yc4{bottom:868.613333pt;}
.y131{bottom:868.933333pt;}
.y111{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y31{bottom:880.133333pt;}
.y81{bottom:880.533333pt;}
.yc3{bottom:884.213333pt;}
.y130{bottom:884.613333pt;}
.y110{bottom:888.533333pt;}
.y30{bottom:895.813333pt;}
.y80{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.yc2{bottom:899.840000pt;}
.y12f{bottom:900.240000pt;}
.y10f{bottom:904.160000pt;}
.y2f{bottom:911.440000pt;}
.y7f{bottom:911.840000pt;}
.yc1{bottom:915.520000pt;}
.y12e{bottom:915.840000pt;}
.yf4{bottom:919.440000pt;}
.y10e{bottom:919.840000pt;}
.y2e{bottom:927.040000pt;}
.y7e{bottom:927.440000pt;}
.yc0{bottom:931.120000pt;}
.y12d{bottom:931.520000pt;}
.y58{bottom:935.040000pt;}
.y10d{bottom:935.440000pt;}
.y2d{bottom:942.720000pt;}
.y7d{bottom:943.040000pt;}
.ybf{bottom:946.800000pt;}
.y12c{bottom:947.120000pt;}
.yf3{bottom:951.040000pt;}
.y7c{bottom:958.720000pt;}
.y12b{bottom:962.800000pt;}
.y2c{bottom:966.320000pt;}
.y57{bottom:966.720000pt;}
.ybe{bottom:970.400000pt;}
.y7b{bottom:974.320000pt;}
.y12a{bottom:978.400000pt;}
.y56{bottom:982.320000pt;}
.y7a{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.ybd{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h2{height:26.686562pt;}
.h11{height:31.200000pt;}
.h13{height:31.280000pt;}
.h12{height:31.306667pt;}
.h3{height:34.804688pt;}
.hc{height:39.280000pt;}
.h10{height:39.306667pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h14{height:54.927899pt;}
.he{height:54.960000pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:112.640000pt;}
.w7{width:128.560000pt;}
.w5{width:132.080000pt;}
.w3{width:134.266667pt;}
.wc{width:150.666667pt;}
.wa{width:156.426667pt;}
.w9{width:160.400000pt;}
.w6{width:161.546667pt;}
.w8{width:165.146667pt;}
.we{width:167.706667pt;}
.wd{width:170.000000pt;}
.wf{width:181.360000pt;}
.wb{width:187.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.x2{left:187.626655pt;}
.x5{left:196.026667pt;}
.xd{left:199.786655pt;}
.xe{left:212.426667pt;}
.x9{left:226.906667pt;}
.x6{left:309.386667pt;}
.xf{left:383.066667pt;}
.xa{left:387.946667pt;}
.x7{left:442.106667pt;}
.xb{left:545.093333pt;}
.x10{left:551.493333pt;}
.x8{left:604.293333pt;}
.xc{left:652.053322pt;}
.x3{left:711.413322pt;}
}




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