
    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_a9dc8715954fd68c18c5d02d.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_20cfcf928347ffa2d605e937.woff')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_59118d79b27f36f03161c41b.woff')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_bbb030971c53bcb85063c6d6.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_6e679169fa812ec975072aed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_0468c2326ada004dd5fdcc99.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b708ee3959a2a14c923f0d1b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ee257cb13d64dca6c4c94544.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls4{letter-spacing:-0.121200px;}
.ls3{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.063600px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.047520px;}
.ls6{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.074160px;}
.ls15{letter-spacing:0.116400px;}
.ls14{letter-spacing:0.138600px;}
.ls13{letter-spacing:0.143400px;}
.lsb{letter-spacing:0.173400px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.374760px;}
.ls17{letter-spacing:48.446640px;}
.ls9{letter-spacing:54.926640px;}
.ls10{letter-spacing:68.246640px;}
.ls16{letter-spacing:81.566640px;}
.ls7{letter-spacing:100.286640px;}
.lsa{letter-spacing:143.325360px;}
.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;}
}
.ws3{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.wse{word-spacing:-13.369800px;}
.wsf{word-spacing:-13.365000px;}
.ws10{word-spacing:-13.342800px;}
.ws7{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.246560px;}
.ws1{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:147.584880px;}
._b{margin-left:-4.061880px;}
._a{margin-left:-3.032640px;}
._16{margin-left:-2.029680px;}
._0{margin-left:-1.020000px;}
._3{width:1.257613px;}
._8{width:2.524800px;}
._9{width:3.607801px;}
._c{width:4.688999px;}
._f{width:6.132601px;}
._6{width:7.575000px;}
._7{width:8.958601px;}
._5{width:10.942201px;}
._4{width:12.084000px;}
._1{width:13.085364px;}
._2{width:14.091756px;}
._15{width:15.163222px;}
._10{width:16.473000px;}
._14{width:18.394680px;}
._d{width:19.539000px;}
._e{width:20.832720px;}
._17{width:22.025520px;}
._12{width:27.414720px;}
._13{width:28.915680px;}
._11{width:30.180240px;}
._18{width:33.546960px;}
._19{width:42.167880px;}
._1a{width:43.311600px;}
._1b{width:44.348520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.560000px;}
.y5a{bottom:111.990000px;}
.y16e{bottom:112.980000px;}
.y105{bottom:117.840000px;}
.y12e{bottom:119.730000px;}
.y157{bottom:124.680000px;}
.ydd{bottom:127.380000px;}
.y90{bottom:128.460000px;}
.y80{bottom:128.910000px;}
.y59{bottom:129.540000px;}
.y16d{bottom:130.530000px;}
.y104{bottom:135.390000px;}
.y12d{bottom:137.280000px;}
.y27{bottom:140.610000px;}
.y156{bottom:142.320000px;}
.ydc{bottom:144.930000px;}
.y8f{bottom:146.010000px;}
.y7f{bottom:146.460000px;}
.y16c{bottom:148.170000px;}
.y103{bottom:152.940000px;}
.y12c{bottom:154.920000px;}
.y26{bottom:158.250000px;}
.ydb{bottom:162.570000px;}
.y8e{bottom:163.560000px;}
.y7e{bottom:164.100000px;}
.y58{bottom:165.180000px;}
.y16b{bottom:165.720000px;}
.y102{bottom:170.580000px;}
.yb6{bottom:171.930000px;}
.y12b{bottom:172.470000px;}
.y25{bottom:175.800000px;}
.y155{bottom:177.870000px;}
.y7d{bottom:181.650000px;}
.y57{bottom:182.730000px;}
.y16a{bottom:183.270000px;}
.y101{bottom:188.130000px;}
.y12a{bottom:190.020000px;}
.y24{bottom:193.350000px;}
.y154{bottom:195.510000px;}
.yda{bottom:198.120000px;}
.y7c{bottom:199.200000px;}
.y56{bottom:200.370000px;}
.y169{bottom:200.910000px;}
.y100{bottom:205.680000px;}
.yb5{bottom:207.570000px;}
.y23{bottom:210.990000px;}
.y153{bottom:213.060000px;}
.yd9{bottom:215.760000px;}
.y129{bottom:216.570000px;}
.y55{bottom:217.920000px;}
.yff{bottom:223.320000px;}
.yb4{bottom:225.210000px;}
.y7b{bottom:225.840000px;}
.y22{bottom:228.540000px;}
.y152{bottom:230.610000px;}
.y8d{bottom:231.420000px;}
.yd8{bottom:233.310000px;}
.y54{bottom:235.470000px;}
.y168{bottom:236.460000px;}
.yfe{bottom:240.870000px;}
.y21{bottom:246.090000px;}
.y128{bottom:249.240000px;}
.yd7{bottom:250.860000px;}
.y167{bottom:254.100000px;}
.yfd{bottom:258.510000px;}
.yb3{bottom:260.760000px;}
.y7a{bottom:261.390000px;}
.y53{bottom:262.110000px;}
.y151{bottom:266.250000px;}
.yd6{bottom:268.500000px;}
.y166{bottom:271.650000px;}
.yfc{bottom:276.060000px;}
.yb2{bottom:278.400000px;}
.y79{bottom:278.940000px;}
.y20{bottom:281.730000px;}
.y150{bottom:283.800000px;}
.y127{bottom:284.790000px;}
.yd5{bottom:286.050000px;}
.y165{bottom:289.200000px;}
.yfb{bottom:293.610000px;}
.yb1{bottom:295.950000px;}
.y78{bottom:296.580000px;}
.y52{bottom:297.660000px;}
.y1f{bottom:299.280000px;}
.y14f{bottom:301.440000px;}
.y126{bottom:302.430000px;}
.yd4{bottom:303.690000px;}
.yfa{bottom:311.250000px;}
.y77{bottom:314.130000px;}
.y51{bottom:315.210000px;}
.y1e{bottom:316.920000px;}
.y14e{bottom:318.990000px;}
.y125{bottom:319.980000px;}
.y164{bottom:324.840000px;}
.yf9{bottom:328.800000px;}
.yd3{bottom:330.510000px;}
.yb0{bottom:331.590000px;}
.y76{bottom:331.770000px;}
.y50{bottom:332.850000px;}
.y1d{bottom:334.470000px;}
.y124{bottom:337.530000px;}
.y187{bottom:341.130000px;}
.y163{bottom:342.390000px;}
.y14d{bottom:345.540000px;}
.yf8{bottom:346.440000px;}
.yaf{bottom:349.230000px;}
.y4f{bottom:350.400000px;}
.y1c{bottom:352.020000px;}
.y123{bottom:355.170000px;}
.y75{bottom:358.680000px;}
.y162{bottom:359.940000px;}
.yf7{bottom:363.990000px;}
.y186{bottom:367.770000px;}
.y4e{bottom:368.040000px;}
.y1b{bottom:369.660000px;}
.y122{bottom:372.720000px;}
.yae{bottom:375.780000px;}
.y161{bottom:377.580000px;}
.yd2{bottom:378.840000px;}
.y14c{bottom:381.180000px;}
.y185{bottom:385.320000px;}
.y4d{bottom:385.590000px;}
.y160{bottom:395.130000px;}
.yd1{bottom:396.390000px;}
.y14b{bottom:398.730000px;}
.yf6{bottom:399.540000px;}
.y121{bottom:399.630000px;}
.y184{bottom:402.870000px;}
.y1a{bottom:405.210000px;}
.y74{bottom:406.920000px;}
.yad{bottom:411.420000px;}
.y4c{bottom:412.500000px;}
.y15f{bottom:412.770000px;}
.y14a{bottom:416.370000px;}
.yf5{bottom:417.180000px;}
.y19{bottom:422.850000px;}
.y73{bottom:424.470000px;}
.yac{bottom:428.970000px;}
.y183{bottom:429.510000px;}
.y15e{bottom:430.320000px;}
.yd0{bottom:431.940000px;}
.y149{bottom:433.920000px;}
.yf4{bottom:434.730000px;}
.y18{bottom:440.400000px;}
.y72{bottom:442.110000px;}
.yab{bottom:446.520000px;}
.y182{bottom:447.060000px;}
.y120{bottom:447.870000px;}
.ycf{bottom:449.580000px;}
.y148{bottom:451.470000px;}
.yf3{bottom:452.370000px;}
.y17{bottom:457.950000px;}
.y71{bottom:459.660000px;}
.y4b{bottom:460.740000px;}
.y11f{bottom:465.510000px;}
.yce{bottom:467.130000px;}
.y147{bottom:469.110000px;}
.yf2{bottom:469.950000px;}
.y181{bottom:473.730000px;}
.y16{bottom:475.620000px;}
.y70{bottom:477.330000px;}
.y4a{bottom:478.320000px;}
.yaa{bottom:482.190000px;}
.y11e{bottom:483.090000px;}
.y15d{bottom:483.540000px;}
.y146{bottom:486.690000px;}
.yf1{bottom:487.500000px;}
.y180{bottom:491.280000px;}
.y15{bottom:493.170000px;}
.ycd{bottom:493.800000px;}
.y49{bottom:495.960000px;}
.ya9{bottom:499.740000px;}
.y11d{bottom:500.730000px;}
.y15c{bottom:501.090000px;}
.y6f{bottom:503.880000px;}
.y145{bottom:504.330000px;}
.yf0{bottom:505.140000px;}
.y14{bottom:510.810000px;}
.y48{bottom:513.510000px;}
.ya8{bottom:517.290000px;}
.y17f{bottom:517.830000px;}
.y11c{bottom:518.280000px;}
.y15b{bottom:518.730000px;}
.y144{bottom:521.880000px;}
.yef{bottom:522.690000px;}
.ycc{bottom:529.440000px;}
.y47{bottom:531.240000px;}
.y15a{bottom:536.280000px;}
.y13{bottom:537.720000px;}
.y6e{bottom:539.430000px;}
.y17e{bottom:544.470000px;}
.ycb{bottom:546.990000px;}
.y143{bottom:548.430000px;}
.y46{bottom:548.790000px;}
.ya7{bottom:553.020000px;}
.y11b{bottom:553.830000px;}
.y6d{bottom:557.070000px;}
.yee{bottom:558.330000px;}
.yca{bottom:564.630000px;}
.y45{bottom:566.430000px;}
.ya6{bottom:570.570000px;}
.y17d{bottom:571.020000px;}
.y11a{bottom:571.470000px;}
.y6c{bottom:574.620000px;}
.yed{bottom:575.880000px;}
.y142{bottom:581.010000px;}
.yc9{bottom:582.180000px;}
.y44{bottom:583.980000px;}
.y12{bottom:585.960000px;}
.y17c{bottom:588.660000px;}
.y119{bottom:589.020000px;}
.y6b{bottom:592.260000px;}
.yec{bottom:593.430000px;}
.ya5{bottom:597.120000px;}
.yc8{bottom:599.820000px;}
.y43{bottom:601.620000px;}
.y11{bottom:603.870000px;}
.yeb{bottom:611.070000px;}
.y17b{bottom:615.210000px;}
.y141{bottom:616.650000px;}
.yc7{bottom:617.370000px;}
.y42{bottom:619.170000px;}
.y118{bottom:624.660000px;}
.y6a{bottom:627.810000px;}
.yea{bottom:628.620000px;}
.ya4{bottom:632.760000px;}
.y140{bottom:634.200000px;}
.y8c{bottom:636.810000px;}
.y10{bottom:640.860000px;}
.y117{bottom:642.210000px;}
.y69{bottom:645.360000px;}
.ye9{bottom:646.260000px;}
.ya3{bottom:650.310000px;}
.y13f{bottom:651.840000px;}
.yc6{bottom:653.010000px;}
.y41{bottom:654.810000px;}
.yf{bottom:658.500000px;}
.y17a{bottom:659.400000px;}
.y116{bottom:659.760000px;}
.y68{bottom:663.000000px;}
.ye8{bottom:663.810000px;}
.ya2{bottom:667.950000px;}
.y13e{bottom:669.390000px;}
.y40{bottom:672.360000px;}
.ye{bottom:676.050000px;}
.y179{bottom:676.950000px;}
.y115{bottom:677.400000px;}
.yc5{bottom:679.650000px;}
.y67{bottom:680.550000px;}
.ye7{bottom:681.360000px;}
.y13d{bottom:686.940000px;}
.y3f{bottom:690.000000px;}
.yd{bottom:693.600000px;}
.y114{bottom:694.950000px;}
.ya1{bottom:703.500000px;}
.y178{bottom:703.590000px;}
.y13c{bottom:704.580000px;}
.y66{bottom:707.190000px;}
.y8b{bottom:707.550000px;}
.yc{bottom:711.240000px;}
.y113{bottom:712.590000px;}
.yc4{bottom:715.200000px;}
.y3e{bottom:716.550000px;}
.ye6{bottom:717.000000px;}
.ya0{bottom:721.050000px;}
.y177{bottom:721.140000px;}
.y8a{bottom:725.190000px;}
.yb{bottom:728.790000px;}
.y112{bottom:730.140000px;}
.y13b{bottom:731.130000px;}
.yc3{bottom:732.750000px;}
.ye5{bottom:734.550000px;}
.y9f{bottom:738.690000px;}
.y65{bottom:742.740000px;}
.y159{bottom:748.140000px;}
.y13a{bottom:748.680000px;}
.y3d{bottom:752.190000px;}
.ya{bottom:755.700000px;}
.y64{bottom:760.290000px;}
.y89{bottom:760.740000px;}
.y176{bottom:765.330000px;}
.y111{bottom:765.690000px;}
.yc2{bottom:768.300000px;}
.y3c{bottom:769.740000px;}
.y9e{bottom:774.330000px;}
.y63{bottom:777.930000px;}
.y88{bottom:778.290000px;}
.y139{bottom:781.350000px;}
.y175{bottom:782.880000px;}
.y110{bottom:783.330000px;}
.yc1{bottom:785.940000px;}
.y3b{bottom:787.290000px;}
.y9d{bottom:791.880000px;}
.y87{bottom:795.930000px;}
.y174{bottom:800.520000px;}
.y10f{bottom:800.880000px;}
.y9{bottom:804.030000px;}
.y3a{bottom:804.930000px;}
.ye4{bottom:805.290000px;}
.y9c{bottom:809.520000px;}
.y62{bottom:813.480000px;}
.y138{bottom:816.900000px;}
.y10e{bottom:818.520000px;}
.yc0{bottom:821.580000px;}
.y39{bottom:822.480000px;}
.ye3{bottom:822.930000px;}
.y173{bottom:827.070000px;}
.y61{bottom:831.030000px;}
.y137{bottom:834.450000px;}
.y9b{bottom:836.070000px;}
.ybf{bottom:839.220000px;}
.y8{bottom:839.580000px;}
.y38{bottom:840.030000px;}
.ye2{bottom:840.480000px;}
.y172{bottom:844.620000px;}
.y60{bottom:848.670000px;}
.y136{bottom:852.090000px;}
.y10d{bottom:853.620000px;}
.ye1{bottom:858.030000px;}
.y171{bottom:862.260000px;}
.ybe{bottom:865.770000px;}
.y5f{bottom:866.220000px;}
.y135{bottom:869.640000px;}
.y10c{bottom:871.260000px;}
.y9a{bottom:871.620000px;}
.y7{bottom:875.130000px;}
.y37{bottom:875.670000px;}
.y158{bottom:880.530000px;}
.y86{bottom:884.220000px;}
.y134{bottom:887.280000px;}
.y10b{bottom:888.810000px;}
.y99{bottom:889.260000px;}
.y5e{bottom:892.860000px;}
.y36{bottom:893.220000px;}
.ybd{bottom:901.320000px;}
.y85{bottom:901.860000px;}
.y133{bottom:904.830000px;}
.y10a{bottom:906.450000px;}
.y98{bottom:906.810000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.ybc{bottom:918.960000px;}
.y84{bottom:919.410000px;}
.y132{bottom:922.380000px;}
.y97{bottom:924.450000px;}
.y34{bottom:928.410000px;}
.ye0{bottom:928.860000px;}
.y170{bottom:933.000000px;}
.ybb{bottom:936.510000px;}
.y83{bottom:936.960000px;}
.y131{bottom:940.020000px;}
.y109{bottom:942.000000px;}
.y33{bottom:945.960000px;}
.ydf{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y16f{bottom:950.550000px;}
.y96{bottom:951.270000px;}
.y82{bottom:954.600000px;}
.y108{bottom:959.550000px;}
.y5d{bottom:963.600000px;}
.yde{bottom:963.960000px;}
.y130{bottom:966.570000px;}
.yba{bottom:972.150000px;}
.y107{bottom:977.190000px;}
.y5c{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y12f{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.yb9{bottom:989.700000px;}
.y31{bottom:999.150000px;}
.y95{bottom:999.600000px;}
.y106{bottom:1004.100000px;}
.yb8{bottom:1007.250000px;}
.y3{bottom:1010.070000px;}
.y30{bottom:1016.820000px;}
.y94{bottom:1017.180000px;}
.y2f{bottom:1034.370000px;}
.y93{bottom:1034.820000px;}
.yb7{bottom:1042.920000px;}
.y2e{bottom:1051.920000px;}
.y92{bottom:1052.370000px;}
.y5b{bottom:1069.560000px;}
.y91{bottom:1069.920000px;}
.y81{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:27.720703px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h7{height:60.960938px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x8{left:78.659987px;}
.x4{left:95.039987px;}
.x5{left:122.039987px;}
.x2{left:211.079987px;}
.x7{left:240.509987px;}
.x6{left:573.269987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls4{letter-spacing:-0.107733pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.042240pt;}
.ls6{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.065920pt;}
.ls15{letter-spacing:0.103467pt;}
.ls14{letter-spacing:0.123200pt;}
.ls13{letter-spacing:0.127467pt;}
.lsb{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.333120pt;}
.ls17{letter-spacing:43.063680pt;}
.ls9{letter-spacing:48.823680pt;}
.ls10{letter-spacing:60.663680pt;}
.ls16{letter-spacing:72.503680pt;}
.ls7{letter-spacing:89.143680pt;}
.lsa{letter-spacing:127.400320pt;}
.ws3{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.884267pt;}
.wsf{word-spacing:-11.880000pt;}
.ws10{word-spacing:-11.860267pt;}
.ws7{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.774720pt;}
.ws1{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:131.186560pt;}
._b{margin-left:-3.610560pt;}
._a{margin-left:-2.695680pt;}
._16{margin-left:-1.804160pt;}
._0{margin-left:-0.906667pt;}
._3{width:1.117878pt;}
._8{width:2.244266pt;}
._9{width:3.206934pt;}
._c{width:4.167999pt;}
._f{width:5.451201pt;}
._6{width:6.733333pt;}
._7{width:7.963201pt;}
._5{width:9.726401pt;}
._4{width:10.741333pt;}
._1{width:11.631435pt;}
._2{width:12.526005pt;}
._15{width:13.478420pt;}
._10{width:14.642667pt;}
._14{width:16.350827pt;}
._d{width:17.368000pt;}
._e{width:18.517973pt;}
._17{width:19.578240pt;}
._12{width:24.368640pt;}
._13{width:25.702827pt;}
._11{width:26.826880pt;}
._18{width:29.819520pt;}
._19{width:37.482560pt;}
._1a{width:38.499200pt;}
._1b{width:39.420907pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.386667pt;}
.y5a{bottom:99.546667pt;}
.y16e{bottom:100.426667pt;}
.y105{bottom:104.746667pt;}
.y12e{bottom:106.426667pt;}
.y157{bottom:110.826667pt;}
.ydd{bottom:113.226667pt;}
.y90{bottom:114.186667pt;}
.y80{bottom:114.586667pt;}
.y59{bottom:115.146667pt;}
.y16d{bottom:116.026667pt;}
.y104{bottom:120.346667pt;}
.y12d{bottom:122.026667pt;}
.y27{bottom:124.986667pt;}
.y156{bottom:126.506667pt;}
.ydc{bottom:128.826667pt;}
.y8f{bottom:129.786667pt;}
.y7f{bottom:130.186667pt;}
.y16c{bottom:131.706667pt;}
.y103{bottom:135.946667pt;}
.y12c{bottom:137.706667pt;}
.y26{bottom:140.666667pt;}
.ydb{bottom:144.506667pt;}
.y8e{bottom:145.386667pt;}
.y7e{bottom:145.866667pt;}
.y58{bottom:146.826667pt;}
.y16b{bottom:147.306667pt;}
.y102{bottom:151.626667pt;}
.yb6{bottom:152.826667pt;}
.y12b{bottom:153.306667pt;}
.y25{bottom:156.266667pt;}
.y155{bottom:158.106667pt;}
.y7d{bottom:161.466667pt;}
.y57{bottom:162.426667pt;}
.y16a{bottom:162.906667pt;}
.y101{bottom:167.226667pt;}
.y12a{bottom:168.906667pt;}
.y24{bottom:171.866667pt;}
.y154{bottom:173.786667pt;}
.yda{bottom:176.106667pt;}
.y7c{bottom:177.066667pt;}
.y56{bottom:178.106667pt;}
.y169{bottom:178.586667pt;}
.y100{bottom:182.826667pt;}
.yb5{bottom:184.506667pt;}
.y23{bottom:187.546667pt;}
.y153{bottom:189.386667pt;}
.yd9{bottom:191.786667pt;}
.y129{bottom:192.506667pt;}
.y55{bottom:193.706667pt;}
.yff{bottom:198.506667pt;}
.yb4{bottom:200.186667pt;}
.y7b{bottom:200.746667pt;}
.y22{bottom:203.146667pt;}
.y152{bottom:204.986667pt;}
.y8d{bottom:205.706667pt;}
.yd8{bottom:207.386667pt;}
.y54{bottom:209.306667pt;}
.y168{bottom:210.186667pt;}
.yfe{bottom:214.106667pt;}
.y21{bottom:218.746667pt;}
.y128{bottom:221.546667pt;}
.yd7{bottom:222.986667pt;}
.y167{bottom:225.866667pt;}
.yfd{bottom:229.786667pt;}
.yb3{bottom:231.786667pt;}
.y7a{bottom:232.346667pt;}
.y53{bottom:232.986667pt;}
.y151{bottom:236.666667pt;}
.yd6{bottom:238.666667pt;}
.y166{bottom:241.466667pt;}
.yfc{bottom:245.386667pt;}
.yb2{bottom:247.466667pt;}
.y79{bottom:247.946667pt;}
.y20{bottom:250.426667pt;}
.y150{bottom:252.266667pt;}
.y127{bottom:253.146667pt;}
.yd5{bottom:254.266667pt;}
.y165{bottom:257.066667pt;}
.yfb{bottom:260.986667pt;}
.yb1{bottom:263.066667pt;}
.y78{bottom:263.626667pt;}
.y52{bottom:264.586667pt;}
.y1f{bottom:266.026667pt;}
.y14f{bottom:267.946667pt;}
.y126{bottom:268.826667pt;}
.yd4{bottom:269.946667pt;}
.yfa{bottom:276.666667pt;}
.y77{bottom:279.226667pt;}
.y51{bottom:280.186667pt;}
.y1e{bottom:281.706667pt;}
.y14e{bottom:283.546667pt;}
.y125{bottom:284.426667pt;}
.y164{bottom:288.746667pt;}
.yf9{bottom:292.266667pt;}
.yd3{bottom:293.786667pt;}
.yb0{bottom:294.746667pt;}
.y76{bottom:294.906667pt;}
.y50{bottom:295.866667pt;}
.y1d{bottom:297.306667pt;}
.y124{bottom:300.026667pt;}
.y187{bottom:303.226667pt;}
.y163{bottom:304.346667pt;}
.y14d{bottom:307.146667pt;}
.yf8{bottom:307.946667pt;}
.yaf{bottom:310.426667pt;}
.y4f{bottom:311.466667pt;}
.y1c{bottom:312.906667pt;}
.y123{bottom:315.706667pt;}
.y75{bottom:318.826667pt;}
.y162{bottom:319.946667pt;}
.yf7{bottom:323.546667pt;}
.y186{bottom:326.906667pt;}
.y4e{bottom:327.146667pt;}
.y1b{bottom:328.586667pt;}
.y122{bottom:331.306667pt;}
.yae{bottom:334.026667pt;}
.y161{bottom:335.626667pt;}
.yd2{bottom:336.746667pt;}
.y14c{bottom:338.826667pt;}
.y185{bottom:342.506667pt;}
.y4d{bottom:342.746667pt;}
.y160{bottom:351.226667pt;}
.yd1{bottom:352.346667pt;}
.y14b{bottom:354.426667pt;}
.yf6{bottom:355.146667pt;}
.y121{bottom:355.226667pt;}
.y184{bottom:358.106667pt;}
.y1a{bottom:360.186667pt;}
.y74{bottom:361.706667pt;}
.yad{bottom:365.706667pt;}
.y4c{bottom:366.666667pt;}
.y15f{bottom:366.906667pt;}
.y14a{bottom:370.106667pt;}
.yf5{bottom:370.826667pt;}
.y19{bottom:375.866667pt;}
.y73{bottom:377.306667pt;}
.yac{bottom:381.306667pt;}
.y183{bottom:381.786667pt;}
.y15e{bottom:382.506667pt;}
.yd0{bottom:383.946667pt;}
.y149{bottom:385.706667pt;}
.yf4{bottom:386.426667pt;}
.y18{bottom:391.466667pt;}
.y72{bottom:392.986667pt;}
.yab{bottom:396.906667pt;}
.y182{bottom:397.386667pt;}
.y120{bottom:398.106667pt;}
.ycf{bottom:399.626667pt;}
.y148{bottom:401.306667pt;}
.yf3{bottom:402.106667pt;}
.y17{bottom:407.066667pt;}
.y71{bottom:408.586667pt;}
.y4b{bottom:409.546667pt;}
.y11f{bottom:413.786667pt;}
.yce{bottom:415.226667pt;}
.y147{bottom:416.986667pt;}
.yf2{bottom:417.733333pt;}
.y181{bottom:421.093333pt;}
.y16{bottom:422.773333pt;}
.y70{bottom:424.293333pt;}
.y4a{bottom:425.173333pt;}
.yaa{bottom:428.613333pt;}
.y11e{bottom:429.413333pt;}
.y15d{bottom:429.813333pt;}
.y146{bottom:432.613333pt;}
.yf1{bottom:433.333333pt;}
.y180{bottom:436.693333pt;}
.y15{bottom:438.373333pt;}
.ycd{bottom:438.933333pt;}
.y49{bottom:440.853333pt;}
.ya9{bottom:444.213333pt;}
.y11d{bottom:445.093333pt;}
.y15c{bottom:445.413333pt;}
.y6f{bottom:447.893333pt;}
.y145{bottom:448.293333pt;}
.yf0{bottom:449.013333pt;}
.y14{bottom:454.053333pt;}
.y48{bottom:456.453333pt;}
.ya8{bottom:459.813333pt;}
.y17f{bottom:460.293333pt;}
.y11c{bottom:460.693333pt;}
.y15b{bottom:461.093333pt;}
.y144{bottom:463.893333pt;}
.yef{bottom:464.613333pt;}
.ycc{bottom:470.613333pt;}
.y47{bottom:472.213333pt;}
.y15a{bottom:476.693333pt;}
.y13{bottom:477.973333pt;}
.y6e{bottom:479.493333pt;}
.y17e{bottom:483.973333pt;}
.ycb{bottom:486.213333pt;}
.y143{bottom:487.493333pt;}
.y46{bottom:487.813333pt;}
.ya7{bottom:491.573333pt;}
.y11b{bottom:492.293333pt;}
.y6d{bottom:495.173333pt;}
.yee{bottom:496.293333pt;}
.yca{bottom:501.893333pt;}
.y45{bottom:503.493333pt;}
.ya6{bottom:507.173333pt;}
.y17d{bottom:507.573333pt;}
.y11a{bottom:507.973333pt;}
.y6c{bottom:510.773333pt;}
.yed{bottom:511.893333pt;}
.y142{bottom:516.453333pt;}
.yc9{bottom:517.493333pt;}
.y44{bottom:519.093333pt;}
.y12{bottom:520.853333pt;}
.y17c{bottom:523.253333pt;}
.y119{bottom:523.573333pt;}
.y6b{bottom:526.453333pt;}
.yec{bottom:527.493333pt;}
.ya5{bottom:530.773333pt;}
.yc8{bottom:533.173333pt;}
.y43{bottom:534.773333pt;}
.y11{bottom:536.773333pt;}
.yeb{bottom:543.173333pt;}
.y17b{bottom:546.853333pt;}
.y141{bottom:548.133333pt;}
.yc7{bottom:548.773333pt;}
.y42{bottom:550.373333pt;}
.y118{bottom:555.253333pt;}
.y6a{bottom:558.053333pt;}
.yea{bottom:558.773333pt;}
.ya4{bottom:562.453333pt;}
.y140{bottom:563.733333pt;}
.y8c{bottom:566.053333pt;}
.y10{bottom:569.653333pt;}
.y117{bottom:570.853333pt;}
.y69{bottom:573.653333pt;}
.ye9{bottom:574.453333pt;}
.ya3{bottom:578.053333pt;}
.y13f{bottom:579.413333pt;}
.yc6{bottom:580.453333pt;}
.y41{bottom:582.053333pt;}
.yf{bottom:585.333333pt;}
.y17a{bottom:586.133333pt;}
.y116{bottom:586.453333pt;}
.y68{bottom:589.333333pt;}
.ye8{bottom:590.053333pt;}
.ya2{bottom:593.733333pt;}
.y13e{bottom:595.013333pt;}
.y40{bottom:597.653333pt;}
.ye{bottom:600.933333pt;}
.y179{bottom:601.733333pt;}
.y115{bottom:602.133333pt;}
.yc5{bottom:604.133333pt;}
.y67{bottom:604.933333pt;}
.ye7{bottom:605.653333pt;}
.y13d{bottom:610.613333pt;}
.y3f{bottom:613.333333pt;}
.yd{bottom:616.533333pt;}
.y114{bottom:617.733333pt;}
.ya1{bottom:625.333333pt;}
.y178{bottom:625.413333pt;}
.y13c{bottom:626.293333pt;}
.y66{bottom:628.613333pt;}
.y8b{bottom:628.933333pt;}
.yc{bottom:632.213333pt;}
.y113{bottom:633.413333pt;}
.yc4{bottom:635.733333pt;}
.y3e{bottom:636.933333pt;}
.ye6{bottom:637.333333pt;}
.ya0{bottom:640.933333pt;}
.y177{bottom:641.013333pt;}
.y8a{bottom:644.613333pt;}
.yb{bottom:647.813333pt;}
.y112{bottom:649.013333pt;}
.y13b{bottom:649.893333pt;}
.yc3{bottom:651.333333pt;}
.ye5{bottom:652.933333pt;}
.y9f{bottom:656.613333pt;}
.y65{bottom:660.213333pt;}
.y159{bottom:665.013333pt;}
.y13a{bottom:665.493333pt;}
.y3d{bottom:668.613333pt;}
.ya{bottom:671.733333pt;}
.y64{bottom:675.813333pt;}
.y89{bottom:676.213333pt;}
.y176{bottom:680.293333pt;}
.y111{bottom:680.613333pt;}
.yc2{bottom:682.933333pt;}
.y3c{bottom:684.213333pt;}
.y9e{bottom:688.293333pt;}
.y63{bottom:691.493333pt;}
.y88{bottom:691.813333pt;}
.y139{bottom:694.533333pt;}
.y175{bottom:695.893333pt;}
.y110{bottom:696.293333pt;}
.yc1{bottom:698.613333pt;}
.y3b{bottom:699.813333pt;}
.y9d{bottom:703.893333pt;}
.y87{bottom:707.493333pt;}
.y174{bottom:711.573333pt;}
.y10f{bottom:711.893333pt;}
.y9{bottom:714.693333pt;}
.y3a{bottom:715.493333pt;}
.ye4{bottom:715.813333pt;}
.y9c{bottom:719.573333pt;}
.y62{bottom:723.093333pt;}
.y138{bottom:726.133333pt;}
.y10e{bottom:727.573333pt;}
.yc0{bottom:730.293333pt;}
.y39{bottom:731.093333pt;}
.ye3{bottom:731.493333pt;}
.y173{bottom:735.173333pt;}
.y61{bottom:738.693333pt;}
.y137{bottom:741.733333pt;}
.y9b{bottom:743.173333pt;}
.ybf{bottom:745.973333pt;}
.y8{bottom:746.293333pt;}
.y38{bottom:746.693333pt;}
.ye2{bottom:747.093333pt;}
.y172{bottom:750.773333pt;}
.y60{bottom:754.373333pt;}
.y136{bottom:757.413333pt;}
.y10d{bottom:758.773333pt;}
.ye1{bottom:762.693333pt;}
.y171{bottom:766.453333pt;}
.ybe{bottom:769.573333pt;}
.y5f{bottom:769.973333pt;}
.y135{bottom:773.013333pt;}
.y10c{bottom:774.453333pt;}
.y9a{bottom:774.773333pt;}
.y7{bottom:777.893333pt;}
.y37{bottom:778.373333pt;}
.y158{bottom:782.693333pt;}
.y86{bottom:785.973333pt;}
.y134{bottom:788.693333pt;}
.y10b{bottom:790.053333pt;}
.y99{bottom:790.453333pt;}
.y5e{bottom:793.653333pt;}
.y36{bottom:793.973333pt;}
.ybd{bottom:801.173333pt;}
.y85{bottom:801.653333pt;}
.y133{bottom:804.293333pt;}
.y10a{bottom:805.733333pt;}
.y98{bottom:806.053333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.ybc{bottom:816.853333pt;}
.y84{bottom:817.253333pt;}
.y132{bottom:819.893333pt;}
.y97{bottom:821.733333pt;}
.y34{bottom:825.253333pt;}
.ye0{bottom:825.653333pt;}
.y170{bottom:829.333333pt;}
.ybb{bottom:832.453333pt;}
.y83{bottom:832.853333pt;}
.y131{bottom:835.573333pt;}
.y109{bottom:837.333333pt;}
.y33{bottom:840.853333pt;}
.ydf{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y16f{bottom:844.933333pt;}
.y96{bottom:845.573333pt;}
.y82{bottom:848.533333pt;}
.y108{bottom:852.933333pt;}
.y5d{bottom:856.533333pt;}
.yde{bottom:856.853333pt;}
.y130{bottom:859.173333pt;}
.yba{bottom:864.133333pt;}
.y107{bottom:868.613333pt;}
.y5c{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y12f{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.yb9{bottom:879.733333pt;}
.y31{bottom:888.133333pt;}
.y95{bottom:888.533333pt;}
.y106{bottom:892.533333pt;}
.yb8{bottom:895.333333pt;}
.y3{bottom:897.840000pt;}
.y30{bottom:903.840000pt;}
.y94{bottom:904.160000pt;}
.y2f{bottom:919.440000pt;}
.y93{bottom:919.840000pt;}
.yb7{bottom:927.040000pt;}
.y2e{bottom:935.040000pt;}
.y92{bottom:935.440000pt;}
.y5b{bottom:950.720000pt;}
.y91{bottom:951.040000pt;}
.y81{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:24.640625pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h7{height:54.187500pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x8{left:69.919988pt;}
.x4{left:84.479988pt;}
.x5{left:108.479988pt;}
.x2{left:187.626655pt;}
.x7{left:213.786655pt;}
.x6{left:509.573322pt;}
.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; }
  