
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5088ec31f416b9c265792a8e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b19cbfb96ceb73556ea8109d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_841604dc820f0794bae69044.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_ef3a9f5ed6da116c67011d9f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_55b82e6c4eac0c0fbba95c44.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f61bbbd20b194b91eacaec2b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ce34cc941ba1c670e46d4c2a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.109375;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_a8b49fa2e9721e31d36925cc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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;}
.ls9{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls14{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.037800px;}
.ls17{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.051840px;}
.lsb{letter-spacing:0.053400px;}
.ls16{letter-spacing:0.060600px;}
.lsd{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wse{word-spacing:-13.287000px;}
.ws6{word-spacing:-13.279800px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.217400px;}
.wsb{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.129800px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._11{margin-left:-3.963486px;}
._3{margin-left:-2.874000px;}
._0{margin-left:-1.086000px;}
._1{width:1.090188px;}
._6{width:2.164200px;}
._b{width:3.727200px;}
._10{width:5.234280px;}
._d{width:6.252480px;}
._2{width:7.755600px;}
._9{width:9.078000px;}
._8{width:10.287360px;}
._4{width:11.302800px;}
._5{width:14.308800px;}
._c{width:15.501609px;}
._7{width:17.314800px;}
._f{width:18.456600px;}
._12{width:19.784041px;}
._e{width:22.124160px;}
._15{width:23.269332px;}
._14{width:24.468840px;}
._a{width:26.512800px;}
._13{width:28.977840px;}
._17{width:31.202280px;}
._18{width:32.224320px;}
._16{width:132.083640px;}
._1d{width:135.149760px;}
._1e{width:136.412280px;}
._21{width:148.135680px;}
._20{width:149.277960px;}
._19{width:160.189560px;}
._1b{width:201.882960px;}
._1c{width:203.325840px;}
._1f{width:218.415960px;}
._1a{width:383.745960px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y91{bottom:7.830000px;}
.ya2{bottom:7.860000px;}
.y93{bottom:7.920000px;}
.yd2{bottom:8.190000px;}
.ydd{bottom:8.280000px;}
.yd4{bottom:10.170000px;}
.ydf{bottom:10.260000px;}
.yb3{bottom:25.470000px;}
.ycc{bottom:26.550000px;}
.ycf{bottom:26.640000px;}
.yd3{bottom:28.890000px;}
.yde{bottom:28.980000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y76{bottom:116.940000px;}
.y117{bottom:121.980000px;}
.y75{bottom:134.580000px;}
.yc5{bottom:137.640000px;}
.y9d{bottom:138.720000px;}
.y116{bottom:139.620000px;}
.y4d{bottom:149.430000px;}
.yc4{bottom:155.280000px;}
.y74{bottom:161.130000px;}
.y115{bottom:166.530000px;}
.yed{bottom:166.980000px;}
.y4c{bottom:167.070000px;}
.y144{bottom:171.750000px;}
.yc3{bottom:172.830000px;}
.y9c{bottom:174.360000px;}
.y143{bottom:189.300000px;}
.y4b{bottom:193.620000px;}
.y24{bottom:194.790000px;}
.y73{bottom:196.680000px;}
.yec{bottom:202.530000px;}
.y114{bottom:203.520000px;}
.yc2{bottom:205.860000px;}
.y142{bottom:206.850000px;}
.y9b{bottom:209.910000px;}
.y23{bottom:212.340000px;}
.y72{bottom:214.320000px;}
.yeb{bottom:220.170000px;}
.y4a{bottom:229.260000px;}
.y22{bottom:229.980000px;}
.y113{bottom:230.430000px;}
.y71{bottom:231.870000px;}
.yc1{bottom:233.130000px;}
.y141{bottom:233.490000px;}
.yea{bottom:237.720000px;}
.y9a{bottom:245.460000px;}
.y49{bottom:246.810000px;}
.y140{bottom:251.040000px;}
.ye9{bottom:255.360000px;}
.y70{bottom:258.510000px;}
.yc0{bottom:260.490000px;}
.y99{bottom:263.100000px;}
.y21{bottom:265.530000px;}
.y112{bottom:267.780000px;}
.ye8{bottom:272.910000px;}
.y48{bottom:273.360000px;}
.y13f{bottom:277.680000px;}
.y98{bottom:280.650000px;}
.y20{bottom:283.170000px;}
.ybf{bottom:287.850000px;}
.y6f{bottom:294.060000px;}
.y13e{bottom:295.230000px;}
.y1f{bottom:300.720000px;}
.ye7{bottom:306.660000px;}
.y47{bottom:309.000000px;}
.y6e{bottom:311.610000px;}
.y13d{bottom:312.780000px;}
.y97{bottom:313.590000px;}
.ybe{bottom:315.120000px;}
.y111{bottom:316.020000px;}
.y1e{bottom:318.270000px;}
.y46{bottom:326.550000px;}
.y110{bottom:333.660000px;}
.y1d{bottom:335.910000px;}
.ye6{bottom:336.360000px;}
.y6d{bottom:338.250000px;}
.y13c{bottom:339.420000px;}
.y96{bottom:340.950000px;}
.y45{bottom:344.190000px;}
.y10f{bottom:351.210000px;}
.y1c{bottom:353.460000px;}
.y13b{bottom:356.970000px;}
.ye5{bottom:363.630000px;}
.ybd{bottom:363.900000px;}
.y95{bottom:368.310000px;}
.y44{bottom:370.740000px;}
.y6c{bottom:373.800000px;}
.y10e{bottom:378.120000px;}
.y13a{bottom:383.610000px;}
.y1b{bottom:389.100000px;}
.ye4{bottom:390.990000px;}
.y94{bottom:395.670000px;}
.ybc{bottom:399.450000px;}
.y6b{bottom:400.440000px;}
.y139{bottom:401.160000px;}
.y43{bottom:403.320000px;}
.y1a{bottom:406.650000px;}
.y10d{bottom:415.110000px;}
.ybb{bottom:417.000000px;}
.ye3{bottom:418.350000px;}
.y138{bottom:418.710000px;}
.y92{bottom:422.940000px;}
.y19{bottom:424.200000px;}
.y10c{bottom:432.750000px;}
.yba{bottom:434.640000px;}
.y6a{bottom:435.900000px;}
.y18{bottom:441.840000px;}
.y137{bottom:445.350000px;}
.ye2{bottom:445.710000px;}
.y90{bottom:450.300000px;}
.yb9{bottom:452.190000px;}
.y69{bottom:454.440000px;}
.y17{bottom:459.390000px;}
.y42{bottom:459.480000px;}
.y136{bottom:462.900000px;}
.y10b{bottom:467.940000px;}
.yb8{bottom:469.860000px;}
.y68{bottom:472.020000px;}
.y41{bottom:477.870000px;}
.y16{bottom:486.330000px;}
.y135{bottom:489.480000px;}
.y67{bottom:490.470000px;}
.ye1{bottom:494.430000px;}
.y10a{bottom:494.790000px;}
.y40{bottom:496.320000px;}
.y8f{bottom:499.020000px;}
.yb7{bottom:502.800000px;}
.y134{bottom:507.120000px;}
.y66{bottom:508.020000px;}
.y3f{bottom:513.870000px;}
.y133{bottom:524.670000px;}
.ye0{bottom:529.980000px;}
.yb6{bottom:530.160000px;}
.y109{bottom:531.870000px;}
.y3e{bottom:532.320000px;}
.y15{bottom:534.660000px;}
.y65{bottom:535.470000px;}
.y132{bottom:542.310000px;}
.ydc{bottom:545.730000px;}
.y108{bottom:549.420000px;}
.y14{bottom:552.570000px;}
.yb5{bottom:557.430000px;}
.y8e{bottom:561.570000px;}
.y107{bottom:567.060000px;}
.y131{bottom:568.860000px;}
.y64{bottom:570.930000px;}
.y3d{bottom:571.740000px;}
.ydb{bottom:575.430000px;}
.y106{bottom:584.610000px;}
.yb4{bottom:584.790000px;}
.y130{bottom:586.410000px;}
.y63{bottom:589.380000px;}
.y13{bottom:589.560000px;}
.y105{bottom:602.160000px;}
.yda{bottom:602.790000px;}
.y12{bottom:607.110000px;}
.y3c{bottom:607.290000px;}
.y62{bottom:607.830000px;}
.y8d{bottom:609.810000px;}
.yb2{bottom:612.150000px;}
.y12f{bottom:613.050000px;}
.y104{bottom:619.800000px;}
.y11{bottom:624.750000px;}
.y61{bottom:625.380000px;}
.y3b{bottom:625.740000px;}
.yd9{bottom:630.060000px;}
.y12e{bottom:630.600000px;}
.y8c{bottom:636.360000px;}
.y103{bottom:637.350000px;}
.y10{bottom:642.300000px;}
.y3a{bottom:644.100000px;}
.y12d{bottom:648.240000px;}
.y60{bottom:652.830000px;}
.y102{bottom:654.990000px;}
.yd8{bottom:657.420000px;}
.yf{bottom:659.850000px;}
.y39{bottom:662.550000px;}
.y8b{bottom:672.000000px;}
.y12c{bottom:674.790000px;}
.ye{bottom:677.490000px;}
.yb1{bottom:678.390000px;}
.y101{bottom:681.900000px;}
.yd7{bottom:684.780000px;}
.y5f{bottom:688.380000px;}
.y8a{bottom:689.550000px;}
.y38{bottom:690.000000px;}
.y12b{bottom:692.340000px;}
.yd{bottom:695.040000px;}
.y5e{bottom:706.020000px;}
.yc{bottom:712.680000px;}
.yb0{bottom:714.030000px;}
.y89{bottom:716.190000px;}
.y12a{bottom:718.980000px;}
.y37{bottom:725.550000px;}
.y100{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.y5d{bottom:732.570000px;}
.yd6{bottom:733.470000px;}
.y129{bottom:736.530000px;}
.yff{bottom:747.690000px;}
.yaf{bottom:749.580000px;}
.y88{bottom:751.740000px;}
.y36{bottom:752.190000px;}
.ya{bottom:757.140000px;}
.y128{bottom:763.170000px;}
.yfe{bottom:765.330000px;}
.yae{bottom:767.130000px;}
.y5c{bottom:768.210000px;}
.yd5{bottom:769.020000px;}
.y87{bottom:769.290000px;}
.y153{bottom:769.740000px;}
.y127{bottom:780.720000px;}
.yfd{bottom:782.880000px;}
.yad{bottom:784.770000px;}
.y5b{bottom:785.760000px;}
.y86{bottom:786.930000px;}
.y152{bottom:787.290000px;}
.y35{bottom:788.100000px;}
.yd1{bottom:793.050000px;}
.yac{bottom:802.320000px;}
.y85{bottom:804.480000px;}
.y151{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y126{bottom:807.270000px;}
.y5a{bottom:812.310000px;}
.yfc{bottom:818.520000px;}
.yab{bottom:819.960000px;}
.yd0{bottom:822.750000px;}
.y125{bottom:824.910000px;}
.y84{bottom:831.030000px;}
.y150{bottom:831.480000px;}
.yfb{bottom:836.070000px;}
.y34{bottom:836.340000px;}
.yaa{bottom:837.510000px;}
.y8{bottom:841.200000px;}
.y124{bottom:842.460000px;}
.y14f{bottom:849.030000px;}
.yce{bottom:850.020000px;}
.y59{bottom:850.830000px;}
.yfa{bottom:853.620000px;}
.y33{bottom:853.890000px;}
.ya9{bottom:855.060000px;}
.y14e{bottom:866.670000px;}
.y123{bottom:869.100000px;}
.y58{bottom:869.280000px;}
.y83{bottom:869.550000px;}
.yf9{bottom:871.260000px;}
.y32{bottom:871.530000px;}
.ya8{bottom:872.700000px;}
.y7{bottom:877.200000px;}
.ycd{bottom:877.380000px;}
.y122{bottom:886.650000px;}
.y82{bottom:887.280000px;}
.y57{bottom:887.730000px;}
.yf8{bottom:888.810000px;}
.ya7{bottom:890.250000px;}
.y14d{bottom:893.220000px;}
.y31{bottom:898.080000px;}
.y121{bottom:904.200000px;}
.ycb{bottom:904.740000px;}
.y81{bottom:904.830000px;}
.y56{bottom:906.180000px;}
.ya6{bottom:907.890000px;}
.y14c{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y80{bottom:922.380000px;}
.y55{bottom:923.730000px;}
.yf7{bottom:924.450000px;}
.y120{bottom:930.840000px;}
.yca{bottom:932.100000px;}
.y30{bottom:933.720000px;}
.y14b{bottom:937.410000px;}
.y7f{bottom:940.020000px;}
.yf6{bottom:942.000000px;}
.ya5{bottom:942.720000px;}
.y11f{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y2f{bottom:951.270000px;}
.ya4{bottom:954.870000px;}
.y14a{bottom:954.960000px;}
.y7e{bottom:957.570000px;}
.yf5{bottom:959.550000px;}
.y54{bottom:963.150000px;}
.y2e{bottom:968.820000px;}
.y11e{bottom:975.030000px;}
.yf4{bottom:977.190000px;}
.yc9{bottom:980.790000px;}
.y149{bottom:981.600000px;}
.ya3{bottom:982.230000px;}
.y2d{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y11d{bottom:992.580000px;}
.yf3{bottom:994.740000px;}
.y7d{bottom:996.090000px;}
.y53{bottom:998.790000px;}
.y148{bottom:999.150000px;}
.ya1{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2c{bottom:1013.040000px;}
.y7c{bottom:1013.760000px;}
.y52{bottom:1016.370000px;}
.y147{bottom:1016.820000px;}
.y11c{bottom:1019.160000px;}
.y7b{bottom:1031.400000px;}
.ya0{bottom:1036.890000px;}
.y51{bottom:1042.920000px;}
.y146{bottom:1043.370000px;}
.y11b{bottom:1046.070000px;}
.yf2{bottom:1047.960000px;}
.y2b{bottom:1048.590000px;}
.y7a{bottom:1048.950000px;}
.yc8{bottom:1051.920000px;}
.y145{bottom:1060.920000px;}
.y9f{bottom:1064.250000px;}
.yf1{bottom:1065.510000px;}
.y2a{bottom:1067.040000px;}
.yc7{bottom:1069.560000px;}
.y50{bottom:1078.560000px;}
.yf0{bottom:1083.150000px;}
.y29{bottom:1085.400000px;}
.yc6{bottom:1087.110000px;}
.y79{bottom:1087.560000px;}
.y9e{bottom:1091.610000px;}
.y11a{bottom:1094.400000px;}
.y4f{bottom:1096.110000px;}
.yef{bottom:1100.700000px;}
.y28{bottom:1103.850000px;}
.y78{bottom:1105.110000px;}
.y119{bottom:1111.950000px;}
.y4e{bottom:1113.750000px;}
.y77{bottom:1122.750000px;}
.yee{bottom:1127.610000px;}
.y118{bottom:1138.860000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hf{height:26.550000px;}
.hd{height:26.580000px;}
.he{height:26.640000px;}
.h12{height:28.890000px;}
.h13{height:28.980000px;}
.h2{height:30.022383px;}
.h3{height:40.100098px;}
.h10{height:42.666504px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:53.573730px;}
.h8{height:55.779258px;}
.h5{height:58.706543px;}
.hc{height:59.973223px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:74.746582px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w23{width:15.840000px;}
.w25{width:15.930000px;}
.w2a{width:16.830000px;}
.w28{width:16.920000px;}
.wb{width:23.760000px;}
.w4{width:40.410000px;}
.w7{width:43.470000px;}
.w15{width:48.540000px;}
.w5{width:53.280000px;}
.w34{width:54.270000px;}
.w2c{width:54.360000px;}
.w16{width:55.080000px;}
.w3a{width:64.830000px;}
.w2b{width:65.070000px;}
.w33{width:65.160000px;}
.w32{width:66.450000px;}
.w6{width:66.990000px;}
.w26{width:68.400000px;}
.w22{width:68.430000px;}
.w29{width:69.060000px;}
.w27{width:69.210000px;}
.w39{width:70.920000px;}
.wa{width:71.010000px;}
.w24{width:73.350000px;}
.w13{width:76.050000px;}
.w9{width:77.670000px;}
.w37{width:81.480000px;}
.w21{width:81.720000px;}
.w31{width:81.810000px;}
.w30{width:83.100000px;}
.w1e{width:85.050000px;}
.w1c{width:85.080000px;}
.w20{width:86.700000px;}
.w38{width:86.760000px;}
.w1f{width:86.850000px;}
.w1d{width:90.000000px;}
.w10{width:108.180000px;}
.wf{width:108.210000px;}
.we{width:108.630000px;}
.wd{width:109.350000px;}
.w11{width:109.710000px;}
.w14{width:116.460000px;}
.w3{width:127.440000px;}
.w17{width:127.800000px;}
.wc{width:128.370000px;}
.w8{width:138.780000px;}
.w12{width:150.060000px;}
.w1b{width:153.450000px;}
.w2f{width:153.540000px;}
.w1a{width:174.270000px;}
.w36{width:249.780000px;}
.w2e{width:251.400000px;}
.w19{width:261.660000px;}
.w35{width:578.940000px;}
.w2d{width:580.650000px;}
.w18{width:590.910000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:94.229987px;}
.x16{left:108.450000px;}
.x3a{left:111.239987px;}
.x5{left:122.039987px;}
.x7{left:126.539987px;}
.x6{left:149.039987px;}
.x21{left:151.200000px;}
.x8{left:153.539987px;}
.x2d{left:156.330000px;}
.x1c{left:157.770000px;}
.x2{left:202.799987px;}
.xf{left:218.100000px;}
.x27{left:220.440000px;}
.x33{left:223.500000px;}
.x17{left:237.630000px;}
.x2f{left:240.150000px;}
.x9{left:279.390000px;}
.x34{left:306.030000px;}
.x1d{left:308.550000px;}
.x28{left:311.160000px;}
.x30{left:322.680000px;}
.x24{left:327.810000px;}
.x18{left:347.700000px;}
.x15{left:353.909987px;}
.x10{left:357.600000px;}
.x1e{left:385.410000px;}
.x35{left:391.800000px;}
.x29{left:396.930000px;}
.xb{left:407.550000px;}
.x22{left:413.580000px;}
.x11{left:435.990000px;}
.xc{left:448.680000px;}
.x19{left:457.140000px;}
.x36{left:478.380000px;}
.x2a{left:483.510000px;}
.x31{left:496.020000px;}
.x25{left:501.150000px;}
.xd{left:502.680000px;}
.x12{left:507.840000px;}
.x1f{left:551.850000px;}
.x39{left:564.990000px;}
.x1a{left:566.160000px;}
.xe{left:570.390000px;}
.x13{left:579.570000px;}
.x2e{left:583.440000px;}
.x23{left:588.660000px;}
.x20{left:607.740000px;}
.x37{left:649.320000px;}
.x14{left:651.390000px;}
.x2b{left:654.450000px;}
.x32{left:665.970000px;}
.x26{left:671.100000px;}
.x1b{left:675.060000px;}
.x38{left:721.050000px;}
.x2c{left:726.180000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls14{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.033600pt;}
.ls17{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.046080pt;}
.lsb{letter-spacing:0.047467pt;}
.ls16{letter-spacing:0.053867pt;}
.lsd{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws10{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wse{word-spacing:-11.810667pt;}
.ws6{word-spacing:-11.804267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.748800pt;}
.wsb{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.670933pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._11{margin-left:-3.523098pt;}
._3{margin-left:-2.554666pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.969056pt;}
._6{width:1.923733pt;}
._b{width:3.313066pt;}
._10{width:4.652693pt;}
._d{width:5.557760pt;}
._2{width:6.893867pt;}
._9{width:8.069333pt;}
._8{width:9.144320pt;}
._4{width:10.046934pt;}
._5{width:12.718934pt;}
._c{width:13.779208pt;}
._7{width:15.390934pt;}
._f{width:16.405866pt;}
._12{width:17.585815pt;}
._e{width:19.665920pt;}
._15{width:20.683850pt;}
._14{width:21.750080pt;}
._a{width:23.566933pt;}
._13{width:25.758080pt;}
._17{width:27.735360pt;}
._18{width:28.643840pt;}
._16{width:117.407680pt;}
._1d{width:120.133120pt;}
._1e{width:121.255360pt;}
._21{width:131.676160pt;}
._20{width:132.691520pt;}
._19{width:142.390720pt;}
._1b{width:179.451520pt;}
._1c{width:180.734080pt;}
._1f{width:194.147520pt;}
._1a{width:341.107520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:6.960000pt;}
.ya2{bottom:6.986667pt;}
.y93{bottom:7.040000pt;}
.yd2{bottom:7.280000pt;}
.ydd{bottom:7.360000pt;}
.yd4{bottom:9.040000pt;}
.ydf{bottom:9.120000pt;}
.yb3{bottom:22.640000pt;}
.ycc{bottom:23.600000pt;}
.ycf{bottom:23.680000pt;}
.yd3{bottom:25.680000pt;}
.yde{bottom:25.760000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y76{bottom:103.946667pt;}
.y117{bottom:108.426667pt;}
.y75{bottom:119.626667pt;}
.yc5{bottom:122.346667pt;}
.y9d{bottom:123.306667pt;}
.y116{bottom:124.106667pt;}
.y4d{bottom:132.826667pt;}
.yc4{bottom:138.026667pt;}
.y74{bottom:143.226667pt;}
.y115{bottom:148.026667pt;}
.yed{bottom:148.426667pt;}
.y4c{bottom:148.506667pt;}
.y144{bottom:152.666667pt;}
.yc3{bottom:153.626667pt;}
.y9c{bottom:154.986667pt;}
.y143{bottom:168.266667pt;}
.y4b{bottom:172.106667pt;}
.y24{bottom:173.146667pt;}
.y73{bottom:174.826667pt;}
.yec{bottom:180.026667pt;}
.y114{bottom:180.906667pt;}
.yc2{bottom:182.986667pt;}
.y142{bottom:183.866667pt;}
.y9b{bottom:186.586667pt;}
.y23{bottom:188.746667pt;}
.y72{bottom:190.506667pt;}
.yeb{bottom:195.706667pt;}
.y4a{bottom:203.786667pt;}
.y22{bottom:204.426667pt;}
.y113{bottom:204.826667pt;}
.y71{bottom:206.106667pt;}
.yc1{bottom:207.226667pt;}
.y141{bottom:207.546667pt;}
.yea{bottom:211.306667pt;}
.y9a{bottom:218.186667pt;}
.y49{bottom:219.386667pt;}
.y140{bottom:223.146667pt;}
.ye9{bottom:226.986667pt;}
.y70{bottom:229.786667pt;}
.yc0{bottom:231.546667pt;}
.y99{bottom:233.866667pt;}
.y21{bottom:236.026667pt;}
.y112{bottom:238.026667pt;}
.ye8{bottom:242.586667pt;}
.y48{bottom:242.986667pt;}
.y13f{bottom:246.826667pt;}
.y98{bottom:249.466667pt;}
.y20{bottom:251.706667pt;}
.ybf{bottom:255.866667pt;}
.y6f{bottom:261.386667pt;}
.y13e{bottom:262.426667pt;}
.y1f{bottom:267.306667pt;}
.ye7{bottom:272.586667pt;}
.y47{bottom:274.666667pt;}
.y6e{bottom:276.986667pt;}
.y13d{bottom:278.026667pt;}
.y97{bottom:278.746667pt;}
.ybe{bottom:280.106667pt;}
.y111{bottom:280.906667pt;}
.y1e{bottom:282.906667pt;}
.y46{bottom:290.266667pt;}
.y110{bottom:296.586667pt;}
.y1d{bottom:298.586667pt;}
.ye6{bottom:298.986667pt;}
.y6d{bottom:300.666667pt;}
.y13c{bottom:301.706667pt;}
.y96{bottom:303.066667pt;}
.y45{bottom:305.946667pt;}
.y10f{bottom:312.186667pt;}
.y1c{bottom:314.186667pt;}
.y13b{bottom:317.306667pt;}
.ye5{bottom:323.226667pt;}
.ybd{bottom:323.466667pt;}
.y95{bottom:327.386667pt;}
.y44{bottom:329.546667pt;}
.y6c{bottom:332.266667pt;}
.y10e{bottom:336.106667pt;}
.y13a{bottom:340.986667pt;}
.y1b{bottom:345.866667pt;}
.ye4{bottom:347.546667pt;}
.y94{bottom:351.706667pt;}
.ybc{bottom:355.066667pt;}
.y6b{bottom:355.946667pt;}
.y139{bottom:356.586667pt;}
.y43{bottom:358.506667pt;}
.y1a{bottom:361.466667pt;}
.y10d{bottom:368.986667pt;}
.ybb{bottom:370.666667pt;}
.ye3{bottom:371.866667pt;}
.y138{bottom:372.186667pt;}
.y92{bottom:375.946667pt;}
.y19{bottom:377.066667pt;}
.y10c{bottom:384.666667pt;}
.yba{bottom:386.346667pt;}
.y6a{bottom:387.466667pt;}
.y18{bottom:392.746667pt;}
.y137{bottom:395.866667pt;}
.ye2{bottom:396.186667pt;}
.y90{bottom:400.266667pt;}
.yb9{bottom:401.946667pt;}
.y69{bottom:403.946667pt;}
.y17{bottom:408.346667pt;}
.y42{bottom:408.426667pt;}
.y136{bottom:411.466667pt;}
.y10b{bottom:415.946667pt;}
.yb8{bottom:417.653333pt;}
.y68{bottom:419.573333pt;}
.y41{bottom:424.773333pt;}
.y16{bottom:432.293333pt;}
.y135{bottom:435.093333pt;}
.y67{bottom:435.973333pt;}
.ye1{bottom:439.493333pt;}
.y10a{bottom:439.813333pt;}
.y40{bottom:441.173333pt;}
.y8f{bottom:443.573333pt;}
.yb7{bottom:446.933333pt;}
.y134{bottom:450.773333pt;}
.y66{bottom:451.573333pt;}
.y3f{bottom:456.773333pt;}
.y133{bottom:466.373333pt;}
.ye0{bottom:471.093333pt;}
.yb6{bottom:471.253333pt;}
.y109{bottom:472.773333pt;}
.y3e{bottom:473.173333pt;}
.y15{bottom:475.253333pt;}
.y65{bottom:475.973333pt;}
.y132{bottom:482.053333pt;}
.ydc{bottom:485.093333pt;}
.y108{bottom:488.373333pt;}
.y14{bottom:491.173333pt;}
.yb5{bottom:495.493333pt;}
.y8e{bottom:499.173333pt;}
.y107{bottom:504.053333pt;}
.y131{bottom:505.653333pt;}
.y64{bottom:507.493333pt;}
.y3d{bottom:508.213333pt;}
.ydb{bottom:511.493333pt;}
.y106{bottom:519.653333pt;}
.yb4{bottom:519.813333pt;}
.y130{bottom:521.253333pt;}
.y63{bottom:523.893333pt;}
.y13{bottom:524.053333pt;}
.y105{bottom:535.253333pt;}
.yda{bottom:535.813333pt;}
.y12{bottom:539.653333pt;}
.y3c{bottom:539.813333pt;}
.y62{bottom:540.293333pt;}
.y8d{bottom:542.053333pt;}
.yb2{bottom:544.133333pt;}
.y12f{bottom:544.933333pt;}
.y104{bottom:550.933333pt;}
.y11{bottom:555.333333pt;}
.y61{bottom:555.893333pt;}
.y3b{bottom:556.213333pt;}
.yd9{bottom:560.053333pt;}
.y12e{bottom:560.533333pt;}
.y8c{bottom:565.653333pt;}
.y103{bottom:566.533333pt;}
.y10{bottom:570.933333pt;}
.y3a{bottom:572.533333pt;}
.y12d{bottom:576.213333pt;}
.y60{bottom:580.293333pt;}
.y102{bottom:582.213333pt;}
.yd8{bottom:584.373333pt;}
.yf{bottom:586.533333pt;}
.y39{bottom:588.933333pt;}
.y8b{bottom:597.333333pt;}
.y12c{bottom:599.813333pt;}
.ye{bottom:602.213333pt;}
.yb1{bottom:603.013333pt;}
.y101{bottom:606.133333pt;}
.yd7{bottom:608.693333pt;}
.y5f{bottom:611.893333pt;}
.y8a{bottom:612.933333pt;}
.y38{bottom:613.333333pt;}
.y12b{bottom:615.413333pt;}
.yd{bottom:617.813333pt;}
.y5e{bottom:627.573333pt;}
.yc{bottom:633.493333pt;}
.yb0{bottom:634.693333pt;}
.y89{bottom:636.613333pt;}
.y12a{bottom:639.093333pt;}
.y37{bottom:644.933333pt;}
.y100{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.y5d{bottom:651.173333pt;}
.yd6{bottom:651.973333pt;}
.y129{bottom:654.693333pt;}
.yff{bottom:664.613333pt;}
.yaf{bottom:666.293333pt;}
.y88{bottom:668.213333pt;}
.y36{bottom:668.613333pt;}
.ya{bottom:673.013333pt;}
.y128{bottom:678.373333pt;}
.yfe{bottom:680.293333pt;}
.yae{bottom:681.893333pt;}
.y5c{bottom:682.853333pt;}
.yd5{bottom:683.573333pt;}
.y87{bottom:683.813333pt;}
.y153{bottom:684.213333pt;}
.y127{bottom:693.973333pt;}
.yfd{bottom:695.893333pt;}
.yad{bottom:697.573333pt;}
.y5b{bottom:698.453333pt;}
.y86{bottom:699.493333pt;}
.y152{bottom:699.813333pt;}
.y35{bottom:700.533333pt;}
.yd1{bottom:704.933333pt;}
.yac{bottom:713.173333pt;}
.y85{bottom:715.093333pt;}
.y151{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y126{bottom:717.573333pt;}
.y5a{bottom:722.053333pt;}
.yfc{bottom:727.573333pt;}
.yab{bottom:728.853333pt;}
.yd0{bottom:731.333333pt;}
.y125{bottom:733.253333pt;}
.y84{bottom:738.693333pt;}
.y150{bottom:739.093333pt;}
.yfb{bottom:743.173333pt;}
.y34{bottom:743.413333pt;}
.yaa{bottom:744.453333pt;}
.y8{bottom:747.733333pt;}
.y124{bottom:748.853333pt;}
.y14f{bottom:754.693333pt;}
.yce{bottom:755.573333pt;}
.y59{bottom:756.293333pt;}
.yfa{bottom:758.773333pt;}
.y33{bottom:759.013333pt;}
.ya9{bottom:760.053333pt;}
.y14e{bottom:770.373333pt;}
.y123{bottom:772.533333pt;}
.y58{bottom:772.693333pt;}
.y83{bottom:772.933333pt;}
.yf9{bottom:774.453333pt;}
.y32{bottom:774.693333pt;}
.ya8{bottom:775.733333pt;}
.y7{bottom:779.733333pt;}
.ycd{bottom:779.893333pt;}
.y122{bottom:788.133333pt;}
.y82{bottom:788.693333pt;}
.y57{bottom:789.093333pt;}
.yf8{bottom:790.053333pt;}
.ya7{bottom:791.333333pt;}
.y14d{bottom:793.973333pt;}
.y31{bottom:798.293333pt;}
.y121{bottom:803.733333pt;}
.ycb{bottom:804.213333pt;}
.y81{bottom:804.293333pt;}
.y56{bottom:805.493333pt;}
.ya6{bottom:807.013333pt;}
.y14c{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y80{bottom:819.893333pt;}
.y55{bottom:821.093333pt;}
.yf7{bottom:821.733333pt;}
.y120{bottom:827.413333pt;}
.yca{bottom:828.533333pt;}
.y30{bottom:829.973333pt;}
.y14b{bottom:833.253333pt;}
.y7f{bottom:835.573333pt;}
.yf6{bottom:837.333333pt;}
.ya5{bottom:837.973333pt;}
.y11f{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y2f{bottom:845.573333pt;}
.ya4{bottom:848.773333pt;}
.y14a{bottom:848.853333pt;}
.y7e{bottom:851.173333pt;}
.yf5{bottom:852.933333pt;}
.y54{bottom:856.133333pt;}
.y2e{bottom:861.173333pt;}
.y11e{bottom:866.693333pt;}
.yf4{bottom:868.613333pt;}
.yc9{bottom:871.813333pt;}
.y149{bottom:872.533333pt;}
.ya3{bottom:873.093333pt;}
.y2d{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y11d{bottom:882.293333pt;}
.yf3{bottom:884.213333pt;}
.y7d{bottom:885.413333pt;}
.y53{bottom:887.813333pt;}
.y148{bottom:888.133333pt;}
.ya1{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2c{bottom:900.480000pt;}
.y7c{bottom:901.120000pt;}
.y52{bottom:903.440000pt;}
.y147{bottom:903.840000pt;}
.y11c{bottom:905.920000pt;}
.y7b{bottom:916.800000pt;}
.ya0{bottom:921.680000pt;}
.y51{bottom:927.040000pt;}
.y146{bottom:927.440000pt;}
.y11b{bottom:929.840000pt;}
.yf2{bottom:931.520000pt;}
.y2b{bottom:932.080000pt;}
.y7a{bottom:932.400000pt;}
.yc8{bottom:935.040000pt;}
.y145{bottom:943.040000pt;}
.y9f{bottom:946.000000pt;}
.yf1{bottom:947.120000pt;}
.y2a{bottom:948.480000pt;}
.yc7{bottom:950.720000pt;}
.y50{bottom:958.720000pt;}
.yf0{bottom:962.800000pt;}
.y29{bottom:964.800000pt;}
.yc6{bottom:966.320000pt;}
.y79{bottom:966.720000pt;}
.y9e{bottom:970.320000pt;}
.y11a{bottom:972.800000pt;}
.y4f{bottom:974.320000pt;}
.yef{bottom:978.400000pt;}
.y28{bottom:981.200000pt;}
.y78{bottom:982.320000pt;}
.y119{bottom:988.400000pt;}
.y4e{bottom:990.000000pt;}
.y77{bottom:998.000000pt;}
.yee{bottom:1002.320000pt;}
.y118{bottom:1012.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.hd{height:23.626667pt;}
.he{height:23.680000pt;}
.h12{height:25.680000pt;}
.h13{height:25.760000pt;}
.h2{height:26.686562pt;}
.h3{height:35.644531pt;}
.h10{height:37.925781pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:47.621094pt;}
.h8{height:49.581562pt;}
.h5{height:52.183594pt;}
.hc{height:53.309531pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:66.441406pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w23{width:14.080000pt;}
.w25{width:14.160000pt;}
.w2a{width:14.960000pt;}
.w28{width:15.040000pt;}
.wb{width:21.120000pt;}
.w4{width:35.920000pt;}
.w7{width:38.640000pt;}
.w15{width:43.146667pt;}
.w5{width:47.360000pt;}
.w34{width:48.240000pt;}
.w2c{width:48.320000pt;}
.w16{width:48.960000pt;}
.w3a{width:57.626667pt;}
.w2b{width:57.840000pt;}
.w33{width:57.920000pt;}
.w32{width:59.066667pt;}
.w6{width:59.546667pt;}
.w26{width:60.800000pt;}
.w22{width:60.826667pt;}
.w29{width:61.386667pt;}
.w27{width:61.520000pt;}
.w39{width:63.040000pt;}
.wa{width:63.120000pt;}
.w24{width:65.200000pt;}
.w13{width:67.600000pt;}
.w9{width:69.040000pt;}
.w37{width:72.426667pt;}
.w21{width:72.640000pt;}
.w31{width:72.720000pt;}
.w30{width:73.866667pt;}
.w1e{width:75.600000pt;}
.w1c{width:75.626667pt;}
.w20{width:77.066667pt;}
.w38{width:77.120000pt;}
.w1f{width:77.200000pt;}
.w1d{width:80.000000pt;}
.w10{width:96.160000pt;}
.wf{width:96.186667pt;}
.we{width:96.560000pt;}
.wd{width:97.200000pt;}
.w11{width:97.520000pt;}
.w14{width:103.520000pt;}
.w3{width:113.280000pt;}
.w17{width:113.600000pt;}
.wc{width:114.106667pt;}
.w8{width:123.360000pt;}
.w12{width:133.386667pt;}
.w1b{width:136.400000pt;}
.w2f{width:136.480000pt;}
.w1a{width:154.906667pt;}
.w36{width:222.026667pt;}
.w2e{width:223.466667pt;}
.w19{width:232.586667pt;}
.w35{width:514.613333pt;}
.w2d{width:516.133333pt;}
.w18{width:525.253333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:83.759988pt;}
.x16{left:96.400000pt;}
.x3a{left:98.879988pt;}
.x5{left:108.479988pt;}
.x7{left:112.479988pt;}
.x6{left:132.479988pt;}
.x21{left:134.400000pt;}
.x8{left:136.479988pt;}
.x2d{left:138.960000pt;}
.x1c{left:140.240000pt;}
.x2{left:180.266655pt;}
.xf{left:193.866667pt;}
.x27{left:195.946667pt;}
.x33{left:198.666667pt;}
.x17{left:211.226667pt;}
.x2f{left:213.466667pt;}
.x9{left:248.346667pt;}
.x34{left:272.026667pt;}
.x1d{left:274.266667pt;}
.x28{left:276.586667pt;}
.x30{left:286.826667pt;}
.x24{left:291.386667pt;}
.x18{left:309.066667pt;}
.x15{left:314.586655pt;}
.x10{left:317.866667pt;}
.x1e{left:342.586667pt;}
.x35{left:348.266667pt;}
.x29{left:352.826667pt;}
.xb{left:362.266667pt;}
.x22{left:367.626667pt;}
.x11{left:387.546667pt;}
.xc{left:398.826667pt;}
.x19{left:406.346667pt;}
.x36{left:425.226667pt;}
.x2a{left:429.786667pt;}
.x31{left:440.906667pt;}
.x25{left:445.466667pt;}
.xd{left:446.826667pt;}
.x12{left:451.413333pt;}
.x1f{left:490.533333pt;}
.x39{left:502.213333pt;}
.x1a{left:503.253333pt;}
.xe{left:507.013333pt;}
.x13{left:515.173333pt;}
.x2e{left:518.613333pt;}
.x23{left:523.253333pt;}
.x20{left:540.213333pt;}
.x37{left:577.173333pt;}
.x14{left:579.013333pt;}
.x2b{left:581.733333pt;}
.x32{left:591.973333pt;}
.x26{left:596.533333pt;}
.x1b{left:600.053333pt;}
.x38{left:640.933333pt;}
.x2c{left:645.493333pt;}
.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; }
  