
    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_44ab2ef4ff2bc355e74aa6bc.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_4dcbeac1775db1b44fd0ff86.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_d1b23fe01c131790833140a4.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_18a3ea6f095ed2fcf8cbd732.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_2999bd48ba9ed98507ab23a2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a959847325b68da17940e2e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e4f419accdc397e479a56133.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_88e3706f34a114d8b5f9bdd9.woff')format("woff");}.ff8{font-family:ff8;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;}
.lsc{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.064800px;}
.lsf{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.098400px;}
.ls13{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls15{letter-spacing:63.566640px;}
.ls17{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;}
.ws3{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.294800px;}
.ws7{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._d{margin-left:-3.654000px;}
._5{margin-left:-2.238000px;}
._0{margin-left:-1.110000px;}
._2{width:1.065841px;}
._3{width:3.006000px;}
._a{width:4.088400px;}
._4{width:5.556239px;}
._11{width:6.582247px;}
._12{width:7.761484px;}
._7{width:9.345598px;}
._6{width:10.401000px;}
._f{width:11.871480px;}
._1{width:13.972128px;}
._e{width:15.307200px;}
._14{width:16.472880px;}
._18{width:17.795520px;}
._19{width:19.314839px;}
._9{width:20.800799px;}
._8{width:22.124400px;}
._10{width:23.386440px;}
._13{width:24.408960px;}
._1b{width:25.490640px;}
._15{width:26.573040px;}
._16{width:27.895680px;}
._17{width:30.120120px;}
._c{width:31.208040px;}
._b{width:32.607360px;}
._1a{width:34.448760px;}
._21{width:49.809240px;}
._1f{width:68.205960px;}
._20{width:69.438960px;}
._1c{width:74.819880px;}
._1e{width:77.486040px;}
._1d{width:93.354600px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y10a{bottom:111.990000px;}
.y5b{bottom:116.940000px;}
.ye0{bottom:119.910000px;}
.y14e{bottom:126.930000px;}
.y109{bottom:129.630000px;}
.y26{bottom:132.600000px;}
.y5a{bottom:134.580000px;}
.ydf{bottom:137.460000px;}
.y127{bottom:140.430000px;}
.y197{bottom:142.680000px;}
.ya1{bottom:146.100000px;}
.y108{bottom:147.180000px;}
.y25{bottom:150.240000px;}
.y59{bottom:152.130000px;}
.y76{bottom:152.580000px;}
.y126{bottom:158.070000px;}
.y196{bottom:160.230000px;}
.y14d{bottom:162.480000px;}
.ya0{bottom:163.650000px;}
.yde{bottom:164.100000px;}
.y107{bottom:164.730000px;}
.ybe{bottom:169.680000px;}
.y75{bottom:170.130000px;}
.y125{bottom:175.620000px;}
.y24{bottom:176.790000px;}
.y58{bottom:178.680000px;}
.y14c{bottom:180.030000px;}
.y9f{bottom:181.200000px;}
.y175{bottom:186.600000px;}
.y195{bottom:187.140000px;}
.y74{bottom:187.680000px;}
.y106{bottom:191.370000px;}
.ybd{bottom:196.320000px;}
.y14b{bottom:197.670000px;}
.y9e{bottom:198.840000px;}
.ydd{bottom:199.650000px;}
.y124{bottom:202.260000px;}
.y174{bottom:204.240000px;}
.y73{bottom:205.320000px;}
.y23{bottom:212.340000px;}
.y57{bottom:214.320000px;}
.y14a{bottom:215.220000px;}
.y9d{bottom:216.390000px;}
.ydc{bottom:217.200000px;}
.y173{bottom:221.790000px;}
.y72{bottom:222.870000px;}
.y105{bottom:226.920000px;}
.y22{bottom:229.980000px;}
.y56{bottom:231.870000px;}
.ydb{bottom:234.840000px;}
.y194{bottom:235.470000px;}
.y123{bottom:237.810000px;}
.y172{bottom:239.430000px;}
.y71{bottom:240.510000px;}
.y149{bottom:241.860000px;}
.y9c{bottom:242.940000px;}
.y104{bottom:244.470000px;}
.y21{bottom:247.530000px;}
.y55{bottom:249.510000px;}
.yda{bottom:252.390000px;}
.y122{bottom:255.360000px;}
.y70{bottom:258.060000px;}
.y103{bottom:262.110000px;}
.y193{bottom:262.290000px;}
.y20{bottom:265.170000px;}
.y171{bottom:265.980000px;}
.y54{bottom:267.060000px;}
.y121{bottom:273.000000px;}
.y148{bottom:277.410000px;}
.y9b{bottom:278.580000px;}
.yd9{bottom:278.940000px;}
.y102{bottom:279.660000px;}
.y1f{bottom:282.720000px;}
.y53{bottom:284.610000px;}
.y120{bottom:290.550000px;}
.y6f{bottom:293.610000px;}
.y147{bottom:294.960000px;}
.y9a{bottom:296.130000px;}
.y101{bottom:297.300000px;}
.y192{bottom:299.370000px;}
.y1e{bottom:300.270000px;}
.y170{bottom:301.530000px;}
.ybc{bottom:302.250000px;}
.y11f{bottom:308.190000px;}
.y6e{bottom:311.250000px;}
.y146{bottom:312.600000px;}
.yd8{bottom:314.850000px;}
.y1d{bottom:317.910000px;}
.y16f{bottom:319.170000px;}
.ybb{bottom:319.800000px;}
.y52{bottom:320.250000px;}
.y11e{bottom:325.740000px;}
.y191{bottom:326.280000px;}
.y6d{bottom:328.800000px;}
.y145{bottom:330.150000px;}
.y99{bottom:331.770000px;}
.y100{bottom:332.400000px;}
.yba{bottom:337.440000px;}
.y51{bottom:337.800000px;}
.y1c{bottom:344.820000px;}
.y16e{bottom:345.720000px;}
.y6c{bottom:346.440000px;}
.y144{bottom:347.790000px;}
.y98{bottom:349.320000px;}
.yff{bottom:350.040000px;}
.y11d{bottom:352.290000px;}
.y50{bottom:355.440000px;}
.yd7{bottom:363.180000px;}
.y190{bottom:363.270000px;}
.y6b{bottom:363.990000px;}
.y4f{bottom:372.990000px;}
.y143{bottom:374.340000px;}
.yd6{bottom:380.730000px;}
.y16d{bottom:381.360000px;}
.y6a{bottom:381.540000px;}
.y97{bottom:384.870000px;}
.yfe{bottom:385.590000px;}
.y11c{bottom:387.930000px;}
.y18f{bottom:390.180000px;}
.y4e{bottom:390.540000px;}
.y1b{bottom:393.060000px;}
.yd5{bottom:398.370000px;}
.y16c{bottom:398.910000px;}
.y96{bottom:402.510000px;}
.yfd{bottom:403.230000px;}
.y11b{bottom:405.480000px;}
.y4d{bottom:408.180000px;}
.y142{bottom:409.890000px;}
.y1a{bottom:410.970000px;}
.yd4{bottom:415.920000px;}
.y16b{bottom:416.460000px;}
.yfc{bottom:420.780000px;}
.y11a{bottom:423.120000px;}
.y4c{bottom:425.730000px;}
.y141{bottom:427.530000px;}
.yd3{bottom:433.470000px;}
.y16a{bottom:434.100000px;}
.y95{bottom:438.060000px;}
.yfb{bottom:438.330000px;}
.y119{bottom:440.670000px;}
.yb9{bottom:443.370000px;}
.y69{bottom:443.730000px;}
.y140{bottom:445.080000px;}
.y19{bottom:448.050000px;}
.yd2{bottom:451.110000px;}
.y94{bottom:455.700000px;}
.yfa{bottom:455.970000px;}
.y118{bottom:458.220000px;}
.yb8{bottom:460.920000px;}
.y4b{bottom:461.370000px;}
.y13f{bottom:462.720000px;}
.y18{bottom:465.600000px;}
.y169{bottom:469.650000px;}
.y93{bottom:473.280000px;}
.yf9{bottom:473.550000px;}
.y18e{bottom:475.800000px;}
.yd1{bottom:477.690000px;}
.y4a{bottom:478.950000px;}
.y13e{bottom:480.300000px;}
.y17{bottom:483.180000px;}
.y117{bottom:484.800000px;}
.y168{bottom:487.230000px;}
.yb7{bottom:487.500000px;}
.y18d{bottom:493.440000px;}
.y49{bottom:496.500000px;}
.yf8{bottom:500.190000px;}
.y167{bottom:504.870000px;}
.y13d{bottom:506.850000px;}
.y92{bottom:508.830000px;}
.y18c{bottom:510.990000px;}
.yd0{bottom:513.330000px;}
.y48{bottom:514.140000px;}
.y116{bottom:517.470000px;}
.y16{bottom:518.820000px;}
.y166{bottom:522.420000px;}
.yb6{bottom:523.140000px;}
.y91{bottom:526.470000px;}
.ycf{bottom:530.880000px;}
.y47{bottom:531.690000px;}
.y68{bottom:532.140000px;}
.yf7{bottom:535.740000px;}
.y15{bottom:536.370000px;}
.y165{bottom:540.060000px;}
.yb5{bottom:540.690000px;}
.y13c{bottom:542.490000px;}
.y90{bottom:544.020000px;}
.y18b{bottom:546.630000px;}
.y46{bottom:549.330000px;}
.y67{bottom:549.690000px;}
.y115{bottom:553.020000px;}
.yf6{bottom:553.290000px;}
.y14{bottom:553.920000px;}
.y164{bottom:557.610000px;}
.yb4{bottom:558.330000px;}
.y13b{bottom:560.040000px;}
.y8f{bottom:561.660000px;}
.y18a{bottom:564.180000px;}
.yce{bottom:566.430000px;}
.y66{bottom:567.330000px;}
.y114{bottom:570.660000px;}
.yf5{bottom:570.930000px;}
.y13{bottom:571.560000px;}
.yb3{bottom:575.880000px;}
.y13a{bottom:577.590000px;}
.y189{bottom:581.730000px;}
.ycd{bottom:584.070000px;}
.y45{bottom:584.880000px;}
.y8e{bottom:588.210000px;}
.yf4{bottom:588.480000px;}
.y12{bottom:589.110000px;}
.y163{bottom:593.160000px;}
.yb2{bottom:593.430000px;}
.y139{bottom:595.230000px;}
.y188{bottom:599.370000px;}
.ycc{bottom:601.620000px;}
.y44{bottom:602.430000px;}
.y113{bottom:605.760000px;}
.yf3{bottom:606.120000px;}
.y11{bottom:606.750000px;}
.y162{bottom:610.800000px;}
.yb1{bottom:611.070000px;}
.y138{bottom:612.780000px;}
.y187{bottom:616.920000px;}
.ycb{bottom:619.260000px;}
.y43{bottom:620.070000px;}
.y8d{bottom:623.760000px;}
.y161{bottom:628.350000px;}
.yb0{bottom:628.620000px;}
.y112{bottom:632.400000px;}
.yf2{bottom:632.670000px;}
.y186{bottom:634.560000px;}
.yca{bottom:636.810000px;}
.y42{bottom:637.620000px;}
.y137{bottom:639.420000px;}
.y8c{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.y160{bottom:645.990000px;}
.y41{bottom:655.260000px;}
.y8b{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.y185{bottom:661.110000px;}
.y15f{bottom:663.540000px;}
.yaf{bottom:664.260000px;}
.y111{bottom:667.950000px;}
.yf1{bottom:668.220000px;}
.yc9{bottom:672.360000px;}
.y40{bottom:672.810000px;}
.y136{bottom:674.970000px;}
.y8a{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.yae{bottom:681.810000px;}
.y110{bottom:685.590000px;}
.yf0{bottom:685.860000px;}
.yc8{bottom:690.000000px;}
.y3f{bottom:690.360000px;}
.y135{bottom:692.520000px;}
.yd{bottom:695.040000px;}
.y184{bottom:696.660000px;}
.y15e{bottom:699.090000px;}
.yad{bottom:699.360000px;}
.y10f{bottom:703.140000px;}
.yef{bottom:703.410000px;}
.yc7{bottom:707.550000px;}
.y3e{bottom:708.000000px;}
.y65{bottom:708.360000px;}
.y134{bottom:710.160000px;}
.y89{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.y183{bottom:714.300000px;}
.y15d{bottom:716.730000px;}
.yac{bottom:717.000000px;}
.y10e{bottom:720.690000px;}
.yee{bottom:721.050000px;}
.yc6{bottom:725.190000px;}
.y64{bottom:726.000000px;}
.y133{bottom:727.710000px;}
.y88{bottom:729.690000px;}
.yb{bottom:730.230000px;}
.y182{bottom:731.850000px;}
.y15c{bottom:734.280000px;}
.yab{bottom:734.550000px;}
.yed{bottom:738.600000px;}
.y3d{bottom:743.550000px;}
.y132{bottom:745.350000px;}
.y87{bottom:747.330000px;}
.y181{bottom:749.490000px;}
.y15b{bottom:751.920000px;}
.yaa{bottom:752.190000px;}
.ya{bottom:757.140000px;}
.yc5{bottom:760.740000px;}
.y3c{bottom:761.190000px;}
.y86{bottom:764.880000px;}
.yec{bottom:765.150000px;}
.ya9{bottom:769.740000px;}
.y131{bottom:771.900000px;}
.y180{bottom:776.040000px;}
.yc4{bottom:778.290000px;}
.y3b{bottom:778.740000px;}
.y15a{bottom:778.830000px;}
.y85{bottom:782.520000px;}
.y10d{bottom:783.240000px;}
.ya8{bottom:787.290000px;}
.y3a{bottom:796.290000px;}
.yeb{bottom:800.790000px;}
.y9{bottom:805.380000px;}
.y130{bottom:807.450000px;}
.y84{bottom:809.070000px;}
.y17f{bottom:811.590000px;}
.y39{bottom:813.930000px;}
.yea{bottom:818.340000px;}
.y12f{bottom:825.090000px;}
.y159{bottom:827.070000px;}
.y17e{bottom:829.230000px;}
.y38{bottom:831.480000px;}
.ye9{bottom:836.790000px;}
.y8{bottom:841.200000px;}
.y12e{bottom:842.640000px;}
.y83{bottom:844.620000px;}
.y17d{bottom:846.780000px;}
.y37{bottom:849.030000px;}
.ya7{bottom:849.480000px;}
.ye8{bottom:854.340000px;}
.y12d{bottom:860.280000px;}
.y82{bottom:862.260000px;}
.y17c{bottom:864.420000px;}
.yc3{bottom:866.670000px;}
.ya6{bottom:867.030000px;}
.ye7{bottom:872.700000px;}
.y63{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y12c{bottom:877.830000px;}
.y81{bottom:879.810000px;}
.yc2{bottom:884.220000px;}
.y36{bottom:884.670000px;}
.y17b{bottom:890.970000px;}
.ye6{bottom:891.150000px;}
.y12b{bottom:895.380000px;}
.y80{bottom:897.450000px;}
.y10c{bottom:901.860000px;}
.y35{bottom:902.220000px;}
.ye5{bottom:909.600000px;}
.yc1{bottom:910.860000px;}
.y62{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y7f{bottom:915.000000px;}
.y34{bottom:919.860000px;}
.y12a{bottom:921.930000px;}
.y158{bottom:924.000000px;}
.ye4{bottom:927.150000px;}
.y17a{bottom:927.510000px;}
.y10b{bottom:928.410000px;}
.y61{bottom:928.860000px;}
.y7e{bottom:932.550000px;}
.y33{bottom:937.410000px;}
.y179{bottom:945.960000px;}
.y60{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ye3{bottom:954.600000px;}
.y32{bottom:954.960000px;}
.y7d{bottom:959.190000px;}
.y157{bottom:959.550000px;}
.y178{bottom:963.600000px;}
.y5f{bottom:963.960000px;}
.y31{bottom:972.600000px;}
.ya5{bottom:972.960000px;}
.y156{bottom:977.190000px;}
.y177{bottom:981.150000px;}
.y5e{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y30{bottom:990.150000px;}
.ya4{bottom:990.600000px;}
.y155{bottom:994.740000px;}
.y7c{bottom:995.100000px;}
.y176{bottom:998.790000px;}
.y5d{bottom:999.150000px;}
.y2f{bottom:1007.790000px;}
.ya3{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y5c{bottom:1016.820000px;}
.ye2{bottom:1025.370000px;}
.ya2{bottom:1025.820000px;}
.y154{bottom:1030.320000px;}
.y2e{bottom:1034.370000px;}
.ye1{bottom:1042.920000px;}
.y7b{bottom:1043.370000px;}
.y153{bottom:1047.960000px;}
.yc0{bottom:1051.920000px;}
.y129{bottom:1060.560000px;}
.y7a{bottom:1060.920000px;}
.y152{bottom:1065.510000px;}
.ybf{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y79{bottom:1078.560000px;}
.y151{bottom:1083.150000px;}
.y128{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y78{bottom:1096.110000px;}
.y150{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y77{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y14f{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.ha{height:61.793886px;}
.h7{height:62.585859px;}
.h8{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;}
.x4{left:95.039987px;}
.x6{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.057600pt;}
.lsf{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.087467pt;}
.ls13{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls15{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.817600pt;}
.ws7{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._d{margin-left:-3.248000pt;}
._5{margin-left:-1.989334pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.947414pt;}
._3{width:2.672000pt;}
._a{width:3.634134pt;}
._4{width:4.938879pt;}
._11{width:5.850886pt;}
._12{width:6.899097pt;}
._7{width:8.307199pt;}
._6{width:9.245334pt;}
._f{width:10.552427pt;}
._1{width:12.419669pt;}
._e{width:13.606400pt;}
._14{width:14.642560pt;}
._18{width:15.818240pt;}
._19{width:17.168746pt;}
._9{width:18.489599pt;}
._8{width:19.666134pt;}
._10{width:20.787946pt;}
._13{width:21.696854pt;}
._1b{width:22.658346pt;}
._15{width:23.620480pt;}
._16{width:24.796160pt;}
._17{width:26.773440pt;}
._c{width:27.740480pt;}
._b{width:28.984320pt;}
._1a{width:30.621120pt;}
._21{width:44.274880pt;}
._1f{width:60.627520pt;}
._20{width:61.723520pt;}
._1c{width:66.506560pt;}
._1e{width:68.876480pt;}
._1d{width:82.981867pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y10a{bottom:99.546667pt;}
.y5b{bottom:103.946667pt;}
.ye0{bottom:106.586667pt;}
.y14e{bottom:112.826667pt;}
.y109{bottom:115.226667pt;}
.y26{bottom:117.866667pt;}
.y5a{bottom:119.626667pt;}
.ydf{bottom:122.186667pt;}
.y127{bottom:124.826667pt;}
.y197{bottom:126.826667pt;}
.ya1{bottom:129.866667pt;}
.y108{bottom:130.826667pt;}
.y25{bottom:133.546667pt;}
.y59{bottom:135.226667pt;}
.y76{bottom:135.626667pt;}
.y126{bottom:140.506667pt;}
.y196{bottom:142.426667pt;}
.y14d{bottom:144.426667pt;}
.ya0{bottom:145.466667pt;}
.yde{bottom:145.866667pt;}
.y107{bottom:146.426667pt;}
.ybe{bottom:150.826667pt;}
.y75{bottom:151.226667pt;}
.y125{bottom:156.106667pt;}
.y24{bottom:157.146667pt;}
.y58{bottom:158.826667pt;}
.y14c{bottom:160.026667pt;}
.y9f{bottom:161.066667pt;}
.y175{bottom:165.866667pt;}
.y195{bottom:166.346667pt;}
.y74{bottom:166.826667pt;}
.y106{bottom:170.106667pt;}
.ybd{bottom:174.506667pt;}
.y14b{bottom:175.706667pt;}
.y9e{bottom:176.746667pt;}
.ydd{bottom:177.466667pt;}
.y124{bottom:179.786667pt;}
.y174{bottom:181.546667pt;}
.y73{bottom:182.506667pt;}
.y23{bottom:188.746667pt;}
.y57{bottom:190.506667pt;}
.y14a{bottom:191.306667pt;}
.y9d{bottom:192.346667pt;}
.ydc{bottom:193.066667pt;}
.y173{bottom:197.146667pt;}
.y72{bottom:198.106667pt;}
.y105{bottom:201.706667pt;}
.y22{bottom:204.426667pt;}
.y56{bottom:206.106667pt;}
.ydb{bottom:208.746667pt;}
.y194{bottom:209.306667pt;}
.y123{bottom:211.386667pt;}
.y172{bottom:212.826667pt;}
.y71{bottom:213.786667pt;}
.y149{bottom:214.986667pt;}
.y9c{bottom:215.946667pt;}
.y104{bottom:217.306667pt;}
.y21{bottom:220.026667pt;}
.y55{bottom:221.786667pt;}
.yda{bottom:224.346667pt;}
.y122{bottom:226.986667pt;}
.y70{bottom:229.386667pt;}
.y103{bottom:232.986667pt;}
.y193{bottom:233.146667pt;}
.y20{bottom:235.706667pt;}
.y171{bottom:236.426667pt;}
.y54{bottom:237.386667pt;}
.y121{bottom:242.666667pt;}
.y148{bottom:246.586667pt;}
.y9b{bottom:247.626667pt;}
.yd9{bottom:247.946667pt;}
.y102{bottom:248.586667pt;}
.y1f{bottom:251.306667pt;}
.y53{bottom:252.986667pt;}
.y120{bottom:258.266667pt;}
.y6f{bottom:260.986667pt;}
.y147{bottom:262.186667pt;}
.y9a{bottom:263.226667pt;}
.y101{bottom:264.266667pt;}
.y192{bottom:266.106667pt;}
.y1e{bottom:266.906667pt;}
.y170{bottom:268.026667pt;}
.ybc{bottom:268.666667pt;}
.y11f{bottom:273.946667pt;}
.y6e{bottom:276.666667pt;}
.y146{bottom:277.866667pt;}
.yd8{bottom:279.866667pt;}
.y1d{bottom:282.586667pt;}
.y16f{bottom:283.706667pt;}
.ybb{bottom:284.266667pt;}
.y52{bottom:284.666667pt;}
.y11e{bottom:289.546667pt;}
.y191{bottom:290.026667pt;}
.y6d{bottom:292.266667pt;}
.y145{bottom:293.466667pt;}
.y99{bottom:294.906667pt;}
.y100{bottom:295.466667pt;}
.yba{bottom:299.946667pt;}
.y51{bottom:300.266667pt;}
.y1c{bottom:306.506667pt;}
.y16e{bottom:307.306667pt;}
.y6c{bottom:307.946667pt;}
.y144{bottom:309.146667pt;}
.y98{bottom:310.506667pt;}
.yff{bottom:311.146667pt;}
.y11d{bottom:313.146667pt;}
.y50{bottom:315.946667pt;}
.yd7{bottom:322.826667pt;}
.y190{bottom:322.906667pt;}
.y6b{bottom:323.546667pt;}
.y4f{bottom:331.546667pt;}
.y143{bottom:332.746667pt;}
.yd6{bottom:338.426667pt;}
.y16d{bottom:338.986667pt;}
.y6a{bottom:339.146667pt;}
.y97{bottom:342.106667pt;}
.yfe{bottom:342.746667pt;}
.y11c{bottom:344.826667pt;}
.y18f{bottom:346.826667pt;}
.y4e{bottom:347.146667pt;}
.y1b{bottom:349.386667pt;}
.yd5{bottom:354.106667pt;}
.y16c{bottom:354.586667pt;}
.y96{bottom:357.786667pt;}
.yfd{bottom:358.426667pt;}
.y11b{bottom:360.426667pt;}
.y4d{bottom:362.826667pt;}
.y142{bottom:364.346667pt;}
.y1a{bottom:365.306667pt;}
.yd4{bottom:369.706667pt;}
.y16b{bottom:370.186667pt;}
.yfc{bottom:374.026667pt;}
.y11a{bottom:376.106667pt;}
.y4c{bottom:378.426667pt;}
.y141{bottom:380.026667pt;}
.yd3{bottom:385.306667pt;}
.y16a{bottom:385.866667pt;}
.y95{bottom:389.386667pt;}
.yfb{bottom:389.626667pt;}
.y119{bottom:391.706667pt;}
.yb9{bottom:394.106667pt;}
.y69{bottom:394.426667pt;}
.y140{bottom:395.626667pt;}
.y19{bottom:398.266667pt;}
.yd2{bottom:400.986667pt;}
.y94{bottom:405.066667pt;}
.yfa{bottom:405.306667pt;}
.y118{bottom:407.306667pt;}
.yb8{bottom:409.706667pt;}
.y4b{bottom:410.106667pt;}
.y13f{bottom:411.306667pt;}
.y18{bottom:413.866667pt;}
.y169{bottom:417.466667pt;}
.y93{bottom:420.693333pt;}
.yf9{bottom:420.933333pt;}
.y18e{bottom:422.933333pt;}
.yd1{bottom:424.613333pt;}
.y4a{bottom:425.733333pt;}
.y13e{bottom:426.933333pt;}
.y17{bottom:429.493333pt;}
.y117{bottom:430.933333pt;}
.y168{bottom:433.093333pt;}
.yb7{bottom:433.333333pt;}
.y18d{bottom:438.613333pt;}
.y49{bottom:441.333333pt;}
.yf8{bottom:444.613333pt;}
.y167{bottom:448.773333pt;}
.y13d{bottom:450.533333pt;}
.y92{bottom:452.293333pt;}
.y18c{bottom:454.213333pt;}
.yd0{bottom:456.293333pt;}
.y48{bottom:457.013333pt;}
.y116{bottom:459.973333pt;}
.y16{bottom:461.173333pt;}
.y166{bottom:464.373333pt;}
.yb6{bottom:465.013333pt;}
.y91{bottom:467.973333pt;}
.ycf{bottom:471.893333pt;}
.y47{bottom:472.613333pt;}
.y68{bottom:473.013333pt;}
.yf7{bottom:476.213333pt;}
.y15{bottom:476.773333pt;}
.y165{bottom:480.053333pt;}
.yb5{bottom:480.613333pt;}
.y13c{bottom:482.213333pt;}
.y90{bottom:483.573333pt;}
.y18b{bottom:485.893333pt;}
.y46{bottom:488.293333pt;}
.y67{bottom:488.613333pt;}
.y115{bottom:491.573333pt;}
.yf6{bottom:491.813333pt;}
.y14{bottom:492.373333pt;}
.y164{bottom:495.653333pt;}
.yb4{bottom:496.293333pt;}
.y13b{bottom:497.813333pt;}
.y8f{bottom:499.253333pt;}
.y18a{bottom:501.493333pt;}
.yce{bottom:503.493333pt;}
.y66{bottom:504.293333pt;}
.y114{bottom:507.253333pt;}
.yf5{bottom:507.493333pt;}
.y13{bottom:508.053333pt;}
.yb3{bottom:511.893333pt;}
.y13a{bottom:513.413333pt;}
.y189{bottom:517.093333pt;}
.ycd{bottom:519.173333pt;}
.y45{bottom:519.893333pt;}
.y8e{bottom:522.853333pt;}
.yf4{bottom:523.093333pt;}
.y12{bottom:523.653333pt;}
.y163{bottom:527.253333pt;}
.yb2{bottom:527.493333pt;}
.y139{bottom:529.093333pt;}
.y188{bottom:532.773333pt;}
.ycc{bottom:534.773333pt;}
.y44{bottom:535.493333pt;}
.y113{bottom:538.453333pt;}
.yf3{bottom:538.773333pt;}
.y11{bottom:539.333333pt;}
.y162{bottom:542.933333pt;}
.yb1{bottom:543.173333pt;}
.y138{bottom:544.693333pt;}
.y187{bottom:548.373333pt;}
.ycb{bottom:550.453333pt;}
.y43{bottom:551.173333pt;}
.y8d{bottom:554.453333pt;}
.y161{bottom:558.533333pt;}
.yb0{bottom:558.773333pt;}
.y112{bottom:562.133333pt;}
.yf2{bottom:562.373333pt;}
.y186{bottom:564.053333pt;}
.yca{bottom:566.053333pt;}
.y42{bottom:566.773333pt;}
.y137{bottom:568.373333pt;}
.y8c{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.y160{bottom:574.213333pt;}
.y41{bottom:582.453333pt;}
.y8b{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.y185{bottom:587.653333pt;}
.y15f{bottom:589.813333pt;}
.yaf{bottom:590.453333pt;}
.y111{bottom:593.733333pt;}
.yf1{bottom:593.973333pt;}
.yc9{bottom:597.653333pt;}
.y40{bottom:598.053333pt;}
.y136{bottom:599.973333pt;}
.y8a{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.yae{bottom:606.053333pt;}
.y110{bottom:609.413333pt;}
.yf0{bottom:609.653333pt;}
.yc8{bottom:613.333333pt;}
.y3f{bottom:613.653333pt;}
.y135{bottom:615.573333pt;}
.yd{bottom:617.813333pt;}
.y184{bottom:619.253333pt;}
.y15e{bottom:621.413333pt;}
.yad{bottom:621.653333pt;}
.y10f{bottom:625.013333pt;}
.yef{bottom:625.253333pt;}
.yc7{bottom:628.933333pt;}
.y3e{bottom:629.333333pt;}
.y65{bottom:629.653333pt;}
.y134{bottom:631.253333pt;}
.y89{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.y183{bottom:634.933333pt;}
.y15d{bottom:637.093333pt;}
.yac{bottom:637.333333pt;}
.y10e{bottom:640.613333pt;}
.yee{bottom:640.933333pt;}
.yc6{bottom:644.613333pt;}
.y64{bottom:645.333333pt;}
.y133{bottom:646.853333pt;}
.y88{bottom:648.613333pt;}
.yb{bottom:649.093333pt;}
.y182{bottom:650.533333pt;}
.y15c{bottom:652.693333pt;}
.yab{bottom:652.933333pt;}
.yed{bottom:656.533333pt;}
.y3d{bottom:660.933333pt;}
.y132{bottom:662.533333pt;}
.y87{bottom:664.293333pt;}
.y181{bottom:666.213333pt;}
.y15b{bottom:668.373333pt;}
.yaa{bottom:668.613333pt;}
.ya{bottom:673.013333pt;}
.yc5{bottom:676.213333pt;}
.y3c{bottom:676.613333pt;}
.y86{bottom:679.893333pt;}
.yec{bottom:680.133333pt;}
.ya9{bottom:684.213333pt;}
.y131{bottom:686.133333pt;}
.y180{bottom:689.813333pt;}
.yc4{bottom:691.813333pt;}
.y3b{bottom:692.213333pt;}
.y15a{bottom:692.293333pt;}
.y85{bottom:695.573333pt;}
.y10d{bottom:696.213333pt;}
.ya8{bottom:699.813333pt;}
.y3a{bottom:707.813333pt;}
.yeb{bottom:711.813333pt;}
.y9{bottom:715.893333pt;}
.y130{bottom:717.733333pt;}
.y84{bottom:719.173333pt;}
.y17f{bottom:721.413333pt;}
.y39{bottom:723.493333pt;}
.yea{bottom:727.413333pt;}
.y12f{bottom:733.413333pt;}
.y159{bottom:735.173333pt;}
.y17e{bottom:737.093333pt;}
.y38{bottom:739.093333pt;}
.ye9{bottom:743.813333pt;}
.y8{bottom:747.733333pt;}
.y12e{bottom:749.013333pt;}
.y83{bottom:750.773333pt;}
.y17d{bottom:752.693333pt;}
.y37{bottom:754.693333pt;}
.ya7{bottom:755.093333pt;}
.ye8{bottom:759.413333pt;}
.y12d{bottom:764.693333pt;}
.y82{bottom:766.453333pt;}
.y17c{bottom:768.373333pt;}
.yc3{bottom:770.373333pt;}
.ya6{bottom:770.693333pt;}
.ye7{bottom:775.733333pt;}
.y63{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y12c{bottom:780.293333pt;}
.y81{bottom:782.053333pt;}
.yc2{bottom:785.973333pt;}
.y36{bottom:786.373333pt;}
.y17b{bottom:791.973333pt;}
.ye6{bottom:792.133333pt;}
.y12b{bottom:795.893333pt;}
.y80{bottom:797.733333pt;}
.y10c{bottom:801.653333pt;}
.y35{bottom:801.973333pt;}
.ye5{bottom:808.533333pt;}
.yc1{bottom:809.653333pt;}
.y62{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y7f{bottom:813.333333pt;}
.y34{bottom:817.653333pt;}
.y12a{bottom:819.493333pt;}
.y158{bottom:821.333333pt;}
.ye4{bottom:824.133333pt;}
.y17a{bottom:824.453333pt;}
.y10b{bottom:825.253333pt;}
.y61{bottom:825.653333pt;}
.y7e{bottom:828.933333pt;}
.y33{bottom:833.253333pt;}
.y179{bottom:840.853333pt;}
.y60{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ye3{bottom:848.533333pt;}
.y32{bottom:848.853333pt;}
.y7d{bottom:852.613333pt;}
.y157{bottom:852.933333pt;}
.y178{bottom:856.533333pt;}
.y5f{bottom:856.853333pt;}
.y31{bottom:864.533333pt;}
.ya5{bottom:864.853333pt;}
.y156{bottom:868.613333pt;}
.y177{bottom:872.133333pt;}
.y5e{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y30{bottom:880.133333pt;}
.ya4{bottom:880.533333pt;}
.y155{bottom:884.213333pt;}
.y7c{bottom:884.533333pt;}
.y176{bottom:887.813333pt;}
.y5d{bottom:888.133333pt;}
.y2f{bottom:895.813333pt;}
.ya3{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y5c{bottom:903.840000pt;}
.ye2{bottom:911.440000pt;}
.ya2{bottom:911.840000pt;}
.y154{bottom:915.840000pt;}
.y2e{bottom:919.440000pt;}
.ye1{bottom:927.040000pt;}
.y7b{bottom:927.440000pt;}
.y153{bottom:931.520000pt;}
.yc0{bottom:935.040000pt;}
.y129{bottom:942.720000pt;}
.y7a{bottom:943.040000pt;}
.y152{bottom:947.120000pt;}
.ybf{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y79{bottom:958.720000pt;}
.y151{bottom:962.800000pt;}
.y128{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y78{bottom:974.320000pt;}
.y150{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y77{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y14f{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.ha{height:54.927899pt;}
.h7{height:55.631875pt;}
.h8{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;}
.x4{left:84.479988pt;}
.x6{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.x3{left:704.053322pt;}
}




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