
    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_4525528f2567feef407d0c2d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_68f9a8b95428900ae8f2f516.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_45dd7f9228ad6e7f02fb2d50.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:35.865600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-31.203072px;}
.ws4{word-spacing:-29.409792px;}
.ws6{word-spacing:-27.759974px;}
.ws87{word-spacing:-17.932800px;}
.ws5{word-spacing:-14.346240px;}
.ws88{word-spacing:-6.384077px;}
.ws86{word-spacing:-4.303872px;}
.ws92{word-spacing:-4.088678px;}
.ws60{word-spacing:-3.945216px;}
.wsd{word-spacing:-3.730022px;}
.wse{word-spacing:-3.443098px;}
.wsc{word-spacing:-2.940979px;}
.ws51{word-spacing:-2.725786px;}
.ws5b{word-spacing:-2.654054px;}
.ws4f{word-spacing:-2.582323px;}
.ws79{word-spacing:-2.367130px;}
.ws36{word-spacing:-2.151936px;}
.ws46{word-spacing:-2.080205px;}
.ws62{word-spacing:-2.008474px;}
.ws25{word-spacing:-1.865011px;}
.ws3d{word-spacing:-1.793280px;}
.ws39{word-spacing:-1.721549px;}
.ws54{word-spacing:-1.578086px;}
.ws66{word-spacing:-1.506355px;}
.ws37{word-spacing:-1.362893px;}
.ws91{word-spacing:-1.291162px;}
.ws20{word-spacing:-1.219430px;}
.ws3e{word-spacing:-1.147699px;}
.ws7c{word-spacing:-1.075968px;}
.ws4b{word-spacing:-0.932506px;}
.ws19{word-spacing:-0.860774px;}
.ws21{word-spacing:-0.789043px;}
.ws65{word-spacing:-0.645581px;}
.ws71{word-spacing:-0.573850px;}
.ws3a{word-spacing:-0.502118px;}
.ws15{word-spacing:-0.430387px;}
.ws8c{word-spacing:-0.358656px;}
.ws3b{word-spacing:-0.286925px;}
.ws41{word-spacing:-0.143462px;}
.ws0{word-spacing:0.000000px;}
.ws7d{word-spacing:0.071731px;}
.ws4e{word-spacing:0.143462px;}
.ws90{word-spacing:0.286925px;}
.ws28{word-spacing:0.358656px;}
.ws31{word-spacing:0.430387px;}
.ws24{word-spacing:0.502118px;}
.ws6e{word-spacing:0.645581px;}
.ws48{word-spacing:0.717312px;}
.ws14{word-spacing:0.789043px;}
.ws47{word-spacing:0.860774px;}
.ws23{word-spacing:0.932506px;}
.ws52{word-spacing:1.004237px;}
.ws1a{word-spacing:1.075968px;}
.ws50{word-spacing:1.147699px;}
.ws26{word-spacing:1.219430px;}
.ws6b{word-spacing:1.291162px;}
.ws56{word-spacing:1.362893px;}
.ws49{word-spacing:1.434624px;}
.ws2b{word-spacing:1.506355px;}
.ws61{word-spacing:1.578086px;}
.ws43{word-spacing:1.649818px;}
.ws6a{word-spacing:1.936742px;}
.ws35{word-spacing:2.008474px;}
.wsa{word-spacing:2.080205px;}
.ws11{word-spacing:2.151936px;}
.ws53{word-spacing:2.295398px;}
.ws3c{word-spacing:2.367130px;}
.ws4a{word-spacing:2.438861px;}
.ws70{word-spacing:2.510592px;}
.ws58{word-spacing:2.582323px;}
.ws7b{word-spacing:2.654054px;}
.ws5a{word-spacing:3.084442px;}
.ws78{word-spacing:3.156173px;}
.ws6d{word-spacing:3.227904px;}
.ws45{word-spacing:3.299635px;}
.ws16{word-spacing:3.371366px;}
.ws77{word-spacing:3.443098px;}
.ws76{word-spacing:3.586560px;}
.ws34{word-spacing:3.730022px;}
.ws74{word-spacing:3.945216px;}
.ws73{word-spacing:4.088678px;}
.ws68{word-spacing:4.160410px;}
.ws5f{word-spacing:4.232141px;}
.ws5c{word-spacing:4.375603px;}
.ws17{word-spacing:4.447334px;}
.ws22{word-spacing:4.519066px;}
.wsb{word-spacing:4.590797px;}
.ws1c{word-spacing:4.662528px;}
.ws3f{word-spacing:4.734259px;}
.ws40{word-spacing:4.805990px;}
.ws9{word-spacing:4.877722px;}
.ws72{word-spacing:5.021184px;}
.ws6c{word-spacing:5.092915px;}
.ws2a{word-spacing:5.164646px;}
.ws5d{word-spacing:5.236378px;}
.ws38{word-spacing:5.379840px;}
.ws32{word-spacing:5.451571px;}
.ws7a{word-spacing:5.523302px;}
.ws18{word-spacing:5.595034px;}
.ws7e{word-spacing:5.666765px;}
.ws2c{word-spacing:5.738496px;}
.ws67{word-spacing:5.810227px;}
.ws4c{word-spacing:5.881958px;}
.ws4d{word-spacing:6.025421px;}
.ws89{word-spacing:6.168883px;}
.ws84{word-spacing:6.240614px;}
.ws29{word-spacing:6.312346px;}
.ws8a{word-spacing:6.455808px;}
.ws1b{word-spacing:6.527539px;}
.ws8b{word-spacing:6.599270px;}
.ws12{word-spacing:6.671002px;}
.wsf{word-spacing:6.742733px;}
.ws63{word-spacing:6.814464px;}
.ws83{word-spacing:6.886195px;}
.ws44{word-spacing:7.029658px;}
.ws8f{word-spacing:7.101389px;}
.ws8e{word-spacing:7.173120px;}
.ws59{word-spacing:7.244851px;}
.ws33{word-spacing:7.460045px;}
.ws55{word-spacing:7.531776px;}
.ws27{word-spacing:7.603507px;}
.ws5e{word-spacing:7.675238px;}
.ws2f{word-spacing:7.746970px;}
.ws13{word-spacing:7.818701px;}
.ws6f{word-spacing:7.890432px;}
.ws64{word-spacing:7.962163px;}
.ws57{word-spacing:8.177357px;}
.ws7f{word-spacing:8.249088px;}
.ws80{word-spacing:8.320819px;}
.ws75{word-spacing:8.392550px;}
.ws10{word-spacing:8.464282px;}
.ws1d{word-spacing:8.607744px;}
.ws42{word-spacing:8.822938px;}
.ws2e{word-spacing:8.894669px;}
.ws30{word-spacing:9.611981px;}
.ws69{word-spacing:9.970637px;}
.ws8d{word-spacing:10.042368px;}
.ws82{word-spacing:10.185830px;}
.ws81{word-spacing:10.257562px;}
.ws85{word-spacing:10.544486px;}
.ws2{word-spacing:17.861069px;}
.ws7{word-spacing:17.932800px;}
.ws1f{word-spacing:21.433223px;}
.ws1e{word-spacing:25.719808px;}
.ws1{word-spacing:71.659469px;}
.ws2d{word-spacing:85.991123px;}
.ws8{word-spacing:103.189108px;}
._8{margin-left:-40.886784px;}
._13{margin-left:-39.810816px;}
._a{margin-left:-36.941568px;}
._6{margin-left:-35.865600px;}
._9{margin-left:-17.932800px;}
._21{margin-left:-7.962163px;}
._2e{margin-left:-6.826594px;}
._e{margin-left:-5.308109px;}
._12{margin-left:-4.160410px;}
._0{margin-left:-3.099375px;}
._1{margin-left:-1.859625px;}
._c{width:2.367130px;}
._3b{width:3.586560px;}
._14{width:4.662528px;}
._3d{width:5.738496px;}
._3a{width:7.013499px;}
._3e{width:8.017736px;}
._39{width:9.314284px;}
._3c{width:15.090483px;}
._1d{width:16.266824px;}
._16{width:17.932800px;}
._28{width:19.869542px;}
._30{width:21.160704px;}
._d{width:22.236672px;}
._1c{width:23.752574px;}
._23{width:25.392845px;}
._24{width:26.822083px;}
._1b{width:28.471900px;}
._26{width:29.542482px;}
._2b{width:30.613064px;}
._20{width:31.992115px;}
._33{width:33.068083px;}
._2d{width:34.286288px;}
._25{width:35.348548px;}
._22{width:36.577526px;}
._29{width:37.868687px;}
._7{width:39.452160px;}
._1f{width:42.244291px;}
._2c{width:44.821228px;}
._2a{width:46.327583px;}
._32{width:47.408937px;}
._1e{width:48.540478px;}
._17{width:51.856271px;}
._2f{width:53.229937px;}
._31{width:61.617101px;}
._4{width:71.731200px;}
._15{width:75.317760px;}
._27{width:86.077200px;}
._b{width:102.503885px;}
._18{width:138.369485px;}
._34{width:972.461630px;}
._35{width:1052.588185px;}
._37{width:1156.942147px;}
._36{width:1198.833168px;}
._38{width:1222.647926px;}
._10{width:1832.014848px;}
._f{width:1871.984060px;}
._1a{width:2124.965069px;}
._11{width:2146.771354px;}
._5{width:2188.728719px;}
._3{width:2529.234441px;}
._19{width:2575.147795px;}
._2{width:2651.039405px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y16{bottom:40.207500px;}
.y9b{bottom:86.256000px;}
.y39{bottom:86.991000px;}
.yba{bottom:93.508500px;}
.y8d{bottom:93.922500px;}
.y5d{bottom:102.147000px;}
.yd7{bottom:111.120000px;}
.y9a{bottom:113.146500px;}
.y38{bottom:113.881500px;}
.yb9{bottom:120.399000px;}
.y8c{bottom:120.813000px;}
.y5c{bottom:129.039000px;}
.yd6{bottom:138.010500px;}
.y99{bottom:140.038500px;}
.y37{bottom:140.772000px;}
.yb8{bottom:147.291000px;}
.y8b{bottom:147.703500px;}
.y5b{bottom:155.929500px;}
.yd5{bottom:164.901000px;}
.y98{bottom:166.929000px;}
.y36{bottom:167.664000px;}
.yb7{bottom:174.181500px;}
.y8a{bottom:174.595500px;}
.y5a{bottom:182.820000px;}
.yd4{bottom:191.791500px;}
.y70{bottom:193.819500px;}
.y35{bottom:194.554500px;}
.yb6{bottom:201.072000px;}
.y89{bottom:201.486000px;}
.y59{bottom:209.710500px;}
.yd3{bottom:218.682000px;}
.y6f{bottom:220.710000px;}
.y34{bottom:221.445000px;}
.yb5{bottom:227.962500px;}
.y88{bottom:228.376500px;}
.y58{bottom:236.602500px;}
.yd2{bottom:245.574000px;}
.y6e{bottom:247.602000px;}
.y15{bottom:248.343000px;}
.yb4{bottom:254.854500px;}
.y33{bottom:260.440500px;}
.y57{bottom:263.493000px;}
.y87{bottom:267.372000px;}
.yd1{bottom:272.464500px;}
.y6d{bottom:274.492500px;}
.yb3{bottom:281.745000px;}
.y56{bottom:290.383500px;}
.y14{bottom:293.166000px;}
.yd0{bottom:299.355000px;}
.y6c{bottom:301.383000px;}
.yb2{bottom:308.635500px;}
.y32{bottom:312.382500px;}
.y55{bottom:317.274000px;}
.y86{bottom:319.314000px;}
.ycf{bottom:326.245500px;}
.y6b{bottom:328.273500px;}
.yb1{bottom:335.526000px;}
.y13{bottom:337.990500px;}
.y54{bottom:344.166000px;}
.yce{bottom:353.137500px;}
.y6a{bottom:355.165500px;}
.yb0{bottom:362.416500px;}
.y12{bottom:364.881000px;}
.y53{bottom:371.056500px;}
.ycd{bottom:380.028000px;}
.y31{bottom:381.426000px;}
.y69{bottom:382.056000px;}
.y85{bottom:388.359000px;}
.yaf{bottom:389.308500px;}
.y11{bottom:391.771500px;}
.y94{bottom:397.947000px;}
.ycc{bottom:406.918500px;}
.y30{bottom:408.318000px;}
.y68{bottom:408.946500px;}
.y52{bottom:410.052000px;}
.y84{bottom:415.249500px;}
.yae{bottom:416.199000px;}
.y10{bottom:418.662000px;}
.y93{bottom:424.837500px;}
.ycb{bottom:433.809000px;}
.y2f{bottom:435.208500px;}
.y67{bottom:435.837000px;}
.y83{bottom:442.140000px;}
.yad{bottom:443.089500px;}
.yf{bottom:445.554000px;}
.yca{bottom:460.701000px;}
.y2e{bottom:462.099000px;}
.y66{bottom:462.727500px;}
.y92{bottom:463.833000px;}
.y82{bottom:469.030500px;}
.y51{bottom:469.660500px;}
.yac{bottom:469.980000px;}
.yc9{bottom:487.591500px;}
.y2d{bottom:488.989500px;}
.y65{bottom:489.619500px;}
.ye{bottom:490.377000px;}
.y81{bottom:495.921000px;}
.y50{bottom:496.551000px;}
.yab{bottom:496.872000px;}
.yc8{bottom:514.482000px;}
.y2c{bottom:515.881500px;}
.y64{bottom:516.510000px;}
.y80{bottom:522.813000px;}
.y4f{bottom:523.441500px;}
.yaa{bottom:523.762500px;}
.yd{bottom:535.200000px;}
.yc7{bottom:541.372500px;}
.y2b{bottom:542.772000px;}
.y7f{bottom:549.703500px;}
.y4e{bottom:550.332000px;}
.ya9{bottom:550.653000px;}
.y63{bottom:561.961500px;}
.yc6{bottom:568.264500px;}
.y2a{bottom:569.662500px;}
.y7e{bottom:576.594000px;}
.y4d{bottom:577.224000px;}
.yc{bottom:580.024500px;}
.yc5{bottom:595.155000px;}
.ya8{bottom:596.104500px;}
.y29{bottom:596.553000px;}
.y7d{bottom:603.484500px;}
.y4c{bottom:604.114500px;}
.yb{bottom:606.915000px;}
.yc4{bottom:622.045500px;}
.y28{bottom:623.443500px;}
.y7c{bottom:630.376500px;}
.y4b{bottom:631.005000px;}
.ya{bottom:633.805500px;}
.yc3{bottom:648.936000px;}
.y27{bottom:650.335500px;}
.y7b{bottom:657.267000px;}
.y4a{bottom:657.895500px;}
.y9{bottom:660.696000px;}
.ya7{bottom:665.148000px;}
.yc2{bottom:675.826500px;}
.y26{bottom:677.226000px;}
.y7a{bottom:684.157500px;}
.y49{bottom:684.787500px;}
.y8{bottom:687.588000px;}
.yc1{bottom:702.718500px;}
.y25{bottom:704.116500px;}
.y79{bottom:711.048000px;}
.y48{bottom:711.678000px;}
.ya6{bottom:723.642000px;}
.yc0{bottom:729.609000px;}
.y24{bottom:731.007000px;}
.y7{bottom:732.411000px;}
.y78{bottom:737.940000px;}
.y47{bottom:738.568500px;}
.ybf{bottom:756.499500px;}
.ya5{bottom:757.854000px;}
.y23{bottom:757.899000px;}
.y77{bottom:764.830500px;}
.y46{bottom:765.459000px;}
.y6{bottom:777.234000px;}
.ybe{bottom:783.390000px;}
.y22{bottom:784.789500px;}
.y76{bottom:791.721000px;}
.ya4{bottom:792.064500px;}
.y45{bottom:792.349500px;}
.ybd{bottom:810.282000px;}
.y21{bottom:811.680000px;}
.y75{bottom:818.611500px;}
.y44{bottom:819.241500px;}
.y5{bottom:822.685500px;}
.ya3{bottom:826.276500px;}
.y91{bottom:831.345000px;}
.ybc{bottom:837.172500px;}
.y20{bottom:838.570500px;}
.y74{bottom:845.503500px;}
.y43{bottom:846.132000px;}
.ya2{bottom:860.487000px;}
.ybb{bottom:864.063000px;}
.y73{bottom:872.394000px;}
.y42{bottom:873.022500px;}
.y1f{bottom:884.022000px;}
.y90{bottom:890.953500px;}
.y72{bottom:899.284500px;}
.y62{bottom:899.913000px;}
.ya1{bottom:910.912500px;}
.y4{bottom:911.157000px;}
.y41{bottom:912.018000px;}
.y8f{bottom:917.845500px;}
.y71{bottom:926.175000px;}
.y61{bottom:926.805000px;}
.ya0{bottom:937.804500px;}
.y8e{bottom:944.736000px;}
.y1e{bottom:953.065500px;}
.y60{bottom:953.695500px;}
.y3{bottom:957.693000px;}
.y9f{bottom:964.695000px;}
.y40{bottom:971.626500px;}
.y1d{bottom:979.957500px;}
.y5f{bottom:980.586000px;}
.y9e{bottom:991.585500px;}
.y3f{bottom:998.517000px;}
.y1c{bottom:1006.848000px;}
.y97{bottom:1007.476500px;}
.y9d{bottom:1018.476000px;}
.y5e{bottom:1019.581500px;}
.y3e{bottom:1025.409000px;}
.y2{bottom:1031.269500px;}
.y1b{bottom:1033.738500px;}
.y96{bottom:1034.368500px;}
.y3d{bottom:1052.299500px;}
.y1a{bottom:1060.629000px;}
.y9c{bottom:1063.927500px;}
.y95{bottom:1073.364000px;}
.y1{bottom:1077.633000px;}
.y3c{bottom:1079.190000px;}
.y19{bottom:1087.521000px;}
.y3b{bottom:1106.080500px;}
.y18{bottom:1114.411500px;}
.y3a{bottom:1132.971000px;}
.y17{bottom:1159.863000px;}
.h5{height:49.637990px;}
.h6{height:52.148582px;}
.h7{height:59.565422px;}
.h3{height:62.578124px;}
.h4{height:71.478341px;}
.h2{height:90.129825px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:63.780000px;}
.x8{left:73.344000px;}
.x1{left:78.547500px;}
.x6{left:90.678000px;}
.x2{left:221.553000px;}
.x4{left:376.228500px;}
.x3{left:397.747500px;}
.x9{left:437.490000px;}
.x7{left:441.973500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:31.880533pt;}
.ws3{word-spacing:-27.736064pt;}
.ws4{word-spacing:-26.142037pt;}
.ws6{word-spacing:-24.675533pt;}
.ws87{word-spacing:-15.940267pt;}
.ws5{word-spacing:-12.752213pt;}
.ws88{word-spacing:-5.674735pt;}
.ws86{word-spacing:-3.825664pt;}
.ws92{word-spacing:-3.634381pt;}
.ws60{word-spacing:-3.506859pt;}
.wsd{word-spacing:-3.315575pt;}
.wse{word-spacing:-3.060531pt;}
.wsc{word-spacing:-2.614204pt;}
.ws51{word-spacing:-2.422921pt;}
.ws5b{word-spacing:-2.359159pt;}
.ws4f{word-spacing:-2.295398pt;}
.ws79{word-spacing:-2.104115pt;}
.ws36{word-spacing:-1.912832pt;}
.ws46{word-spacing:-1.849071pt;}
.ws62{word-spacing:-1.785310pt;}
.ws25{word-spacing:-1.657788pt;}
.ws3d{word-spacing:-1.594027pt;}
.ws39{word-spacing:-1.530266pt;}
.ws54{word-spacing:-1.402743pt;}
.ws66{word-spacing:-1.338982pt;}
.ws37{word-spacing:-1.211460pt;}
.ws91{word-spacing:-1.147699pt;}
.ws20{word-spacing:-1.083938pt;}
.ws3e{word-spacing:-1.020177pt;}
.ws7c{word-spacing:-0.956416pt;}
.ws4b{word-spacing:-0.828894pt;}
.ws19{word-spacing:-0.765133pt;}
.ws21{word-spacing:-0.701372pt;}
.ws65{word-spacing:-0.573850pt;}
.ws71{word-spacing:-0.510089pt;}
.ws3a{word-spacing:-0.446327pt;}
.ws15{word-spacing:-0.382566pt;}
.ws8c{word-spacing:-0.318805pt;}
.ws3b{word-spacing:-0.255044pt;}
.ws41{word-spacing:-0.127522pt;}
.ws0{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.063761pt;}
.ws4e{word-spacing:0.127522pt;}
.ws90{word-spacing:0.255044pt;}
.ws28{word-spacing:0.318805pt;}
.ws31{word-spacing:0.382566pt;}
.ws24{word-spacing:0.446327pt;}
.ws6e{word-spacing:0.573850pt;}
.ws48{word-spacing:0.637611pt;}
.ws14{word-spacing:0.701372pt;}
.ws47{word-spacing:0.765133pt;}
.ws23{word-spacing:0.828894pt;}
.ws52{word-spacing:0.892655pt;}
.ws1a{word-spacing:0.956416pt;}
.ws50{word-spacing:1.020177pt;}
.ws26{word-spacing:1.083938pt;}
.ws6b{word-spacing:1.147699pt;}
.ws56{word-spacing:1.211460pt;}
.ws49{word-spacing:1.275221pt;}
.ws2b{word-spacing:1.338982pt;}
.ws61{word-spacing:1.402743pt;}
.ws43{word-spacing:1.466505pt;}
.ws6a{word-spacing:1.721549pt;}
.ws35{word-spacing:1.785310pt;}
.wsa{word-spacing:1.849071pt;}
.ws11{word-spacing:1.912832pt;}
.ws53{word-spacing:2.040354pt;}
.ws3c{word-spacing:2.104115pt;}
.ws4a{word-spacing:2.167876pt;}
.ws70{word-spacing:2.231637pt;}
.ws58{word-spacing:2.295398pt;}
.ws7b{word-spacing:2.359159pt;}
.ws5a{word-spacing:2.741726pt;}
.ws78{word-spacing:2.805487pt;}
.ws6d{word-spacing:2.869248pt;}
.ws45{word-spacing:2.933009pt;}
.ws16{word-spacing:2.996770pt;}
.ws77{word-spacing:3.060531pt;}
.ws76{word-spacing:3.188053pt;}
.ws34{word-spacing:3.315575pt;}
.ws74{word-spacing:3.506859pt;}
.ws73{word-spacing:3.634381pt;}
.ws68{word-spacing:3.698142pt;}
.ws5f{word-spacing:3.761903pt;}
.ws5c{word-spacing:3.889425pt;}
.ws17{word-spacing:3.953186pt;}
.ws22{word-spacing:4.016947pt;}
.wsb{word-spacing:4.080708pt;}
.ws1c{word-spacing:4.144469pt;}
.ws3f{word-spacing:4.208230pt;}
.ws40{word-spacing:4.271991pt;}
.ws9{word-spacing:4.335753pt;}
.ws72{word-spacing:4.463275pt;}
.ws6c{word-spacing:4.527036pt;}
.ws2a{word-spacing:4.590797pt;}
.ws5d{word-spacing:4.654558pt;}
.ws38{word-spacing:4.782080pt;}
.ws32{word-spacing:4.845841pt;}
.ws7a{word-spacing:4.909602pt;}
.ws18{word-spacing:4.973363pt;}
.ws7e{word-spacing:5.037124pt;}
.ws2c{word-spacing:5.100885pt;}
.ws67{word-spacing:5.164646pt;}
.ws4c{word-spacing:5.228407pt;}
.ws4d{word-spacing:5.355930pt;}
.ws89{word-spacing:5.483452pt;}
.ws84{word-spacing:5.547213pt;}
.ws29{word-spacing:5.610974pt;}
.ws8a{word-spacing:5.738496pt;}
.ws1b{word-spacing:5.802257pt;}
.ws8b{word-spacing:5.866018pt;}
.ws12{word-spacing:5.929779pt;}
.wsf{word-spacing:5.993540pt;}
.ws63{word-spacing:6.057301pt;}
.ws83{word-spacing:6.121062pt;}
.ws44{word-spacing:6.248585pt;}
.ws8f{word-spacing:6.312346pt;}
.ws8e{word-spacing:6.376107pt;}
.ws59{word-spacing:6.439868pt;}
.ws33{word-spacing:6.631151pt;}
.ws55{word-spacing:6.694912pt;}
.ws27{word-spacing:6.758673pt;}
.ws5e{word-spacing:6.822434pt;}
.ws2f{word-spacing:6.886195pt;}
.ws13{word-spacing:6.949956pt;}
.ws6f{word-spacing:7.013717pt;}
.ws64{word-spacing:7.077478pt;}
.ws57{word-spacing:7.268762pt;}
.ws7f{word-spacing:7.332523pt;}
.ws80{word-spacing:7.396284pt;}
.ws75{word-spacing:7.460045pt;}
.ws10{word-spacing:7.523806pt;}
.ws1d{word-spacing:7.651328pt;}
.ws42{word-spacing:7.842611pt;}
.ws2e{word-spacing:7.906372pt;}
.ws30{word-spacing:8.543983pt;}
.ws69{word-spacing:8.862788pt;}
.ws8d{word-spacing:8.926549pt;}
.ws82{word-spacing:9.054071pt;}
.ws81{word-spacing:9.117833pt;}
.ws85{word-spacing:9.372877pt;}
.ws2{word-spacing:15.876506pt;}
.ws7{word-spacing:15.940267pt;}
.ws1f{word-spacing:19.051754pt;}
.ws1e{word-spacing:22.862051pt;}
.ws1{word-spacing:63.697306pt;}
.ws2d{word-spacing:76.436554pt;}
.ws8{word-spacing:91.723651pt;}
._8{margin-left:-36.343808pt;}
._13{margin-left:-35.387392pt;}
._a{margin-left:-32.836949pt;}
._6{margin-left:-31.880533pt;}
._9{margin-left:-15.940267pt;}
._21{margin-left:-7.077478pt;}
._2e{margin-left:-6.068083pt;}
._e{margin-left:-4.718319pt;}
._12{margin-left:-3.698142pt;}
._0{margin-left:-2.755000pt;}
._1{margin-left:-1.653000pt;}
._c{width:2.104115pt;}
._3b{width:3.188053pt;}
._14{width:4.144469pt;}
._3d{width:5.100885pt;}
._3a{width:6.234221pt;}
._3e{width:7.126876pt;}
._39{width:8.279363pt;}
._3c{width:13.413763pt;}
._1d{width:14.459399pt;}
._16{width:15.940267pt;}
._28{width:17.661815pt;}
._30{width:18.809515pt;}
._d{width:19.765931pt;}
._1c{width:21.113399pt;}
._23{width:22.571418pt;}
._24{width:23.841851pt;}
._1b{width:25.308356pt;}
._26{width:26.259984pt;}
._2b{width:27.211612pt;}
._20{width:28.437436pt;}
._33{width:29.393852pt;}
._2d{width:30.476701pt;}
._25{width:31.420932pt;}
._22{width:32.513356pt;}
._29{width:33.661055pt;}
._7{width:35.068587pt;}
._1f{width:37.550481pt;}
._2c{width:39.841091pt;}
._2a{width:41.180074pt;}
._32{width:42.141277pt;}
._1e{width:43.147091pt;}
._17{width:46.094463pt;}
._2f{width:47.315499pt;}
._31{width:54.770756pt;}
._4{width:63.761067pt;}
._15{width:66.949120pt;}
._27{width:76.513067pt;}
._b{width:91.114564pt;}
._18{width:122.995098pt;}
._34{width:864.410338pt;}
._35{width:935.633942pt;}
._37{width:1028.393020pt;}
._36{width:1065.629483pt;}
._38{width:1086.798157pt;}
._10{width:1628.457643pt;}
._f{width:1663.985831pt;}
._1a{width:1888.857839pt;}
._11{width:1908.241203pt;}
._5{width:1945.536639pt;}
._3{width:2248.208392pt;}
._19{width:2289.020262pt;}
._2{width:2356.479471pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:35.740000pt;}
.y9b{bottom:76.672000pt;}
.y39{bottom:77.325333pt;}
.yba{bottom:83.118667pt;}
.y8d{bottom:83.486667pt;}
.y5d{bottom:90.797333pt;}
.yd7{bottom:98.773333pt;}
.y9a{bottom:100.574667pt;}
.y38{bottom:101.228000pt;}
.yb9{bottom:107.021333pt;}
.y8c{bottom:107.389333pt;}
.y5c{bottom:114.701333pt;}
.yd6{bottom:122.676000pt;}
.y99{bottom:124.478667pt;}
.y37{bottom:125.130667pt;}
.yb8{bottom:130.925333pt;}
.y8b{bottom:131.292000pt;}
.y5b{bottom:138.604000pt;}
.yd5{bottom:146.578667pt;}
.y98{bottom:148.381333pt;}
.y36{bottom:149.034667pt;}
.yb7{bottom:154.828000pt;}
.y8a{bottom:155.196000pt;}
.y5a{bottom:162.506667pt;}
.yd4{bottom:170.481333pt;}
.y70{bottom:172.284000pt;}
.y35{bottom:172.937333pt;}
.yb6{bottom:178.730667pt;}
.y89{bottom:179.098667pt;}
.y59{bottom:186.409333pt;}
.yd3{bottom:194.384000pt;}
.y6f{bottom:196.186667pt;}
.y34{bottom:196.840000pt;}
.yb5{bottom:202.633333pt;}
.y88{bottom:203.001333pt;}
.y58{bottom:210.313333pt;}
.yd2{bottom:218.288000pt;}
.y6e{bottom:220.090667pt;}
.y15{bottom:220.749333pt;}
.yb4{bottom:226.537333pt;}
.y33{bottom:231.502667pt;}
.y57{bottom:234.216000pt;}
.y87{bottom:237.664000pt;}
.yd1{bottom:242.190667pt;}
.y6d{bottom:243.993333pt;}
.yb3{bottom:250.440000pt;}
.y56{bottom:258.118667pt;}
.y14{bottom:260.592000pt;}
.yd0{bottom:266.093333pt;}
.y6c{bottom:267.896000pt;}
.yb2{bottom:274.342667pt;}
.y32{bottom:277.673333pt;}
.y55{bottom:282.021333pt;}
.y86{bottom:283.834667pt;}
.ycf{bottom:289.996000pt;}
.y6b{bottom:291.798667pt;}
.yb1{bottom:298.245333pt;}
.y13{bottom:300.436000pt;}
.y54{bottom:305.925333pt;}
.yce{bottom:313.900000pt;}
.y6a{bottom:315.702667pt;}
.yb0{bottom:322.148000pt;}
.y12{bottom:324.338667pt;}
.y53{bottom:329.828000pt;}
.ycd{bottom:337.802667pt;}
.y31{bottom:339.045333pt;}
.y69{bottom:339.605333pt;}
.y85{bottom:345.208000pt;}
.yaf{bottom:346.052000pt;}
.y11{bottom:348.241333pt;}
.y94{bottom:353.730667pt;}
.ycc{bottom:361.705333pt;}
.y30{bottom:362.949333pt;}
.y68{bottom:363.508000pt;}
.y52{bottom:364.490667pt;}
.y84{bottom:369.110667pt;}
.yae{bottom:369.954667pt;}
.y10{bottom:372.144000pt;}
.y93{bottom:377.633333pt;}
.ycb{bottom:385.608000pt;}
.y2f{bottom:386.852000pt;}
.y67{bottom:387.410667pt;}
.y83{bottom:393.013333pt;}
.yad{bottom:393.857333pt;}
.yf{bottom:396.048000pt;}
.yca{bottom:409.512000pt;}
.y2e{bottom:410.754667pt;}
.y66{bottom:411.313333pt;}
.y92{bottom:412.296000pt;}
.y82{bottom:416.916000pt;}
.y51{bottom:417.476000pt;}
.yac{bottom:417.760000pt;}
.yc9{bottom:433.414667pt;}
.y2d{bottom:434.657333pt;}
.y65{bottom:435.217333pt;}
.ye{bottom:435.890667pt;}
.y81{bottom:440.818667pt;}
.y50{bottom:441.378667pt;}
.yab{bottom:441.664000pt;}
.yc8{bottom:457.317333pt;}
.y2c{bottom:458.561333pt;}
.y64{bottom:459.120000pt;}
.y80{bottom:464.722667pt;}
.y4f{bottom:465.281333pt;}
.yaa{bottom:465.566667pt;}
.yd{bottom:475.733333pt;}
.yc7{bottom:481.220000pt;}
.y2b{bottom:482.464000pt;}
.y7f{bottom:488.625333pt;}
.y4e{bottom:489.184000pt;}
.ya9{bottom:489.469333pt;}
.y63{bottom:499.521333pt;}
.yc6{bottom:505.124000pt;}
.y2a{bottom:506.366667pt;}
.y7e{bottom:512.528000pt;}
.y4d{bottom:513.088000pt;}
.yc{bottom:515.577333pt;}
.yc5{bottom:529.026667pt;}
.ya8{bottom:529.870667pt;}
.y29{bottom:530.269333pt;}
.y7d{bottom:536.430667pt;}
.y4c{bottom:536.990667pt;}
.yb{bottom:539.480000pt;}
.yc4{bottom:552.929333pt;}
.y28{bottom:554.172000pt;}
.y7c{bottom:560.334667pt;}
.y4b{bottom:560.893333pt;}
.ya{bottom:563.382667pt;}
.yc3{bottom:576.832000pt;}
.y27{bottom:578.076000pt;}
.y7b{bottom:584.237333pt;}
.y4a{bottom:584.796000pt;}
.y9{bottom:587.285333pt;}
.ya7{bottom:591.242667pt;}
.yc2{bottom:600.734667pt;}
.y26{bottom:601.978667pt;}
.y7a{bottom:608.140000pt;}
.y49{bottom:608.700000pt;}
.y8{bottom:611.189333pt;}
.yc1{bottom:624.638667pt;}
.y25{bottom:625.881333pt;}
.y79{bottom:632.042667pt;}
.y48{bottom:632.602667pt;}
.ya6{bottom:643.237333pt;}
.yc0{bottom:648.541333pt;}
.y24{bottom:649.784000pt;}
.y7{bottom:651.032000pt;}
.y78{bottom:655.946667pt;}
.y47{bottom:656.505333pt;}
.ybf{bottom:672.444000pt;}
.ya5{bottom:673.648000pt;}
.y23{bottom:673.688000pt;}
.y77{bottom:679.849333pt;}
.y46{bottom:680.408000pt;}
.y6{bottom:690.874667pt;}
.ybe{bottom:696.346667pt;}
.y22{bottom:697.590667pt;}
.y76{bottom:703.752000pt;}
.ya4{bottom:704.057333pt;}
.y45{bottom:704.310667pt;}
.ybd{bottom:720.250667pt;}
.y21{bottom:721.493333pt;}
.y75{bottom:727.654667pt;}
.y44{bottom:728.214667pt;}
.y5{bottom:731.276000pt;}
.ya3{bottom:734.468000pt;}
.y91{bottom:738.973333pt;}
.ybc{bottom:744.153333pt;}
.y20{bottom:745.396000pt;}
.y74{bottom:751.558667pt;}
.y43{bottom:752.117333pt;}
.ya2{bottom:764.877333pt;}
.ybb{bottom:768.056000pt;}
.y73{bottom:775.461333pt;}
.y42{bottom:776.020000pt;}
.y1f{bottom:785.797333pt;}
.y90{bottom:791.958667pt;}
.y72{bottom:799.364000pt;}
.y62{bottom:799.922667pt;}
.ya1{bottom:809.700000pt;}
.y4{bottom:809.917333pt;}
.y41{bottom:810.682667pt;}
.y8f{bottom:815.862667pt;}
.y71{bottom:823.266667pt;}
.y61{bottom:823.826667pt;}
.ya0{bottom:833.604000pt;}
.y8e{bottom:839.765333pt;}
.y1e{bottom:847.169333pt;}
.y60{bottom:847.729333pt;}
.y3{bottom:851.282667pt;}
.y9f{bottom:857.506667pt;}
.y40{bottom:863.668000pt;}
.y1d{bottom:871.073333pt;}
.y5f{bottom:871.632000pt;}
.y9e{bottom:881.409333pt;}
.y3f{bottom:887.570667pt;}
.y1c{bottom:894.976000pt;}
.y97{bottom:895.534667pt;}
.y9d{bottom:905.312000pt;}
.y5e{bottom:906.294667pt;}
.y3e{bottom:911.474667pt;}
.y2{bottom:916.684000pt;}
.y1b{bottom:918.878667pt;}
.y96{bottom:919.438667pt;}
.y3d{bottom:935.377333pt;}
.y1a{bottom:942.781333pt;}
.y9c{bottom:945.713333pt;}
.y95{bottom:954.101333pt;}
.y1{bottom:957.896000pt;}
.y3c{bottom:959.280000pt;}
.y19{bottom:966.685333pt;}
.y3b{bottom:983.182667pt;}
.y18{bottom:990.588000pt;}
.y3a{bottom:1007.085333pt;}
.y17{bottom:1030.989333pt;}
.h5{height:44.122658pt;}
.h6{height:46.354295pt;}
.h7{height:52.947042pt;}
.h3{height:55.624999pt;}
.h4{height:63.536303pt;}
.h2{height:80.115400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:56.693333pt;}
.x8{left:65.194667pt;}
.x1{left:69.820000pt;}
.x6{left:80.602667pt;}
.x2{left:196.936000pt;}
.x4{left:334.425333pt;}
.x3{left:353.553333pt;}
.x9{left:388.880000pt;}
.x7{left:392.865333pt;}
}




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