
    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_29508a4de48e72f583399d1a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_b68fa1d8cbdca6ca84f1f5ab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_d92fcfb2670061bfb87ae4c2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_2ac31e5c3274b04337edf636.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_da5a742a9ecce9e5444af180.woff')format("woff");}.ff8{font-family:ff8;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_22b28e54090c8c0ee169e7e2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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;}
.m1{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls1c{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.579600px;}
.lsf{letter-spacing:-0.544800px;}
.ls2a{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.414000px;}
.ls21{letter-spacing:-0.240600px;}
.ls14{letter-spacing:-0.214800px;}
.ls25{letter-spacing:-0.208800px;}
.ls4{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.115800px;}
.ls2d{letter-spacing:-0.107400px;}
.ls26{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls10{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.066000px;}
.ls1b{letter-spacing:0.067200px;}
.ls6{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.174000px;}
.lsd{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.190200px;}
.ls1a{letter-spacing:0.257760px;}
.ls2c{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.314400px;}
.ls19{letter-spacing:0.330000px;}
.ls27{letter-spacing:0.357000px;}
.ls1d{letter-spacing:0.479400px;}
.ls1{letter-spacing:0.617760px;}
.ls9{letter-spacing:0.786000px;}
.ls7{letter-spacing:0.810000px;}
.ls1e{letter-spacing:1.116000px;}
.ls1f{letter-spacing:2.106720px;}
.ls18{letter-spacing:5.706720px;}
.ls2b{letter-spacing:12.186720px;}
.ls15{letter-spacing:14.580000px;}
.ls22{letter-spacing:15.786720px;}
.ls12{letter-spacing:17.226720px;}
.ls13{letter-spacing:20.106720px;}
.ls11{letter-spacing:21.546720px;}
.ls17{letter-spacing:22.266720px;}
.ls24{letter-spacing:24.426720px;}
.ls0{letter-spacing:38.106720px;}
.ls29{letter-spacing:42.426720px;}
.ls28{letter-spacing:66.330720px;}
.ls23{letter-spacing:1194.234240px;}
.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;}
}
.ws4{word-spacing:-22.451760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws8{word-spacing:-14.291760px;}
.ws11{word-spacing:-13.862760px;}
.wse{word-spacing:-13.835760px;}
.wsc{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.572960px;}
.ws7{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._34{width:2.689200px;}
._31{width:3.853320px;}
._33{width:5.167920px;}
._2c{width:6.439200px;}
._2d{width:7.571880px;}
._32{width:8.635680px;}
._35{width:9.808200px;}
._2f{width:10.873800px;}
._2e{width:11.952000px;}
._36{width:14.573880px;}
._3b{width:16.015680px;}
._3a{width:17.507160px;}
._30{width:19.123200px;}
._3c{width:20.334480px;}
._43{width:21.607440px;}
._3f{width:23.602680px;}
._40{width:24.683400px;}
._37{width:25.756560px;}
._38{width:26.764920px;}
._45{width:28.386000px;}
._44{width:29.521440px;}
._42{width:36.692640px;}
._2a{width:43.666560px;}
._2b{width:45.616080px;}
._3d{width:82.468800px;}
._3e{width:202.638240px;}
._41{width:855.864480px;}
._39{width:2596.950240px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yd2{bottom:-53.820000px;}
.yd1{bottom:-15.120000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:6.660000px;}
.yb1{bottom:6.705000px;}
.y93{bottom:8.640000px;}
.yd0{bottom:24.120000px;}
.y8d{bottom:27.720000px;}
.yb0{bottom:27.765000px;}
.y92{bottom:29.700000px;}
.yd6{bottom:30.060000px;}
.yd4{bottom:38.370000px;}
.ycf{bottom:47.370000px;}
.y90{bottom:48.780000px;}
.y6{bottom:61.380000px;}
.y31{bottom:92.160000px;}
.y8b{bottom:104.400000px;}
.ya9{bottom:104.580000px;}
.ye5{bottom:109.620000px;}
.y30{bottom:113.220000px;}
.ye6{bottom:117.000000px;}
.y64{bottom:121.680000px;}
.ya8{bottom:125.640000px;}
.ye4{bottom:130.680000px;}
.y2f{bottom:134.280000px;}
.y8a{bottom:140.940000px;}
.y63{bottom:142.740000px;}
.ya7{bottom:146.700000px;}
.ye3{bottom:151.770000px;}
.y2e{bottom:155.370000px;}
.y62{bottom:163.830000px;}
.ya6{bottom:167.790000px;}
.ye2{bottom:172.830000px;}
.y2d{bottom:176.430000px;}
.y89{bottom:176.970000px;}
.y61{bottom:184.890000px;}
.ya5{bottom:188.850000px;}
.ye1{bottom:193.890000px;}
.y2c{bottom:197.490000px;}
.y88{bottom:198.030000px;}
.y60{bottom:205.950000px;}
.ya4{bottom:209.910000px;}
.ye0{bottom:214.950000px;}
.y2b{bottom:218.550000px;}
.y87{bottom:219.090000px;}
.y5f{bottom:227.010000px;}
.ya3{bottom:230.970000px;}
.ydf{bottom:236.010000px;}
.y2a{bottom:239.610000px;}
.y86{bottom:240.150000px;}
.ya2{bottom:246.090000px;}
.y5e{bottom:248.070000px;}
.yde{bottom:257.070000px;}
.y29{bottom:260.670000px;}
.y85{bottom:261.210000px;}
.y5d{bottom:269.130000px;}
.ydd{bottom:278.130000px;}
.y28{bottom:281.730000px;}
.y84{bottom:282.270000px;}
.ya1{bottom:288.930000px;}
.y5c{bottom:290.010000px;}
.ycd{bottom:290.190000px;}
.ydc{bottom:299.010000px;}
.y83{bottom:299.190000px;}
.y27{bottom:302.790000px;}
.y5b{bottom:311.070000px;}
.ycc{bottom:311.250000px;}
.ydb{bottom:320.070000px;}
.y26{bottom:323.850000px;}
.y5a{bottom:332.130000px;}
.ycb{bottom:332.310000px;}
.yda{bottom:341.130000px;}
.y25{bottom:344.910000px;}
.ya0{bottom:353.010000px;}
.y59{bottom:353.190000px;}
.yca{bottom:353.370000px;}
.yd9{bottom:362.190000px;}
.y24{bottom:365.970000px;}
.y58{bottom:374.250000px;}
.yc9{bottom:374.430000px;}
.yd8{bottom:383.250000px;}
.y23{bottom:387.030000px;}
.y57{bottom:395.310000px;}
.yc8{bottom:395.490000px;}
.y9f{bottom:402.555000px;}
.yd7{bottom:404.355000px;}
.y22{bottom:408.135000px;}
.y82{bottom:416.415000px;}
.y9e{bottom:423.615000px;}
.y56{bottom:425.415000px;}
.yc7{bottom:425.595000px;}
.y21{bottom:429.195000px;}
.y81{bottom:437.475000px;}
.y9d{bottom:444.675000px;}
.y55{bottom:446.475000px;}
.y20{bottom:450.255000px;}
.yd5{bottom:452.775000px;}
.yc6{bottom:455.655000px;}
.y80{bottom:458.535000px;}
.y54{bottom:467.535000px;}
.y1f{bottom:471.315000px;}
.y9c{bottom:474.735000px;}
.yc5{bottom:476.715000px;}
.y7f{bottom:479.595000px;}
.y53{bottom:488.595000px;}
.y1e{bottom:492.375000px;}
.y9b{bottom:495.795000px;}
.yc4{bottom:497.775000px;}
.y7e{bottom:500.655000px;}
.y52{bottom:509.655000px;}
.y1d{bottom:513.435000px;}
.y9a{bottom:516.855000px;}
.yc3{bottom:518.835000px;}
.y7d{bottom:521.715000px;}
.y51{bottom:530.715000px;}
.y1c{bottom:534.495000px;}
.y99{bottom:537.915000px;}
.yc2{bottom:539.895000px;}
.y7c{bottom:542.775000px;}
.y50{bottom:551.775000px;}
.y1b{bottom:555.555000px;}
.y98{bottom:558.975000px;}
.yc1{bottom:560.955000px;}
.y7b{bottom:563.835000px;}
.y4f{bottom:572.835000px;}
.y1a{bottom:576.615000px;}
.y97{bottom:580.035000px;}
.yc0{bottom:582.015000px;}
.y7a{bottom:584.895000px;}
.y4e{bottom:593.895000px;}
.y19{bottom:597.675000px;}
.y96{bottom:601.095000px;}
.ybf{bottom:603.075000px;}
.yce{bottom:603.795000px;}
.y79{bottom:605.955000px;}
.yd3{bottom:610.815000px;}
.y4d{bottom:614.955000px;}
.y18{bottom:618.735000px;}
.y95{bottom:622.155000px;}
.ybe{bottom:624.135000px;}
.y78{bottom:627.015000px;}
.y4c{bottom:636.015000px;}
.y94{bottom:643.215000px;}
.ybd{bottom:645.195000px;}
.y77{bottom:648.075000px;}
.y4b{bottom:657.105000px;}
.y91{bottom:658.365000px;}
.y17{bottom:663.225000px;}
.ybc{bottom:666.285000px;}
.y76{bottom:669.165000px;}
.y4a{bottom:678.165000px;}
.ybb{bottom:687.345000px;}
.y75{bottom:690.225000px;}
.y16{bottom:693.105000px;}
.y49{bottom:699.225000px;}
.y8f{bottom:703.185000px;}
.yba{bottom:708.405000px;}
.y74{bottom:711.285000px;}
.y15{bottom:714.165000px;}
.y48{bottom:720.285000px;}
.yb9{bottom:729.285000px;}
.y73{bottom:732.345000px;}
.y14{bottom:735.225000px;}
.y47{bottom:741.345000px;}
.yb8{bottom:750.345000px;}
.y72{bottom:753.405000px;}
.y13{bottom:756.285000px;}
.y46{bottom:762.405000px;}
.y8c{bottom:767.085000px;}
.yb7{bottom:771.405000px;}
.y71{bottom:774.465000px;}
.y12{bottom:777.345000px;}
.y45{bottom:783.465000px;}
.yb6{bottom:792.465000px;}
.y70{bottom:795.525000px;}
.y11{bottom:798.405000px;}
.y44{bottom:804.525000px;}
.yb5{bottom:813.525000px;}
.y6f{bottom:816.585000px;}
.y10{bottom:819.465000px;}
.y43{bottom:825.585000px;}
.yb4{bottom:834.585000px;}
.y6e{bottom:837.645000px;}
.yf{bottom:840.525000px;}
.y42{bottom:846.645000px;}
.yb3{bottom:855.645000px;}
.y6d{bottom:858.705000px;}
.ye{bottom:861.585000px;}
.y41{bottom:867.705000px;}
.yb2{bottom:876.705000px;}
.y6c{bottom:879.765000px;}
.yd{bottom:884.805000px;}
.y40{bottom:888.765000px;}
.yaf{bottom:892.005000px;}
.y6b{bottom:900.870000px;}
.y3f{bottom:909.870000px;}
.yc{bottom:911.130000px;}
.y6a{bottom:921.930000px;}
.ya{bottom:927.870000px;}
.y3e{bottom:930.930000px;}
.yb{bottom:933.810000px;}
.yae{bottom:934.890000px;}
.y69{bottom:942.990000px;}
.y9{bottom:950.190000px;}
.y3d{bottom:951.990000px;}
.y68{bottom:964.050000px;}
.y3c{bottom:973.050000px;}
.y8{bottom:975.390000px;}
.yad{bottom:977.730000px;}
.y67{bottom:985.110000px;}
.y3b{bottom:994.110000px;}
.y66{bottom:1006.170000px;}
.y7{bottom:1009.050000px;}
.y3a{bottom:1015.170000px;}
.y65{bottom:1027.230000px;}
.y39{bottom:1036.230000px;}
.yac{bottom:1048.290000px;}
.y5{bottom:1049.190000px;}
.y38{bottom:1057.290000px;}
.yab{bottom:1069.350000px;}
.y37{bottom:1078.350000px;}
.y4{bottom:1081.410000px;}
.yaa{bottom:1090.410000px;}
.y36{bottom:1099.410000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1120.470000px;}
.y34{bottom:1141.530000px;}
.y2{bottom:1145.670000px;}
.y33{bottom:1169.820000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1191.780000px;}
.h8{height:38.671172px;}
.hb{height:42.120000px;}
.he{height:42.156000px;}
.h7{height:44.064844px;}
.hd{height:44.100000px;}
.h10{height:49.992188px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.hc{height:63.180000px;}
.h11{height:65.160000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h12{height:71.613281px;}
.hf{height:72.036000px;}
.ha{height:73.722656px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:127.620000px;}
.w7{width:128.520000px;}
.w6{width:132.516000px;}
.w4{width:136.296000px;}
.wa{width:141.336000px;}
.w5{width:144.936000px;}
.w9{width:173.910000px;}
.wb{width:201.630000px;}
.w8{width:669.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x14{left:10.800000px;}
.x18{left:12.240000px;}
.x15{left:19.080000px;}
.x1a{left:20.700000px;}
.x6{left:53.999987px;}
.x1b{left:80.999987px;}
.x16{left:86.934000px;}
.x8{left:108.035987px;}
.xb{left:111.636000px;}
.x11{left:117.935987px;}
.x12{left:124.415987px;}
.x5{left:176.969987px;}
.x7{left:196.049987px;}
.xd{left:239.250000px;}
.x3{left:272.234987px;}
.x19{left:289.875000px;}
.x2{left:350.534987px;}
.xe{left:375.555000px;}
.x13{left:409.754987px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xf{left:520.485000px;}
.x17{left:522.105000px;}
.x9{left:543.524987px;}
.xa{left:548.564987px;}
.x10{left:653.010000px;}
.x1c{left:838.439987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.515200pt;}
.lsf{letter-spacing:-0.484267pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.368000pt;}
.ls21{letter-spacing:-0.213867pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls25{letter-spacing:-0.185600pt;}
.ls4{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.102933pt;}
.ls2d{letter-spacing:-0.095467pt;}
.ls26{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls10{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058667pt;}
.ls1b{letter-spacing:0.059733pt;}
.ls6{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.154667pt;}
.lsd{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.169067pt;}
.ls1a{letter-spacing:0.229120pt;}
.ls2c{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.279467pt;}
.ls19{letter-spacing:0.293333pt;}
.ls27{letter-spacing:0.317333pt;}
.ls1d{letter-spacing:0.426133pt;}
.ls1{letter-spacing:0.549120pt;}
.ls9{letter-spacing:0.698667pt;}
.ls7{letter-spacing:0.720000pt;}
.ls1e{letter-spacing:0.992000pt;}
.ls1f{letter-spacing:1.872640pt;}
.ls18{letter-spacing:5.072640pt;}
.ls2b{letter-spacing:10.832640pt;}
.ls15{letter-spacing:12.960000pt;}
.ls22{letter-spacing:14.032640pt;}
.ls12{letter-spacing:15.312640pt;}
.ls13{letter-spacing:17.872640pt;}
.ls11{letter-spacing:19.152640pt;}
.ls17{letter-spacing:19.792640pt;}
.ls24{letter-spacing:21.712640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls29{letter-spacing:37.712640pt;}
.ls28{letter-spacing:58.960640pt;}
.ls23{letter-spacing:1061.541547pt;}
.ws4{word-spacing:-19.957120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.703787pt;}
.ws11{word-spacing:-12.322453pt;}
.wse{word-spacing:-12.298453pt;}
.wsc{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.064853pt;}
.ws7{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._34{width:2.390400pt;}
._31{width:3.425173pt;}
._33{width:4.593707pt;}
._2c{width:5.723733pt;}
._2d{width:6.730560pt;}
._32{width:7.676160pt;}
._35{width:8.718400pt;}
._2f{width:9.665600pt;}
._2e{width:10.624000pt;}
._36{width:12.954560pt;}
._3b{width:14.236160pt;}
._3a{width:15.561920pt;}
._30{width:16.998400pt;}
._3c{width:18.075093pt;}
._43{width:19.206613pt;}
._3f{width:20.980160pt;}
._40{width:21.940800pt;}
._37{width:22.894720pt;}
._38{width:23.791040pt;}
._45{width:25.232000pt;}
._44{width:26.241280pt;}
._42{width:32.615680pt;}
._2a{width:38.814720pt;}
._2b{width:40.547627pt;}
._3d{width:73.305600pt;}
._3e{width:180.122880pt;}
._41{width:760.768427pt;}
._39{width:2308.400213pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yd2{bottom:-47.840000pt;}
.yd1{bottom:-13.440000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:5.920000pt;}
.yb1{bottom:5.960000pt;}
.y93{bottom:7.680000pt;}
.yd0{bottom:21.440000pt;}
.y8d{bottom:24.640000pt;}
.yb0{bottom:24.680000pt;}
.y92{bottom:26.400000pt;}
.yd6{bottom:26.720000pt;}
.yd4{bottom:34.106667pt;}
.ycf{bottom:42.106667pt;}
.y90{bottom:43.360000pt;}
.y6{bottom:54.560000pt;}
.y31{bottom:81.920000pt;}
.y8b{bottom:92.800000pt;}
.ya9{bottom:92.960000pt;}
.ye5{bottom:97.440000pt;}
.y30{bottom:100.640000pt;}
.ye6{bottom:104.000000pt;}
.y64{bottom:108.160000pt;}
.ya8{bottom:111.680000pt;}
.ye4{bottom:116.160000pt;}
.y2f{bottom:119.360000pt;}
.y8a{bottom:125.280000pt;}
.y63{bottom:126.880000pt;}
.ya7{bottom:130.400000pt;}
.ye3{bottom:134.906667pt;}
.y2e{bottom:138.106667pt;}
.y62{bottom:145.626667pt;}
.ya6{bottom:149.146667pt;}
.ye2{bottom:153.626667pt;}
.y2d{bottom:156.826667pt;}
.y89{bottom:157.306667pt;}
.y61{bottom:164.346667pt;}
.ya5{bottom:167.866667pt;}
.ye1{bottom:172.346667pt;}
.y2c{bottom:175.546667pt;}
.y88{bottom:176.026667pt;}
.y60{bottom:183.066667pt;}
.ya4{bottom:186.586667pt;}
.ye0{bottom:191.066667pt;}
.y2b{bottom:194.266667pt;}
.y87{bottom:194.746667pt;}
.y5f{bottom:201.786667pt;}
.ya3{bottom:205.306667pt;}
.ydf{bottom:209.786667pt;}
.y2a{bottom:212.986667pt;}
.y86{bottom:213.466667pt;}
.ya2{bottom:218.746667pt;}
.y5e{bottom:220.506667pt;}
.yde{bottom:228.506667pt;}
.y29{bottom:231.706667pt;}
.y85{bottom:232.186667pt;}
.y5d{bottom:239.226667pt;}
.ydd{bottom:247.226667pt;}
.y28{bottom:250.426667pt;}
.y84{bottom:250.906667pt;}
.ya1{bottom:256.826667pt;}
.y5c{bottom:257.786667pt;}
.ycd{bottom:257.946667pt;}
.ydc{bottom:265.786667pt;}
.y83{bottom:265.946667pt;}
.y27{bottom:269.146667pt;}
.y5b{bottom:276.506667pt;}
.ycc{bottom:276.666667pt;}
.ydb{bottom:284.506667pt;}
.y26{bottom:287.866667pt;}
.y5a{bottom:295.226667pt;}
.ycb{bottom:295.386667pt;}
.yda{bottom:303.226667pt;}
.y25{bottom:306.586667pt;}
.ya0{bottom:313.786667pt;}
.y59{bottom:313.946667pt;}
.yca{bottom:314.106667pt;}
.yd9{bottom:321.946667pt;}
.y24{bottom:325.306667pt;}
.y58{bottom:332.666667pt;}
.yc9{bottom:332.826667pt;}
.yd8{bottom:340.666667pt;}
.y23{bottom:344.026667pt;}
.y57{bottom:351.386667pt;}
.yc8{bottom:351.546667pt;}
.y9f{bottom:357.826667pt;}
.yd7{bottom:359.426667pt;}
.y22{bottom:362.786667pt;}
.y82{bottom:370.146667pt;}
.y9e{bottom:376.546667pt;}
.y56{bottom:378.146667pt;}
.yc7{bottom:378.306667pt;}
.y21{bottom:381.506667pt;}
.y81{bottom:388.866667pt;}
.y9d{bottom:395.266667pt;}
.y55{bottom:396.866667pt;}
.y20{bottom:400.226667pt;}
.yd5{bottom:402.466667pt;}
.yc6{bottom:405.026667pt;}
.y80{bottom:407.586667pt;}
.y54{bottom:415.586667pt;}
.y1f{bottom:418.946667pt;}
.y9c{bottom:421.986667pt;}
.yc5{bottom:423.746667pt;}
.y7f{bottom:426.306667pt;}
.y53{bottom:434.306667pt;}
.y1e{bottom:437.666667pt;}
.y9b{bottom:440.706667pt;}
.yc4{bottom:442.466667pt;}
.y7e{bottom:445.026667pt;}
.y52{bottom:453.026667pt;}
.y1d{bottom:456.386667pt;}
.y9a{bottom:459.426667pt;}
.yc3{bottom:461.186667pt;}
.y7d{bottom:463.746667pt;}
.y51{bottom:471.746667pt;}
.y1c{bottom:475.106667pt;}
.y99{bottom:478.146667pt;}
.yc2{bottom:479.906667pt;}
.y7c{bottom:482.466667pt;}
.y50{bottom:490.466667pt;}
.y1b{bottom:493.826667pt;}
.y98{bottom:496.866667pt;}
.yc1{bottom:498.626667pt;}
.y7b{bottom:501.186667pt;}
.y4f{bottom:509.186667pt;}
.y1a{bottom:512.546667pt;}
.y97{bottom:515.586667pt;}
.yc0{bottom:517.346667pt;}
.y7a{bottom:519.906667pt;}
.y4e{bottom:527.906667pt;}
.y19{bottom:531.266667pt;}
.y96{bottom:534.306667pt;}
.ybf{bottom:536.066667pt;}
.yce{bottom:536.706667pt;}
.y79{bottom:538.626667pt;}
.yd3{bottom:542.946667pt;}
.y4d{bottom:546.626667pt;}
.y18{bottom:549.986667pt;}
.y95{bottom:553.026667pt;}
.ybe{bottom:554.786667pt;}
.y78{bottom:557.346667pt;}
.y4c{bottom:565.346667pt;}
.y94{bottom:571.746667pt;}
.ybd{bottom:573.506667pt;}
.y77{bottom:576.066667pt;}
.y4b{bottom:584.093333pt;}
.y91{bottom:585.213333pt;}
.y17{bottom:589.533333pt;}
.ybc{bottom:592.253333pt;}
.y76{bottom:594.813333pt;}
.y4a{bottom:602.813333pt;}
.ybb{bottom:610.973333pt;}
.y75{bottom:613.533333pt;}
.y16{bottom:616.093333pt;}
.y49{bottom:621.533333pt;}
.y8f{bottom:625.053333pt;}
.yba{bottom:629.693333pt;}
.y74{bottom:632.253333pt;}
.y15{bottom:634.813333pt;}
.y48{bottom:640.253333pt;}
.yb9{bottom:648.253333pt;}
.y73{bottom:650.973333pt;}
.y14{bottom:653.533333pt;}
.y47{bottom:658.973333pt;}
.yb8{bottom:666.973333pt;}
.y72{bottom:669.693333pt;}
.y13{bottom:672.253333pt;}
.y46{bottom:677.693333pt;}
.y8c{bottom:681.853333pt;}
.yb7{bottom:685.693333pt;}
.y71{bottom:688.413333pt;}
.y12{bottom:690.973333pt;}
.y45{bottom:696.413333pt;}
.yb6{bottom:704.413333pt;}
.y70{bottom:707.133333pt;}
.y11{bottom:709.693333pt;}
.y44{bottom:715.133333pt;}
.yb5{bottom:723.133333pt;}
.y6f{bottom:725.853333pt;}
.y10{bottom:728.413333pt;}
.y43{bottom:733.853333pt;}
.yb4{bottom:741.853333pt;}
.y6e{bottom:744.573333pt;}
.yf{bottom:747.133333pt;}
.y42{bottom:752.573333pt;}
.yb3{bottom:760.573333pt;}
.y6d{bottom:763.293333pt;}
.ye{bottom:765.853333pt;}
.y41{bottom:771.293333pt;}
.yb2{bottom:779.293333pt;}
.y6c{bottom:782.013333pt;}
.yd{bottom:786.493333pt;}
.y40{bottom:790.013333pt;}
.yaf{bottom:792.893333pt;}
.y6b{bottom:800.773333pt;}
.y3f{bottom:808.773333pt;}
.yc{bottom:809.893333pt;}
.y6a{bottom:819.493333pt;}
.ya{bottom:824.773333pt;}
.y3e{bottom:827.493333pt;}
.yb{bottom:830.053333pt;}
.yae{bottom:831.013333pt;}
.y69{bottom:838.213333pt;}
.y9{bottom:844.613333pt;}
.y3d{bottom:846.213333pt;}
.y68{bottom:856.933333pt;}
.y3c{bottom:864.933333pt;}
.y8{bottom:867.013333pt;}
.yad{bottom:869.093333pt;}
.y67{bottom:875.653333pt;}
.y3b{bottom:883.653333pt;}
.y66{bottom:894.373333pt;}
.y7{bottom:896.933333pt;}
.y3a{bottom:902.373333pt;}
.y65{bottom:913.093333pt;}
.y39{bottom:921.093333pt;}
.yac{bottom:931.813333pt;}
.y5{bottom:932.613333pt;}
.y38{bottom:939.813333pt;}
.yab{bottom:950.533333pt;}
.y37{bottom:958.533333pt;}
.y4{bottom:961.253333pt;}
.yaa{bottom:969.253333pt;}
.y36{bottom:977.253333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:995.973333pt;}
.y34{bottom:1014.693333pt;}
.y2{bottom:1018.373333pt;}
.y33{bottom:1039.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1059.360000pt;}
.h8{height:34.374375pt;}
.hb{height:37.440000pt;}
.he{height:37.472000pt;}
.h7{height:39.168750pt;}
.hd{height:39.200000pt;}
.h10{height:44.437500pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.hc{height:56.160000pt;}
.h11{height:57.920000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h12{height:63.656250pt;}
.hf{height:64.032000pt;}
.ha{height:65.531250pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:113.440000pt;}
.w7{width:114.240000pt;}
.w6{width:117.792000pt;}
.w4{width:121.152000pt;}
.wa{width:125.632000pt;}
.w5{width:128.832000pt;}
.w9{width:154.586667pt;}
.wb{width:179.226667pt;}
.w8{width:595.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x14{left:9.600000pt;}
.x18{left:10.880000pt;}
.x15{left:16.960000pt;}
.x1a{left:18.400000pt;}
.x6{left:47.999988pt;}
.x1b{left:71.999988pt;}
.x16{left:77.274667pt;}
.x8{left:96.031988pt;}
.xb{left:99.232000pt;}
.x11{left:104.831988pt;}
.x12{left:110.591988pt;}
.x5{left:157.306655pt;}
.x7{left:174.266655pt;}
.xd{left:212.666667pt;}
.x3{left:241.986655pt;}
.x19{left:257.666667pt;}
.x2{left:311.586655pt;}
.xe{left:333.826667pt;}
.x13{left:364.226655pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xf{left:462.653333pt;}
.x17{left:464.093333pt;}
.x9{left:483.133322pt;}
.xa{left:487.613322pt;}
.x10{left:580.453333pt;}
.x1c{left:745.279988pt;}
}




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