
    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_852c2b5c13ec4ceab1658f89.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_459ce7e891ca8418aadb0dd1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_1a35edae2cd4446301633427.woff')format("woff");}.ff3{font-family:ff3;line-height:0.896484;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_d8bce58bdaad24f78c7d98f1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_0e82a2c487e2c232d7535877.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_58913d565895cc53c26289d2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_7dff302dd4461c2ee5a62ee9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_0aeb67125aa03395c77eec5e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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;}
.ls7{letter-spacing:-7.320000px;}
.lsa{letter-spacing:-2.160000px;}
.ls9{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.374000px;}
.ls19{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.512400px;}
.ls3{letter-spacing:-0.305400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls18{letter-spacing:-0.244800px;}
.ls2{letter-spacing:-0.219000px;}
.ls5{letter-spacing:-0.204600px;}
.ls12{letter-spacing:-0.198600px;}
.ls17{letter-spacing:-0.169800px;}
.ls11{letter-spacing:-0.158400px;}
.ls6{letter-spacing:-0.063600px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.230400px;}
.ls1a{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.lse{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.521400px;}
.lsf{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.080000px;}
.ls14{letter-spacing:3.780000px;}
.lsd{letter-spacing:27.540000px;}
.ls1c{letter-spacing:847.596000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.081400px;}
.ws7{word-spacing:-16.790400px;}
.wsd{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.496400px;}
.wsa{word-spacing:-16.401600px;}
.wsf{word-spacing:-16.390200px;}
.ws4{word-spacing:-16.355400px;}
.ws12{word-spacing:-16.297800px;}
.ws3{word-spacing:-16.254600px;}
.ws8{word-spacing:-16.047600px;}
.ws10{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.594000px;}
.wsc{word-spacing:-15.300000px;}
.wse{word-spacing:-15.186000px;}
.ws9{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.400000px;}
.ws6{word-spacing:-9.240000px;}
.ws2{word-spacing:0.000000px;}
._37{margin-left:-8.977440px;}
._30{margin-left:-7.816320px;}
._1d{margin-left:-6.639840px;}
._16{margin-left:-5.034240px;}
._15{margin-left:-3.396000px;}
._12{margin-left:-2.384640px;}
._0{margin-left:-1.324800px;}
._8{width:1.014240px;}
._f{width:2.217120px;}
._19{width:3.246240px;}
._6{width:4.291200px;}
._3{width:5.448960px;}
._4{width:6.652800px;}
._b{width:7.735680px;}
._a{width:8.864640px;}
._28{width:10.068480px;}
._5{width:11.404800px;}
._14{width:12.660480px;}
._22{width:13.734720px;}
._c{width:14.751360px;}
._d{width:16.882560px;}
._e{width:17.890080px;}
._10{width:19.071360px;}
._11{width:20.528640px;}
._24{width:21.594240px;}
._1{width:23.316480px;}
._2{width:25.153920px;}
._34{width:26.363520px;}
._26{width:27.480960px;}
._25{width:28.748160px;}
._31{width:29.874240px;}
._23{width:31.132800px;}
._13{width:32.457600px;}
._1c{width:33.468960px;}
._18{width:35.372160px;}
._17{width:36.498240px;}
._7{width:38.079360px;}
._9{width:39.404160px;}
._1a{width:40.936320px;}
._1b{width:41.956320px;}
._29{width:43.784640px;}
._33{width:47.152320px;}
._21{width:50.209920px;}
._20{width:51.336000px;}
._27{width:52.395840px;}
._32{width:53.937600px;}
._35{width:55.801440px;}
._2f{width:58.092480px;}
._2e{width:59.880960px;}
._1f{width:61.422240px;}
._1e{width:62.464320px;}
._2a{width:63.656640px;}
._2b{width:64.912800px;}
._2c{width:67.101120px;}
._38{width:69.154560px;}
._2d{width:87.503040px;}
._36{width:110.136480px;}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.720000px;}
.y88{bottom:88.560000px;}
.y24{bottom:88.920000px;}
.y6b{bottom:89.460000px;}
.y47{bottom:101.520000px;}
.y113{bottom:102.240000px;}
.yf0{bottom:102.600000px;}
.yd7{bottom:103.320000px;}
.y87{bottom:105.840000px;}
.y23{bottom:107.460000px;}
.y6a{bottom:109.080000px;}
.ya6{bottom:112.680000px;}
.y46{bottom:121.320000px;}
.y112{bottom:121.860000px;}
.yef{bottom:122.400000px;}
.y86{bottom:123.120000px;}
.y101{bottom:123.300000px;}
.y22{bottom:125.820000px;}
.y69{bottom:128.916000px;}
.y85{bottom:140.436000px;}
.y45{bottom:141.156000px;}
.y111{bottom:141.696000px;}
.yee{bottom:142.236000px;}
.y100{bottom:142.596000px;}
.yd6{bottom:143.136000px;}
.y21{bottom:144.396000px;}
.y68{bottom:148.716000px;}
.y84{bottom:157.530000px;}
.y44{bottom:160.950000px;}
.y110{bottom:161.490000px;}
.yed{bottom:162.030000px;}
.yff{bottom:162.390000px;}
.y20{bottom:162.750000px;}
.yd5{bottom:163.110000px;}
.y67{bottom:168.510000px;}
.y83{bottom:174.810000px;}
.y43{bottom:180.750000px;}
.y10f{bottom:181.290000px;}
.y82{bottom:181.650000px;}
.yec{bottom:181.830000px;}
.yfe{bottom:182.370000px;}
.yd4{bottom:183.090000px;}
.y1f{bottom:185.790000px;}
.y66{bottom:188.310000px;}
.y81{bottom:192.450000px;}
.y42{bottom:200.370000px;}
.y10e{bottom:201.090000px;}
.yeb{bottom:201.450000px;}
.yfd{bottom:202.350000px;}
.yd3{bottom:202.890000px;}
.y1e{bottom:204.330000px;}
.y65{bottom:207.930000px;}
.y41{bottom:220.170000px;}
.y10d{bottom:220.710000px;}
.yea{bottom:221.250000px;}
.yfc{bottom:222.150000px;}
.y1d{bottom:222.870000px;}
.y80{bottom:225.210000px;}
.y64{bottom:227.730000px;}
.yc3{bottom:229.170000px;}
.ya4{bottom:229.890000px;}
.ya5{bottom:237.450000px;}
.y40{bottom:239.970000px;}
.y10c{bottom:240.510000px;}
.ye9{bottom:241.050000px;}
.y1c{bottom:241.410000px;}
.yfb{bottom:242.130000px;}
.yd2{bottom:242.850000px;}
.y7f{bottom:245.010000px;}
.y63{bottom:247.530000px;}
.yc2{bottom:248.790000px;}
.ya3{bottom:249.330000px;}
.y1b{bottom:259.770000px;}
.y10b{bottom:260.310000px;}
.ye8{bottom:260.850000px;}
.yfa{bottom:262.110000px;}
.yd1{bottom:262.650000px;}
.y7e{bottom:264.990000px;}
.y62{bottom:266.970000px;}
.ya2{bottom:268.590000px;}
.y1a{bottom:278.310000px;}
.y3f{bottom:279.570000px;}
.y10a{bottom:280.110000px;}
.ye7{bottom:280.650000px;}
.yf9{bottom:281.910000px;}
.yd0{bottom:282.630000px;}
.y7d{bottom:284.970000px;}
.y61{bottom:286.590000px;}
.ya1{bottom:288.030000px;}
.yc1{bottom:288.390000px;}
.y19{bottom:296.850000px;}
.y3e{bottom:299.235000px;}
.y109{bottom:299.955000px;}
.ye6{bottom:300.315000px;}
.yf8{bottom:301.935000px;}
.ycf{bottom:302.655000px;}
.y7c{bottom:304.815000px;}
.y60{bottom:306.075000px;}
.ya0{bottom:307.335000px;}
.yc0{bottom:308.235000px;}
.y18{bottom:315.255000px;}
.y3d{bottom:319.035000px;}
.y108{bottom:319.575000px;}
.ye5{bottom:320.115000px;}
.yf7{bottom:321.915000px;}
.yce{bottom:322.455000px;}
.y7a{bottom:324.795000px;}
.y5f{bottom:325.695000px;}
.y9f{bottom:326.775000px;}
.y129{bottom:327.135000px;}
.ybf{bottom:328.035000px;}
.y7b{bottom:332.355000px;}
.y17{bottom:333.795000px;}
.y3c{bottom:338.835000px;}
.y107{bottom:339.375000px;}
.ye4{bottom:339.915000px;}
.yf6{bottom:341.715000px;}
.ycd{bottom:342.435000px;}
.y79{bottom:344.775000px;}
.y5e{bottom:345.135000px;}
.y9e{bottom:346.215000px;}
.y128{bottom:347.115000px;}
.ybe{bottom:347.655000px;}
.y16{bottom:352.155000px;}
.y3b{bottom:358.635000px;}
.y106{bottom:359.175000px;}
.ye3{bottom:359.715000px;}
.yf5{bottom:361.695000px;}
.ycc{bottom:362.415000px;}
.y78{bottom:364.575000px;}
.y5d{bottom:364.755000px;}
.y9d{bottom:365.475000px;}
.ybd{bottom:367.455000px;}
.y15{bottom:375.375000px;}
.y3a{bottom:378.435000px;}
.y105{bottom:378.975000px;}
.ye2{bottom:379.515000px;}
.yf4{bottom:381.675000px;}
.ycb{bottom:382.035000px;}
.y5c{bottom:384.195000px;}
.y77{bottom:384.555000px;}
.y9c{bottom:384.915000px;}
.ybc{bottom:387.255000px;}
.y14{bottom:393.735000px;}
.y39{bottom:398.055000px;}
.y104{bottom:398.775000px;}
.ye1{bottom:399.135000px;}
.yf3{bottom:401.475000px;}
.yca{bottom:401.835000px;}
.y127{bottom:403.095000px;}
.y5b{bottom:403.815000px;}
.y9b{bottom:404.175000px;}
.y76{bottom:404.535000px;}
.ybb{bottom:407.055000px;}
.y13{bottom:412.275000px;}
.y38{bottom:417.855000px;}
.y103{bottom:418.575000px;}
.ye0{bottom:418.935000px;}
.yf2{bottom:421.455000px;}
.yc9{bottom:421.635000px;}
.y5a{bottom:423.255000px;}
.y9a{bottom:423.615000px;}
.y75{bottom:423.975000px;}
.yba{bottom:426.855000px;}
.y12{bottom:430.815000px;}
.y37{bottom:437.655000px;}
.y102{bottom:438.555000px;}
.ydf{bottom:438.735000px;}
.y126{bottom:439.995000px;}
.yc8{bottom:441.435000px;}
.y59{bottom:442.875000px;}
.y99{bottom:443.055000px;}
.y74{bottom:443.595000px;}
.yb9{bottom:446.475000px;}
.y11{bottom:449.175000px;}
.y36{bottom:457.455000px;}
.yde{bottom:458.535000px;}
.yc7{bottom:461.235000px;}
.y58{bottom:462.315000px;}
.y73{bottom:463.035000px;}
.yb8{bottom:466.275000px;}
.y10{bottom:467.745000px;}
.yf1{bottom:468.825000px;}
.y125{bottom:477.105000px;}
.y35{bottom:477.285000px;}
.ydd{bottom:478.365000px;}
.yc6{bottom:480.885000px;}
.y98{bottom:481.785000px;}
.y57{bottom:481.965000px;}
.y72{bottom:482.685000px;}
.yb7{bottom:486.105000px;}
.yf{bottom:486.285000px;}
.y124{bottom:495.645000px;}
.y34{bottom:496.905000px;}
.ydc{bottom:498.345000px;}
.yc5{bottom:500.685000px;}
.y97{bottom:501.045000px;}
.y56{bottom:501.405000px;}
.y71{bottom:502.125000px;}
.ye{bottom:504.825000px;}
.yb6{bottom:505.905000px;}
.y123{bottom:514.005000px;}
.y33{bottom:516.705000px;}
.ydb{bottom:518.325000px;}
.y96{bottom:520.485000px;}
.y55{bottom:521.025000px;}
.y70{bottom:521.745000px;}
.yd{bottom:523.185000px;}
.yb5{bottom:525.705000px;}
.y122{bottom:532.545000px;}
.y32{bottom:536.505000px;}
.yda{bottom:538.125000px;}
.y95{bottom:539.925000px;}
.yc4{bottom:540.285000px;}
.y54{bottom:540.465000px;}
.y6f{bottom:541.185000px;}
.yc{bottom:541.725000px;}
.yb4{bottom:545.325000px;}
.y121{bottom:551.085000px;}
.y31{bottom:556.305000px;}
.yd9{bottom:558.105000px;}
.y94{bottom:559.185000px;}
.yb{bottom:560.085000px;}
.y6e{bottom:560.805000px;}
.yb3{bottom:564.765000px;}
.y120{bottom:569.445000px;}
.y30{bottom:576.105000px;}
.yd8{bottom:578.085000px;}
.y93{bottom:578.625000px;}
.y53{bottom:579.705000px;}
.y6d{bottom:580.245000px;}
.ya{bottom:582.945000px;}
.yb2{bottom:584.205000px;}
.y11f{bottom:587.985000px;}
.y2f{bottom:595.725000px;}
.y92{bottom:597.885000px;}
.y52{bottom:599.505000px;}
.y6c{bottom:599.865000px;}
.y9{bottom:601.305000px;}
.yb0{bottom:603.465000px;}
.y11e{bottom:606.525000px;}
.yb1{bottom:611.025000px;}
.y91{bottom:617.865000px;}
.y51{bottom:619.305000px;}
.yaf{bottom:622.905000px;}
.y8{bottom:624.705000px;}
.y11d{bottom:625.065000px;}
.y2e{bottom:628.485000px;}
.y90{bottom:637.890000px;}
.y50{bottom:639.150000px;}
.yae{bottom:642.210000px;}
.y11c{bottom:643.470000px;}
.y2d{bottom:647.070000px;}
.y7{bottom:656.430000px;}
.y8e{bottom:657.690000px;}
.y4f{bottom:658.950000px;}
.yad{bottom:661.650000px;}
.y11b{bottom:662.010000px;}
.y8f{bottom:665.250000px;}
.y2c{bottom:668.490000px;}
.y8d{bottom:677.670000px;}
.y4e{bottom:678.570000px;}
.y6{bottom:680.010000px;}
.y11a{bottom:680.550000px;}
.yac{bottom:681.090000px;}
.y2b{bottom:687.030000px;}
.y8c{bottom:697.650000px;}
.y4d{bottom:698.370000px;}
.y119{bottom:698.910000px;}
.yab{bottom:700.350000px;}
.y5{bottom:703.770000px;}
.y2a{bottom:705.570000px;}
.y118{bottom:717.450000px;}
.y8b{bottom:717.630000px;}
.y4c{bottom:718.170000px;}
.yaa{bottom:719.790000px;}
.y29{bottom:723.930000px;}
.y117{bottom:735.990000px;}
.y8a{bottom:737.430000px;}
.y4{bottom:737.610000px;}
.y4b{bottom:737.970000px;}
.ya9{bottom:739.050000px;}
.y28{bottom:742.470000px;}
.y116{bottom:754.530000px;}
.y3{bottom:757.230000px;}
.y89{bottom:757.410000px;}
.y4a{bottom:757.770000px;}
.ya8{bottom:758.490000px;}
.y27{bottom:761.010000px;}
.y115{bottom:772.890000px;}
.y49{bottom:777.390000px;}
.ya7{bottom:777.930000px;}
.y26{bottom:779.550000px;}
.y2{bottom:795.930000px;}
.y48{bottom:797.190000px;}
.y114{bottom:797.550000px;}
.y25{bottom:797.910000px;}
.hb{height:38.158594px;}
.ha{height:40.985156px;}
.hd{height:53.573906px;}
.h8{height:55.372500px;}
.h10{height:56.801250px;}
.hc{height:58.651172px;}
.h7{height:59.383125px;}
.h6{height:62.153438px;}
.hf{height:62.184375px;}
.he{height:63.855000px;}
.h4{height:64.978594px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:70.664062px;}
.h9{height:892.978080px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.458125px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x8{left:76.536000px;}
.x16{left:81.396000px;}
.x17{left:87.156000px;}
.x1c{left:91.296000px;}
.x7{left:93.636000px;}
.xf{left:98.496000px;}
.xb{left:102.096000px;}
.x10{left:104.256000px;}
.xa{left:119.196000px;}
.x6{left:139.176000px;}
.x5{left:154.470000px;}
.x13{left:216.073125px;}
.x14{left:221.295000px;}
.x18{left:232.633125px;}
.x2{left:237.495000px;}
.x1b{left:266.655000px;}
.x15{left:292.575000px;}
.x1{left:297.975000px;}
.xe{left:309.675000px;}
.x9{left:315.075000px;}
.x1d{left:334.695000px;}
.x11{left:370.903125px;}
.x12{left:376.125000px;}
.x4{left:413.745000px;}
.x3{left:454.245000px;}
.x19{left:462.343125px;}
.x1a{left:467.565000px;}
.xc{left:471.343125px;}
.xd{left:476.610000px;}
.x1e{left:536.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-6.506667pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.221333pt;}
.ls19{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.455467pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls18{letter-spacing:-0.217600pt;}
.ls2{letter-spacing:-0.194667pt;}
.ls5{letter-spacing:-0.181867pt;}
.ls12{letter-spacing:-0.176533pt;}
.ls17{letter-spacing:-0.150933pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls6{letter-spacing:-0.056533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.204800pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.463467pt;}
.lsf{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls14{letter-spacing:3.360000pt;}
.lsd{letter-spacing:24.480000pt;}
.ls1c{letter-spacing:753.418667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.183467pt;}
.ws7{word-spacing:-14.924800pt;}
.wsd{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.663467pt;}
.wsa{word-spacing:-14.579200pt;}
.wsf{word-spacing:-14.569067pt;}
.ws4{word-spacing:-14.538133pt;}
.ws12{word-spacing:-14.486933pt;}
.ws3{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.264533pt;}
.ws10{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.861333pt;}
.wsc{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.498667pt;}
.ws9{word-spacing:-13.280000pt;}
.ws13{word-spacing:-12.800000pt;}
.ws6{word-spacing:-8.213333pt;}
.ws2{word-spacing:0.000000pt;}
._37{margin-left:-7.979947pt;}
._30{margin-left:-6.947840pt;}
._1d{margin-left:-5.902080pt;}
._16{margin-left:-4.474880pt;}
._15{margin-left:-3.018667pt;}
._12{margin-left:-2.119680pt;}
._0{margin-left:-1.177600pt;}
._8{width:0.901547pt;}
._f{width:1.970773pt;}
._19{width:2.885547pt;}
._6{width:3.814400pt;}
._3{width:4.843520pt;}
._4{width:5.913600pt;}
._b{width:6.876160pt;}
._a{width:7.879680pt;}
._28{width:8.949760pt;}
._5{width:10.137600pt;}
._14{width:11.253760pt;}
._22{width:12.208640pt;}
._c{width:13.112320pt;}
._d{width:15.006720pt;}
._e{width:15.902293pt;}
._10{width:16.952320pt;}
._11{width:18.247680pt;}
._24{width:19.194880pt;}
._1{width:20.725760pt;}
._2{width:22.359040pt;}
._34{width:23.434240pt;}
._26{width:24.427520pt;}
._25{width:25.553920pt;}
._31{width:26.554880pt;}
._23{width:27.673600pt;}
._13{width:28.851200pt;}
._1c{width:29.750187pt;}
._18{width:31.441920pt;}
._17{width:32.442880pt;}
._7{width:33.848320pt;}
._9{width:35.025920pt;}
._1a{width:36.387840pt;}
._1b{width:37.294507pt;}
._29{width:38.919680pt;}
._33{width:41.913173pt;}
._21{width:44.631040pt;}
._20{width:45.632000pt;}
._27{width:46.574080pt;}
._32{width:47.944533pt;}
._35{width:49.601280pt;}
._2f{width:51.637760pt;}
._2e{width:53.227520pt;}
._1f{width:54.597547pt;}
._1e{width:55.523840pt;}
._2a{width:56.583680pt;}
._2b{width:57.700267pt;}
._2c{width:59.645440pt;}
._38{width:61.470720pt;}
._2d{width:77.780480pt;}
._36{width:97.899093pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.640000pt;}
.y88{bottom:78.720000pt;}
.y24{bottom:79.040000pt;}
.y6b{bottom:79.520000pt;}
.y47{bottom:90.240000pt;}
.y113{bottom:90.880000pt;}
.yf0{bottom:91.200000pt;}
.yd7{bottom:91.840000pt;}
.y87{bottom:94.080000pt;}
.y23{bottom:95.520000pt;}
.y6a{bottom:96.960000pt;}
.ya6{bottom:100.160000pt;}
.y46{bottom:107.840000pt;}
.y112{bottom:108.320000pt;}
.yef{bottom:108.800000pt;}
.y86{bottom:109.440000pt;}
.y101{bottom:109.600000pt;}
.y22{bottom:111.840000pt;}
.y69{bottom:114.592000pt;}
.y85{bottom:124.832000pt;}
.y45{bottom:125.472000pt;}
.y111{bottom:125.952000pt;}
.yee{bottom:126.432000pt;}
.y100{bottom:126.752000pt;}
.yd6{bottom:127.232000pt;}
.y21{bottom:128.352000pt;}
.y68{bottom:132.192000pt;}
.y84{bottom:140.026667pt;}
.y44{bottom:143.066667pt;}
.y110{bottom:143.546667pt;}
.yed{bottom:144.026667pt;}
.yff{bottom:144.346667pt;}
.y20{bottom:144.666667pt;}
.yd5{bottom:144.986667pt;}
.y67{bottom:149.786667pt;}
.y83{bottom:155.386667pt;}
.y43{bottom:160.666667pt;}
.y10f{bottom:161.146667pt;}
.y82{bottom:161.466667pt;}
.yec{bottom:161.626667pt;}
.yfe{bottom:162.106667pt;}
.yd4{bottom:162.746667pt;}
.y1f{bottom:165.146667pt;}
.y66{bottom:167.386667pt;}
.y81{bottom:171.066667pt;}
.y42{bottom:178.106667pt;}
.y10e{bottom:178.746667pt;}
.yeb{bottom:179.066667pt;}
.yfd{bottom:179.866667pt;}
.yd3{bottom:180.346667pt;}
.y1e{bottom:181.626667pt;}
.y65{bottom:184.826667pt;}
.y41{bottom:195.706667pt;}
.y10d{bottom:196.186667pt;}
.yea{bottom:196.666667pt;}
.yfc{bottom:197.466667pt;}
.y1d{bottom:198.106667pt;}
.y80{bottom:200.186667pt;}
.y64{bottom:202.426667pt;}
.yc3{bottom:203.706667pt;}
.ya4{bottom:204.346667pt;}
.ya5{bottom:211.066667pt;}
.y40{bottom:213.306667pt;}
.y10c{bottom:213.786667pt;}
.ye9{bottom:214.266667pt;}
.y1c{bottom:214.586667pt;}
.yfb{bottom:215.226667pt;}
.yd2{bottom:215.866667pt;}
.y7f{bottom:217.786667pt;}
.y63{bottom:220.026667pt;}
.yc2{bottom:221.146667pt;}
.ya3{bottom:221.626667pt;}
.y1b{bottom:230.906667pt;}
.y10b{bottom:231.386667pt;}
.ye8{bottom:231.866667pt;}
.yfa{bottom:232.986667pt;}
.yd1{bottom:233.466667pt;}
.y7e{bottom:235.546667pt;}
.y62{bottom:237.306667pt;}
.ya2{bottom:238.746667pt;}
.y1a{bottom:247.386667pt;}
.y3f{bottom:248.506667pt;}
.y10a{bottom:248.986667pt;}
.ye7{bottom:249.466667pt;}
.yf9{bottom:250.586667pt;}
.yd0{bottom:251.226667pt;}
.y7d{bottom:253.306667pt;}
.y61{bottom:254.746667pt;}
.ya1{bottom:256.026667pt;}
.yc1{bottom:256.346667pt;}
.y19{bottom:263.866667pt;}
.y3e{bottom:265.986667pt;}
.y109{bottom:266.626667pt;}
.ye6{bottom:266.946667pt;}
.yf8{bottom:268.386667pt;}
.ycf{bottom:269.026667pt;}
.y7c{bottom:270.946667pt;}
.y60{bottom:272.066667pt;}
.ya0{bottom:273.186667pt;}
.yc0{bottom:273.986667pt;}
.y18{bottom:280.226667pt;}
.y3d{bottom:283.586667pt;}
.y108{bottom:284.066667pt;}
.ye5{bottom:284.546667pt;}
.yf7{bottom:286.146667pt;}
.yce{bottom:286.626667pt;}
.y7a{bottom:288.706667pt;}
.y5f{bottom:289.506667pt;}
.y9f{bottom:290.466667pt;}
.y129{bottom:290.786667pt;}
.ybf{bottom:291.586667pt;}
.y7b{bottom:295.426667pt;}
.y17{bottom:296.706667pt;}
.y3c{bottom:301.186667pt;}
.y107{bottom:301.666667pt;}
.ye4{bottom:302.146667pt;}
.yf6{bottom:303.746667pt;}
.ycd{bottom:304.386667pt;}
.y79{bottom:306.466667pt;}
.y5e{bottom:306.786667pt;}
.y9e{bottom:307.746667pt;}
.y128{bottom:308.546667pt;}
.ybe{bottom:309.026667pt;}
.y16{bottom:313.026667pt;}
.y3b{bottom:318.786667pt;}
.y106{bottom:319.266667pt;}
.ye3{bottom:319.746667pt;}
.yf5{bottom:321.506667pt;}
.ycc{bottom:322.146667pt;}
.y78{bottom:324.066667pt;}
.y5d{bottom:324.226667pt;}
.y9d{bottom:324.866667pt;}
.ybd{bottom:326.626667pt;}
.y15{bottom:333.666667pt;}
.y3a{bottom:336.386667pt;}
.y105{bottom:336.866667pt;}
.ye2{bottom:337.346667pt;}
.yf4{bottom:339.266667pt;}
.ycb{bottom:339.586667pt;}
.y5c{bottom:341.506667pt;}
.y77{bottom:341.826667pt;}
.y9c{bottom:342.146667pt;}
.ybc{bottom:344.226667pt;}
.y14{bottom:349.986667pt;}
.y39{bottom:353.826667pt;}
.y104{bottom:354.466667pt;}
.ye1{bottom:354.786667pt;}
.yf3{bottom:356.866667pt;}
.yca{bottom:357.186667pt;}
.y127{bottom:358.306667pt;}
.y5b{bottom:358.946667pt;}
.y9b{bottom:359.266667pt;}
.y76{bottom:359.586667pt;}
.ybb{bottom:361.826667pt;}
.y13{bottom:366.466667pt;}
.y38{bottom:371.426667pt;}
.y103{bottom:372.066667pt;}
.ye0{bottom:372.386667pt;}
.yf2{bottom:374.626667pt;}
.yc9{bottom:374.786667pt;}
.y5a{bottom:376.226667pt;}
.y9a{bottom:376.546667pt;}
.y75{bottom:376.866667pt;}
.yba{bottom:379.426667pt;}
.y12{bottom:382.946667pt;}
.y37{bottom:389.026667pt;}
.y102{bottom:389.826667pt;}
.ydf{bottom:389.986667pt;}
.y126{bottom:391.106667pt;}
.yc8{bottom:392.386667pt;}
.y59{bottom:393.666667pt;}
.y99{bottom:393.826667pt;}
.y74{bottom:394.306667pt;}
.yb9{bottom:396.866667pt;}
.y11{bottom:399.266667pt;}
.y36{bottom:406.626667pt;}
.yde{bottom:407.586667pt;}
.yc7{bottom:409.986667pt;}
.y58{bottom:410.946667pt;}
.y73{bottom:411.586667pt;}
.yb8{bottom:414.466667pt;}
.y10{bottom:415.773333pt;}
.yf1{bottom:416.733333pt;}
.y125{bottom:424.093333pt;}
.y35{bottom:424.253333pt;}
.ydd{bottom:425.213333pt;}
.yc6{bottom:427.453333pt;}
.y98{bottom:428.253333pt;}
.y57{bottom:428.413333pt;}
.y72{bottom:429.053333pt;}
.yb7{bottom:432.093333pt;}
.yf{bottom:432.253333pt;}
.y124{bottom:440.573333pt;}
.y34{bottom:441.693333pt;}
.ydc{bottom:442.973333pt;}
.yc5{bottom:445.053333pt;}
.y97{bottom:445.373333pt;}
.y56{bottom:445.693333pt;}
.y71{bottom:446.333333pt;}
.ye{bottom:448.733333pt;}
.yb6{bottom:449.693333pt;}
.y123{bottom:456.893333pt;}
.y33{bottom:459.293333pt;}
.ydb{bottom:460.733333pt;}
.y96{bottom:462.653333pt;}
.y55{bottom:463.133333pt;}
.y70{bottom:463.773333pt;}
.yd{bottom:465.053333pt;}
.yb5{bottom:467.293333pt;}
.y122{bottom:473.373333pt;}
.y32{bottom:476.893333pt;}
.yda{bottom:478.333333pt;}
.y95{bottom:479.933333pt;}
.yc4{bottom:480.253333pt;}
.y54{bottom:480.413333pt;}
.y6f{bottom:481.053333pt;}
.yc{bottom:481.533333pt;}
.yb4{bottom:484.733333pt;}
.y121{bottom:489.853333pt;}
.y31{bottom:494.493333pt;}
.yd9{bottom:496.093333pt;}
.y94{bottom:497.053333pt;}
.yb{bottom:497.853333pt;}
.y6e{bottom:498.493333pt;}
.yb3{bottom:502.013333pt;}
.y120{bottom:506.173333pt;}
.y30{bottom:512.093333pt;}
.yd8{bottom:513.853333pt;}
.y93{bottom:514.333333pt;}
.y53{bottom:515.293333pt;}
.y6d{bottom:515.773333pt;}
.ya{bottom:518.173333pt;}
.yb2{bottom:519.293333pt;}
.y11f{bottom:522.653333pt;}
.y2f{bottom:529.533333pt;}
.y92{bottom:531.453333pt;}
.y52{bottom:532.893333pt;}
.y6c{bottom:533.213333pt;}
.y9{bottom:534.493333pt;}
.yb0{bottom:536.413333pt;}
.y11e{bottom:539.133333pt;}
.yb1{bottom:543.133333pt;}
.y91{bottom:549.213333pt;}
.y51{bottom:550.493333pt;}
.yaf{bottom:553.693333pt;}
.y8{bottom:555.293333pt;}
.y11d{bottom:555.613333pt;}
.y2e{bottom:558.653333pt;}
.y90{bottom:567.013333pt;}
.y50{bottom:568.133333pt;}
.yae{bottom:570.853333pt;}
.y11c{bottom:571.973333pt;}
.y2d{bottom:575.173333pt;}
.y7{bottom:583.493333pt;}
.y8e{bottom:584.613333pt;}
.y4f{bottom:585.733333pt;}
.yad{bottom:588.133333pt;}
.y11b{bottom:588.453333pt;}
.y8f{bottom:591.333333pt;}
.y2c{bottom:594.213333pt;}
.y8d{bottom:602.373333pt;}
.y4e{bottom:603.173333pt;}
.y6{bottom:604.453333pt;}
.y11a{bottom:604.933333pt;}
.yac{bottom:605.413333pt;}
.y2b{bottom:610.693333pt;}
.y8c{bottom:620.133333pt;}
.y4d{bottom:620.773333pt;}
.y119{bottom:621.253333pt;}
.yab{bottom:622.533333pt;}
.y5{bottom:625.573333pt;}
.y2a{bottom:627.173333pt;}
.y118{bottom:637.733333pt;}
.y8b{bottom:637.893333pt;}
.y4c{bottom:638.373333pt;}
.yaa{bottom:639.813333pt;}
.y29{bottom:643.493333pt;}
.y117{bottom:654.213333pt;}
.y8a{bottom:655.493333pt;}
.y4{bottom:655.653333pt;}
.y4b{bottom:655.973333pt;}
.ya9{bottom:656.933333pt;}
.y28{bottom:659.973333pt;}
.y116{bottom:670.693333pt;}
.y3{bottom:673.093333pt;}
.y89{bottom:673.253333pt;}
.y4a{bottom:673.573333pt;}
.ya8{bottom:674.213333pt;}
.y27{bottom:676.453333pt;}
.y115{bottom:687.013333pt;}
.y49{bottom:691.013333pt;}
.ya7{bottom:691.493333pt;}
.y26{bottom:692.933333pt;}
.y2{bottom:707.493333pt;}
.y48{bottom:708.613333pt;}
.y114{bottom:708.933333pt;}
.y25{bottom:709.253333pt;}
.hb{height:33.918750pt;}
.ha{height:36.431250pt;}
.hd{height:47.621250pt;}
.h8{height:49.220000pt;}
.h10{height:50.490000pt;}
.hc{height:52.134375pt;}
.h7{height:52.785000pt;}
.h6{height:55.247500pt;}
.hf{height:55.275000pt;}
.he{height:56.760000pt;}
.h4{height:57.758750pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:62.812500pt;}
.h9{height:793.758293pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.518333pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x8{left:68.032000pt;}
.x16{left:72.352000pt;}
.x17{left:77.472000pt;}
.x1c{left:81.152000pt;}
.x7{left:83.232000pt;}
.xf{left:87.552000pt;}
.xb{left:90.752000pt;}
.x10{left:92.672000pt;}
.xa{left:105.952000pt;}
.x6{left:123.712000pt;}
.x5{left:137.306667pt;}
.x13{left:192.065000pt;}
.x14{left:196.706667pt;}
.x18{left:206.785000pt;}
.x2{left:211.106667pt;}
.x1b{left:237.026667pt;}
.x15{left:260.066667pt;}
.x1{left:264.866667pt;}
.xe{left:275.266667pt;}
.x9{left:280.066667pt;}
.x1d{left:297.506667pt;}
.x11{left:329.691667pt;}
.x12{left:334.333333pt;}
.x4{left:367.773333pt;}
.x3{left:403.773333pt;}
.x19{left:410.971667pt;}
.x1a{left:415.613333pt;}
.xc{left:418.971667pt;}
.xd{left:423.653333pt;}
.x1e{left:476.453333pt;}
}




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