
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e89dd80063fd42195371da11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_364812e4761a1a34a9d3d4d8.woff2')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_6f7241039b2e3809191a90ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ee25749bfc375ca648272a05.woff2')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_71b3c5b835efe85ab2b36770.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6535098c7cf6722f8962c962.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa6fb6e3adb9f42b10ef4705.woff2')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;}
.lse{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.068400px;}
.lsf{letter-spacing:-0.063600px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.ls14{letter-spacing:48.446640px;}
.ls12{letter-spacing:81.566640px;}
.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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-4.087198px;}
._4{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._3{width:1.192344px;}
._7{width:2.194366px;}
._a{width:3.436655px;}
._2{width:5.434092px;}
._1{width:6.477120px;}
._6{width:7.521240px;}
._9{width:8.898000px;}
._8{width:9.979800px;}
._b{width:11.783400px;}
._c{width:14.308800px;}
._d{width:15.570599px;}
._13{width:16.585761px;}
._10{width:17.615160px;}
._11{width:18.637200px;}
._12{width:19.818074px;}
._14{width:21.213480px;}
._e{width:22.484880px;}
._f{width:23.534760px;}
._16{width:26.121960px;}
._15{width:27.715320px;}
._17{width:46.232280px;}
._18{width:47.374560px;}
._1d{width:49.566720px;}
._1c{width:50.621040px;}
._19{width:61.442640px;}
._1e{width:99.558720px;}
._1f{width:100.580760px;}
._1a{width:539.997840px;}
._1b{width:541.288440px;}
.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;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1b9{bottom:113.160000px;}
.y194{bottom:116.940000px;}
.y86{bottom:119.100000px;}
.y127{bottom:122.160000px;}
.y173{bottom:126.840000px;}
.y1b8{bottom:130.800000px;}
.y59{bottom:132.690000px;}
.y193{bottom:134.580000px;}
.y85{bottom:136.740000px;}
.y149{bottom:139.170000px;}
.yf0{bottom:139.350000px;}
.y126{bottom:139.800000px;}
.y110{bottom:141.420000px;}
.y27{bottom:142.050000px;}
.y1cd{bottom:142.680000px;}
.y172{bottom:144.390000px;}
.y1b7{bottom:148.350000px;}
.y58{bottom:150.330000px;}
.y192{bottom:152.130000px;}
.y148{bottom:156.720000px;}
.yef{bottom:156.900000px;}
.y125{bottom:157.350000px;}
.y10f{bottom:158.970000px;}
.y26{bottom:159.600000px;}
.y1cc{bottom:160.320000px;}
.y84{bottom:163.290000px;}
.yc7{bottom:163.650000px;}
.y57{bottom:167.880000px;}
.y191{bottom:169.680000px;}
.y171{bottom:170.940000px;}
.y1b6{bottom:172.740000px;}
.y147{bottom:174.270000px;}
.yd3{bottom:174.630000px;}
.y124{bottom:174.900000px;}
.y25{bottom:177.240000px;}
.yc6{bottom:181.200000px;}
.yee{bottom:183.540000px;}
.y56{bottom:185.430000px;}
.y10e{bottom:185.610000px;}
.y1cb{bottom:186.870000px;}
.y190{bottom:187.320000px;}
.y1b5{bottom:190.290000px;}
.y146{bottom:191.910000px;}
.yd2{bottom:192.180000px;}
.y123{bottom:192.540000px;}
.y9d{bottom:195.060000px;}
.yc5{bottom:198.840000px;}
.y83{bottom:198.930000px;}
.y55{bottom:203.070000px;}
.y1ca{bottom:204.510000px;}
.y18f{bottom:204.870000px;}
.y170{bottom:206.580000px;}
.y1b4{bottom:207.840000px;}
.y145{bottom:209.460000px;}
.yd1{bottom:209.820000px;}
.y122{bottom:210.090000px;}
.y9c{bottom:212.610000px;}
.y24{bottom:212.790000px;}
.yc4{bottom:216.390000px;}
.y82{bottom:216.480000px;}
.yed{bottom:219.090000px;}
.y54{bottom:220.620000px;}
.y10d{bottom:221.160000px;}
.y18e{bottom:222.510000px;}
.y16f{bottom:224.130000px;}
.y144{bottom:227.100000px;}
.yd0{bottom:227.370000px;}
.y121{bottom:227.730000px;}
.y9b{bottom:230.250000px;}
.y23{bottom:230.340000px;}
.y1c9{bottom:231.060000px;}
.y1b3{bottom:232.230000px;}
.yc3{bottom:233.940000px;}
.y81{bottom:234.030000px;}
.yec{bottom:236.730000px;}
.y10c{bottom:238.800000px;}
.y18d{bottom:240.060000px;}
.y16e{bottom:241.680000px;}
.y143{bottom:244.650000px;}
.ycf{bottom:245.010000px;}
.y120{bottom:245.280000px;}
.y53{bottom:247.170000px;}
.y9a{bottom:247.800000px;}
.y22{bottom:247.980000px;}
.y1c8{bottom:248.610000px;}
.yc2{bottom:251.580000px;}
.y80{bottom:251.670000px;}
.yeb{bottom:254.280000px;}
.y10b{bottom:256.350000px;}
.y1b2{bottom:256.530000px;}
.y18c{bottom:257.610000px;}
.y16d{bottom:259.320000px;}
.y142{bottom:262.200000px;}
.yce{bottom:262.560000px;}
.y11f{bottom:262.830000px;}
.y99{bottom:265.440000px;}
.y21{bottom:265.530000px;}
.yc1{bottom:269.130000px;}
.y7f{bottom:269.220000px;}
.yea{bottom:271.830000px;}
.y10a{bottom:273.900000px;}
.y1b1{bottom:274.080000px;}
.y1c7{bottom:275.250000px;}
.y16c{bottom:276.870000px;}
.y52{bottom:279.840000px;}
.ycd{bottom:280.110000px;}
.y20{bottom:283.170000px;}
.y7e{bottom:286.860000px;}
.ye9{bottom:289.470000px;}
.y109{bottom:291.540000px;}
.y98{bottom:291.990000px;}
.y1c6{bottom:292.800000px;}
.y18b{bottom:293.250000px;}
.y16b{bottom:294.510000px;}
.yc0{bottom:295.770000px;}
.y141{bottom:297.390000px;}
.ycc{bottom:297.750000px;}
.y11e{bottom:298.470000px;}
.y1f{bottom:300.720000px;}
.y7d{bottom:304.410000px;}
.ye8{bottom:307.020000px;}
.y108{bottom:309.090000px;}
.y1c5{bottom:310.440000px;}
.y18a{bottom:310.800000px;}
.y16a{bottom:312.060000px;}
.y140{bottom:314.940000px;}
.y51{bottom:315.750000px;}
.y11d{bottom:316.020000px;}
.y1e{bottom:318.270000px;}
.y7c{bottom:321.960000px;}
.ye7{bottom:324.660000px;}
.y107{bottom:326.730000px;}
.y97{bottom:327.540000px;}
.y189{bottom:328.440000px;}
.y169{bottom:329.610000px;}
.ybf{bottom:331.320000px;}
.y13f{bottom:332.580000px;}
.ycb{bottom:333.300000px;}
.y11c{bottom:333.660000px;}
.y1d{bottom:335.910000px;}
.y1c4{bottom:336.990000px;}
.y7b{bottom:339.600000px;}
.y1b0{bottom:340.410000px;}
.ye6{bottom:342.210000px;}
.y106{bottom:344.280000px;}
.y96{bottom:345.180000px;}
.y188{bottom:345.990000px;}
.ybe{bottom:348.870000px;}
.y11b{bottom:351.210000px;}
.y1c3{bottom:354.540000px;}
.y7a{bottom:357.150000px;}
.y1af{bottom:357.960000px;}
.ye5{bottom:359.760000px;}
.y105{bottom:361.830000px;}
.y95{bottom:362.730000px;}
.y187{bottom:363.540000px;}
.y50{bottom:363.990000px;}
.y168{bottom:365.250000px;}
.yca{bottom:365.520000px;}
.y13e{bottom:368.130000px;}
.y11a{bottom:368.760000px;}
.y1c{bottom:371.460000px;}
.y1c2{bottom:372.180000px;}
.y79{bottom:374.790000px;}
.ybd{bottom:375.510000px;}
.ye4{bottom:377.400000px;}
.y186{bottom:381.180000px;}
.y4f{bottom:381.540000px;}
.y167{bottom:382.800000px;}
.y13d{bottom:385.770000px;}
.y1b{bottom:389.100000px;}
.y94{bottom:389.370000px;}
.y78{bottom:392.340000px;}
.y104{bottom:397.470000px;}
.y185{bottom:398.730000px;}
.y4e{bottom:399.180000px;}
.y1ae{bottom:399.900000px;}
.y166{bottom:400.440000px;}
.y13c{bottom:403.320000px;}
.y119{bottom:404.400000px;}
.y1a{bottom:406.650000px;}
.y77{bottom:409.890000px;}
.ybc{bottom:411.060000px;}
.ye3{bottom:412.950000px;}
.y103{bottom:415.020000px;}
.y184{bottom:416.370000px;}
.y4d{bottom:416.730000px;}
.y1ad{bottom:417.450000px;}
.y165{bottom:417.990000px;}
.y13b{bottom:420.870000px;}
.y19{bottom:424.200000px;}
.y93{bottom:424.920000px;}
.y76{bottom:427.530000px;}
.ybb{bottom:428.700000px;}
.y102{bottom:432.660000px;}
.y4c{bottom:434.370000px;}
.y164{bottom:435.540000px;}
.y118{bottom:436.620000px;}
.y13a{bottom:438.510000px;}
.y18{bottom:441.840000px;}
.y92{bottom:442.470000px;}
.y1c1{bottom:442.920000px;}
.y75{bottom:445.080000px;}
.ye2{bottom:445.170000px;}
.yba{bottom:446.250000px;}
.y101{bottom:450.210000px;}
.y4b{bottom:451.920000px;}
.y163{bottom:453.180000px;}
.y139{bottom:456.060000px;}
.y17{bottom:459.390000px;}
.y91{bottom:460.110000px;}
.y1c0{bottom:460.470000px;}
.yb9{bottom:463.800000px;}
.y100{bottom:467.760000px;}
.y183{bottom:469.470000px;}
.y162{bottom:470.760000px;}
.y74{bottom:471.660000px;}
.y138{bottom:473.730000px;}
.y90{bottom:477.690000px;}
.y1bf{bottom:478.140000px;}
.y1ac{bottom:483.720000px;}
.yff{bottom:485.430000px;}
.y16{bottom:486.330000px;}
.y182{bottom:487.140000px;}
.y4a{bottom:487.500000px;}
.y161{bottom:488.400000px;}
.yb8{bottom:490.470000px;}
.y137{bottom:491.280000px;}
.y1ab{bottom:501.360000px;}
.y73{bottom:504.330000px;}
.y181{bottom:504.690000px;}
.y49{bottom:505.140000px;}
.y160{bottom:505.950000px;}
.yfe{bottom:511.980000px;}
.y136{bottom:517.830000px;}
.y180{bottom:522.330000px;}
.y48{bottom:522.690000px;}
.y15f{bottom:523.500000px;}
.y1aa{bottom:525.660000px;}
.yb7{bottom:526.020000px;}
.y15{bottom:534.930000px;}
.y72{bottom:539.880000px;}
.y47{bottom:540.330000px;}
.y15e{bottom:541.140000px;}
.y1a9{bottom:543.300000px;}
.yb6{bottom:543.660000px;}
.yfd{bottom:547.530000px;}
.y135{bottom:553.740000px;}
.y71{bottom:557.430000px;}
.y46{bottom:557.880000px;}
.y15d{bottom:558.690000px;}
.y1a8{bottom:560.850000px;}
.yb5{bottom:561.210000px;}
.yfc{bottom:565.170000px;}
.y14{bottom:571.920000px;}
.y70{bottom:575.070000px;}
.y17f{bottom:575.430000px;}
.y15c{bottom:576.330000px;}
.yfb{bottom:582.720000px;}
.y1be{bottom:584.070000px;}
.yb4{bottom:587.760000px;}
.y13{bottom:589.560000px;}
.y6f{bottom:592.620000px;}
.y17e{bottom:593.070000px;}
.y45{bottom:593.430000px;}
.y15b{bottom:593.880000px;}
.yfa{bottom:600.360000px;}
.y1bd{bottom:601.620000px;}
.y134{bottom:602.070000px;}
.y12{bottom:607.110000px;}
.y6e{bottom:610.260000px;}
.y17d{bottom:610.620000px;}
.y44{bottom:611.070000px;}
.y15a{bottom:611.430000px;}
.y1bc{bottom:619.260000px;}
.y133{bottom:619.620000px;}
.yb3{bottom:623.400000px;}
.y11{bottom:624.750000px;}
.y8f{bottom:627.810000px;}
.y17c{bottom:628.260000px;}
.y43{bottom:628.620000px;}
.y159{bottom:629.070000px;}
.yf9{bottom:635.910000px;}
.y1a7{bottom:636.000000px;}
.y6d{bottom:636.810000px;}
.y132{bottom:637.260000px;}
.yb2{bottom:640.950000px;}
.y10{bottom:642.300000px;}
.y8e{bottom:645.360000px;}
.y17b{bottom:645.810000px;}
.y42{bottom:646.260000px;}
.yf8{bottom:653.460000px;}
.y1a6{bottom:653.640000px;}
.y131{bottom:654.810000px;}
.yb1{bottom:658.590000px;}
.yf{bottom:659.850000px;}
.y8d{bottom:663.000000px;}
.y1bb{bottom:663.360000px;}
.y41{bottom:663.810000px;}
.y158{bottom:664.620000px;}
.yf7{bottom:671.100000px;}
.y1a5{bottom:671.190000px;}
.y6c{bottom:672.360000px;}
.yb0{bottom:676.140000px;}
.ye{bottom:677.490000px;}
.y17a{bottom:681.360000px;}
.y157{bottom:682.260000px;}
.yf6{bottom:688.650000px;}
.y8c{bottom:689.550000px;}
.y6b{bottom:690.000000px;}
.yd{bottom:695.040000px;}
.y1a4{bottom:698.100000px;}
.ye1{bottom:698.280000px;}
.y179{bottom:699.000000px;}
.y40{bottom:699.360000px;}
.y156{bottom:699.810000px;}
.yc9{bottom:701.970000px;}
.yaf{bottom:702.690000px;}
.yf5{bottom:706.290000px;}
.y6a{bottom:707.550000px;}
.y130{bottom:708.000000px;}
.yc{bottom:712.680000px;}
.y178{bottom:716.550000px;}
.y3f{bottom:717.000000px;}
.y155{bottom:717.360000px;}
.yf4{bottom:723.840000px;}
.y69{bottom:725.190000px;}
.y12f{bottom:725.550000px;}
.yb{bottom:730.230000px;}
.ye0{bottom:733.920000px;}
.y177{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.y154{bottom:735.000000px;}
.y1a3{bottom:735.450000px;}
.yc8{bottom:737.520000px;}
.yae{bottom:738.330000px;}
.yf3{bottom:741.390000px;}
.y68{bottom:742.740000px;}
.y12e{bottom:743.190000px;}
.ydf{bottom:751.470000px;}
.y176{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.y153{bottom:752.550000px;}
.yad{bottom:755.880000px;}
.ya{bottom:757.140000px;}
.y67{bottom:760.290000px;}
.y12d{bottom:760.740000px;}
.yde{bottom:769.110000px;}
.y3c{bottom:769.740000px;}
.y152{bottom:770.190000px;}
.yf2{bottom:777.030000px;}
.y8b{bottom:777.930000px;}
.y12c{bottom:778.290000px;}
.yac{bottom:782.520000px;}
.y1a2{bottom:783.690000px;}
.ydd{bottom:786.660000px;}
.y66{bottom:786.930000px;}
.y3b{bottom:787.290000px;}
.y151{bottom:787.740000px;}
.y8a{bottom:795.480000px;}
.y1ba{bottom:795.930000px;}
.y1a1{bottom:801.330000px;}
.ydc{bottom:804.210000px;}
.y3a{bottom:804.930000px;}
.y150{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.yf1{bottom:809.250000px;}
.y12b{bottom:813.930000px;}
.yab{bottom:818.070000px;}
.y1a0{bottom:818.880000px;}
.ydb{bottom:821.850000px;}
.y89{bottom:822.030000px;}
.y39{bottom:822.480000px;}
.y14f{bottom:822.930000px;}
.y117{bottom:831.480000px;}
.yaa{bottom:835.620000px;}
.y19f{bottom:836.520000px;}
.yda{bottom:839.400000px;}
.y38{bottom:840.030000px;}
.y14e{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y12a{bottom:849.030000px;}
.ya9{bottom:853.260000px;}
.y19e{bottom:854.070000px;}
.y65{bottom:857.670000px;}
.y14d{bottom:858.030000px;}
.y129{bottom:866.670000px;}
.y116{bottom:867.030000px;}
.ya8{bottom:870.810000px;}
.y19d{bottom:871.620000px;}
.yd9{bottom:875.040000px;}
.y64{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y128{bottom:884.220000px;}
.y115{bottom:884.670000px;}
.ya7{bottom:888.450000px;}
.y19c{bottom:889.260000px;}
.y63{bottom:892.860000px;}
.y36{bottom:893.220000px;}
.y114{bottom:902.220000px;}
.ya6{bottom:906.000000px;}
.yd8{bottom:907.260000px;}
.y62{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y113{bottom:919.860000px;}
.y19b{bottom:924.810000px;}
.y88{bottom:927.960000px;}
.y34{bottom:928.410000px;}
.ya5{bottom:932.550000px;}
.y61{bottom:936.960000px;}
.y112{bottom:937.410000px;}
.y19a{bottom:942.450000px;}
.y33{bottom:945.960000px;}
.y14c{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y87{bottom:954.600000px;}
.y111{bottom:954.960000px;}
.y199{bottom:960.000000px;}
.y175{bottom:963.600000px;}
.y14b{bottom:963.960000px;}
.ya4{bottom:968.190000px;}
.y60{bottom:972.600000px;}
.y198{bottom:977.550000px;}
.y174{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.ya3{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y5f{bottom:990.150000px;}
.y197{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y5e{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y196{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.y5d{bottom:1025.370000px;}
.y195{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y5c{bottom:1042.920000px;}
.ya2{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y5b{bottom:1060.560000px;}
.yd7{bottom:1060.920000px;}
.ya1{bottom:1065.510000px;}
.y14a{bottom:1069.560000px;}
.yd6{bottom:1078.560000px;}
.ya0{bottom:1083.150000px;}
.y5a{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yd5{bottom:1096.110000px;}
.y9f{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.yd4{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y9e{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h9{height:60.960938px;}
.hd{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.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;}
.xf{left:111.419987px;}
.x2{left:202.799987px;}
.x5{left:303.059987px;}
.x7{left:304.589987px;}
.xb{left:323.129987px;}
.xd{left:331.769987px;}
.x9{left:351.929987px;}
.xe{left:568.139987px;}
.x4{left:576.059987px;}
.x8{left:607.559987px;}
.x6{left:632.309987px;}
.xa{left:668.309987px;}
.xc{left:726.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.060800pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:43.063680pt;}
.ls12{letter-spacing:72.503680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-3.633065pt;}
._4{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.059862pt;}
._7{width:1.950548pt;}
._a{width:3.054804pt;}
._2{width:4.830304pt;}
._1{width:5.757440pt;}
._6{width:6.685546pt;}
._9{width:7.909334pt;}
._8{width:8.870933pt;}
._b{width:10.474133pt;}
._c{width:12.718934pt;}
._d{width:13.840532pt;}
._13{width:14.742898pt;}
._10{width:15.657920pt;}
._11{width:16.566400pt;}
._12{width:17.616065pt;}
._14{width:18.856427pt;}
._e{width:19.986560pt;}
._f{width:20.919787pt;}
._16{width:23.219520pt;}
._15{width:24.635840pt;}
._17{width:41.095360pt;}
._18{width:42.110720pt;}
._1d{width:44.059307pt;}
._1c{width:44.996480pt;}
._19{width:54.615680pt;}
._1e{width:88.496640pt;}
._1f{width:89.405120pt;}
._1a{width:479.998080pt;}
._1b{width:481.145280pt;}
.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;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1b9{bottom:100.586667pt;}
.y194{bottom:103.946667pt;}
.y86{bottom:105.866667pt;}
.y127{bottom:108.586667pt;}
.y173{bottom:112.746667pt;}
.y1b8{bottom:116.266667pt;}
.y59{bottom:117.946667pt;}
.y193{bottom:119.626667pt;}
.y85{bottom:121.546667pt;}
.y149{bottom:123.706667pt;}
.yf0{bottom:123.866667pt;}
.y126{bottom:124.266667pt;}
.y110{bottom:125.706667pt;}
.y27{bottom:126.266667pt;}
.y1cd{bottom:126.826667pt;}
.y172{bottom:128.346667pt;}
.y1b7{bottom:131.866667pt;}
.y58{bottom:133.626667pt;}
.y192{bottom:135.226667pt;}
.y148{bottom:139.306667pt;}
.yef{bottom:139.466667pt;}
.y125{bottom:139.866667pt;}
.y10f{bottom:141.306667pt;}
.y26{bottom:141.866667pt;}
.y1cc{bottom:142.506667pt;}
.y84{bottom:145.146667pt;}
.yc7{bottom:145.466667pt;}
.y57{bottom:149.226667pt;}
.y191{bottom:150.826667pt;}
.y171{bottom:151.946667pt;}
.y1b6{bottom:153.546667pt;}
.y147{bottom:154.906667pt;}
.yd3{bottom:155.226667pt;}
.y124{bottom:155.466667pt;}
.y25{bottom:157.546667pt;}
.yc6{bottom:161.066667pt;}
.yee{bottom:163.146667pt;}
.y56{bottom:164.826667pt;}
.y10e{bottom:164.986667pt;}
.y1cb{bottom:166.106667pt;}
.y190{bottom:166.506667pt;}
.y1b5{bottom:169.146667pt;}
.y146{bottom:170.586667pt;}
.yd2{bottom:170.826667pt;}
.y123{bottom:171.146667pt;}
.y9d{bottom:173.386667pt;}
.yc5{bottom:176.746667pt;}
.y83{bottom:176.826667pt;}
.y55{bottom:180.506667pt;}
.y1ca{bottom:181.786667pt;}
.y18f{bottom:182.106667pt;}
.y170{bottom:183.626667pt;}
.y1b4{bottom:184.746667pt;}
.y145{bottom:186.186667pt;}
.yd1{bottom:186.506667pt;}
.y122{bottom:186.746667pt;}
.y9c{bottom:188.986667pt;}
.y24{bottom:189.146667pt;}
.yc4{bottom:192.346667pt;}
.y82{bottom:192.426667pt;}
.yed{bottom:194.746667pt;}
.y54{bottom:196.106667pt;}
.y10d{bottom:196.586667pt;}
.y18e{bottom:197.786667pt;}
.y16f{bottom:199.226667pt;}
.y144{bottom:201.866667pt;}
.yd0{bottom:202.106667pt;}
.y121{bottom:202.426667pt;}
.y9b{bottom:204.666667pt;}
.y23{bottom:204.746667pt;}
.y1c9{bottom:205.386667pt;}
.y1b3{bottom:206.426667pt;}
.yc3{bottom:207.946667pt;}
.y81{bottom:208.026667pt;}
.yec{bottom:210.426667pt;}
.y10c{bottom:212.266667pt;}
.y18d{bottom:213.386667pt;}
.y16e{bottom:214.826667pt;}
.y143{bottom:217.466667pt;}
.ycf{bottom:217.786667pt;}
.y120{bottom:218.026667pt;}
.y53{bottom:219.706667pt;}
.y9a{bottom:220.266667pt;}
.y22{bottom:220.426667pt;}
.y1c8{bottom:220.986667pt;}
.yc2{bottom:223.626667pt;}
.y80{bottom:223.706667pt;}
.yeb{bottom:226.026667pt;}
.y10b{bottom:227.866667pt;}
.y1b2{bottom:228.026667pt;}
.y18c{bottom:228.986667pt;}
.y16d{bottom:230.506667pt;}
.y142{bottom:233.066667pt;}
.yce{bottom:233.386667pt;}
.y11f{bottom:233.626667pt;}
.y99{bottom:235.946667pt;}
.y21{bottom:236.026667pt;}
.yc1{bottom:239.226667pt;}
.y7f{bottom:239.306667pt;}
.yea{bottom:241.626667pt;}
.y10a{bottom:243.466667pt;}
.y1b1{bottom:243.626667pt;}
.y1c7{bottom:244.666667pt;}
.y16c{bottom:246.106667pt;}
.y52{bottom:248.746667pt;}
.ycd{bottom:248.986667pt;}
.y20{bottom:251.706667pt;}
.y7e{bottom:254.986667pt;}
.ye9{bottom:257.306667pt;}
.y109{bottom:259.146667pt;}
.y98{bottom:259.546667pt;}
.y1c6{bottom:260.266667pt;}
.y18b{bottom:260.666667pt;}
.y16b{bottom:261.786667pt;}
.yc0{bottom:262.906667pt;}
.y141{bottom:264.346667pt;}
.ycc{bottom:264.666667pt;}
.y11e{bottom:265.306667pt;}
.y1f{bottom:267.306667pt;}
.y7d{bottom:270.586667pt;}
.ye8{bottom:272.906667pt;}
.y108{bottom:274.746667pt;}
.y1c5{bottom:275.946667pt;}
.y18a{bottom:276.266667pt;}
.y16a{bottom:277.386667pt;}
.y140{bottom:279.946667pt;}
.y51{bottom:280.666667pt;}
.y11d{bottom:280.906667pt;}
.y1e{bottom:282.906667pt;}
.y7c{bottom:286.186667pt;}
.ye7{bottom:288.586667pt;}
.y107{bottom:290.426667pt;}
.y97{bottom:291.146667pt;}
.y189{bottom:291.946667pt;}
.y169{bottom:292.986667pt;}
.ybf{bottom:294.506667pt;}
.y13f{bottom:295.626667pt;}
.ycb{bottom:296.266667pt;}
.y11c{bottom:296.586667pt;}
.y1d{bottom:298.586667pt;}
.y1c4{bottom:299.546667pt;}
.y7b{bottom:301.866667pt;}
.y1b0{bottom:302.586667pt;}
.ye6{bottom:304.186667pt;}
.y106{bottom:306.026667pt;}
.y96{bottom:306.826667pt;}
.y188{bottom:307.546667pt;}
.ybe{bottom:310.106667pt;}
.y11b{bottom:312.186667pt;}
.y1c3{bottom:315.146667pt;}
.y7a{bottom:317.466667pt;}
.y1af{bottom:318.186667pt;}
.ye5{bottom:319.786667pt;}
.y105{bottom:321.626667pt;}
.y95{bottom:322.426667pt;}
.y187{bottom:323.146667pt;}
.y50{bottom:323.546667pt;}
.y168{bottom:324.666667pt;}
.yca{bottom:324.906667pt;}
.y13e{bottom:327.226667pt;}
.y11a{bottom:327.786667pt;}
.y1c{bottom:330.186667pt;}
.y1c2{bottom:330.826667pt;}
.y79{bottom:333.146667pt;}
.ybd{bottom:333.786667pt;}
.ye4{bottom:335.466667pt;}
.y186{bottom:338.826667pt;}
.y4f{bottom:339.146667pt;}
.y167{bottom:340.266667pt;}
.y13d{bottom:342.906667pt;}
.y1b{bottom:345.866667pt;}
.y94{bottom:346.106667pt;}
.y78{bottom:348.746667pt;}
.y104{bottom:353.306667pt;}
.y185{bottom:354.426667pt;}
.y4e{bottom:354.826667pt;}
.y1ae{bottom:355.466667pt;}
.y166{bottom:355.946667pt;}
.y13c{bottom:358.506667pt;}
.y119{bottom:359.466667pt;}
.y1a{bottom:361.466667pt;}
.y77{bottom:364.346667pt;}
.ybc{bottom:365.386667pt;}
.ye3{bottom:367.066667pt;}
.y103{bottom:368.906667pt;}
.y184{bottom:370.106667pt;}
.y4d{bottom:370.426667pt;}
.y1ad{bottom:371.066667pt;}
.y165{bottom:371.546667pt;}
.y13b{bottom:374.106667pt;}
.y19{bottom:377.066667pt;}
.y93{bottom:377.706667pt;}
.y76{bottom:380.026667pt;}
.ybb{bottom:381.066667pt;}
.y102{bottom:384.586667pt;}
.y4c{bottom:386.106667pt;}
.y164{bottom:387.146667pt;}
.y118{bottom:388.106667pt;}
.y13a{bottom:389.786667pt;}
.y18{bottom:392.746667pt;}
.y92{bottom:393.306667pt;}
.y1c1{bottom:393.706667pt;}
.y75{bottom:395.626667pt;}
.ye2{bottom:395.706667pt;}
.yba{bottom:396.666667pt;}
.y101{bottom:400.186667pt;}
.y4b{bottom:401.706667pt;}
.y163{bottom:402.826667pt;}
.y139{bottom:405.386667pt;}
.y17{bottom:408.346667pt;}
.y91{bottom:408.986667pt;}
.y1c0{bottom:409.306667pt;}
.yb9{bottom:412.266667pt;}
.y100{bottom:415.786667pt;}
.y183{bottom:417.306667pt;}
.y162{bottom:418.453333pt;}
.y74{bottom:419.253333pt;}
.y138{bottom:421.093333pt;}
.y90{bottom:424.613333pt;}
.y1bf{bottom:425.013333pt;}
.y1ac{bottom:429.973333pt;}
.yff{bottom:431.493333pt;}
.y16{bottom:432.293333pt;}
.y182{bottom:433.013333pt;}
.y4a{bottom:433.333333pt;}
.y161{bottom:434.133333pt;}
.yb8{bottom:435.973333pt;}
.y137{bottom:436.693333pt;}
.y1ab{bottom:445.653333pt;}
.y73{bottom:448.293333pt;}
.y181{bottom:448.613333pt;}
.y49{bottom:449.013333pt;}
.y160{bottom:449.733333pt;}
.yfe{bottom:455.093333pt;}
.y136{bottom:460.293333pt;}
.y180{bottom:464.293333pt;}
.y48{bottom:464.613333pt;}
.y15f{bottom:465.333333pt;}
.y1aa{bottom:467.253333pt;}
.yb7{bottom:467.573333pt;}
.y15{bottom:475.493333pt;}
.y72{bottom:479.893333pt;}
.y47{bottom:480.293333pt;}
.y15e{bottom:481.013333pt;}
.y1a9{bottom:482.933333pt;}
.yb6{bottom:483.253333pt;}
.yfd{bottom:486.693333pt;}
.y135{bottom:492.213333pt;}
.y71{bottom:495.493333pt;}
.y46{bottom:495.893333pt;}
.y15d{bottom:496.613333pt;}
.y1a8{bottom:498.533333pt;}
.yb5{bottom:498.853333pt;}
.yfc{bottom:502.373333pt;}
.y14{bottom:508.373333pt;}
.y70{bottom:511.173333pt;}
.y17f{bottom:511.493333pt;}
.y15c{bottom:512.293333pt;}
.yfb{bottom:517.973333pt;}
.y1be{bottom:519.173333pt;}
.yb4{bottom:522.453333pt;}
.y13{bottom:524.053333pt;}
.y6f{bottom:526.773333pt;}
.y17e{bottom:527.173333pt;}
.y45{bottom:527.493333pt;}
.y15b{bottom:527.893333pt;}
.yfa{bottom:533.653333pt;}
.y1bd{bottom:534.773333pt;}
.y134{bottom:535.173333pt;}
.y12{bottom:539.653333pt;}
.y6e{bottom:542.453333pt;}
.y17d{bottom:542.773333pt;}
.y44{bottom:543.173333pt;}
.y15a{bottom:543.493333pt;}
.y1bc{bottom:550.453333pt;}
.y133{bottom:550.773333pt;}
.yb3{bottom:554.133333pt;}
.y11{bottom:555.333333pt;}
.y8f{bottom:558.053333pt;}
.y17c{bottom:558.453333pt;}
.y43{bottom:558.773333pt;}
.y159{bottom:559.173333pt;}
.yf9{bottom:565.253333pt;}
.y1a7{bottom:565.333333pt;}
.y6d{bottom:566.053333pt;}
.y132{bottom:566.453333pt;}
.yb2{bottom:569.733333pt;}
.y10{bottom:570.933333pt;}
.y8e{bottom:573.653333pt;}
.y17b{bottom:574.053333pt;}
.y42{bottom:574.453333pt;}
.yf8{bottom:580.853333pt;}
.y1a6{bottom:581.013333pt;}
.y131{bottom:582.053333pt;}
.yb1{bottom:585.413333pt;}
.yf{bottom:586.533333pt;}
.y8d{bottom:589.333333pt;}
.y1bb{bottom:589.653333pt;}
.y41{bottom:590.053333pt;}
.y158{bottom:590.773333pt;}
.yf7{bottom:596.533333pt;}
.y1a5{bottom:596.613333pt;}
.y6c{bottom:597.653333pt;}
.yb0{bottom:601.013333pt;}
.ye{bottom:602.213333pt;}
.y17a{bottom:605.653333pt;}
.y157{bottom:606.453333pt;}
.yf6{bottom:612.133333pt;}
.y8c{bottom:612.933333pt;}
.y6b{bottom:613.333333pt;}
.yd{bottom:617.813333pt;}
.y1a4{bottom:620.533333pt;}
.ye1{bottom:620.693333pt;}
.y179{bottom:621.333333pt;}
.y40{bottom:621.653333pt;}
.y156{bottom:622.053333pt;}
.yc9{bottom:623.973333pt;}
.yaf{bottom:624.613333pt;}
.yf5{bottom:627.813333pt;}
.y6a{bottom:628.933333pt;}
.y130{bottom:629.333333pt;}
.yc{bottom:633.493333pt;}
.y178{bottom:636.933333pt;}
.y3f{bottom:637.333333pt;}
.y155{bottom:637.653333pt;}
.yf4{bottom:643.413333pt;}
.y69{bottom:644.613333pt;}
.y12f{bottom:644.933333pt;}
.yb{bottom:649.093333pt;}
.ye0{bottom:652.373333pt;}
.y177{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.y154{bottom:653.333333pt;}
.y1a3{bottom:653.733333pt;}
.yc8{bottom:655.573333pt;}
.yae{bottom:656.293333pt;}
.yf3{bottom:659.013333pt;}
.y68{bottom:660.213333pt;}
.y12e{bottom:660.613333pt;}
.ydf{bottom:667.973333pt;}
.y176{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.y153{bottom:668.933333pt;}
.yad{bottom:671.893333pt;}
.ya{bottom:673.013333pt;}
.y67{bottom:675.813333pt;}
.y12d{bottom:676.213333pt;}
.yde{bottom:683.653333pt;}
.y3c{bottom:684.213333pt;}
.y152{bottom:684.613333pt;}
.yf2{bottom:690.693333pt;}
.y8b{bottom:691.493333pt;}
.y12c{bottom:691.813333pt;}
.yac{bottom:695.573333pt;}
.y1a2{bottom:696.613333pt;}
.ydd{bottom:699.253333pt;}
.y66{bottom:699.493333pt;}
.y3b{bottom:699.813333pt;}
.y151{bottom:700.213333pt;}
.y8a{bottom:707.093333pt;}
.y1ba{bottom:707.493333pt;}
.y1a1{bottom:712.293333pt;}
.ydc{bottom:714.853333pt;}
.y3a{bottom:715.493333pt;}
.y150{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.yf1{bottom:719.333333pt;}
.y12b{bottom:723.493333pt;}
.yab{bottom:727.173333pt;}
.y1a0{bottom:727.893333pt;}
.ydb{bottom:730.533333pt;}
.y89{bottom:730.693333pt;}
.y39{bottom:731.093333pt;}
.y14f{bottom:731.493333pt;}
.y117{bottom:739.093333pt;}
.yaa{bottom:742.773333pt;}
.y19f{bottom:743.573333pt;}
.yda{bottom:746.133333pt;}
.y38{bottom:746.693333pt;}
.y14e{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y12a{bottom:754.693333pt;}
.ya9{bottom:758.453333pt;}
.y19e{bottom:759.173333pt;}
.y65{bottom:762.373333pt;}
.y14d{bottom:762.693333pt;}
.y129{bottom:770.373333pt;}
.y116{bottom:770.693333pt;}
.ya8{bottom:774.053333pt;}
.y19d{bottom:774.773333pt;}
.yd9{bottom:777.813333pt;}
.y64{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y128{bottom:785.973333pt;}
.y115{bottom:786.373333pt;}
.ya7{bottom:789.733333pt;}
.y19c{bottom:790.453333pt;}
.y63{bottom:793.653333pt;}
.y36{bottom:793.973333pt;}
.y114{bottom:801.973333pt;}
.ya6{bottom:805.333333pt;}
.yd8{bottom:806.453333pt;}
.y62{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y113{bottom:817.653333pt;}
.y19b{bottom:822.053333pt;}
.y88{bottom:824.853333pt;}
.y34{bottom:825.253333pt;}
.ya5{bottom:828.933333pt;}
.y61{bottom:832.853333pt;}
.y112{bottom:833.253333pt;}
.y19a{bottom:837.733333pt;}
.y33{bottom:840.853333pt;}
.y14c{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y87{bottom:848.533333pt;}
.y111{bottom:848.853333pt;}
.y199{bottom:853.333333pt;}
.y175{bottom:856.533333pt;}
.y14b{bottom:856.853333pt;}
.ya4{bottom:860.613333pt;}
.y60{bottom:864.533333pt;}
.y198{bottom:868.933333pt;}
.y174{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.ya3{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y5f{bottom:880.133333pt;}
.y197{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y5e{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y196{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.y5d{bottom:911.440000pt;}
.y195{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y5c{bottom:927.040000pt;}
.ya2{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y5b{bottom:942.720000pt;}
.yd7{bottom:943.040000pt;}
.ya1{bottom:947.120000pt;}
.y14a{bottom:950.720000pt;}
.yd6{bottom:958.720000pt;}
.ya0{bottom:962.800000pt;}
.y5a{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yd5{bottom:974.320000pt;}
.y9f{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.yd4{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y9e{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h9{height:54.187500pt;}
.hd{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.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;}
.xf{left:99.039988pt;}
.x2{left:180.266655pt;}
.x5{left:269.386655pt;}
.x7{left:270.746655pt;}
.xb{left:287.226655pt;}
.xd{left:294.906655pt;}
.x9{left:312.826655pt;}
.xe{left:505.013322pt;}
.x4{left:512.053322pt;}
.x8{left:540.053322pt;}
.x6{left:562.053322pt;}
.xa{left:594.053322pt;}
.xc{left:646.053322pt;}
.x3{left:704.053322pt;}
}




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