
    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_578bc49e3fb54bc0d2fd242e.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_534e64432e4cfee63b46b1e5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2bd3d16fdb0ec693408fd00a.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_4a9ef081e9e441a1b7fb904d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_718ff0efb10f7ef56b5393c2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3e1cc42d04adeb5e7fedcdc0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_82f2abf65ee62c3f6c27d6f1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls22{letter-spacing:-0.428400px;}
.ls12{letter-spacing:-0.299400px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls21{letter-spacing:-0.096600px;}
.ls13{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls20{letter-spacing:-0.068400px;}
.ls11{letter-spacing:-0.063600px;}
.ls23{letter-spacing:-0.037800px;}
.ls1d{letter-spacing:-0.018360px;}
.ls24{letter-spacing:-0.015480px;}
.ls1b{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.013320px;}
.ls1a{letter-spacing:-0.009000px;}
.ls1f{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls1e{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls14{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.160800px;}
.lsf{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls4{letter-spacing:80.344800px;}
.ls15{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.387200px;}
.ws16{word-spacing:-13.342200px;}
.wse{word-spacing:-13.294800px;}
.ws14{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.217400px;}
.ws12{word-spacing:-13.213080px;}
.ws11{word-spacing:-13.211640px;}
.ws1b{word-spacing:-13.210920px;}
.ws13{word-spacing:-13.208040px;}
.ws1a{word-spacing:-13.188600px;}
.wsb{word-spacing:-13.162800px;}
.ws17{word-spacing:-13.158000px;}
.wsd{word-spacing:-13.134000px;}
.ws18{word-spacing:-13.129800px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.927000px;}
.ws19{word-spacing:-12.798000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.499316px;}
._a{margin-left:-2.284800px;}
._1{margin-left:-1.177440px;}
._0{width:1.307448px;}
._9{width:2.789158px;}
._3{width:3.884042px;}
._2{width:4.929600px;}
._4{width:6.312600px;}
._8{width:7.961762px;}
._7{width:9.113039px;}
._5{width:10.641000px;}
._b{width:11.723400px;}
._e{width:14.969880px;}
._6{width:16.112400px;}
._11{width:17.555040px;}
._12{width:18.621455px;}
._13{width:19.675207px;}
._14{width:21.986160px;}
._f{width:23.086080px;}
._10{width:24.108120px;}
._c{width:26.392680px;}
._15{width:47.494800px;}
._16{width:48.877800px;}
._19{width:77.925720px;}
._18{width:78.997680px;}
._17{width:87.775200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y43{bottom:112.800000px;}
.ya8{bottom:114.240000px;}
.yc7{bottom:115.500000px;}
.yc3{bottom:122.880000px;}
.yf1{bottom:125.130000px;}
.y42{bottom:130.440000px;}
.y118{bottom:131.700000px;}
.yc2{bottom:140.430000px;}
.yf0{bottom:142.680000px;}
.y90{bottom:145.650000px;}
.y41{bottom:147.990000px;}
.ya7{bottom:149.880000px;}
.yc6{bottom:151.050000px;}
.y145{bottom:153.750000px;}
.yc1{bottom:157.980000px;}
.yef{bottom:160.320000px;}
.y40{bottom:165.630000px;}
.y117{bottom:167.250000px;}
.ya6{bottom:167.430000px;}
.yc5{bottom:168.690000px;}
.y68{bottom:170.940000px;}
.y144{bottom:171.300000px;}
.y23{bottom:173.820000px;}
.yc0{bottom:175.620000px;}
.yee{bottom:177.870000px;}
.y8f{bottom:181.200000px;}
.y3f{bottom:183.180000px;}
.ya5{bottom:184.980000px;}
.y67{bottom:188.490000px;}
.y22{bottom:192.270000px;}
.ybf{bottom:193.170000px;}
.yed{bottom:195.510000px;}
.y143{bottom:197.850000px;}
.y8e{bottom:198.840000px;}
.y3e{bottom:200.730000px;}
.yc4{bottom:200.910000px;}
.y116{bottom:202.890000px;}
.y66{bottom:206.130000px;}
.y21{bottom:210.720000px;}
.y142{bottom:215.490000px;}
.y8d{bottom:216.390000px;}
.ya4{bottom:217.200000px;}
.ybe{bottom:219.810000px;}
.yec{bottom:222.060000px;}
.y65{bottom:223.680000px;}
.y115{bottom:229.800000px;}
.y8c{bottom:233.940000px;}
.y3d{bottom:236.370000px;}
.y141{bottom:242.040000px;}
.y20{bottom:247.170000px;}
.y64{bottom:250.320000px;}
.y3c{bottom:253.920000px;}
.ybd{bottom:255.360000px;}
.yeb{bottom:257.610000px;}
.y8b{bottom:260.580000px;}
.y114{bottom:266.790000px;}
.y140{bottom:268.680000px;}
.ybc{bottom:272.910000px;}
.yea{bottom:275.250000px;}
.y1f{bottom:282.720000px;}
.y113{bottom:284.430000px;}
.y63{bottom:285.870000px;}
.y3b{bottom:286.140000px;}
.ybb{bottom:290.550000px;}
.ye9{bottom:292.800000px;}
.y13f{bottom:295.230000px;}
.y8a{bottom:296.130000px;}
.y1e{bottom:300.270000px;}
.y112{bottom:301.980000px;}
.y62{bottom:303.420000px;}
.yba{bottom:308.100000px;}
.ye8{bottom:310.440000px;}
.y51{bottom:312.690000px;}
.y13e{bottom:312.780000px;}
.y89{bottom:313.770000px;}
.y111{bottom:319.530000px;}
.y61{bottom:321.060000px;}
.yb9{bottom:325.740000px;}
.ye7{bottom:327.990000px;}
.y50{bottom:330.330000px;}
.y13d{bottom:330.420000px;}
.y88{bottom:331.320000px;}
.y1d{bottom:335.910000px;}
.y60{bottom:338.610000px;}
.yb8{bottom:343.290000px;}
.ye6{bottom:345.540000px;}
.y110{bottom:346.440000px;}
.y87{bottom:348.870000px;}
.y1c{bottom:353.460000px;}
.y5f{bottom:356.250000px;}
.y13c{bottom:356.970000px;}
.y4f{bottom:365.880000px;}
.y1b{bottom:371.100000px;}
.ye5{bottom:372.180000px;}
.y13b{bottom:374.610000px;}
.yb7{bottom:378.840000px;}
.y5e{bottom:382.800000px;}
.y4e{bottom:383.430000px;}
.y10f{bottom:383.790000px;}
.y86{bottom:384.510000px;}
.y1a{bottom:388.650000px;}
.y13a{bottom:392.160000px;}
.yb6{bottom:396.480000px;}
.y4d{bottom:401.070000px;}
.y85{bottom:402.060000px;}
.ye4{bottom:407.730000px;}
.yb5{bottom:414.030000px;}
.y5d{bottom:418.350000px;}
.y4c{bottom:418.620000px;}
.y139{bottom:418.710000px;}
.y84{bottom:419.700000px;}
.y19{bottom:424.200000px;}
.ye3{bottom:425.370000px;}
.yb4{bottom:431.670000px;}
.y10e{bottom:432.120000px;}
.y5c{bottom:435.990000px;}
.y4b{bottom:436.260000px;}
.y83{bottom:437.250000px;}
.y18{bottom:441.840000px;}
.ye2{bottom:442.920000px;}
.y138{bottom:445.350000px;}
.yb3{bottom:449.220000px;}
.y10d{bottom:449.670000px;}
.y5b{bottom:453.540000px;}
.y82{bottom:454.800000px;}
.y17{bottom:459.390000px;}
.ye1{bottom:460.470000px;}
.y4a{bottom:462.810000px;}
.y137{bottom:462.900000px;}
.yb2{bottom:466.770000px;}
.y10c{bottom:467.220000px;}
.y5a{bottom:471.210000px;}
.ye0{bottom:478.140000px;}
.y81{bottom:481.470000px;}
.y16{bottom:486.330000px;}
.y59{bottom:488.760000px;}
.y136{bottom:489.480000px;}
.ydf{bottom:495.690000px;}
.y49{bottom:498.390000px;}
.yb1{bottom:502.440000px;}
.y10b{bottom:502.890000px;}
.y135{bottom:507.120000px;}
.yde{bottom:513.330000px;}
.y48{bottom:516.030000px;}
.y80{bottom:517.020000px;}
.yb0{bottom:519.990000px;}
.y10a{bottom:520.440000px;}
.y58{bottom:524.310000px;}
.y134{bottom:524.670000px;}
.y47{bottom:533.580000px;}
.y15{bottom:534.660000px;}
.yaf{bottom:537.540000px;}
.y109{bottom:538.080000px;}
.ydd{bottom:539.880000px;}
.y57{bottom:541.950000px;}
.y133{bottom:551.310000px;}
.y7f{bottom:552.210000px;}
.y14{bottom:552.570000px;}
.yae{bottom:555.180000px;}
.y108{bottom:555.630000px;}
.y56{bottom:559.500000px;}
.y132{bottom:568.860000px;}
.y46{bottom:569.220000px;}
.ydc{bottom:575.430000px;}
.y7e{bottom:578.760000px;}
.yad{bottom:581.730000px;}
.y55{bottom:586.050000px;}
.y45{bottom:586.770000px;}
.y13{bottom:589.560000px;}
.y107{bottom:591.180000px;}
.ydb{bottom:593.070000px;}
.y131{bottom:595.410000px;}
.y12{bottom:607.110000px;}
.y106{bottom:608.820000px;}
.yda{bottom:610.620000px;}
.y130{bottom:613.050000px;}
.y7d{bottom:614.400000px;}
.yac{bottom:617.640000px;}
.y54{bottom:618.720000px;}
.y44{bottom:618.990000px;}
.y11{bottom:624.750000px;}
.y105{bottom:626.370000px;}
.yd9{bottom:628.260000px;}
.y12f{bottom:630.600000px;}
.y7c{bottom:631.950000px;}
.y10{bottom:642.300000px;}
.y104{bottom:644.010000px;}
.yd8{bottom:645.810000px;}
.y7b{bottom:649.590000px;}
.ya3{bottom:650.400000px;}
.y53{bottom:654.270000px;}
.y12e{bottom:657.240000px;}
.yf{bottom:659.850000px;}
.y103{bottom:661.560000px;}
.yd7{bottom:663.360000px;}
.yab{bottom:665.970000px;}
.y7a{bottom:667.140000px;}
.ya2{bottom:667.950000px;}
.y12d{bottom:674.790000px;}
.ye{bottom:677.490000px;}
.y102{bottom:679.110000px;}
.yd6{bottom:681.000000px;}
.yaa{bottom:683.520000px;}
.ya1{bottom:685.590000px;}
.y52{bottom:686.490000px;}
.y79{bottom:693.690000px;}
.y3a{bottom:694.590000px;}
.yd{bottom:695.040000px;}
.yd5{bottom:698.550000px;}
.y12c{bottom:701.340000px;}
.ya0{bottom:703.140000px;}
.y101{bottom:706.020000px;}
.y39{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.ya9{bottom:715.740000px;}
.yd4{bottom:725.190000px;}
.y12b{bottom:727.980000px;}
.y78{bottom:729.330000px;}
.y38{bottom:729.690000px;}
.yb{bottom:739.590000px;}
.y12a{bottom:745.530000px;}
.y77{bottom:746.880000px;}
.y37{bottom:747.330000px;}
.y100{bottom:754.350000px;}
.yd3{bottom:760.740000px;}
.y76{bottom:764.520000px;}
.y36{bottom:764.880000px;}
.y9f{bottom:765.330000px;}
.yff{bottom:771.900000px;}
.y129{bottom:772.170000px;}
.yd2{bottom:778.290000px;}
.y75{bottom:782.070000px;}
.y35{bottom:782.520000px;}
.y9e{bottom:782.880000px;}
.ya{bottom:787.830000px;}
.yfe{bottom:789.450000px;}
.y128{bottom:789.720000px;}
.yd1{bottom:795.930000px;}
.y34{bottom:800.070000px;}
.y9d{bottom:800.520000px;}
.yfd{bottom:807.090000px;}
.y74{bottom:808.620000px;}
.yd0{bottom:813.480000px;}
.y127{bottom:816.270000px;}
.y9c{bottom:818.070000px;}
.y9{bottom:823.380000px;}
.ycf{bottom:831.030000px;}
.yfc{bottom:833.640000px;}
.y126{bottom:833.910000px;}
.y33{bottom:835.620000px;}
.y73{bottom:844.260000px;}
.yce{bottom:848.670000px;}
.y125{bottom:851.460000px;}
.y32{bottom:853.260000px;}
.y8{bottom:859.200000px;}
.y72{bottom:861.810000px;}
.yfb{bottom:869.280000px;}
.y31{bottom:870.810000px;}
.ycd{bottom:875.220000px;}
.y124{bottom:878.100000px;}
.y71{bottom:879.450000px;}
.y9b{bottom:879.810000px;}
.yfa{bottom:886.830000px;}
.y123{bottom:895.650000px;}
.y70{bottom:897.000000px;}
.y7{bottom:898.980000px;}
.yf9{bottom:904.380000px;}
.y30{bottom:906.450000px;}
.ycc{bottom:910.860000px;}
.y6f{bottom:914.550000px;}
.y9a{bottom:915.450000px;}
.y6{bottom:916.980000px;}
.yf8{bottom:922.020000px;}
.y122{bottom:922.200000px;}
.y2f{bottom:924.000000px;}
.ycb{bottom:928.410000px;}
.y99{bottom:933.000000px;}
.yf7{bottom:939.570000px;}
.y121{bottom:939.840000px;}
.y6e{bottom:941.190000px;}
.y2e{bottom:941.550000px;}
.yca{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y98{bottom:950.550000px;}
.y120{bottom:957.390000px;}
.y2d{bottom:959.190000px;}
.yc9{bottom:963.600000px;}
.yf6{bottom:975.210000px;}
.y2c{bottom:976.740000px;}
.y97{bottom:977.460000px;}
.y11f{bottom:984.030000px;}
.y4{bottom:987.630000px;}
.yc8{bottom:990.150000px;}
.yf5{bottom:992.760000px;}
.y11e{bottom:1001.580000px;}
.y2b{bottom:1003.290000px;}
.yf4{bottom:1010.340000px;}
.y3{bottom:1012.320000px;}
.y96{bottom:1025.820000px;}
.y11d{bottom:1028.520000px;}
.y6d{bottom:1029.960000px;}
.yf3{bottom:1036.890000px;}
.y2a{bottom:1039.230000px;}
.y95{bottom:1043.370000px;}
.y6c{bottom:1047.510000px;}
.y94{bottom:1060.920000px;}
.y6b{bottom:1065.150000px;}
.yf2{bottom:1069.560000px;}
.y11c{bottom:1076.760000px;}
.y93{bottom:1078.560000px;}
.y29{bottom:1087.560000px;}
.y6a{bottom:1091.700000px;}
.y11b{bottom:1094.400000px;}
.y92{bottom:1096.110000px;}
.y28{bottom:1105.110000px;}
.y11a{bottom:1111.950000px;}
.y91{bottom:1113.750000px;}
.y27{bottom:1122.750000px;}
.y69{bottom:1127.610000px;}
.y119{bottom:1138.860000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x12{left:70.109987px;}
.xd{left:78.659987px;}
.x6{left:81.899987px;}
.x2{left:95.040000px;}
.x13{left:111.239987px;}
.x3{left:202.799987px;}
.xb{left:251.039987px;}
.x10{left:296.039987px;}
.xe{left:342.749987px;}
.x9{left:385.319987px;}
.x7{left:427.169987px;}
.x8{left:573.809987px;}
.xc{left:666.059987px;}
.xa{left:691.889987px;}
.xf{left:736.889987px;}
.x11{left:761.639987px;}
.x5{left:776.309987px;}
.x4{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls22{letter-spacing:-0.380800pt;}
.ls12{letter-spacing:-0.266133pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls21{letter-spacing:-0.085867pt;}
.ls13{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls20{letter-spacing:-0.060800pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls23{letter-spacing:-0.033600pt;}
.ls1d{letter-spacing:-0.016320pt;}
.ls24{letter-spacing:-0.013760pt;}
.ls1b{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls1a{letter-spacing:-0.008000pt;}
.ls1f{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls14{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.142933pt;}
.lsf{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls4{letter-spacing:71.417600pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.899733pt;}
.ws16{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.817600pt;}
.ws14{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.748800pt;}
.ws12{word-spacing:-11.744960pt;}
.ws11{word-spacing:-11.743680pt;}
.ws1b{word-spacing:-11.743040pt;}
.ws13{word-spacing:-11.740480pt;}
.ws1a{word-spacing:-11.723200pt;}
.wsb{word-spacing:-11.700267pt;}
.ws17{word-spacing:-11.696000pt;}
.wsd{word-spacing:-11.674667pt;}
.ws18{word-spacing:-11.670933pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.490667pt;}
.ws19{word-spacing:-11.376000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.110503pt;}
._a{margin-left:-2.030934pt;}
._1{margin-left:-1.046613pt;}
._0{width:1.162176pt;}
._9{width:2.479251pt;}
._3{width:3.452482pt;}
._2{width:4.381866pt;}
._4{width:5.611200pt;}
._8{width:7.077122pt;}
._7{width:8.100479pt;}
._5{width:9.458666pt;}
._b{width:10.420800pt;}
._e{width:13.306560pt;}
._6{width:14.322134pt;}
._11{width:15.604480pt;}
._12{width:16.552404pt;}
._13{width:17.489073pt;}
._14{width:19.543253pt;}
._f{width:20.520960pt;}
._10{width:21.429440pt;}
._c{width:23.460160pt;}
._15{width:42.217600pt;}
._16{width:43.446934pt;}
._19{width:69.267306pt;}
._18{width:70.220160pt;}
._17{width:78.022400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y43{bottom:100.266667pt;}
.ya8{bottom:101.546667pt;}
.yc7{bottom:102.666667pt;}
.yc3{bottom:109.226667pt;}
.yf1{bottom:111.226667pt;}
.y42{bottom:115.946667pt;}
.y118{bottom:117.066667pt;}
.yc2{bottom:124.826667pt;}
.yf0{bottom:126.826667pt;}
.y90{bottom:129.466667pt;}
.y41{bottom:131.546667pt;}
.ya7{bottom:133.226667pt;}
.yc6{bottom:134.266667pt;}
.y145{bottom:136.666667pt;}
.yc1{bottom:140.426667pt;}
.yef{bottom:142.506667pt;}
.y40{bottom:147.226667pt;}
.y117{bottom:148.666667pt;}
.ya6{bottom:148.826667pt;}
.yc5{bottom:149.946667pt;}
.y68{bottom:151.946667pt;}
.y144{bottom:152.266667pt;}
.y23{bottom:154.506667pt;}
.yc0{bottom:156.106667pt;}
.yee{bottom:158.106667pt;}
.y8f{bottom:161.066667pt;}
.y3f{bottom:162.826667pt;}
.ya5{bottom:164.426667pt;}
.y67{bottom:167.546667pt;}
.y22{bottom:170.906667pt;}
.ybf{bottom:171.706667pt;}
.yed{bottom:173.786667pt;}
.y143{bottom:175.866667pt;}
.y8e{bottom:176.746667pt;}
.y3e{bottom:178.426667pt;}
.yc4{bottom:178.586667pt;}
.y116{bottom:180.346667pt;}
.y66{bottom:183.226667pt;}
.y21{bottom:187.306667pt;}
.y142{bottom:191.546667pt;}
.y8d{bottom:192.346667pt;}
.ya4{bottom:193.066667pt;}
.ybe{bottom:195.386667pt;}
.yec{bottom:197.386667pt;}
.y65{bottom:198.826667pt;}
.y115{bottom:204.266667pt;}
.y8c{bottom:207.946667pt;}
.y3d{bottom:210.106667pt;}
.y141{bottom:215.146667pt;}
.y20{bottom:219.706667pt;}
.y64{bottom:222.506667pt;}
.y3c{bottom:225.706667pt;}
.ybd{bottom:226.986667pt;}
.yeb{bottom:228.986667pt;}
.y8b{bottom:231.626667pt;}
.y114{bottom:237.146667pt;}
.y140{bottom:238.826667pt;}
.ybc{bottom:242.586667pt;}
.yea{bottom:244.666667pt;}
.y1f{bottom:251.306667pt;}
.y113{bottom:252.826667pt;}
.y63{bottom:254.106667pt;}
.y3b{bottom:254.346667pt;}
.ybb{bottom:258.266667pt;}
.ye9{bottom:260.266667pt;}
.y13f{bottom:262.426667pt;}
.y8a{bottom:263.226667pt;}
.y1e{bottom:266.906667pt;}
.y112{bottom:268.426667pt;}
.y62{bottom:269.706667pt;}
.yba{bottom:273.866667pt;}
.ye8{bottom:275.946667pt;}
.y51{bottom:277.946667pt;}
.y13e{bottom:278.026667pt;}
.y89{bottom:278.906667pt;}
.y111{bottom:284.026667pt;}
.y61{bottom:285.386667pt;}
.yb9{bottom:289.546667pt;}
.ye7{bottom:291.546667pt;}
.y50{bottom:293.626667pt;}
.y13d{bottom:293.706667pt;}
.y88{bottom:294.506667pt;}
.y1d{bottom:298.586667pt;}
.y60{bottom:300.986667pt;}
.yb8{bottom:305.146667pt;}
.ye6{bottom:307.146667pt;}
.y110{bottom:307.946667pt;}
.y87{bottom:310.106667pt;}
.y1c{bottom:314.186667pt;}
.y5f{bottom:316.666667pt;}
.y13c{bottom:317.306667pt;}
.y4f{bottom:325.226667pt;}
.y1b{bottom:329.866667pt;}
.ye5{bottom:330.826667pt;}
.y13b{bottom:332.986667pt;}
.yb7{bottom:336.746667pt;}
.y5e{bottom:340.266667pt;}
.y4e{bottom:340.826667pt;}
.y10f{bottom:341.146667pt;}
.y86{bottom:341.786667pt;}
.y1a{bottom:345.466667pt;}
.y13a{bottom:348.586667pt;}
.yb6{bottom:352.426667pt;}
.y4d{bottom:356.506667pt;}
.y85{bottom:357.386667pt;}
.ye4{bottom:362.426667pt;}
.yb5{bottom:368.026667pt;}
.y5d{bottom:371.866667pt;}
.y4c{bottom:372.106667pt;}
.y139{bottom:372.186667pt;}
.y84{bottom:373.066667pt;}
.y19{bottom:377.066667pt;}
.ye3{bottom:378.106667pt;}
.yb4{bottom:383.706667pt;}
.y10e{bottom:384.106667pt;}
.y5c{bottom:387.546667pt;}
.y4b{bottom:387.786667pt;}
.y83{bottom:388.666667pt;}
.y18{bottom:392.746667pt;}
.ye2{bottom:393.706667pt;}
.y138{bottom:395.866667pt;}
.yb3{bottom:399.306667pt;}
.y10d{bottom:399.706667pt;}
.y5b{bottom:403.146667pt;}
.y82{bottom:404.266667pt;}
.y17{bottom:408.346667pt;}
.ye1{bottom:409.306667pt;}
.y4a{bottom:411.386667pt;}
.y137{bottom:411.466667pt;}
.yb2{bottom:414.906667pt;}
.y10c{bottom:415.306667pt;}
.y5a{bottom:418.853333pt;}
.ye0{bottom:425.013333pt;}
.y81{bottom:427.973333pt;}
.y16{bottom:432.293333pt;}
.y59{bottom:434.453333pt;}
.y136{bottom:435.093333pt;}
.ydf{bottom:440.613333pt;}
.y49{bottom:443.013333pt;}
.yb1{bottom:446.613333pt;}
.y10b{bottom:447.013333pt;}
.y135{bottom:450.773333pt;}
.yde{bottom:456.293333pt;}
.y48{bottom:458.693333pt;}
.y80{bottom:459.573333pt;}
.yb0{bottom:462.213333pt;}
.y10a{bottom:462.613333pt;}
.y58{bottom:466.053333pt;}
.y134{bottom:466.373333pt;}
.y47{bottom:474.293333pt;}
.y15{bottom:475.253333pt;}
.yaf{bottom:477.813333pt;}
.y109{bottom:478.293333pt;}
.ydd{bottom:479.893333pt;}
.y57{bottom:481.733333pt;}
.y133{bottom:490.053333pt;}
.y7f{bottom:490.853333pt;}
.y14{bottom:491.173333pt;}
.yae{bottom:493.493333pt;}
.y108{bottom:493.893333pt;}
.y56{bottom:497.333333pt;}
.y132{bottom:505.653333pt;}
.y46{bottom:505.973333pt;}
.ydc{bottom:511.493333pt;}
.y7e{bottom:514.453333pt;}
.yad{bottom:517.093333pt;}
.y55{bottom:520.933333pt;}
.y45{bottom:521.573333pt;}
.y13{bottom:524.053333pt;}
.y107{bottom:525.493333pt;}
.ydb{bottom:527.173333pt;}
.y131{bottom:529.253333pt;}
.y12{bottom:539.653333pt;}
.y106{bottom:541.173333pt;}
.yda{bottom:542.773333pt;}
.y130{bottom:544.933333pt;}
.y7d{bottom:546.133333pt;}
.yac{bottom:549.013333pt;}
.y54{bottom:549.973333pt;}
.y44{bottom:550.213333pt;}
.y11{bottom:555.333333pt;}
.y105{bottom:556.773333pt;}
.yd9{bottom:558.453333pt;}
.y12f{bottom:560.533333pt;}
.y7c{bottom:561.733333pt;}
.y10{bottom:570.933333pt;}
.y104{bottom:572.453333pt;}
.yd8{bottom:574.053333pt;}
.y7b{bottom:577.413333pt;}
.ya3{bottom:578.133333pt;}
.y53{bottom:581.573333pt;}
.y12e{bottom:584.213333pt;}
.yf{bottom:586.533333pt;}
.y103{bottom:588.053333pt;}
.yd7{bottom:589.653333pt;}
.yab{bottom:591.973333pt;}
.y7a{bottom:593.013333pt;}
.ya2{bottom:593.733333pt;}
.y12d{bottom:599.813333pt;}
.ye{bottom:602.213333pt;}
.y102{bottom:603.653333pt;}
.yd6{bottom:605.333333pt;}
.yaa{bottom:607.573333pt;}
.ya1{bottom:609.413333pt;}
.y52{bottom:610.213333pt;}
.y79{bottom:616.613333pt;}
.y3a{bottom:617.413333pt;}
.yd{bottom:617.813333pt;}
.yd5{bottom:620.933333pt;}
.y12c{bottom:623.413333pt;}
.ya0{bottom:625.013333pt;}
.y101{bottom:627.573333pt;}
.y39{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.ya9{bottom:636.213333pt;}
.yd4{bottom:644.613333pt;}
.y12b{bottom:647.093333pt;}
.y78{bottom:648.293333pt;}
.y38{bottom:648.613333pt;}
.yb{bottom:657.413333pt;}
.y12a{bottom:662.693333pt;}
.y77{bottom:663.893333pt;}
.y37{bottom:664.293333pt;}
.y100{bottom:670.533333pt;}
.yd3{bottom:676.213333pt;}
.y76{bottom:679.573333pt;}
.y36{bottom:679.893333pt;}
.y9f{bottom:680.293333pt;}
.yff{bottom:686.133333pt;}
.y129{bottom:686.373333pt;}
.yd2{bottom:691.813333pt;}
.y75{bottom:695.173333pt;}
.y35{bottom:695.573333pt;}
.y9e{bottom:695.893333pt;}
.ya{bottom:700.293333pt;}
.yfe{bottom:701.733333pt;}
.y128{bottom:701.973333pt;}
.yd1{bottom:707.493333pt;}
.y34{bottom:711.173333pt;}
.y9d{bottom:711.573333pt;}
.yfd{bottom:717.413333pt;}
.y74{bottom:718.773333pt;}
.yd0{bottom:723.093333pt;}
.y127{bottom:725.573333pt;}
.y9c{bottom:727.173333pt;}
.y9{bottom:731.893333pt;}
.ycf{bottom:738.693333pt;}
.yfc{bottom:741.013333pt;}
.y126{bottom:741.253333pt;}
.y33{bottom:742.773333pt;}
.y73{bottom:750.453333pt;}
.yce{bottom:754.373333pt;}
.y125{bottom:756.853333pt;}
.y32{bottom:758.453333pt;}
.y8{bottom:763.733333pt;}
.y72{bottom:766.053333pt;}
.yfb{bottom:772.693333pt;}
.y31{bottom:774.053333pt;}
.ycd{bottom:777.973333pt;}
.y124{bottom:780.533333pt;}
.y71{bottom:781.733333pt;}
.y9b{bottom:782.053333pt;}
.yfa{bottom:788.293333pt;}
.y123{bottom:796.133333pt;}
.y70{bottom:797.333333pt;}
.y7{bottom:799.093333pt;}
.yf9{bottom:803.893333pt;}
.y30{bottom:805.733333pt;}
.ycc{bottom:809.653333pt;}
.y6f{bottom:812.933333pt;}
.y9a{bottom:813.733333pt;}
.y6{bottom:815.093333pt;}
.yf8{bottom:819.573333pt;}
.y122{bottom:819.733333pt;}
.y2f{bottom:821.333333pt;}
.ycb{bottom:825.253333pt;}
.y99{bottom:829.333333pt;}
.yf7{bottom:835.173333pt;}
.y121{bottom:835.413333pt;}
.y6e{bottom:836.613333pt;}
.y2e{bottom:836.933333pt;}
.yca{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y98{bottom:844.933333pt;}
.y120{bottom:851.013333pt;}
.y2d{bottom:852.613333pt;}
.yc9{bottom:856.533333pt;}
.yf6{bottom:866.853333pt;}
.y2c{bottom:868.213333pt;}
.y97{bottom:868.853333pt;}
.y11f{bottom:874.693333pt;}
.y4{bottom:877.893333pt;}
.yc8{bottom:880.133333pt;}
.yf5{bottom:882.453333pt;}
.y11e{bottom:890.293333pt;}
.y2b{bottom:891.813333pt;}
.yf4{bottom:898.080000pt;}
.y3{bottom:899.840000pt;}
.y96{bottom:911.840000pt;}
.y11d{bottom:914.240000pt;}
.y6d{bottom:915.520000pt;}
.yf3{bottom:921.680000pt;}
.y2a{bottom:923.760000pt;}
.y95{bottom:927.440000pt;}
.y6c{bottom:931.120000pt;}
.y94{bottom:943.040000pt;}
.y6b{bottom:946.800000pt;}
.yf2{bottom:950.720000pt;}
.y11c{bottom:957.120000pt;}
.y93{bottom:958.720000pt;}
.y29{bottom:966.720000pt;}
.y6a{bottom:970.400000pt;}
.y11b{bottom:972.800000pt;}
.y92{bottom:974.320000pt;}
.y28{bottom:982.320000pt;}
.y11a{bottom:988.400000pt;}
.y91{bottom:990.000000pt;}
.y27{bottom:998.000000pt;}
.y69{bottom:1002.320000pt;}
.y119{bottom:1012.320000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x12{left:62.319988pt;}
.xd{left:69.919988pt;}
.x6{left:72.799988pt;}
.x2{left:84.480000pt;}
.x13{left:98.879988pt;}
.x3{left:180.266655pt;}
.xb{left:223.146655pt;}
.x10{left:263.146655pt;}
.xe{left:304.666655pt;}
.x9{left:342.506655pt;}
.x7{left:379.706655pt;}
.x8{left:510.053322pt;}
.xc{left:592.053322pt;}
.xa{left:615.013322pt;}
.xf{left:655.013322pt;}
.x11{left:677.013322pt;}
.x5{left:690.053322pt;}
.x4{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; }
  