
    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_59b7b94c3c2bee0f01aaff32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_4fe08ff57fcd2a629754513a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_16cebbad187788a219f383a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_6b522d3a2711da363f500a0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_6da877f7c92014c0ad00ff4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_a757de5450ebf0e32539d789.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_bfda8ccecfb39d7f50c2f755.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e116510af85ce6a022e7dafe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_26548cad2e43f7fe5b1df564.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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:ffb;src:url('chunks/assets/font_285d8b97540b32cca182e72f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.148800px;}
.ls1{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.442080px;}
.ls8{letter-spacing:0.720000px;}
.lsf{letter-spacing:2.880000px;}
.ls3{letter-spacing:6.300000px;}
.ls9{letter-spacing:6.480000px;}
.lsd{letter-spacing:8.640000px;}
.ls13{letter-spacing:9.360000px;}
.lsb{letter-spacing:10.800000px;}
.ls11{letter-spacing:18.720000px;}
.ls7{letter-spacing:43.866720px;}
.sc_{text-shadow:none;}
.sc1{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);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws8{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-0.208560px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.391040px;}
._1{width:1.314720px;}
._6{width:2.844240px;}
._9{width:4.063680px;}
._2{width:5.244960px;}
._3{width:6.362400px;}
._4{width:8.355120px;}
._11{width:9.506400px;}
._b{width:10.577520px;}
._a{width:11.653200px;}
._c{width:13.207200px;}
._16{width:14.314080px;}
._15{width:15.373440px;}
._5{width:16.613280px;}
._18{width:17.640480px;}
._d{width:18.735360px;}
._8{width:20.228160px;}
._7{width:21.752640px;}
._10{width:23.616000px;}
._12{width:24.840000px;}
._13{width:25.954560px;}
._1a{width:27.264000px;}
._17{width:28.416960px;}
._14{width:30.047040px;}
._e{width:31.176000px;}
._f{width:32.256000px;}
._19{width:33.258240px;}
._21{width:34.709760px;}
._20{width:36.432000px;}
._1e{width:37.800000px;}
._1d{width:38.808000px;}
._1f{width:40.296000px;}
._1b{width:247.896000px;}
._1c{width:249.912000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.600000px;}
.y2{bottom:77.760000px;}
.y30{bottom:111.960000px;}
.y123{bottom:113.400000px;}
.yf7{bottom:114.300000px;}
.y175{bottom:117.360000px;}
.y1ca{bottom:119.700000px;}
.y5b{bottom:122.220000px;}
.yb0{bottom:122.400000px;}
.y10e{bottom:123.300000px;}
.y1c0{bottom:126.720000px;}
.y122{bottom:132.300000px;}
.yf6{bottom:135.000000px;}
.y174{bottom:138.060000px;}
.y1c9{bottom:140.400000px;}
.yaf{bottom:143.100000px;}
.y10d{bottom:144.000000px;}
.y1bf{bottom:147.420000px;}
.y2f{bottom:150.840000px;}
.y121{bottom:151.380000px;}
.y196{bottom:152.100000px;}
.yf5{bottom:155.700000px;}
.y173{bottom:158.760000px;}
.y5a{bottom:160.920000px;}
.y1c8{bottom:161.100000px;}
.yae{bottom:163.830000px;}
.y10c{bottom:164.730000px;}
.y1be{bottom:168.150000px;}
.y2e{bottom:169.050000px;}
.y120{bottom:170.310000px;}
.y85{bottom:170.850000px;}
.y195{bottom:172.830000px;}
.yf4{bottom:176.430000px;}
.y2d{bottom:176.610000px;}
.y172{bottom:179.490000px;}
.y59{bottom:181.650000px;}
.y1c7{bottom:181.830000px;}
.yad{bottom:184.530000px;}
.y10b{bottom:185.430000px;}
.y1bd{bottom:188.850000px;}
.y2c{bottom:189.210000px;}
.y11f{bottom:189.390000px;}
.y84{bottom:191.550000px;}
.y194{bottom:193.530000px;}
.yf3{bottom:197.130000px;}
.y171{bottom:200.190000px;}
.y1c6{bottom:202.530000px;}
.y14c{bottom:203.430000px;}
.yac{bottom:205.230000px;}
.y10a{bottom:206.130000px;}
.y11e{bottom:208.290000px;}
.y83{bottom:212.250000px;}
.y193{bottom:214.230000px;}
.y2b{bottom:215.850000px;}
.y58{bottom:220.350000px;}
.y1d4{bottom:223.230000px;}
.y14b{bottom:224.130000px;}
.yab{bottom:225.930000px;}
.yf2{bottom:226.830000px;}
.y1bc{bottom:227.010000px;}
.y11d{bottom:227.190000px;}
.y170{bottom:238.890000px;}
.y57{bottom:241.050000px;}
.y1c5{bottom:241.230000px;}
.y1ec{bottom:243.030000px;}
.y1d3{bottom:243.930000px;}
.y109{bottom:244.830000px;}
.yaa{bottom:246.630000px;}
.yf1{bottom:247.530000px;}
.y82{bottom:250.950000px;}
.y192{bottom:252.930000px;}
.y2a{bottom:257.610000px;}
.y16f{bottom:259.590000px;}
.y56{bottom:261.750000px;}
.y1c4{bottom:261.930000px;}
.y1eb{bottom:263.730000px;}
.y1bb{bottom:264.090000px;}
.y11c{bottom:264.630000px;}
.y108{bottom:264.990000px;}
.y14a{bottom:265.530000px;}
.ya9{bottom:267.330000px;}
.yf0{bottom:268.230000px;}
.y1d2{bottom:273.630000px;}
.y16e{bottom:280.290000px;}
.y55{bottom:282.450000px;}
.y1c3{bottom:282.630000px;}
.y1ba{bottom:282.990000px;}
.y107{bottom:283.890000px;}
.yd3{bottom:285.330000px;}
.y149{bottom:286.230000px;}
.ya8{bottom:288.030000px;}
.yef{bottom:288.930000px;}
.y81{bottom:289.650000px;}
.y191{bottom:291.630000px;}
.y1ea{bottom:293.430000px;}
.y1d1{bottom:294.330000px;}
.y16d{bottom:300.990000px;}
.y1b9{bottom:301.890000px;}
.y54{bottom:303.150000px;}
.y106{bottom:303.330000px;}
.yd2{bottom:306.030000px;}
.y148{bottom:306.930000px;}
.ya7{bottom:308.730000px;}
.y29{bottom:309.630000px;}
.y80{bottom:310.350000px;}
.y190{bottom:312.330000px;}
.y1d0{bottom:315.030000px;}
.y1b8{bottom:320.970000px;}
.y16c{bottom:321.690000px;}
.y1e9{bottom:323.130000px;}
.y53{bottom:323.850000px;}
.y105{bottom:324.030000px;}
.yd1{bottom:326.730000px;}
.y147{bottom:327.630000px;}
.ya6{bottom:329.430000px;}
.yee{bottom:330.330000px;}
.y7f{bottom:331.050000px;}
.y18f{bottom:333.030000px;}
.y28{bottom:338.610000px;}
.y1b7{bottom:339.870000px;}
.y16b{bottom:342.390000px;}
.y1e8{bottom:343.830000px;}
.y104{bottom:344.730000px;}
.yd0{bottom:347.430000px;}
.y146{bottom:348.150000px;}
.ya5{bottom:350.130000px;}
.yed{bottom:351.030000px;}
.y7e{bottom:351.750000px;}
.y18e{bottom:353.730000px;}
.y1b6{bottom:358.950000px;}
.y52{bottom:362.550000px;}
.y16a{bottom:363.090000px;}
.y11b{bottom:365.430000px;}
.y27{bottom:366.690000px;}
.ycf{bottom:368.130000px;}
.y145{bottom:368.850000px;}
.ya4{bottom:370.830000px;}
.yec{bottom:371.730000px;}
.y7d{bottom:372.450000px;}
.y1e7{bottom:373.530000px;}
.y18d{bottom:374.430000px;}
.y1b5{bottom:377.850000px;}
.y51{bottom:383.250000px;}
.y103{bottom:383.430000px;}
.y169{bottom:383.790000px;}
.y11a{bottom:386.130000px;}
.yce{bottom:388.830000px;}
.y144{bottom:389.550000px;}
.ya3{bottom:391.530000px;}
.yeb{bottom:392.430000px;}
.y26{bottom:392.970000px;}
.y1cf{bottom:395.130000px;}
.y1b4{bottom:396.750000px;}
.y1e6{bottom:403.230000px;}
.y50{bottom:403.950000px;}
.y102{bottom:404.130000px;}
.y168{bottom:404.490000px;}
.y119{bottom:406.830000px;}
.y25{bottom:410.115000px;}
.y143{bottom:410.295000px;}
.y7c{bottom:410.835000px;}
.ya2{bottom:412.275000px;}
.yea{bottom:413.175000px;}
.y1b3{bottom:415.875000px;}
.y1e5{bottom:423.975000px;}
.y4f{bottom:424.695000px;}
.y101{bottom:424.875000px;}
.y167{bottom:425.235000px;}
.y24{bottom:427.395000px;}
.ycd{bottom:427.575000px;}
.y7b{bottom:431.535000px;}
.ya1{bottom:432.975000px;}
.ye9{bottom:433.875000px;}
.y1b2{bottom:434.775000px;}
.y23{bottom:444.675000px;}
.y4e{bottom:445.395000px;}
.y100{bottom:445.575000px;}
.y166{bottom:445.935000px;}
.ycc{bottom:448.275000px;}
.y142{bottom:448.995000px;}
.ya0{bottom:453.675000px;}
.y1b1{bottom:453.855000px;}
.ye8{bottom:454.575000px;}
.y22{bottom:461.955000px;}
.y4d{bottom:466.095000px;}
.y118{bottom:466.275000px;}
.ycb{bottom:468.975000px;}
.y141{bottom:469.695000px;}
.y7a{bottom:470.595000px;}
.y1b0{bottom:472.755000px;}
.y9f{bottom:474.375000px;}
.ye7{bottom:475.275000px;}
.y21{bottom:479.235000px;}
.yff{bottom:484.275000px;}
.y165{bottom:484.635000px;}
.y4c{bottom:486.795000px;}
.y117{bottom:486.975000px;}
.yca{bottom:489.675000px;}
.y140{bottom:490.395000px;}
.y79{bottom:491.295000px;}
.y1af{bottom:491.655000px;}
.y9e{bottom:495.075000px;}
.ye6{bottom:495.975000px;}
.y20{bottom:496.515000px;}
.y1e4{bottom:503.715000px;}
.yfe{bottom:504.975000px;}
.y164{bottom:505.335000px;}
.y1ce{bottom:505.875000px;}
.y4b{bottom:507.495000px;}
.y116{bottom:507.675000px;}
.yc9{bottom:510.375000px;}
.y1ae{bottom:510.735000px;}
.y13f{bottom:511.095000px;}
.y78{bottom:511.995000px;}
.y1f{bottom:513.615000px;}
.ye5{bottom:516.675000px;}
.yfd{bottom:525.675000px;}
.y163{bottom:525.855000px;}
.y4a{bottom:528.195000px;}
.y115{bottom:528.375000px;}
.y1ad{bottom:529.635000px;}
.y1e{bottom:530.895000px;}
.y13e{bottom:531.795000px;}
.y77{bottom:532.695000px;}
.y9d{bottom:533.775000px;}
.y1cd{bottom:536.835000px;}
.ye4{bottom:537.375000px;}
.yfc{bottom:546.375000px;}
.y162{bottom:546.555000px;}
.y1ac{bottom:548.715000px;}
.y49{bottom:548.895000px;}
.yc8{bottom:549.075000px;}
.y13d{bottom:552.495000px;}
.y76{bottom:553.395000px;}
.y9c{bottom:554.475000px;}
.y18c{bottom:555.375000px;}
.ye3{bottom:558.075000px;}
.y1e3{bottom:563.475000px;}
.yfb{bottom:567.075000px;}
.y161{bottom:567.255000px;}
.y1ab{bottom:567.615000px;}
.y1d{bottom:568.335000px;}
.y48{bottom:569.595000px;}
.yc7{bottom:569.775000px;}
.y13c{bottom:573.195000px;}
.y75{bottom:574.095000px;}
.y9b{bottom:575.175000px;}
.y18b{bottom:576.075000px;}
.ye2{bottom:578.775000px;}
.y1e2{bottom:584.175000px;}
.y1aa{bottom:586.515000px;}
.y1cc{bottom:587.775000px;}
.y160{bottom:587.955000px;}
.y47{bottom:590.295000px;}
.y74{bottom:594.795000px;}
.y9a{bottom:595.875000px;}
.y18a{bottom:596.775000px;}
.y1c{bottom:597.675000px;}
.ye1{bottom:599.475000px;}
.y1e1{bottom:604.875000px;}
.yfa{bottom:605.775000px;}
.y1c2{bottom:608.115000px;}
.yc6{bottom:608.475000px;}
.y15f{bottom:608.655000px;}
.y46{bottom:610.995000px;}
.y13b{bottom:611.895000px;}
.y1b{bottom:614.775000px;}
.y73{bottom:615.495000px;}
.y99{bottom:616.575000px;}
.y189{bottom:617.475000px;}
.ye0{bottom:620.175000px;}
.y1a9{bottom:623.955000px;}
.yf9{bottom:626.475000px;}
.y1c1{bottom:628.815000px;}
.y114{bottom:629.175000px;}
.y15e{bottom:629.355000px;}
.y1a{bottom:632.055000px;}
.y13a{bottom:632.595000px;}
.y1e0{bottom:634.575000px;}
.y72{bottom:636.195000px;}
.y98{bottom:637.275000px;}
.y188{bottom:638.175000px;}
.yc5{bottom:647.175000px;}
.y19{bottom:649.335000px;}
.y45{bottom:649.695000px;}
.ydf{bottom:649.875000px;}
.y139{bottom:653.325000px;}
.y1df{bottom:655.305000px;}
.y187{bottom:658.905000px;}
.y1a8{bottom:662.325000px;}
.y18{bottom:666.645000px;}
.yc4{bottom:667.905000px;}
.y15d{bottom:668.085000px;}
.y44{bottom:670.425000px;}
.yde{bottom:670.605000px;}
.y138{bottom:674.025000px;}
.y71{bottom:674.925000px;}
.y97{bottom:676.005000px;}
.y186{bottom:679.605000px;}
.y1a7{bottom:681.225000px;}
.y17{bottom:683.925000px;}
.y1de{bottom:685.005000px;}
.yc3{bottom:688.605000px;}
.y15c{bottom:688.785000px;}
.y43{bottom:691.125000px;}
.ydd{bottom:691.305000px;}
.y137{bottom:694.725000px;}
.y70{bottom:695.625000px;}
.y96{bottom:696.705000px;}
.y185{bottom:700.305000px;}
.y16{bottom:701.205000px;}
.y1dd{bottom:705.705000px;}
.yc2{bottom:709.305000px;}
.y15b{bottom:709.485000px;}
.y42{bottom:711.645000px;}
.y113{bottom:712.005000px;}
.y136{bottom:715.425000px;}
.y6f{bottom:716.325000px;}
.y95{bottom:717.405000px;}
.y15{bottom:718.305000px;}
.y1a6{bottom:719.205000px;}
.y184{bottom:721.005000px;}
.yc1{bottom:730.005000px;}
.y15a{bottom:730.185000px;}
.y41{bottom:732.345000px;}
.y112{bottom:732.705000px;}
.y1dc{bottom:735.045000px;}
.y14{bottom:735.585000px;}
.y135{bottom:736.125000px;}
.y6e{bottom:737.025000px;}
.y94{bottom:738.105000px;}
.y1a5{bottom:738.285000px;}
.yc0{bottom:750.705000px;}
.y159{bottom:750.885000px;}
.y13{bottom:752.865000px;}
.y111{bottom:753.405000px;}
.y1a4{bottom:757.185000px;}
.y6d{bottom:757.545000px;}
.y93{bottom:758.805000px;}
.y183{bottom:759.705000px;}
.y1db{bottom:765.105000px;}
.y12{bottom:769.965000px;}
.y40{bottom:771.045000px;}
.ybf{bottom:771.405000px;}
.y110{bottom:774.105000px;}
.y134{bottom:774.825000px;}
.y1a3{bottom:776.085000px;}
.y6c{bottom:778.245000px;}
.y92{bottom:779.505000px;}
.y182{bottom:780.405000px;}
.y158{bottom:789.225000px;}
.y3f{bottom:791.745000px;}
.ybe{bottom:792.105000px;}
.y10f{bottom:794.805000px;}
.y1a2{bottom:795.165000px;}
.y133{bottom:795.525000px;}
.y91{bottom:800.205000px;}
.y181{bottom:801.105000px;}
.y10{bottom:807.765000px;}
.y157{bottom:808.125000px;}
.y3e{bottom:812.445000px;}
.ybd{bottom:812.805000px;}
.y1a1{bottom:814.065000px;}
.y1da{bottom:815.505000px;}
.y11{bottom:816.045000px;}
.y132{bottom:816.225000px;}
.y6b{bottom:816.585000px;}
.y90{bottom:820.905000px;}
.y180{bottom:821.805000px;}
.y156{bottom:827.205000px;}
.y3d{bottom:833.145000px;}
.ydc{bottom:833.505000px;}
.y6a{bottom:835.485000px;}
.y131{bottom:836.925000px;}
.yf{bottom:838.725000px;}
.y8f{bottom:841.605000px;}
.y17f{bottom:842.505000px;}
.y1d9{bottom:845.205000px;}
.y155{bottom:846.105000px;}
.ybc{bottom:851.505000px;}
.y1a0{bottom:852.045000px;}
.y3c{bottom:853.845000px;}
.ydb{bottom:854.205000px;}
.y69{bottom:854.565000px;}
.y130{bottom:857.625000px;}
.y17e{bottom:863.205000px;}
.ye{bottom:864.285000px;}
.y154{bottom:865.005000px;}
.y19f{bottom:870.945000px;}
.ybb{bottom:872.205000px;}
.y68{bottom:873.465000px;}
.y3b{bottom:874.545000px;}
.yf8{bottom:874.905000px;}
.y12f{bottom:878.325000px;}
.y8e{bottom:880.305000px;}
.y17d{bottom:883.905000px;}
.y153{bottom:884.085000px;}
.yd{bottom:890.025000px;}
.y67{bottom:892.545000px;}
.yba{bottom:892.905000px;}
.y3a{bottom:895.245000px;}
.y1cb{bottom:895.605000px;}
.y12e{bottom:899.070000px;}
.y8d{bottom:901.050000px;}
.y152{bottom:903.030000px;}
.y17c{bottom:904.650000px;}
.y19e{bottom:908.970000px;}
.y66{bottom:911.490000px;}
.yb9{bottom:913.650000px;}
.y39{bottom:915.990000px;}
.y1d8{bottom:916.350000px;}
.yc{bottom:917.250000px;}
.y12d{bottom:919.770000px;}
.y151{bottom:922.110000px;}
.y17b{bottom:925.350000px;}
.y19d{bottom:928.050000px;}
.y65{bottom:930.390000px;}
.yda{bottom:934.350000px;}
.y38{bottom:936.690000px;}
.y8c{bottom:939.750000px;}
.y12c{bottom:940.470000px;}
.y150{bottom:941.010000px;}
.y17a{bottom:946.050000px;}
.y19c{bottom:946.950000px;}
.y64{bottom:949.470000px;}
.yb{bottom:950.190000px;}
.yb8{bottom:952.350000px;}
.yd9{bottom:955.050000px;}
.y8b{bottom:960.450000px;}
.y12b{bottom:961.170000px;}
.y19b{bottom:965.850000px;}
.y1d7{bottom:966.750000px;}
.y63{bottom:968.370000px;}
.yb7{bottom:973.050000px;}
.y37{bottom:975.390000px;}
.yd8{bottom:975.750000px;}
.y14f{bottom:978.450000px;}
.y8a{bottom:981.150000px;}
.y12a{bottom:981.870000px;}
.ya{bottom:983.130000px;}
.y179{bottom:984.750000px;}
.y19a{bottom:984.930000px;}
.y62{bottom:987.450000px;}
.yb6{bottom:993.750000px;}
.y36{bottom:996.090000px;}
.yd7{bottom:996.450000px;}
.y14e{bottom:999.150000px;}
.y199{bottom:1003.830000px;}
.y178{bottom:1005.450000px;}
.y61{bottom:1006.350000px;}
.yb5{bottom:1014.450000px;}
.y35{bottom:1016.790000px;}
.yd6{bottom:1017.150000px;}
.y89{bottom:1019.850000px;}
.y129{bottom:1020.570000px;}
.y198{bottom:1022.910000px;}
.y60{bottom:1025.250000px;}
.y177{bottom:1026.150000px;}
.y9{bottom:1034.610000px;}
.yb4{bottom:1035.150000px;}
.y34{bottom:1037.490000px;}
.yd5{bottom:1037.850000px;}
.y88{bottom:1040.550000px;}
.y128{bottom:1041.270000px;}
.y197{bottom:1041.810000px;}
.y5f{bottom:1044.330000px;}
.y176{bottom:1046.850000px;}
.yb3{bottom:1055.850000px;}
.y33{bottom:1058.190000px;}
.yd4{bottom:1058.550000px;}
.y127{bottom:1061.970000px;}
.y5e{bottom:1063.230000px;}
.y8{bottom:1065.930000px;}
.y1d6{bottom:1067.550000px;}
.yb2{bottom:1076.550000px;}
.y14d{bottom:1078.890000px;}
.y87{bottom:1079.250000px;}
.y5d{bottom:1082.310000px;}
.y126{bottom:1082.670000px;}
.y7{bottom:1085.550000px;}
.y1d5{bottom:1088.250000px;}
.y32{bottom:1096.530000px;}
.yb1{bottom:1097.250000px;}
.y5c{bottom:1101.210000px;}
.y6{bottom:1104.090000px;}
.y86{bottom:1117.950000px;}
.y125{bottom:1121.010000px;}
.y5{bottom:1122.810000px;}
.y31{bottom:1138.650000px;}
.y124{bottom:1139.910000px;}
.y4{bottom:1141.380000px;}
.y1{bottom:1194.300000px;}
.hc{height:41.535703px;}
.h9{height:43.246406px;}
.h4{height:50.364141px;}
.h3{height:53.573906px;}
.h10{height:54.878906px;}
.hb{height:58.833281px;}
.hf{height:59.383125px;}
.hd{height:59.439023px;}
.he{height:63.949219px;}
.h7{height:64.546875px;}
.h2{height:65.884219px;}
.ha{height:72.262617px;}
.h6{height:80.208984px;}
.h5{height:102.832031px;}
.h8{height:1262.875980px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.976250px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x8{left:133.416000px;}
.x5{left:135.396000px;}
.xf{left:159.690000px;}
.x14{left:170.130000px;}
.xe{left:180.750000px;}
.x13{left:191.550000px;}
.x11{left:234.030000px;}
.x12{left:244.695000px;}
.x6{left:269.355000px;}
.x10{left:287.175000px;}
.x4{left:318.135000px;}
.xd{left:343.695000px;}
.xa{left:376.275000px;}
.x9{left:385.635000px;}
.x2{left:434.085000px;}
.x7{left:446.685000px;}
.xb{left:501.761250px;}
.xc{left:507.885000px;}
.x15{left:516.885000px;}
.x1{left:531.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.132267pt;}
.ls1{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.392960pt;}
.ls8{letter-spacing:0.640000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls3{letter-spacing:5.600000pt;}
.ls9{letter-spacing:5.760000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls13{letter-spacing:8.320000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls11{letter-spacing:16.640000pt;}
.ls7{letter-spacing:38.992640pt;}
.ws9{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-0.185387pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.168640pt;}
._6{width:2.528213pt;}
._9{width:3.612160pt;}
._2{width:4.662187pt;}
._3{width:5.655467pt;}
._4{width:7.426773pt;}
._11{width:8.450133pt;}
._b{width:9.402240pt;}
._a{width:10.358400pt;}
._c{width:11.739733pt;}
._16{width:12.723627pt;}
._15{width:13.665280pt;}
._5{width:14.767360pt;}
._18{width:15.680427pt;}
._d{width:16.653653pt;}
._8{width:17.980587pt;}
._7{width:19.335680pt;}
._10{width:20.992000pt;}
._12{width:22.080000pt;}
._13{width:23.070720pt;}
._1a{width:24.234667pt;}
._17{width:25.259520pt;}
._14{width:26.708480pt;}
._e{width:27.712000pt;}
._f{width:28.672000pt;}
._19{width:29.562880pt;}
._21{width:30.853120pt;}
._20{width:32.384000pt;}
._1e{width:33.600000pt;}
._1d{width:34.496000pt;}
._1f{width:35.818667pt;}
._1b{width:220.352000pt;}
._1c{width:222.144000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:69.120000pt;}
.y30{bottom:99.520000pt;}
.y123{bottom:100.800000pt;}
.yf7{bottom:101.600000pt;}
.y175{bottom:104.320000pt;}
.y1ca{bottom:106.400000pt;}
.y5b{bottom:108.640000pt;}
.yb0{bottom:108.800000pt;}
.y10e{bottom:109.600000pt;}
.y1c0{bottom:112.640000pt;}
.y122{bottom:117.600000pt;}
.yf6{bottom:120.000000pt;}
.y174{bottom:122.720000pt;}
.y1c9{bottom:124.800000pt;}
.yaf{bottom:127.200000pt;}
.y10d{bottom:128.000000pt;}
.y1bf{bottom:131.040000pt;}
.y2f{bottom:134.080000pt;}
.y121{bottom:134.560000pt;}
.y196{bottom:135.200000pt;}
.yf5{bottom:138.400000pt;}
.y173{bottom:141.120000pt;}
.y5a{bottom:143.040000pt;}
.y1c8{bottom:143.200000pt;}
.yae{bottom:145.626667pt;}
.y10c{bottom:146.426667pt;}
.y1be{bottom:149.466667pt;}
.y2e{bottom:150.266667pt;}
.y120{bottom:151.386667pt;}
.y85{bottom:151.866667pt;}
.y195{bottom:153.626667pt;}
.yf4{bottom:156.826667pt;}
.y2d{bottom:156.986667pt;}
.y172{bottom:159.546667pt;}
.y59{bottom:161.466667pt;}
.y1c7{bottom:161.626667pt;}
.yad{bottom:164.026667pt;}
.y10b{bottom:164.826667pt;}
.y1bd{bottom:167.866667pt;}
.y2c{bottom:168.186667pt;}
.y11f{bottom:168.346667pt;}
.y84{bottom:170.266667pt;}
.y194{bottom:172.026667pt;}
.yf3{bottom:175.226667pt;}
.y171{bottom:177.946667pt;}
.y1c6{bottom:180.026667pt;}
.y14c{bottom:180.826667pt;}
.yac{bottom:182.426667pt;}
.y10a{bottom:183.226667pt;}
.y11e{bottom:185.146667pt;}
.y83{bottom:188.666667pt;}
.y193{bottom:190.426667pt;}
.y2b{bottom:191.866667pt;}
.y58{bottom:195.866667pt;}
.y1d4{bottom:198.426667pt;}
.y14b{bottom:199.226667pt;}
.yab{bottom:200.826667pt;}
.yf2{bottom:201.626667pt;}
.y1bc{bottom:201.786667pt;}
.y11d{bottom:201.946667pt;}
.y170{bottom:212.346667pt;}
.y57{bottom:214.266667pt;}
.y1c5{bottom:214.426667pt;}
.y1ec{bottom:216.026667pt;}
.y1d3{bottom:216.826667pt;}
.y109{bottom:217.626667pt;}
.yaa{bottom:219.226667pt;}
.yf1{bottom:220.026667pt;}
.y82{bottom:223.066667pt;}
.y192{bottom:224.826667pt;}
.y2a{bottom:228.986667pt;}
.y16f{bottom:230.746667pt;}
.y56{bottom:232.666667pt;}
.y1c4{bottom:232.826667pt;}
.y1eb{bottom:234.426667pt;}
.y1bb{bottom:234.746667pt;}
.y11c{bottom:235.226667pt;}
.y108{bottom:235.546667pt;}
.y14a{bottom:236.026667pt;}
.ya9{bottom:237.626667pt;}
.yf0{bottom:238.426667pt;}
.y1d2{bottom:243.226667pt;}
.y16e{bottom:249.146667pt;}
.y55{bottom:251.066667pt;}
.y1c3{bottom:251.226667pt;}
.y1ba{bottom:251.546667pt;}
.y107{bottom:252.346667pt;}
.yd3{bottom:253.626667pt;}
.y149{bottom:254.426667pt;}
.ya8{bottom:256.026667pt;}
.yef{bottom:256.826667pt;}
.y81{bottom:257.466667pt;}
.y191{bottom:259.226667pt;}
.y1ea{bottom:260.826667pt;}
.y1d1{bottom:261.626667pt;}
.y16d{bottom:267.546667pt;}
.y1b9{bottom:268.346667pt;}
.y54{bottom:269.466667pt;}
.y106{bottom:269.626667pt;}
.yd2{bottom:272.026667pt;}
.y148{bottom:272.826667pt;}
.ya7{bottom:274.426667pt;}
.y29{bottom:275.226667pt;}
.y80{bottom:275.866667pt;}
.y190{bottom:277.626667pt;}
.y1d0{bottom:280.026667pt;}
.y1b8{bottom:285.306667pt;}
.y16c{bottom:285.946667pt;}
.y1e9{bottom:287.226667pt;}
.y53{bottom:287.866667pt;}
.y105{bottom:288.026667pt;}
.yd1{bottom:290.426667pt;}
.y147{bottom:291.226667pt;}
.ya6{bottom:292.826667pt;}
.yee{bottom:293.626667pt;}
.y7f{bottom:294.266667pt;}
.y18f{bottom:296.026667pt;}
.y28{bottom:300.986667pt;}
.y1b7{bottom:302.106667pt;}
.y16b{bottom:304.346667pt;}
.y1e8{bottom:305.626667pt;}
.y104{bottom:306.426667pt;}
.yd0{bottom:308.826667pt;}
.y146{bottom:309.466667pt;}
.ya5{bottom:311.226667pt;}
.yed{bottom:312.026667pt;}
.y7e{bottom:312.666667pt;}
.y18e{bottom:314.426667pt;}
.y1b6{bottom:319.066667pt;}
.y52{bottom:322.266667pt;}
.y16a{bottom:322.746667pt;}
.y11b{bottom:324.826667pt;}
.y27{bottom:325.946667pt;}
.ycf{bottom:327.226667pt;}
.y145{bottom:327.866667pt;}
.ya4{bottom:329.626667pt;}
.yec{bottom:330.426667pt;}
.y7d{bottom:331.066667pt;}
.y1e7{bottom:332.026667pt;}
.y18d{bottom:332.826667pt;}
.y1b5{bottom:335.866667pt;}
.y51{bottom:340.666667pt;}
.y103{bottom:340.826667pt;}
.y169{bottom:341.146667pt;}
.y11a{bottom:343.226667pt;}
.yce{bottom:345.626667pt;}
.y144{bottom:346.266667pt;}
.ya3{bottom:348.026667pt;}
.yeb{bottom:348.826667pt;}
.y26{bottom:349.306667pt;}
.y1cf{bottom:351.226667pt;}
.y1b4{bottom:352.666667pt;}
.y1e6{bottom:358.426667pt;}
.y50{bottom:359.066667pt;}
.y102{bottom:359.226667pt;}
.y168{bottom:359.546667pt;}
.y119{bottom:361.626667pt;}
.y25{bottom:364.546667pt;}
.y143{bottom:364.706667pt;}
.y7c{bottom:365.186667pt;}
.ya2{bottom:366.466667pt;}
.yea{bottom:367.266667pt;}
.y1b3{bottom:369.666667pt;}
.y1e5{bottom:376.866667pt;}
.y4f{bottom:377.506667pt;}
.y101{bottom:377.666667pt;}
.y167{bottom:377.986667pt;}
.y24{bottom:379.906667pt;}
.ycd{bottom:380.066667pt;}
.y7b{bottom:383.586667pt;}
.ya1{bottom:384.866667pt;}
.ye9{bottom:385.666667pt;}
.y1b2{bottom:386.466667pt;}
.y23{bottom:395.266667pt;}
.y4e{bottom:395.906667pt;}
.y100{bottom:396.066667pt;}
.y166{bottom:396.386667pt;}
.ycc{bottom:398.466667pt;}
.y142{bottom:399.106667pt;}
.ya0{bottom:403.266667pt;}
.y1b1{bottom:403.426667pt;}
.ye8{bottom:404.066667pt;}
.y22{bottom:410.626667pt;}
.y4d{bottom:414.306667pt;}
.y118{bottom:414.466667pt;}
.ycb{bottom:416.866667pt;}
.y141{bottom:417.506667pt;}
.y7a{bottom:418.306667pt;}
.y1b0{bottom:420.226667pt;}
.y9f{bottom:421.666667pt;}
.ye7{bottom:422.466667pt;}
.y21{bottom:425.986667pt;}
.yff{bottom:430.466667pt;}
.y165{bottom:430.786667pt;}
.y4c{bottom:432.706667pt;}
.y117{bottom:432.866667pt;}
.yca{bottom:435.266667pt;}
.y140{bottom:435.906667pt;}
.y79{bottom:436.706667pt;}
.y1af{bottom:437.026667pt;}
.y9e{bottom:440.066667pt;}
.ye6{bottom:440.866667pt;}
.y20{bottom:441.346667pt;}
.y1e4{bottom:447.746667pt;}
.yfe{bottom:448.866667pt;}
.y164{bottom:449.186667pt;}
.y1ce{bottom:449.666667pt;}
.y4b{bottom:451.106667pt;}
.y116{bottom:451.266667pt;}
.yc9{bottom:453.666667pt;}
.y1ae{bottom:453.986667pt;}
.y13f{bottom:454.306667pt;}
.y78{bottom:455.106667pt;}
.y1f{bottom:456.546667pt;}
.ye5{bottom:459.266667pt;}
.yfd{bottom:467.266667pt;}
.y163{bottom:467.426667pt;}
.y4a{bottom:469.506667pt;}
.y115{bottom:469.666667pt;}
.y1ad{bottom:470.786667pt;}
.y1e{bottom:471.906667pt;}
.y13e{bottom:472.706667pt;}
.y77{bottom:473.506667pt;}
.y9d{bottom:474.466667pt;}
.y1cd{bottom:477.186667pt;}
.ye4{bottom:477.666667pt;}
.yfc{bottom:485.666667pt;}
.y162{bottom:485.826667pt;}
.y1ac{bottom:487.746667pt;}
.y49{bottom:487.906667pt;}
.yc8{bottom:488.066667pt;}
.y13d{bottom:491.106667pt;}
.y76{bottom:491.906667pt;}
.y9c{bottom:492.866667pt;}
.y18c{bottom:493.666667pt;}
.ye3{bottom:496.066667pt;}
.y1e3{bottom:500.866667pt;}
.yfb{bottom:504.066667pt;}
.y161{bottom:504.226667pt;}
.y1ab{bottom:504.546667pt;}
.y1d{bottom:505.186667pt;}
.y48{bottom:506.306667pt;}
.yc7{bottom:506.466667pt;}
.y13c{bottom:509.506667pt;}
.y75{bottom:510.306667pt;}
.y9b{bottom:511.266667pt;}
.y18b{bottom:512.066667pt;}
.ye2{bottom:514.466667pt;}
.y1e2{bottom:519.266667pt;}
.y1aa{bottom:521.346667pt;}
.y1cc{bottom:522.466667pt;}
.y160{bottom:522.626667pt;}
.y47{bottom:524.706667pt;}
.y74{bottom:528.706667pt;}
.y9a{bottom:529.666667pt;}
.y18a{bottom:530.466667pt;}
.y1c{bottom:531.266667pt;}
.ye1{bottom:532.866667pt;}
.y1e1{bottom:537.666667pt;}
.yfa{bottom:538.466667pt;}
.y1c2{bottom:540.546667pt;}
.yc6{bottom:540.866667pt;}
.y15f{bottom:541.026667pt;}
.y46{bottom:543.106667pt;}
.y13b{bottom:543.906667pt;}
.y1b{bottom:546.466667pt;}
.y73{bottom:547.106667pt;}
.y99{bottom:548.066667pt;}
.y189{bottom:548.866667pt;}
.ye0{bottom:551.266667pt;}
.y1a9{bottom:554.626667pt;}
.yf9{bottom:556.866667pt;}
.y1c1{bottom:558.946667pt;}
.y114{bottom:559.266667pt;}
.y15e{bottom:559.426667pt;}
.y1a{bottom:561.826667pt;}
.y13a{bottom:562.306667pt;}
.y1e0{bottom:564.066667pt;}
.y72{bottom:565.506667pt;}
.y98{bottom:566.466667pt;}
.y188{bottom:567.266667pt;}
.yc5{bottom:575.266667pt;}
.y19{bottom:577.186667pt;}
.y45{bottom:577.506667pt;}
.ydf{bottom:577.666667pt;}
.y139{bottom:580.733333pt;}
.y1df{bottom:582.493333pt;}
.y187{bottom:585.693333pt;}
.y1a8{bottom:588.733333pt;}
.y18{bottom:592.573333pt;}
.yc4{bottom:593.693333pt;}
.y15d{bottom:593.853333pt;}
.y44{bottom:595.933333pt;}
.yde{bottom:596.093333pt;}
.y138{bottom:599.133333pt;}
.y71{bottom:599.933333pt;}
.y97{bottom:600.893333pt;}
.y186{bottom:604.093333pt;}
.y1a7{bottom:605.533333pt;}
.y17{bottom:607.933333pt;}
.y1de{bottom:608.893333pt;}
.yc3{bottom:612.093333pt;}
.y15c{bottom:612.253333pt;}
.y43{bottom:614.333333pt;}
.ydd{bottom:614.493333pt;}
.y137{bottom:617.533333pt;}
.y70{bottom:618.333333pt;}
.y96{bottom:619.293333pt;}
.y185{bottom:622.493333pt;}
.y16{bottom:623.293333pt;}
.y1dd{bottom:627.293333pt;}
.yc2{bottom:630.493333pt;}
.y15b{bottom:630.653333pt;}
.y42{bottom:632.573333pt;}
.y113{bottom:632.893333pt;}
.y136{bottom:635.933333pt;}
.y6f{bottom:636.733333pt;}
.y95{bottom:637.693333pt;}
.y15{bottom:638.493333pt;}
.y1a6{bottom:639.293333pt;}
.y184{bottom:640.893333pt;}
.yc1{bottom:648.893333pt;}
.y15a{bottom:649.053333pt;}
.y41{bottom:650.973333pt;}
.y112{bottom:651.293333pt;}
.y1dc{bottom:653.373333pt;}
.y14{bottom:653.853333pt;}
.y135{bottom:654.333333pt;}
.y6e{bottom:655.133333pt;}
.y94{bottom:656.093333pt;}
.y1a5{bottom:656.253333pt;}
.yc0{bottom:667.293333pt;}
.y159{bottom:667.453333pt;}
.y13{bottom:669.213333pt;}
.y111{bottom:669.693333pt;}
.y1a4{bottom:673.053333pt;}
.y6d{bottom:673.373333pt;}
.y93{bottom:674.493333pt;}
.y183{bottom:675.293333pt;}
.y1db{bottom:680.093333pt;}
.y12{bottom:684.413333pt;}
.y40{bottom:685.373333pt;}
.ybf{bottom:685.693333pt;}
.y110{bottom:688.093333pt;}
.y134{bottom:688.733333pt;}
.y1a3{bottom:689.853333pt;}
.y6c{bottom:691.773333pt;}
.y92{bottom:692.893333pt;}
.y182{bottom:693.693333pt;}
.y158{bottom:701.533333pt;}
.y3f{bottom:703.773333pt;}
.ybe{bottom:704.093333pt;}
.y10f{bottom:706.493333pt;}
.y1a2{bottom:706.813333pt;}
.y133{bottom:707.133333pt;}
.y91{bottom:711.293333pt;}
.y181{bottom:712.093333pt;}
.y10{bottom:718.013333pt;}
.y157{bottom:718.333333pt;}
.y3e{bottom:722.173333pt;}
.ybd{bottom:722.493333pt;}
.y1a1{bottom:723.613333pt;}
.y1da{bottom:724.893333pt;}
.y11{bottom:725.373333pt;}
.y132{bottom:725.533333pt;}
.y6b{bottom:725.853333pt;}
.y90{bottom:729.693333pt;}
.y180{bottom:730.493333pt;}
.y156{bottom:735.293333pt;}
.y3d{bottom:740.573333pt;}
.ydc{bottom:740.893333pt;}
.y6a{bottom:742.653333pt;}
.y131{bottom:743.933333pt;}
.yf{bottom:745.533333pt;}
.y8f{bottom:748.093333pt;}
.y17f{bottom:748.893333pt;}
.y1d9{bottom:751.293333pt;}
.y155{bottom:752.093333pt;}
.ybc{bottom:756.893333pt;}
.y1a0{bottom:757.373333pt;}
.y3c{bottom:758.973333pt;}
.ydb{bottom:759.293333pt;}
.y69{bottom:759.613333pt;}
.y130{bottom:762.333333pt;}
.y17e{bottom:767.293333pt;}
.ye{bottom:768.253333pt;}
.y154{bottom:768.893333pt;}
.y19f{bottom:774.173333pt;}
.ybb{bottom:775.293333pt;}
.y68{bottom:776.413333pt;}
.y3b{bottom:777.373333pt;}
.yf8{bottom:777.693333pt;}
.y12f{bottom:780.733333pt;}
.y8e{bottom:782.493333pt;}
.y17d{bottom:785.693333pt;}
.y153{bottom:785.853333pt;}
.yd{bottom:791.133333pt;}
.y67{bottom:793.373333pt;}
.yba{bottom:793.693333pt;}
.y3a{bottom:795.773333pt;}
.y1cb{bottom:796.093333pt;}
.y12e{bottom:799.173333pt;}
.y8d{bottom:800.933333pt;}
.y152{bottom:802.693333pt;}
.y17c{bottom:804.133333pt;}
.y19e{bottom:807.973333pt;}
.y66{bottom:810.213333pt;}
.yb9{bottom:812.133333pt;}
.y39{bottom:814.213333pt;}
.y1d8{bottom:814.533333pt;}
.yc{bottom:815.333333pt;}
.y12d{bottom:817.573333pt;}
.y151{bottom:819.653333pt;}
.y17b{bottom:822.533333pt;}
.y19d{bottom:824.933333pt;}
.y65{bottom:827.013333pt;}
.yda{bottom:830.533333pt;}
.y38{bottom:832.613333pt;}
.y8c{bottom:835.333333pt;}
.y12c{bottom:835.973333pt;}
.y150{bottom:836.453333pt;}
.y17a{bottom:840.933333pt;}
.y19c{bottom:841.733333pt;}
.y64{bottom:843.973333pt;}
.yb{bottom:844.613333pt;}
.yb8{bottom:846.533333pt;}
.yd9{bottom:848.933333pt;}
.y8b{bottom:853.733333pt;}
.y12b{bottom:854.373333pt;}
.y19b{bottom:858.533333pt;}
.y1d7{bottom:859.333333pt;}
.y63{bottom:860.773333pt;}
.yb7{bottom:864.933333pt;}
.y37{bottom:867.013333pt;}
.yd8{bottom:867.333333pt;}
.y14f{bottom:869.733333pt;}
.y8a{bottom:872.133333pt;}
.y12a{bottom:872.773333pt;}
.ya{bottom:873.893333pt;}
.y179{bottom:875.333333pt;}
.y19a{bottom:875.493333pt;}
.y62{bottom:877.733333pt;}
.yb6{bottom:883.333333pt;}
.y36{bottom:885.413333pt;}
.yd7{bottom:885.733333pt;}
.y14e{bottom:888.133333pt;}
.y199{bottom:892.293333pt;}
.y178{bottom:893.733333pt;}
.y61{bottom:894.533333pt;}
.yb5{bottom:901.733333pt;}
.y35{bottom:903.813333pt;}
.yd6{bottom:904.133333pt;}
.y89{bottom:906.533333pt;}
.y129{bottom:907.173333pt;}
.y198{bottom:909.253333pt;}
.y60{bottom:911.333333pt;}
.y177{bottom:912.133333pt;}
.y9{bottom:919.653333pt;}
.yb4{bottom:920.133333pt;}
.y34{bottom:922.213333pt;}
.yd5{bottom:922.533333pt;}
.y88{bottom:924.933333pt;}
.y128{bottom:925.573333pt;}
.y197{bottom:926.053333pt;}
.y5f{bottom:928.293333pt;}
.y176{bottom:930.533333pt;}
.yb3{bottom:938.533333pt;}
.y33{bottom:940.613333pt;}
.yd4{bottom:940.933333pt;}
.y127{bottom:943.973333pt;}
.y5e{bottom:945.093333pt;}
.y8{bottom:947.493333pt;}
.y1d6{bottom:948.933333pt;}
.yb2{bottom:956.933333pt;}
.y14d{bottom:959.013333pt;}
.y87{bottom:959.333333pt;}
.y5d{bottom:962.053333pt;}
.y126{bottom:962.373333pt;}
.y7{bottom:964.933333pt;}
.y1d5{bottom:967.333333pt;}
.y32{bottom:974.693333pt;}
.yb1{bottom:975.333333pt;}
.y5c{bottom:978.853333pt;}
.y6{bottom:981.413333pt;}
.y86{bottom:993.733333pt;}
.y125{bottom:996.453333pt;}
.y5{bottom:998.053333pt;}
.y31{bottom:1012.133333pt;}
.y124{bottom:1013.253333pt;}
.y4{bottom:1014.560000pt;}
.y1{bottom:1061.600000pt;}
.hc{height:36.920625pt;}
.h9{height:38.441250pt;}
.h4{height:44.768125pt;}
.h3{height:47.621250pt;}
.h10{height:48.781250pt;}
.hb{height:52.296250pt;}
.hf{height:52.785000pt;}
.hd{height:52.834688pt;}
.he{height:56.843750pt;}
.h7{height:57.375000pt;}
.h2{height:58.563750pt;}
.ha{height:64.233437pt;}
.h6{height:71.296875pt;}
.h5{height:91.406250pt;}
.h8{height:1122.556427pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.756667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x8{left:118.592000pt;}
.x5{left:120.352000pt;}
.xf{left:141.946667pt;}
.x14{left:151.226667pt;}
.xe{left:160.666667pt;}
.x13{left:170.266667pt;}
.x11{left:208.026667pt;}
.x12{left:217.506667pt;}
.x6{left:239.426667pt;}
.x10{left:255.266667pt;}
.x4{left:282.786667pt;}
.xd{left:305.506667pt;}
.xa{left:334.466667pt;}
.x9{left:342.786667pt;}
.x2{left:385.853333pt;}
.x7{left:397.053333pt;}
.xb{left:446.010000pt;}
.xc{left:451.453333pt;}
.x15{left:459.453333pt;}
.x1{left:472.733333pt;}
}




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