
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_d61a142cdb9c51edfec8e186.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2662e172f128084bc905884d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_59748bf2243572976bdb2043.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a0af41918ba3d9c59f26bd22.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_59c517336c79b347652981a6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsb{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.139800px;}
.ls14{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.013320px;}
.ls16{letter-spacing:0.026640px;}
.ls6{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.139800px;}
.lsf{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls13{letter-spacing:1.890000px;}
.lse{letter-spacing:15.210000px;}
.lsc{letter-spacing:18.090000px;}
.lsa{letter-spacing:19.890000px;}
.ls2{letter-spacing:36.926640px;}
.ls1{letter-spacing:41.148000px;}
.ls5{letter-spacing:46.286640px;}
.ls19{letter-spacing:52.308000px;}
.lsd{letter-spacing:61.406640px;}
.ls7{letter-spacing:63.566640px;}
.ls18{letter-spacing:63.686640px;}
.ls12{letter-spacing:149.246640px;}
.ls11{letter-spacing:152.846640px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-60.120000px;}
.ws5{word-spacing:-15.210000px;}
.ws6{word-spacing:-15.183600px;}
.wsb{word-spacing:-15.169800px;}
.wsa{word-spacing:-15.056640px;}
.ws0{word-spacing:-15.030000px;}
.ws9{word-spacing:-15.016680px;}
.ws8{word-spacing:-14.976720px;}
.ws7{word-spacing:-14.890200px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:0.000000px;}
._2d{margin-left:-6.289800px;}
._0{margin-left:-1.202400px;}
._3{width:1.085760px;}
._c{width:2.220840px;}
._6{width:4.028040px;}
._7{width:5.531040px;}
._8{width:7.154280px;}
._9{width:8.236440px;}
._e{width:9.498960px;}
._15{width:10.941840px;}
._16{width:12.144240px;}
._5{width:13.466880px;}
._2f{width:14.526000px;}
._a{width:16.172280px;}
._b{width:17.494920px;}
._11{width:18.847080px;}
._13{width:20.711880px;}
._d{width:22.003920px;}
._20{width:23.402160px;}
._18{width:25.250400px;}
._1c{width:26.483760px;}
._17{width:27.595080px;}
._26{width:28.706400px;}
._24{width:30.300480px;}
._19{width:31.683240px;}
._14{width:33.005880px;}
._1f{width:34.569000px;}
._1d{width:35.891640px;}
._1e{width:37.274400px;}
._1b{width:39.017880px;}
._1a{width:40.160160px;}
._22{width:41.242320px;}
._23{width:42.324480px;}
._2b{width:43.827480px;}
._29{width:45.797400px;}
._12{width:47.088000px;}
._2c{width:48.382560px;}
._2a{width:49.873320px;}
._28{width:51.378000px;}
._25{width:53.085960px;}
._21{width:55.490040px;}
._f{width:56.646000px;}
._10{width:62.856000px;}
._2e{width:64.692000px;}
._2{width:130.455480px;}
._27{width:147.464640px;}
._1{width:341.548680px;}
._4{width:775.394880px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y16d{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y40{bottom:2.880000px;}
.y16{bottom:3.240000px;}
.y39{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y3f{bottom:18.450000px;}
.y37{bottom:19.350000px;}
.y2e{bottom:20.430000px;}
.y171{bottom:30.270000px;}
.y3e{bottom:33.930000px;}
.y7{bottom:35.550000px;}
.y36{bottom:35.730000px;}
.y2d{bottom:37.710000px;}
.y42{bottom:41.130000px;}
.y170{bottom:44.040000px;}
.y3d{bottom:49.500000px;}
.y35{bottom:51.330000px;}
.y2c{bottom:54.990000px;}
.y16f{bottom:57.900000px;}
.y3{bottom:58.140000px;}
.y3c{bottom:64.980000px;}
.y34{bottom:66.810000px;}
.y2b{bottom:72.180000px;}
.y3b{bottom:80.550000px;}
.y33{bottom:82.380000px;}
.y2a{bottom:89.460000px;}
.y32{bottom:97.860000px;}
.y29{bottom:106.740000px;}
.y31{bottom:113.430000px;}
.y13c{bottom:114.300000px;}
.yf3{bottom:115.380000px;}
.ybb{bottom:116.910000px;}
.y83{bottom:121.230000px;}
.y4a{bottom:123.840000px;}
.y28{bottom:123.930000px;}
.y11f{bottom:124.020000px;}
.y30{bottom:128.910000px;}
.y16e{bottom:130.140000px;}
.yf2{bottom:132.660000px;}
.yba{bottom:134.190000px;}
.y82{bottom:138.420000px;}
.y49{bottom:139.410000px;}
.y27{bottom:141.210000px;}
.y41{bottom:144.360000px;}
.yf1{bottom:149.850000px;}
.yb9{bottom:151.380000px;}
.y48{bottom:154.890000px;}
.y81{bottom:155.730000px;}
.y26{bottom:158.490000px;}
.y11e{bottom:158.520000px;}
.yf0{bottom:167.160000px;}
.y13b{bottom:168.240000px;}
.yb8{bottom:168.690000px;}
.y47{bottom:170.760000px;}
.y80{bottom:173.010000px;}
.y25{bottom:175.680000px;}
.y11d{bottom:175.800000px;}
.yef{bottom:184.350000px;}
.y13a{bottom:185.430000px;}
.yb7{bottom:185.970000px;}
.y46{bottom:188.040000px;}
.y7f{bottom:190.200000px;}
.y24{bottom:192.960000px;}
.y11c{bottom:192.990000px;}
.y16c{bottom:199.920000px;}
.yee{bottom:201.630000px;}
.y139{bottom:202.710000px;}
.yb6{bottom:203.160000px;}
.y45{bottom:205.320000px;}
.y7e{bottom:207.480000px;}
.y23{bottom:210.150000px;}
.y11b{bottom:210.270000px;}
.y16b{bottom:217.380000px;}
.yed{bottom:218.910000px;}
.y138{bottom:219.990000px;}
.yb5{bottom:220.440000px;}
.y44{bottom:222.510000px;}
.y7d{bottom:224.760000px;}
.y22{bottom:227.430000px;}
.y11a{bottom:227.460000px;}
.y16a{bottom:232.950000px;}
.yec{bottom:236.100000px;}
.y137{bottom:237.180000px;}
.yb4{bottom:237.630000px;}
.y43{bottom:239.430000px;}
.y7c{bottom:241.950000px;}
.y21{bottom:244.710000px;}
.y119{bottom:244.740000px;}
.y169{bottom:248.430000px;}
.y17{bottom:252.840000px;}
.yeb{bottom:253.380000px;}
.yb3{bottom:254.910000px;}
.y136{bottom:255.540000px;}
.y7b{bottom:259.230000px;}
.y20{bottom:261.900000px;}
.y118{bottom:262.020000px;}
.y168{bottom:264.000000px;}
.yea{bottom:270.660000px;}
.yb2{bottom:272.190000px;}
.y135{bottom:273.900000px;}
.y7a{bottom:276.510000px;}
.y1f{bottom:279.180000px;}
.y117{bottom:279.210000px;}
.y167{bottom:279.480000px;}
.ye9{bottom:287.850000px;}
.yb1{bottom:289.380000px;}
.y134{bottom:292.170000px;}
.y79{bottom:293.700000px;}
.y166{bottom:295.050000px;}
.y1e{bottom:296.460000px;}
.y116{bottom:296.490000px;}
.ye8{bottom:305.130000px;}
.yb0{bottom:306.660000px;}
.y133{bottom:309.450000px;}
.y165{bottom:310.530000px;}
.y78{bottom:310.980000px;}
.y1d{bottom:313.650000px;}
.y115{bottom:313.770000px;}
.ye7{bottom:322.410000px;}
.yaf{bottom:323.940000px;}
.y164{bottom:326.100000px;}
.y132{bottom:326.730000px;}
.y77{bottom:328.260000px;}
.y1c{bottom:330.960000px;}
.ye6{bottom:339.600000px;}
.yae{bottom:341.130000px;}
.y163{bottom:341.580000px;}
.y131{bottom:343.920000px;}
.y76{bottom:345.450000px;}
.y1b{bottom:348.240000px;}
.ye5{bottom:356.880000px;}
.y162{bottom:357.150000px;}
.yad{bottom:358.410000px;}
.y130{bottom:361.200000px;}
.y75{bottom:362.730000px;}
.y1a{bottom:365.430000px;}
.y114{bottom:365.520000px;}
.y161{bottom:372.630000px;}
.ye4{bottom:374.160000px;}
.yac{bottom:375.690000px;}
.y12f{bottom:378.390000px;}
.y74{bottom:380.010000px;}
.y19{bottom:382.710000px;}
.y160{bottom:388.200000px;}
.ye3{bottom:391.350000px;}
.yab{bottom:392.880000px;}
.y12e{bottom:395.670000px;}
.y73{bottom:397.200000px;}
.y18{bottom:399.990000px;}
.y15f{bottom:403.680000px;}
.ye2{bottom:408.630000px;}
.yaa{bottom:410.160000px;}
.y3a{bottom:410.610000px;}
.y12d{bottom:412.950000px;}
.y72{bottom:414.480000px;}
.y113{bottom:417.270000px;}
.y15e{bottom:419.250000px;}
.ye1{bottom:425.910000px;}
.ya9{bottom:427.440000px;}
.y12c{bottom:430.140000px;}
.y71{bottom:431.670000px;}
.y112{bottom:434.460000px;}
.y15d{bottom:434.730000px;}
.ye0{bottom:444.180000px;}
.ya8{bottom:444.630000px;}
.y12b{bottom:447.420000px;}
.y70{bottom:448.950000px;}
.y15c{bottom:451.470000px;}
.y111{bottom:451.740000px;}
.ydf{bottom:461.460000px;}
.ya7{bottom:461.910000px;}
.y12a{bottom:464.700000px;}
.y6f{bottom:466.230000px;}
.y15b{bottom:468.210000px;}
.y110{bottom:469.020000px;}
.ya6{bottom:479.190000px;}
.yde{bottom:479.730000px;}
.y129{bottom:481.890000px;}
.y6e{bottom:483.420000px;}
.y15a{bottom:484.050000px;}
.y10f{bottom:486.210000px;}
.ya5{bottom:496.380000px;}
.ydd{bottom:497.010000px;}
.y128{bottom:499.170000px;}
.y6d{bottom:500.700000px;}
.y159{bottom:501.330000px;}
.y10e{bottom:503.490000px;}
.y38{bottom:504.480000px;}
.ya4{bottom:513.660000px;}
.ydc{bottom:515.370000px;}
.y127{bottom:516.450000px;}
.y6c{bottom:517.980000px;}
.y158{bottom:518.610000px;}
.y10d{bottom:520.770000px;}
.y2f{bottom:525.270000px;}
.ya3{bottom:530.940000px;}
.ydb{bottom:532.560000px;}
.y126{bottom:533.640000px;}
.y6b{bottom:535.170000px;}
.y157{bottom:535.800000px;}
.y10c{bottom:537.960000px;}
.ya2{bottom:548.130000px;}
.yda{bottom:550.920000px;}
.y6a{bottom:552.450000px;}
.y156{bottom:553.080000px;}
.y10b{bottom:555.240000px;}
.ya1{bottom:565.410000px;}
.yd9{bottom:568.200000px;}
.y69{bottom:569.730000px;}
.y155{bottom:570.360000px;}
.y10a{bottom:572.430000px;}
.ya0{bottom:582.720000px;}
.yd8{bottom:585.420000px;}
.y68{bottom:586.950000px;}
.y154{bottom:587.580000px;}
.y109{bottom:589.740000px;}
.y9f{bottom:599.910000px;}
.yd7{bottom:602.700000px;}
.y67{bottom:604.230000px;}
.y153{bottom:604.860000px;}
.y108{bottom:607.020000px;}
.y9e{bottom:617.190000px;}
.yd6{bottom:619.980000px;}
.y66{bottom:621.510000px;}
.y152{bottom:622.140000px;}
.y107{bottom:624.210000px;}
.y9d{bottom:634.380000px;}
.yd5{bottom:637.170000px;}
.y65{bottom:638.700000px;}
.y151{bottom:639.330000px;}
.y106{bottom:641.490000px;}
.y9c{bottom:651.660000px;}
.yd4{bottom:654.450000px;}
.y125{bottom:655.530000px;}
.y64{bottom:655.980000px;}
.y150{bottom:656.610000px;}
.y105{bottom:658.770000px;}
.y15{bottom:667.590000px;}
.y9b{bottom:668.940000px;}
.yd3{bottom:671.730000px;}
.y124{bottom:672.810000px;}
.y63{bottom:673.260000px;}
.y14f{bottom:673.800000px;}
.y104{bottom:675.960000px;}
.y9a{bottom:686.130000px;}
.yd2{bottom:688.920000px;}
.y62{bottom:690.450000px;}
.y123{bottom:691.080000px;}
.y103{bottom:693.240000px;}
.y14{bottom:702.150000px;}
.y99{bottom:703.410000px;}
.yd1{bottom:706.200000px;}
.y61{bottom:707.730000px;}
.y122{bottom:708.360000px;}
.y102{bottom:710.520000px;}
.y13{bottom:719.430000px;}
.y98{bottom:720.690000px;}
.yd0{bottom:723.390000px;}
.y60{bottom:725.010000px;}
.y14e{bottom:725.550000px;}
.y121{bottom:726.630000px;}
.y101{bottom:727.710000px;}
.y12{bottom:736.980000px;}
.y97{bottom:737.880000px;}
.ycf{bottom:740.670000px;}
.y5f{bottom:742.200000px;}
.y14d{bottom:742.830000px;}
.y120{bottom:743.910000px;}
.y100{bottom:744.990000px;}
.y96{bottom:755.160000px;}
.y11{bottom:755.610000px;}
.yce{bottom:757.950000px;}
.y5e{bottom:759.480000px;}
.y14c{bottom:760.110000px;}
.yff{bottom:762.270000px;}
.y95{bottom:772.440000px;}
.y10{bottom:773.250000px;}
.ycd{bottom:775.140000px;}
.y5d{bottom:776.760000px;}
.y14b{bottom:777.300000px;}
.yfe{bottom:779.460000px;}
.y94{bottom:789.630000px;}
.ycc{bottom:792.420000px;}
.yf{bottom:793.860000px;}
.y5c{bottom:793.950000px;}
.y14a{bottom:794.580000px;}
.yfd{bottom:796.740000px;}
.y93{bottom:806.910000px;}
.ycb{bottom:809.700000px;}
.y5b{bottom:811.230000px;}
.y149{bottom:811.860000px;}
.yfc{bottom:814.020000px;}
.ye{bottom:819.420000px;}
.y92{bottom:824.190000px;}
.yca{bottom:826.890000px;}
.y5a{bottom:828.420000px;}
.y148{bottom:829.050000px;}
.yfb{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y91{bottom:841.380000px;}
.yc9{bottom:845.250000px;}
.y59{bottom:845.700000px;}
.y147{bottom:846.330000px;}
.yfa{bottom:848.490000px;}
.y90{bottom:858.660000px;}
.yc8{bottom:862.530000px;}
.y58{bottom:862.980000px;}
.y146{bottom:863.610000px;}
.yf9{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y8f{bottom:875.940000px;}
.y57{bottom:880.170000px;}
.yc7{bottom:880.800000px;}
.yf8{bottom:882.960000px;}
.y8e{bottom:893.130000px;}
.y56{bottom:897.450000px;}
.yc6{bottom:898.080000px;}
.yf7{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y8d{bottom:910.410000px;}
.y55{bottom:914.730000px;}
.yc5{bottom:915.360000px;}
.yf6{bottom:917.430000px;}
.y8c{bottom:927.690000px;}
.ya{bottom:930.210000px;}
.y54{bottom:931.920000px;}
.y145{bottom:932.550000px;}
.yc4{bottom:933.630000px;}
.yf5{bottom:934.710000px;}
.y8b{bottom:944.880000px;}
.y8{bottom:945.600000px;}
.y53{bottom:949.200000px;}
.y144{bottom:949.830000px;}
.yc3{bottom:950.910000px;}
.yf4{bottom:951.990000px;}
.y8a{bottom:962.160000px;}
.y52{bottom:966.480000px;}
.y143{bottom:967.110000px;}
.yc2{bottom:969.180000px;}
.y89{bottom:980.430000px;}
.y51{bottom:983.670000px;}
.y142{bottom:984.300000px;}
.yc1{bottom:986.460000px;}
.y88{bottom:997.740000px;}
.y50{bottom:1000.980000px;}
.y141{bottom:1001.610000px;}
.yc0{bottom:1003.770000px;}
.y87{bottom:1016.100000px;}
.y4f{bottom:1018.260000px;}
.y140{bottom:1019.880000px;}
.ybf{bottom:1020.960000px;}
.y86{bottom:1033.290000px;}
.y4e{bottom:1035.450000px;}
.y13f{bottom:1037.160000px;}
.ybe{bottom:1038.240000px;}
.y85{bottom:1051.650000px;}
.y4d{bottom:1052.730000px;}
.y13e{bottom:1054.440000px;}
.ybd{bottom:1055.520000px;}
.y84{bottom:1068.930000px;}
.y4c{bottom:1070.010000px;}
.y13d{bottom:1071.630000px;}
.ybc{bottom:1072.710000px;}
.y4b{bottom:1086.930000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1a{height:13.770000px;}
.he{height:17.190000px;}
.h13{height:19.980000px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h1b{height:33.782520px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.082324px;}
.h19{height:39.313477px;}
.h11{height:39.999023px;}
.h4{height:41.978320px;}
.hd{height:42.418652px;}
.h18{height:43.769004px;}
.h12{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hc{height:53.838457px;}
.hb{height:67.819043px;}
.h1c{height:69.060000px;}
.ha{height:76.201172px;}
.h14{height:93.150000px;}
.h10{height:141.510000px;}
.h7{height:153.930000px;}
.h17{height:156.960000px;}
.hf{height:413.940000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w6{width:220.350000px;}
.w7{width:329.160000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x11{left:20.160000px;}
.x15{left:27.630000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x16{left:65.429986px;}
.x9{left:72.179986px;}
.x24{left:80.100000px;}
.xe{left:86.669986px;}
.x18{left:88.199986px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x1d{left:115.199986px;}
.xa{left:180.479986px;}
.x19{left:232.139986px;}
.xd{left:329.249986px;}
.xc{left:372.179986px;}
.x1f{left:452.729986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x21{left:474.059986px;}
.x1c{left:478.229986px;}
.x1e{left:479.759986px;}
.x1a{left:483.989986px;}
.x20{left:501.089986px;}
.x23{left:503.700000px;}
.x22{left:506.759986px;}
.x1b{left:510.989986px;}
.x10{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.124267pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.011840pt;}
.ls16{letter-spacing:0.023680pt;}
.ls6{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.124267pt;}
.lsf{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls13{letter-spacing:1.680000pt;}
.lse{letter-spacing:13.520000pt;}
.lsc{letter-spacing:16.080000pt;}
.lsa{letter-spacing:17.680000pt;}
.ls2{letter-spacing:32.823680pt;}
.ls1{letter-spacing:36.576000pt;}
.ls5{letter-spacing:41.143680pt;}
.ls19{letter-spacing:46.496000pt;}
.lsd{letter-spacing:54.583680pt;}
.ls7{letter-spacing:56.503680pt;}
.ls18{letter-spacing:56.610347pt;}
.ls12{letter-spacing:132.663680pt;}
.ls11{letter-spacing:135.863680pt;}
.ws3{word-spacing:-53.440000pt;}
.ws5{word-spacing:-13.520000pt;}
.ws6{word-spacing:-13.496533pt;}
.wsb{word-spacing:-13.484267pt;}
.wsa{word-spacing:-13.383680pt;}
.ws0{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.348160pt;}
.ws8{word-spacing:-13.312640pt;}
.ws7{word-spacing:-13.235733pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:0.000000pt;}
._2d{margin-left:-5.590933pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.965120pt;}
._c{width:1.974080pt;}
._6{width:3.580480pt;}
._7{width:4.916480pt;}
._8{width:6.359360pt;}
._9{width:7.321280pt;}
._e{width:8.443520pt;}
._15{width:9.726080pt;}
._16{width:10.794880pt;}
._5{width:11.970560pt;}
._2f{width:12.912000pt;}
._a{width:14.375360pt;}
._b{width:15.551040pt;}
._11{width:16.752960pt;}
._13{width:18.410560pt;}
._d{width:19.559040pt;}
._20{width:20.801920pt;}
._18{width:22.444800pt;}
._1c{width:23.541120pt;}
._17{width:24.528960pt;}
._26{width:25.516800pt;}
._24{width:26.933760pt;}
._19{width:28.162880pt;}
._14{width:29.338560pt;}
._1f{width:30.728000pt;}
._1d{width:31.903680pt;}
._1e{width:33.132800pt;}
._1b{width:34.682560pt;}
._1a{width:35.697920pt;}
._22{width:36.659840pt;}
._23{width:37.621760pt;}
._2b{width:38.957760pt;}
._29{width:40.708800pt;}
._12{width:41.856000pt;}
._2c{width:43.006720pt;}
._2a{width:44.331840pt;}
._28{width:45.669333pt;}
._25{width:47.187520pt;}
._21{width:49.324480pt;}
._f{width:50.352000pt;}
._10{width:55.872000pt;}
._2e{width:57.504000pt;}
._2{width:115.960427pt;}
._27{width:131.079680pt;}
._1{width:303.598827pt;}
._4{width:689.239893pt;}
.fs3{font-size:26.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y40{bottom:2.560000pt;}
.y16{bottom:2.880000pt;}
.y39{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y3f{bottom:16.400000pt;}
.y37{bottom:17.200000pt;}
.y2e{bottom:18.160000pt;}
.y171{bottom:26.906667pt;}
.y3e{bottom:30.160000pt;}
.y7{bottom:31.600000pt;}
.y36{bottom:31.760000pt;}
.y2d{bottom:33.520000pt;}
.y42{bottom:36.560000pt;}
.y170{bottom:39.146667pt;}
.y3d{bottom:44.000000pt;}
.y35{bottom:45.626667pt;}
.y2c{bottom:48.880000pt;}
.y16f{bottom:51.466667pt;}
.y3{bottom:51.680000pt;}
.y3c{bottom:57.760000pt;}
.y34{bottom:59.386667pt;}
.y2b{bottom:64.160000pt;}
.y3b{bottom:71.600000pt;}
.y33{bottom:73.226667pt;}
.y2a{bottom:79.520000pt;}
.y32{bottom:86.986667pt;}
.y29{bottom:94.880000pt;}
.y31{bottom:100.826667pt;}
.y13c{bottom:101.600000pt;}
.yf3{bottom:102.560000pt;}
.ybb{bottom:103.920000pt;}
.y83{bottom:107.760000pt;}
.y4a{bottom:110.080000pt;}
.y28{bottom:110.160000pt;}
.y11f{bottom:110.240000pt;}
.y30{bottom:114.586667pt;}
.y16e{bottom:115.680000pt;}
.yf2{bottom:117.920000pt;}
.yba{bottom:119.280000pt;}
.y82{bottom:123.040000pt;}
.y49{bottom:123.920000pt;}
.y27{bottom:125.520000pt;}
.y41{bottom:128.320000pt;}
.yf1{bottom:133.200000pt;}
.yb9{bottom:134.560000pt;}
.y48{bottom:137.680000pt;}
.y81{bottom:138.426667pt;}
.y26{bottom:140.880000pt;}
.y11e{bottom:140.906667pt;}
.yf0{bottom:148.586667pt;}
.y13b{bottom:149.546667pt;}
.yb8{bottom:149.946667pt;}
.y47{bottom:151.786667pt;}
.y80{bottom:153.786667pt;}
.y25{bottom:156.160000pt;}
.y11d{bottom:156.266667pt;}
.yef{bottom:163.866667pt;}
.y13a{bottom:164.826667pt;}
.yb7{bottom:165.306667pt;}
.y46{bottom:167.146667pt;}
.y7f{bottom:169.066667pt;}
.y24{bottom:171.520000pt;}
.y11c{bottom:171.546667pt;}
.y16c{bottom:177.706667pt;}
.yee{bottom:179.226667pt;}
.y139{bottom:180.186667pt;}
.yb6{bottom:180.586667pt;}
.y45{bottom:182.506667pt;}
.y7e{bottom:184.426667pt;}
.y23{bottom:186.800000pt;}
.y11b{bottom:186.906667pt;}
.y16b{bottom:193.226667pt;}
.yed{bottom:194.586667pt;}
.y138{bottom:195.546667pt;}
.yb5{bottom:195.946667pt;}
.y44{bottom:197.786667pt;}
.y7d{bottom:199.786667pt;}
.y22{bottom:202.160000pt;}
.y11a{bottom:202.186667pt;}
.y16a{bottom:207.066667pt;}
.yec{bottom:209.866667pt;}
.y137{bottom:210.826667pt;}
.yb4{bottom:211.226667pt;}
.y43{bottom:212.826667pt;}
.y7c{bottom:215.066667pt;}
.y21{bottom:217.520000pt;}
.y119{bottom:217.546667pt;}
.y169{bottom:220.826667pt;}
.y17{bottom:224.746667pt;}
.yeb{bottom:225.226667pt;}
.yb3{bottom:226.586667pt;}
.y136{bottom:227.146667pt;}
.y7b{bottom:230.426667pt;}
.y20{bottom:232.800000pt;}
.y118{bottom:232.906667pt;}
.y168{bottom:234.666667pt;}
.yea{bottom:240.586667pt;}
.yb2{bottom:241.946667pt;}
.y135{bottom:243.466667pt;}
.y7a{bottom:245.786667pt;}
.y1f{bottom:248.160000pt;}
.y117{bottom:248.186667pt;}
.y167{bottom:248.426667pt;}
.ye9{bottom:255.866667pt;}
.yb1{bottom:257.226667pt;}
.y134{bottom:259.706667pt;}
.y79{bottom:261.066667pt;}
.y166{bottom:262.266667pt;}
.y1e{bottom:263.520000pt;}
.y116{bottom:263.546667pt;}
.ye8{bottom:271.226667pt;}
.yb0{bottom:272.586667pt;}
.y133{bottom:275.066667pt;}
.y165{bottom:276.026667pt;}
.y78{bottom:276.426667pt;}
.y1d{bottom:278.800000pt;}
.y115{bottom:278.906667pt;}
.ye7{bottom:286.586667pt;}
.yaf{bottom:287.946667pt;}
.y164{bottom:289.866667pt;}
.y132{bottom:290.426667pt;}
.y77{bottom:291.786667pt;}
.y1c{bottom:294.186667pt;}
.ye6{bottom:301.866667pt;}
.yae{bottom:303.226667pt;}
.y163{bottom:303.626667pt;}
.y131{bottom:305.706667pt;}
.y76{bottom:307.066667pt;}
.y1b{bottom:309.546667pt;}
.ye5{bottom:317.226667pt;}
.y162{bottom:317.466667pt;}
.yad{bottom:318.586667pt;}
.y130{bottom:321.066667pt;}
.y75{bottom:322.426667pt;}
.y1a{bottom:324.826667pt;}
.y114{bottom:324.906667pt;}
.y161{bottom:331.226667pt;}
.ye4{bottom:332.586667pt;}
.yac{bottom:333.946667pt;}
.y12f{bottom:336.346667pt;}
.y74{bottom:337.786667pt;}
.y19{bottom:340.186667pt;}
.y160{bottom:345.066667pt;}
.ye3{bottom:347.866667pt;}
.yab{bottom:349.226667pt;}
.y12e{bottom:351.706667pt;}
.y73{bottom:353.066667pt;}
.y18{bottom:355.546667pt;}
.y15f{bottom:358.826667pt;}
.ye2{bottom:363.226667pt;}
.yaa{bottom:364.586667pt;}
.y3a{bottom:364.986667pt;}
.y12d{bottom:367.066667pt;}
.y72{bottom:368.426667pt;}
.y113{bottom:370.906667pt;}
.y15e{bottom:372.666667pt;}
.ye1{bottom:378.586667pt;}
.ya9{bottom:379.946667pt;}
.y12c{bottom:382.346667pt;}
.y71{bottom:383.706667pt;}
.y112{bottom:386.186667pt;}
.y15d{bottom:386.426667pt;}
.ye0{bottom:394.826667pt;}
.ya8{bottom:395.226667pt;}
.y12b{bottom:397.706667pt;}
.y70{bottom:399.066667pt;}
.y15c{bottom:401.306667pt;}
.y111{bottom:401.546667pt;}
.ydf{bottom:410.186667pt;}
.ya7{bottom:410.586667pt;}
.y12a{bottom:413.066667pt;}
.y6f{bottom:414.426667pt;}
.y15b{bottom:416.186667pt;}
.y110{bottom:416.906667pt;}
.ya6{bottom:425.946667pt;}
.yde{bottom:426.426667pt;}
.y129{bottom:428.346667pt;}
.y6e{bottom:429.706667pt;}
.y15a{bottom:430.266667pt;}
.y10f{bottom:432.186667pt;}
.ya5{bottom:441.226667pt;}
.ydd{bottom:441.786667pt;}
.y128{bottom:443.706667pt;}
.y6d{bottom:445.066667pt;}
.y159{bottom:445.626667pt;}
.y10e{bottom:447.546667pt;}
.y38{bottom:448.426667pt;}
.ya4{bottom:456.586667pt;}
.ydc{bottom:458.106667pt;}
.y127{bottom:459.066667pt;}
.y6c{bottom:460.426667pt;}
.y158{bottom:460.986667pt;}
.y10d{bottom:462.906667pt;}
.y2f{bottom:466.906667pt;}
.ya3{bottom:471.946667pt;}
.ydb{bottom:473.386667pt;}
.y126{bottom:474.346667pt;}
.y6b{bottom:475.706667pt;}
.y157{bottom:476.266667pt;}
.y10c{bottom:478.186667pt;}
.ya2{bottom:487.226667pt;}
.yda{bottom:489.706667pt;}
.y6a{bottom:491.066667pt;}
.y156{bottom:491.626667pt;}
.y10b{bottom:493.546667pt;}
.ya1{bottom:502.586667pt;}
.yd9{bottom:505.066667pt;}
.y69{bottom:506.426667pt;}
.y155{bottom:506.986667pt;}
.y10a{bottom:508.826667pt;}
.ya0{bottom:517.973333pt;}
.yd8{bottom:520.373333pt;}
.y68{bottom:521.733333pt;}
.y154{bottom:522.293333pt;}
.y109{bottom:524.213333pt;}
.y9f{bottom:533.253333pt;}
.yd7{bottom:535.733333pt;}
.y67{bottom:537.093333pt;}
.y153{bottom:537.653333pt;}
.y108{bottom:539.573333pt;}
.y9e{bottom:548.613333pt;}
.yd6{bottom:551.093333pt;}
.y66{bottom:552.453333pt;}
.y152{bottom:553.013333pt;}
.y107{bottom:554.853333pt;}
.y9d{bottom:563.893333pt;}
.yd5{bottom:566.373333pt;}
.y65{bottom:567.733333pt;}
.y151{bottom:568.293333pt;}
.y106{bottom:570.213333pt;}
.y9c{bottom:579.253333pt;}
.yd4{bottom:581.733333pt;}
.y125{bottom:582.693333pt;}
.y64{bottom:583.093333pt;}
.y150{bottom:583.653333pt;}
.y105{bottom:585.573333pt;}
.y15{bottom:593.413333pt;}
.y9b{bottom:594.613333pt;}
.yd3{bottom:597.093333pt;}
.y124{bottom:598.053333pt;}
.y63{bottom:598.453333pt;}
.y14f{bottom:598.933333pt;}
.y104{bottom:600.853333pt;}
.y9a{bottom:609.893333pt;}
.yd2{bottom:612.373333pt;}
.y62{bottom:613.733333pt;}
.y123{bottom:614.293333pt;}
.y103{bottom:616.213333pt;}
.y14{bottom:624.133333pt;}
.y99{bottom:625.253333pt;}
.yd1{bottom:627.733333pt;}
.y61{bottom:629.093333pt;}
.y122{bottom:629.653333pt;}
.y102{bottom:631.573333pt;}
.y13{bottom:639.493333pt;}
.y98{bottom:640.613333pt;}
.yd0{bottom:643.013333pt;}
.y60{bottom:644.453333pt;}
.y14e{bottom:644.933333pt;}
.y121{bottom:645.893333pt;}
.y101{bottom:646.853333pt;}
.y12{bottom:655.093333pt;}
.y97{bottom:655.893333pt;}
.ycf{bottom:658.373333pt;}
.y5f{bottom:659.733333pt;}
.y14d{bottom:660.293333pt;}
.y120{bottom:661.253333pt;}
.y100{bottom:662.213333pt;}
.y96{bottom:671.253333pt;}
.y11{bottom:671.653333pt;}
.yce{bottom:673.733333pt;}
.y5e{bottom:675.093333pt;}
.y14c{bottom:675.653333pt;}
.yff{bottom:677.573333pt;}
.y95{bottom:686.613333pt;}
.y10{bottom:687.333333pt;}
.ycd{bottom:689.013333pt;}
.y5d{bottom:690.453333pt;}
.y14b{bottom:690.933333pt;}
.yfe{bottom:692.853333pt;}
.y94{bottom:701.893333pt;}
.ycc{bottom:704.373333pt;}
.yf{bottom:705.653333pt;}
.y5c{bottom:705.733333pt;}
.y14a{bottom:706.293333pt;}
.yfd{bottom:708.213333pt;}
.y93{bottom:717.253333pt;}
.ycb{bottom:719.733333pt;}
.y5b{bottom:721.093333pt;}
.y149{bottom:721.653333pt;}
.yfc{bottom:723.573333pt;}
.ye{bottom:728.373333pt;}
.y92{bottom:732.613333pt;}
.yca{bottom:735.013333pt;}
.y5a{bottom:736.373333pt;}
.y148{bottom:736.933333pt;}
.yfb{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y91{bottom:747.893333pt;}
.yc9{bottom:751.333333pt;}
.y59{bottom:751.733333pt;}
.y147{bottom:752.293333pt;}
.yfa{bottom:754.213333pt;}
.y90{bottom:763.253333pt;}
.yc8{bottom:766.693333pt;}
.y58{bottom:767.093333pt;}
.y146{bottom:767.653333pt;}
.yf9{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y8f{bottom:778.613333pt;}
.y57{bottom:782.373333pt;}
.yc7{bottom:782.933333pt;}
.yf8{bottom:784.853333pt;}
.y8e{bottom:793.893333pt;}
.y56{bottom:797.733333pt;}
.yc6{bottom:798.293333pt;}
.yf7{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y8d{bottom:809.253333pt;}
.y55{bottom:813.093333pt;}
.yc5{bottom:813.653333pt;}
.yf6{bottom:815.493333pt;}
.y8c{bottom:824.613333pt;}
.ya{bottom:826.853333pt;}
.y54{bottom:828.373333pt;}
.y145{bottom:828.933333pt;}
.yc4{bottom:829.893333pt;}
.yf5{bottom:830.853333pt;}
.y8b{bottom:839.893333pt;}
.y8{bottom:840.533333pt;}
.y53{bottom:843.733333pt;}
.y144{bottom:844.293333pt;}
.yc3{bottom:845.253333pt;}
.yf4{bottom:846.213333pt;}
.y8a{bottom:855.253333pt;}
.y52{bottom:859.093333pt;}
.y143{bottom:859.653333pt;}
.yc2{bottom:861.493333pt;}
.y89{bottom:871.493333pt;}
.y51{bottom:874.373333pt;}
.y142{bottom:874.933333pt;}
.yc1{bottom:876.853333pt;}
.y88{bottom:886.880000pt;}
.y50{bottom:889.760000pt;}
.y141{bottom:890.320000pt;}
.yc0{bottom:892.240000pt;}
.y87{bottom:903.200000pt;}
.y4f{bottom:905.120000pt;}
.y140{bottom:906.560000pt;}
.ybf{bottom:907.520000pt;}
.y86{bottom:918.480000pt;}
.y4e{bottom:920.400000pt;}
.y13f{bottom:921.920000pt;}
.ybe{bottom:922.880000pt;}
.y85{bottom:934.800000pt;}
.y4d{bottom:935.760000pt;}
.y13e{bottom:937.280000pt;}
.ybd{bottom:938.240000pt;}
.y84{bottom:950.160000pt;}
.y4c{bottom:951.120000pt;}
.y13d{bottom:952.560000pt;}
.ybc{bottom:953.520000pt;}
.y4b{bottom:966.160000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1a{height:12.240000pt;}
.he{height:15.280000pt;}
.h13{height:17.760000pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h1b{height:30.028906pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.739844pt;}
.h19{height:34.945312pt;}
.h11{height:35.554688pt;}
.h4{height:37.314062pt;}
.hd{height:37.705469pt;}
.h18{height:38.905781pt;}
.h12{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hc{height:47.856406pt;}
.hb{height:60.283594pt;}
.h1c{height:61.386667pt;}
.ha{height:67.734375pt;}
.h14{height:82.800000pt;}
.h10{height:125.786667pt;}
.h7{height:136.826667pt;}
.h17{height:139.520000pt;}
.hf{height:367.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w6{width:195.866667pt;}
.w7{width:292.586667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x11{left:17.920000pt;}
.x15{left:24.560000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x16{left:58.159988pt;}
.x9{left:64.159988pt;}
.x24{left:71.200000pt;}
.xe{left:77.039988pt;}
.x18{left:78.399988pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x1d{left:102.399988pt;}
.xa{left:160.426655pt;}
.x19{left:206.346655pt;}
.xd{left:292.666655pt;}
.xc{left:330.826655pt;}
.x1f{left:402.426655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x21{left:421.386655pt;}
.x1c{left:425.093321pt;}
.x1e{left:426.453321pt;}
.x1a{left:430.213321pt;}
.x20{left:445.413321pt;}
.x23{left:447.733333pt;}
.x22{left:450.453321pt;}
.x1b{left:454.213321pt;}
.x10{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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