
    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_89d9edc195875d103b8a4ed1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_a6ce7f8d89859200b5621dc2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_0f3cc8bf316b72472145e304.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_64637ad151f70daa3e9cefcd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsb{word-spacing:-55.944000px;}
.ws7b{word-spacing:-38.873700px;}
.ws9{word-spacing:-38.800800px;}
.ws65{word-spacing:-38.662800px;}
.ws6{word-spacing:-38.657700px;}
.ws4e{word-spacing:-38.655900px;}
.ws3e{word-spacing:-38.653200px;}
.ws6d{word-spacing:-38.652600px;}
.ws1e{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.wsa{word-spacing:-38.581200px;}
.ws99{word-spacing:-38.451300px;}
.ws44{word-spacing:-38.443200px;}
.ws1b{word-spacing:-38.440800px;}
.ws57{word-spacing:-38.439900px;}
.ws5e{word-spacing:-38.436300px;}
.wsd{word-spacing:-38.430900px;}
.ws74{word-spacing:-38.428200px;}
.ws4f{word-spacing:-38.422800px;}
.ws3{word-spacing:-38.374200px;}
.ws97{word-spacing:-38.359800px;}
.ws56{word-spacing:-38.160000px;}
.ws93{word-spacing:-38.155200px;}
.ws3b{word-spacing:-38.154000px;}
.wsf{word-spacing:-38.152800px;}
.wsb5{word-spacing:-38.151900px;}
.ws30{word-spacing:-38.138700px;}
.wsa9{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws9c{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.wsc{word-spacing:-37.938300px;}
.wse{word-spacing:-37.936800px;}
.ws27{word-spacing:-37.934700px;}
.ws2{word-spacing:-37.931400px;}
.wsba{word-spacing:-37.927800px;}
.wsb1{word-spacing:-37.923300px;}
.ws75{word-spacing:-37.720800px;}
.ws58{word-spacing:-37.713600px;}
.ws6c{word-spacing:-37.712400px;}
.ws4b{word-spacing:-37.711800px;}
.ws98{word-spacing:-37.708200px;}
.ws8a{word-spacing:-37.701000px;}
.ws5b{word-spacing:-37.440000px;}
.ws63{word-spacing:-37.436400px;}
.ws16{word-spacing:-37.434600px;}
.wsa5{word-spacing:-37.367100px;}
.ws34{word-spacing:-37.221900px;}
.ws46{word-spacing:-37.219500px;}
.wsa0{word-spacing:-37.216800px;}
.ws61{word-spacing:-36.714600px;}
.ws94{word-spacing:-36.499200px;}
.ws2f{word-spacing:-35.784000px;}
.wsab{word-spacing:-35.780400px;}
.ws85{word-spacing:-35.280000px;}
.ws9d{word-spacing:-35.064000px;}
.ws43{word-spacing:-34.338600px;}
.ws3f{word-spacing:-34.336800px;}
.ws4d{word-spacing:-34.331400px;}
.ws5d{word-spacing:-33.829200px;}
.wsb6{word-spacing:-33.768000px;}
.ws67{word-spacing:-33.621000px;}
.ws77{word-spacing:-33.606900px;}
.ws8{word-spacing:-33.547800px;}
.ws6a{word-spacing:-33.393000px;}
.ws32{word-spacing:-33.116400px;}
.ws73{word-spacing:-32.683200px;}
.ws37{word-spacing:-32.400000px;}
.ws83{word-spacing:-31.957200px;}
.ws90{word-spacing:-31.951200px;}
.ws8c{word-spacing:-31.950000px;}
.ws3c{word-spacing:-31.667400px;}
.ws11{word-spacing:-31.661400px;}
.ws3d{word-spacing:-31.656600px;}
.ws91{word-spacing:-31.440000px;}
.ws10{word-spacing:-30.966000px;}
.ws49{word-spacing:-30.727800px;}
.ws80{word-spacing:-30.236400px;}
.ws3a{word-spacing:-30.232800px;}
.ws95{word-spacing:-29.992500px;}
.ws39{word-spacing:-29.520000px;}
.ws26{word-spacing:-29.304000px;}
.ws7e{word-spacing:-29.286900px;}
.ws72{word-spacing:-29.280600px;}
.ws76{word-spacing:-29.065800px;}
.wsae{word-spacing:-28.584000px;}
.ws81{word-spacing:-28.569600px;}
.ws18{word-spacing:-28.360800px;}
.ws7c{word-spacing:-28.080000px;}
.ws7d{word-spacing:-28.065600px;}
.ws62{word-spacing:-27.854400px;}
.ws55{word-spacing:-27.639600px;}
.ws50{word-spacing:-27.340200px;}
.ws82{word-spacing:-27.142800px;}
.ws36{word-spacing:-27.138600px;}
.ws38{word-spacing:-27.070800px;}
.ws6b{word-spacing:-26.917200px;}
.ws87{word-spacing:-26.640000px;}
.ws13{word-spacing:-26.629200px;}
.ws68{word-spacing:-25.897800px;}
.ws9b{word-spacing:-25.704000px;}
.ws88{word-spacing:-25.691400px;}
.ws66{word-spacing:-25.680600px;}
.ws6f{word-spacing:-25.486800px;}
.wsaa{word-spacing:-24.983100px;}
.ws5a{word-spacing:-24.768600px;}
.ws5f{word-spacing:-24.695700px;}
.ws33{word-spacing:-24.194400px;}
.ws45{word-spacing:-24.040800px;}
.ws23{word-spacing:-23.893200px;}
.ws8b{word-spacing:-23.544000px;}
.ws8d{word-spacing:-23.529600px;}
.ws78{word-spacing:-23.527200px;}
.ws14{word-spacing:-23.514600px;}
.ws8e{word-spacing:-23.029200px;}
.ws54{word-spacing:-22.815000px;}
.ws40{word-spacing:-22.791600px;}
.ws31{word-spacing:-22.320000px;}
.ws1d{word-spacing:-21.873600px;}
.ws1c{word-spacing:-21.597900px;}
.ws42{word-spacing:-21.579600px;}
.ws52{word-spacing:-21.157200px;}
.ws60{word-spacing:-20.160000px;}
.ws96{word-spacing:-19.938600px;}
.ws5c{word-spacing:-19.713600px;}
.ws17{word-spacing:-19.434600px;}
.ws79{word-spacing:-19.211400px;}
.ws69{word-spacing:-19.200600px;}
.ws29{word-spacing:-18.864000px;}
.ws64{word-spacing:-18.707400px;}
.ws1a{word-spacing:-18.495600px;}
.ws7{word-spacing:-18.472500px;}
.ws48{word-spacing:-18.286800px;}
.ws2b{word-spacing:-17.855700px;}
.ws70{word-spacing:-17.775000px;}
.ws12{word-spacing:-17.565000px;}
.ws24{word-spacing:-16.695000px;}
.ws28{word-spacing:-16.344000px;}
.ws92{word-spacing:-16.335600px;}
.ws7f{word-spacing:-15.840600px;}
.ws47{word-spacing:-15.602400px;}
.wsb4{word-spacing:-15.175500px;}
.ws53{word-spacing:-14.895000px;}
.ws25{word-spacing:-14.254800px;}
.ws35{word-spacing:-14.180400px;}
.wsa2{word-spacing:-14.174100px;}
.ws89{word-spacing:-13.235400px;}
.wsad{word-spacing:-12.020100px;}
.ws8f{word-spacing:-10.581000px;}
.ws41{word-spacing:-10.086000px;}
.ws19{word-spacing:-8.926200px;}
.ws2a{word-spacing:-7.617600px;}
.ws9e{word-spacing:-7.412400px;}
.ws84{word-spacing:-6.255600px;}
.ws15{word-spacing:-6.255000px;}
.wsaf{word-spacing:-5.688000px;}
.ws2e{word-spacing:-4.740300px;}
.ws2d{word-spacing:-4.301100px;}
.ws7a{word-spacing:-4.091400px;}
.ws71{word-spacing:-2.160000px;}
.wsa8{word-spacing:-2.088000px;}
.ws51{word-spacing:-1.000800px;}
.ws86{word-spacing:-0.995400px;}
.ws59{word-spacing:0.730200px;}
.wsb9{word-spacing:3.819000px;}
.ws9a{word-spacing:4.536900px;}
.ws4c{word-spacing:6.698700px;}
.ws21{word-spacing:7.057800px;}
.wsa7{word-spacing:8.856000px;}
.ws2c{word-spacing:11.010000px;}
.ws22{word-spacing:12.456000px;}
.ws6e{word-spacing:14.418000px;}
.wsa4{word-spacing:16.653600px;}
.wsa1{word-spacing:17.498700px;}
.ws4a{word-spacing:25.430400px;}
.wsb7{word-spacing:26.424000px;}
.wsb0{word-spacing:36.072900px;}
.ws20{word-spacing:37.588500px;}
.wsa6{word-spacing:49.896000px;}
.wsac{word-spacing:50.190000px;}
.wsb8{word-spacing:54.942900px;}
.wsb2{word-spacing:56.376000px;}
.wsa3{word-spacing:67.896900px;}
.ws1f{word-spacing:131.034000px;}
.wsb3{word-spacing:134.730000px;}
.ws9f{word-spacing:424.165800px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._25{width:2.137200px;}
._4{width:18.775800px;}
._a{width:20.226600px;}
._23{width:21.247200px;}
._19{width:22.669200px;}
._17{width:23.828400px;}
._5{width:25.403400px;}
._1a{width:26.503800px;}
._18{width:27.504000px;}
._c{width:29.030400px;}
._7{width:30.894000px;}
._1e{width:32.394000px;}
._8{width:33.798000px;}
._16{width:34.914000px;}
._1{width:36.000000px;}
._1f{width:37.196400px;}
._b{width:38.281200px;}
._6{width:39.394800px;}
._11{width:40.756800px;}
._12{width:42.709200px;}
._21{width:44.028600px;}
._2d{width:45.264300px;}
._22{width:46.437000px;}
._d{width:48.094200px;}
._13{width:49.359600px;}
._9{width:50.751000px;}
._15{width:52.455900px;}
._2b{width:55.201200px;}
._1c{width:56.865600px;}
._1d{width:58.597800px;}
._27{width:61.530900px;}
._f{width:64.021200px;}
._2a{width:65.952000px;}
._14{width:68.106000px;}
._10{width:69.840000px;}
._20{width:72.016800px;}
._28{width:74.445300px;}
._1b{width:82.562400px;}
._2f{width:84.168000px;}
._e{width:94.897500px;}
._29{width:104.832000px;}
._2c{width:107.190000px;}
._2e{width:111.306000px;}
._26{width:126.000000px;}
._24{width:162.000000px;}
._0{width:612.144000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2e{bottom:100.696500px;}
.y53{bottom:100.875000px;}
.y2d{bottom:121.396500px;}
.y83{bottom:123.196500px;}
.ya8{bottom:124.455000px;}
.y2c{bottom:142.096500px;}
.y52{bottom:142.636500px;}
.y82{bottom:143.896500px;}
.ya7{bottom:145.155000px;}
.y51{bottom:163.336500px;}
.y81{bottom:164.596500px;}
.ya6{bottom:165.855000px;}
.y2b{bottom:183.675000px;}
.y50{bottom:184.036500px;}
.y80{bottom:185.296500px;}
.ya5{bottom:186.555000px;}
.y2a{bottom:204.375000px;}
.y4f{bottom:204.736500px;}
.y7f{bottom:205.996500px;}
.ya4{bottom:207.255000px;}
.y29{bottom:225.075000px;}
.y4e{bottom:225.436500px;}
.y7e{bottom:226.696500px;}
.ya3{bottom:227.775000px;}
.y28{bottom:245.775000px;}
.y4d{bottom:246.136500px;}
.y7d{bottom:247.396500px;}
.ya2{bottom:248.475000px;}
.y27{bottom:266.475000px;}
.y4c{bottom:266.836500px;}
.y7c{bottom:268.096500px;}
.ya1{bottom:269.175000px;}
.y26{bottom:287.175000px;}
.y7b{bottom:288.795000px;}
.ya0{bottom:289.875000px;}
.y25{bottom:307.875000px;}
.y4b{bottom:308.596500px;}
.y7a{bottom:309.496500px;}
.y9f{bottom:310.575000px;}
.y24{bottom:328.575000px;}
.y79{bottom:330.196500px;}
.y9e{bottom:331.275000px;}
.y23{bottom:349.275000px;}
.y4a{bottom:350.175000px;}
.y9d{bottom:351.975000px;}
.y22{bottom:369.975000px;}
.y65{bottom:370.875000px;}
.y78{bottom:371.775000px;}
.y9c{bottom:372.675000px;}
.y21{bottom:390.675000px;}
.y64{bottom:391.575000px;}
.y49{bottom:391.936500px;}
.y9b{bottom:393.375000px;}
.y20{bottom:411.375000px;}
.y63{bottom:412.275000px;}
.y48{bottom:412.636500px;}
.y77{bottom:413.536500px;}
.y9a{bottom:414.075000px;}
.y1f{bottom:432.075000px;}
.y62{bottom:432.975000px;}
.y47{bottom:433.336500px;}
.y76{bottom:434.236500px;}
.y99{bottom:434.775000px;}
.y1e{bottom:452.775000px;}
.y61{bottom:453.675000px;}
.y75{bottom:454.936500px;}
.y98{bottom:455.475000px;}
.y60{bottom:474.375000px;}
.y46{bottom:475.096500px;}
.y74{bottom:475.636500px;}
.y97{bottom:476.175000px;}
.y1d{bottom:494.536500px;}
.y45{bottom:495.796500px;}
.y73{bottom:496.336500px;}
.y96{bottom:496.875000px;}
.y1c{bottom:515.236500px;}
.y5f{bottom:516.136500px;}
.y44{bottom:516.496500px;}
.y72{bottom:517.036500px;}
.y95{bottom:517.575000px;}
.y43{bottom:537.195000px;}
.y71{bottom:537.736500px;}
.y94{bottom:538.275000px;}
.y1b{bottom:556.996500px;}
.y42{bottom:557.896500px;}
.y70{bottom:558.436500px;}
.y93{bottom:558.975000px;}
.y1a{bottom:577.695000px;}
.y41{bottom:578.596500px;}
.y6f{bottom:579.136500px;}
.y92{bottom:579.675000px;}
.y19{bottom:598.396500px;}
.y40{bottom:599.295000px;}
.y6e{bottom:599.836500px;}
.y91{bottom:600.375000px;}
.y18{bottom:619.096500px;}
.y5e{bottom:619.996500px;}
.y6d{bottom:620.536500px;}
.y90{bottom:621.075000px;}
.y17{bottom:639.795000px;}
.y5d{bottom:640.695000px;}
.y3f{bottom:640.875000px;}
.y6c{bottom:641.236500px;}
.y8f{bottom:641.775000px;}
.y16{bottom:660.496500px;}
.y5c{bottom:661.396500px;}
.y3e{bottom:661.575000px;}
.y6b{bottom:661.936500px;}
.y8e{bottom:662.475000px;}
.y15{bottom:681.195000px;}
.y5b{bottom:682.096500px;}
.y3d{bottom:682.275000px;}
.y6a{bottom:682.636500px;}
.y8d{bottom:683.175000px;}
.y14{bottom:701.896500px;}
.y3c{bottom:702.975000px;}
.y69{bottom:703.336500px;}
.y8c{bottom:703.875000px;}
.y13{bottom:722.596500px;}
.y3b{bottom:723.675000px;}
.y68{bottom:724.036500px;}
.y8b{bottom:724.575000px;}
.y12{bottom:743.295000px;}
.y3a{bottom:744.375000px;}
.y67{bottom:744.736500px;}
.y8a{bottom:745.275000px;}
.y11{bottom:763.996500px;}
.y5a{bottom:765.436500px;}
.y89{bottom:765.975000px;}
.y39{bottom:786.136500px;}
.y88{bottom:786.675000px;}
.y10{bottom:805.575000px;}
.y59{bottom:806.836500px;}
.y87{bottom:807.375000px;}
.y58{bottom:827.536500px;}
.y38{bottom:827.895000px;}
.y86{bottom:828.075000px;}
.yf{bottom:847.336500px;}
.y57{bottom:848.236500px;}
.y37{bottom:848.596500px;}
.y85{bottom:848.775000px;}
.y56{bottom:868.936500px;}
.y66{bottom:869.295000px;}
.y84{bottom:869.475000px;}
.ye{bottom:889.095000px;}
.y55{bottom:889.636500px;}
.y36{bottom:890.175000px;}
.y35{bottom:910.875000px;}
.yd{bottom:930.675000px;}
.y54{bottom:931.395000px;}
.y34{bottom:931.575000px;}
.y33{bottom:952.275000px;}
.yc{bottom:972.436500px;}
.y32{bottom:972.975000px;}
.y31{bottom:993.675000px;}
.yb{bottom:1014.195000px;}
.y30{bottom:1014.375000px;}
.y2f{bottom:1035.075000px;}
.ya{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xd{left:141.120000px;}
.x4{left:146.338500px;}
.x5{left:178.020000px;}
.xb{left:272.700000px;}
.x8{left:292.860000px;}
.x6{left:397.800000px;}
.x3{left:465.825000px;}
.x7{left:543.060000px;}
.xa{left:558.720000px;}
.xc{left:573.120000px;}
.x9{left:617.220000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws7b{word-spacing:-34.554400pt;}
.ws9{word-spacing:-34.489600pt;}
.ws65{word-spacing:-34.366933pt;}
.ws6{word-spacing:-34.362400pt;}
.ws4e{word-spacing:-34.360800pt;}
.ws3e{word-spacing:-34.358400pt;}
.ws6d{word-spacing:-34.357867pt;}
.ws1e{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.wsa{word-spacing:-34.294400pt;}
.ws99{word-spacing:-34.178933pt;}
.ws44{word-spacing:-34.171733pt;}
.ws1b{word-spacing:-34.169600pt;}
.ws57{word-spacing:-34.168800pt;}
.ws5e{word-spacing:-34.165600pt;}
.wsd{word-spacing:-34.160800pt;}
.ws74{word-spacing:-34.158400pt;}
.ws4f{word-spacing:-34.153600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws97{word-spacing:-34.097600pt;}
.ws56{word-spacing:-33.920000pt;}
.ws93{word-spacing:-33.915733pt;}
.ws3b{word-spacing:-33.914667pt;}
.wsf{word-spacing:-33.913600pt;}
.wsb5{word-spacing:-33.912800pt;}
.ws30{word-spacing:-33.901067pt;}
.wsa9{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws9c{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc{word-spacing:-33.722933pt;}
.wse{word-spacing:-33.721600pt;}
.ws27{word-spacing:-33.719733pt;}
.ws2{word-spacing:-33.716800pt;}
.wsba{word-spacing:-33.713600pt;}
.wsb1{word-spacing:-33.709600pt;}
.ws75{word-spacing:-33.529600pt;}
.ws58{word-spacing:-33.523200pt;}
.ws6c{word-spacing:-33.522133pt;}
.ws4b{word-spacing:-33.521600pt;}
.ws98{word-spacing:-33.518400pt;}
.ws8a{word-spacing:-33.512000pt;}
.ws5b{word-spacing:-33.280000pt;}
.ws63{word-spacing:-33.276800pt;}
.ws16{word-spacing:-33.275200pt;}
.wsa5{word-spacing:-33.215200pt;}
.ws34{word-spacing:-33.086133pt;}
.ws46{word-spacing:-33.084000pt;}
.wsa0{word-spacing:-33.081600pt;}
.ws61{word-spacing:-32.635200pt;}
.ws94{word-spacing:-32.443733pt;}
.ws2f{word-spacing:-31.808000pt;}
.wsab{word-spacing:-31.804800pt;}
.ws85{word-spacing:-31.360000pt;}
.ws9d{word-spacing:-31.168000pt;}
.ws43{word-spacing:-30.523200pt;}
.ws3f{word-spacing:-30.521600pt;}
.ws4d{word-spacing:-30.516800pt;}
.ws5d{word-spacing:-30.070400pt;}
.wsb6{word-spacing:-30.016000pt;}
.ws67{word-spacing:-29.885333pt;}
.ws77{word-spacing:-29.872800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws6a{word-spacing:-29.682667pt;}
.ws32{word-spacing:-29.436800pt;}
.ws73{word-spacing:-29.051733pt;}
.ws37{word-spacing:-28.800000pt;}
.ws83{word-spacing:-28.406400pt;}
.ws90{word-spacing:-28.401067pt;}
.ws8c{word-spacing:-28.400000pt;}
.ws3c{word-spacing:-28.148800pt;}
.ws11{word-spacing:-28.143467pt;}
.ws3d{word-spacing:-28.139200pt;}
.ws91{word-spacing:-27.946667pt;}
.ws10{word-spacing:-27.525333pt;}
.ws49{word-spacing:-27.313600pt;}
.ws80{word-spacing:-26.876800pt;}
.ws3a{word-spacing:-26.873600pt;}
.ws95{word-spacing:-26.660000pt;}
.ws39{word-spacing:-26.240000pt;}
.ws26{word-spacing:-26.048000pt;}
.ws7e{word-spacing:-26.032800pt;}
.ws72{word-spacing:-26.027200pt;}
.ws76{word-spacing:-25.836267pt;}
.wsae{word-spacing:-25.408000pt;}
.ws81{word-spacing:-25.395200pt;}
.ws18{word-spacing:-25.209600pt;}
.ws7c{word-spacing:-24.960000pt;}
.ws7d{word-spacing:-24.947200pt;}
.ws62{word-spacing:-24.759467pt;}
.ws55{word-spacing:-24.568533pt;}
.ws50{word-spacing:-24.302400pt;}
.ws82{word-spacing:-24.126933pt;}
.ws36{word-spacing:-24.123200pt;}
.ws38{word-spacing:-24.062933pt;}
.ws6b{word-spacing:-23.926400pt;}
.ws87{word-spacing:-23.680000pt;}
.ws13{word-spacing:-23.670400pt;}
.ws68{word-spacing:-23.020267pt;}
.ws9b{word-spacing:-22.848000pt;}
.ws88{word-spacing:-22.836800pt;}
.ws66{word-spacing:-22.827200pt;}
.ws6f{word-spacing:-22.654933pt;}
.wsaa{word-spacing:-22.207200pt;}
.ws5a{word-spacing:-22.016533pt;}
.ws5f{word-spacing:-21.951733pt;}
.ws33{word-spacing:-21.506133pt;}
.ws45{word-spacing:-21.369600pt;}
.ws23{word-spacing:-21.238400pt;}
.ws8b{word-spacing:-20.928000pt;}
.ws8d{word-spacing:-20.915200pt;}
.ws78{word-spacing:-20.913067pt;}
.ws14{word-spacing:-20.901867pt;}
.ws8e{word-spacing:-20.470400pt;}
.ws54{word-spacing:-20.280000pt;}
.ws40{word-spacing:-20.259200pt;}
.ws31{word-spacing:-19.840000pt;}
.ws1d{word-spacing:-19.443200pt;}
.ws1c{word-spacing:-19.198133pt;}
.ws42{word-spacing:-19.181867pt;}
.ws52{word-spacing:-18.806400pt;}
.ws60{word-spacing:-17.920000pt;}
.ws96{word-spacing:-17.723200pt;}
.ws5c{word-spacing:-17.523200pt;}
.ws17{word-spacing:-17.275200pt;}
.ws79{word-spacing:-17.076800pt;}
.ws69{word-spacing:-17.067200pt;}
.ws29{word-spacing:-16.768000pt;}
.ws64{word-spacing:-16.628800pt;}
.ws1a{word-spacing:-16.440533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws48{word-spacing:-16.254933pt;}
.ws2b{word-spacing:-15.871733pt;}
.ws70{word-spacing:-15.800000pt;}
.ws12{word-spacing:-15.613333pt;}
.ws24{word-spacing:-14.840000pt;}
.ws28{word-spacing:-14.528000pt;}
.ws92{word-spacing:-14.520533pt;}
.ws7f{word-spacing:-14.080533pt;}
.ws47{word-spacing:-13.868800pt;}
.wsb4{word-spacing:-13.489333pt;}
.ws53{word-spacing:-13.240000pt;}
.ws25{word-spacing:-12.670933pt;}
.ws35{word-spacing:-12.604800pt;}
.wsa2{word-spacing:-12.599200pt;}
.ws89{word-spacing:-11.764800pt;}
.wsad{word-spacing:-10.684533pt;}
.ws8f{word-spacing:-9.405333pt;}
.ws41{word-spacing:-8.965333pt;}
.ws19{word-spacing:-7.934400pt;}
.ws2a{word-spacing:-6.771200pt;}
.ws9e{word-spacing:-6.588800pt;}
.ws84{word-spacing:-5.560533pt;}
.ws15{word-spacing:-5.560000pt;}
.wsaf{word-spacing:-5.056000pt;}
.ws2e{word-spacing:-4.213600pt;}
.ws2d{word-spacing:-3.823200pt;}
.ws7a{word-spacing:-3.636800pt;}
.ws71{word-spacing:-1.920000pt;}
.wsa8{word-spacing:-1.856000pt;}
.ws51{word-spacing:-0.889600pt;}
.ws86{word-spacing:-0.884800pt;}
.ws59{word-spacing:0.649067pt;}
.wsb9{word-spacing:3.394667pt;}
.ws9a{word-spacing:4.032800pt;}
.ws4c{word-spacing:5.954400pt;}
.ws21{word-spacing:6.273600pt;}
.wsa7{word-spacing:7.872000pt;}
.ws2c{word-spacing:9.786667pt;}
.ws22{word-spacing:11.072000pt;}
.ws6e{word-spacing:12.816000pt;}
.wsa4{word-spacing:14.803200pt;}
.wsa1{word-spacing:15.554400pt;}
.ws4a{word-spacing:22.604800pt;}
.wsb7{word-spacing:23.488000pt;}
.wsb0{word-spacing:32.064800pt;}
.ws20{word-spacing:33.412000pt;}
.wsa6{word-spacing:44.352000pt;}
.wsac{word-spacing:44.613333pt;}
.wsb8{word-spacing:48.838133pt;}
.wsb2{word-spacing:50.112000pt;}
.wsa3{word-spacing:60.352800pt;}
.ws1f{word-spacing:116.474667pt;}
.wsb3{word-spacing:119.760000pt;}
.ws9f{word-spacing:377.036267pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._25{width:1.899733pt;}
._4{width:16.689600pt;}
._a{width:17.979200pt;}
._23{width:18.886400pt;}
._19{width:20.150400pt;}
._17{width:21.180800pt;}
._5{width:22.580800pt;}
._1a{width:23.558933pt;}
._18{width:24.448000pt;}
._c{width:25.804800pt;}
._7{width:27.461333pt;}
._1e{width:28.794667pt;}
._8{width:30.042667pt;}
._16{width:31.034667pt;}
._1{width:32.000000pt;}
._1f{width:33.063467pt;}
._b{width:34.027733pt;}
._6{width:35.017600pt;}
._11{width:36.228267pt;}
._12{width:37.963733pt;}
._21{width:39.136533pt;}
._2d{width:40.234933pt;}
._22{width:41.277333pt;}
._d{width:42.750400pt;}
._13{width:43.875200pt;}
._9{width:45.112000pt;}
._15{width:46.627467pt;}
._2b{width:49.067733pt;}
._1c{width:50.547200pt;}
._1d{width:52.086933pt;}
._27{width:54.694133pt;}
._f{width:56.907733pt;}
._2a{width:58.624000pt;}
._14{width:60.538667pt;}
._10{width:62.080000pt;}
._20{width:64.014933pt;}
._28{width:66.173600pt;}
._1b{width:73.388800pt;}
._2f{width:74.816000pt;}
._e{width:84.353333pt;}
._29{width:93.184000pt;}
._2c{width:95.280000pt;}
._2e{width:98.938667pt;}
._26{width:112.000000pt;}
._24{width:144.000000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2e{bottom:89.508000pt;}
.y53{bottom:89.666667pt;}
.y2d{bottom:107.908000pt;}
.y83{bottom:109.508000pt;}
.ya8{bottom:110.626667pt;}
.y2c{bottom:126.308000pt;}
.y52{bottom:126.788000pt;}
.y82{bottom:127.908000pt;}
.ya7{bottom:129.026667pt;}
.y51{bottom:145.188000pt;}
.y81{bottom:146.308000pt;}
.ya6{bottom:147.426667pt;}
.y2b{bottom:163.266667pt;}
.y50{bottom:163.588000pt;}
.y80{bottom:164.708000pt;}
.ya5{bottom:165.826667pt;}
.y2a{bottom:181.666667pt;}
.y4f{bottom:181.988000pt;}
.y7f{bottom:183.108000pt;}
.ya4{bottom:184.226667pt;}
.y29{bottom:200.066667pt;}
.y4e{bottom:200.388000pt;}
.y7e{bottom:201.508000pt;}
.ya3{bottom:202.466667pt;}
.y28{bottom:218.466667pt;}
.y4d{bottom:218.788000pt;}
.y7d{bottom:219.908000pt;}
.ya2{bottom:220.866667pt;}
.y27{bottom:236.866667pt;}
.y4c{bottom:237.188000pt;}
.y7c{bottom:238.308000pt;}
.ya1{bottom:239.266667pt;}
.y26{bottom:255.266667pt;}
.y7b{bottom:256.706667pt;}
.ya0{bottom:257.666667pt;}
.y25{bottom:273.666667pt;}
.y4b{bottom:274.308000pt;}
.y7a{bottom:275.108000pt;}
.y9f{bottom:276.066667pt;}
.y24{bottom:292.066667pt;}
.y79{bottom:293.508000pt;}
.y9e{bottom:294.466667pt;}
.y23{bottom:310.466667pt;}
.y4a{bottom:311.266667pt;}
.y9d{bottom:312.866667pt;}
.y22{bottom:328.866667pt;}
.y65{bottom:329.666667pt;}
.y78{bottom:330.466667pt;}
.y9c{bottom:331.266667pt;}
.y21{bottom:347.266667pt;}
.y64{bottom:348.066667pt;}
.y49{bottom:348.388000pt;}
.y9b{bottom:349.666667pt;}
.y20{bottom:365.666667pt;}
.y63{bottom:366.466667pt;}
.y48{bottom:366.788000pt;}
.y77{bottom:367.588000pt;}
.y9a{bottom:368.066667pt;}
.y1f{bottom:384.066667pt;}
.y62{bottom:384.866667pt;}
.y47{bottom:385.188000pt;}
.y76{bottom:385.988000pt;}
.y99{bottom:386.466667pt;}
.y1e{bottom:402.466667pt;}
.y61{bottom:403.266667pt;}
.y75{bottom:404.388000pt;}
.y98{bottom:404.866667pt;}
.y60{bottom:421.666667pt;}
.y46{bottom:422.308000pt;}
.y74{bottom:422.788000pt;}
.y97{bottom:423.266667pt;}
.y1d{bottom:439.588000pt;}
.y45{bottom:440.708000pt;}
.y73{bottom:441.188000pt;}
.y96{bottom:441.666667pt;}
.y1c{bottom:457.988000pt;}
.y5f{bottom:458.788000pt;}
.y44{bottom:459.108000pt;}
.y72{bottom:459.588000pt;}
.y95{bottom:460.066667pt;}
.y43{bottom:477.506667pt;}
.y71{bottom:477.988000pt;}
.y94{bottom:478.466667pt;}
.y1b{bottom:495.108000pt;}
.y42{bottom:495.908000pt;}
.y70{bottom:496.388000pt;}
.y93{bottom:496.866667pt;}
.y1a{bottom:513.506667pt;}
.y41{bottom:514.308000pt;}
.y6f{bottom:514.788000pt;}
.y92{bottom:515.266667pt;}
.y19{bottom:531.908000pt;}
.y40{bottom:532.706667pt;}
.y6e{bottom:533.188000pt;}
.y91{bottom:533.666667pt;}
.y18{bottom:550.308000pt;}
.y5e{bottom:551.108000pt;}
.y6d{bottom:551.588000pt;}
.y90{bottom:552.066667pt;}
.y17{bottom:568.706667pt;}
.y5d{bottom:569.506667pt;}
.y3f{bottom:569.666667pt;}
.y6c{bottom:569.988000pt;}
.y8f{bottom:570.466667pt;}
.y16{bottom:587.108000pt;}
.y5c{bottom:587.908000pt;}
.y3e{bottom:588.066667pt;}
.y6b{bottom:588.388000pt;}
.y8e{bottom:588.866667pt;}
.y15{bottom:605.506667pt;}
.y5b{bottom:606.308000pt;}
.y3d{bottom:606.466667pt;}
.y6a{bottom:606.788000pt;}
.y8d{bottom:607.266667pt;}
.y14{bottom:623.908000pt;}
.y3c{bottom:624.866667pt;}
.y69{bottom:625.188000pt;}
.y8c{bottom:625.666667pt;}
.y13{bottom:642.308000pt;}
.y3b{bottom:643.266667pt;}
.y68{bottom:643.588000pt;}
.y8b{bottom:644.066667pt;}
.y12{bottom:660.706667pt;}
.y3a{bottom:661.666667pt;}
.y67{bottom:661.988000pt;}
.y8a{bottom:662.466667pt;}
.y11{bottom:679.108000pt;}
.y5a{bottom:680.388000pt;}
.y89{bottom:680.866667pt;}
.y39{bottom:698.788000pt;}
.y88{bottom:699.266667pt;}
.y10{bottom:716.066667pt;}
.y59{bottom:717.188000pt;}
.y87{bottom:717.666667pt;}
.y58{bottom:735.588000pt;}
.y38{bottom:735.906667pt;}
.y86{bottom:736.066667pt;}
.yf{bottom:753.188000pt;}
.y57{bottom:753.988000pt;}
.y37{bottom:754.308000pt;}
.y85{bottom:754.466667pt;}
.y56{bottom:772.388000pt;}
.y66{bottom:772.706667pt;}
.y84{bottom:772.866667pt;}
.ye{bottom:790.306667pt;}
.y55{bottom:790.788000pt;}
.y36{bottom:791.266667pt;}
.y35{bottom:809.666667pt;}
.yd{bottom:827.266667pt;}
.y54{bottom:827.906667pt;}
.y34{bottom:828.066667pt;}
.y33{bottom:846.466667pt;}
.yc{bottom:864.388000pt;}
.y32{bottom:864.866667pt;}
.y31{bottom:883.266667pt;}
.yb{bottom:901.506667pt;}
.y30{bottom:901.666667pt;}
.y2f{bottom:920.066667pt;}
.ya{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xd{left:125.440000pt;}
.x4{left:130.078667pt;}
.x5{left:158.240000pt;}
.xb{left:242.400000pt;}
.x8{left:260.320000pt;}
.x6{left:353.600000pt;}
.x3{left:414.066667pt;}
.x7{left:482.720000pt;}
.xa{left:496.640000pt;}
.xc{left:509.440000pt;}
.x9{left:548.640000pt;}
.x2{left:649.920000pt;}
}




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