
    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_6b8be153fa29c889e6e4baa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_81271ef03583be58a7ebcf4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2c1955b54f5334a1744c1c7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8bf9541f0e5789513aa307d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_53622188d8881e7411a0a636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_ff5d579b37c2e36f16667ccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1a04cdc2e84272506566187.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e156b90ab0cdee602754a28.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_3edd821ad851d97650af5a27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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:ffb;src:url('chunks/assets/font_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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:ffc;src:url('chunks/assets/font_4d0c34b788f07053d09efff7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_9d5d9514aa241ed1f765c045.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aaeaed9b671621b6d5e2e2b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_ac6ea0de952a85e4da2d0851.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-67.680000px;}
.v1{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.226200px;}
.ls5{letter-spacing:-0.159600px;}
.ls1e{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.096600px;}
.lsf{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.774000px;}
.ls10{letter-spacing:0.900000px;}
.lsc{letter-spacing:13.140000px;}
.lsb{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.ls14{letter-spacing:214.200000px;}
.ls13{letter-spacing:707.142720px;}
.ls18{letter-spacing:1032.582720px;}
.ls11{letter-spacing:2331.042720px;}
.ls15{letter-spacing:2350.482720px;}
.ls12{letter-spacing:2454.162720px;}
.ls17{letter-spacing:2555.682720px;}
.ls16{letter-spacing:2580.162720px;}
.ls19{letter-spacing:2649.282720px;}
.ls1{letter-spacing:2867.076000px;}
.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:-25.452840px;}
.ws3{word-spacing:-25.196640px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.500000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws7{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws11{word-spacing:29.851200px;}
.ws12{word-spacing:30.939120px;}
.ws16{word-spacing:31.293360px;}
.wsf{word-spacing:31.601040px;}
.ws10{word-spacing:31.663440px;}
.ws17{word-spacing:31.664880px;}
.ws14{word-spacing:31.687200px;}
.ws13{word-spacing:31.820520px;}
.ws18{word-spacing:31.833840px;}
.wse{word-spacing:31.955520px;}
.ws15{word-spacing:32.013360px;}
._14{margin-left:-6.454080px;}
._16{margin-left:-3.406320px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.290560px;}
._c{width:3.744000px;}
._f{width:4.913520px;}
._4{width:6.029280px;}
._3{width:7.555680px;}
._13{width:8.751600px;}
._b{width:9.774000px;}
._d{width:10.800000px;}
._12{width:11.941680px;}
._10{width:13.386240px;}
._7{width:16.848000px;}
._6{width:18.198000px;}
._5{width:19.548000px;}
._8{width:21.222000px;}
._9{width:22.530480px;}
._e{width:28.458000px;}
._1c{width:30.197520px;}
._18{width:32.688000px;}
._a{width:34.182000px;}
._17{width:35.964720px;}
._19{width:47.030400px;}
._1b{width:65.700000px;}
._11{width:84.312000px;}
._1a{width:120.420000px;}
._15{width:140.580000px;}
._1d{width:155.059920px;}
._1e{width:197.539920px;}
._20{width:337.883040px;}
._1f{width:1443.259920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:3.225000px;}
.y98{bottom:3.240000px;}
.y4b{bottom:3.420000px;}
.yb6{bottom:3.585000px;}
.y9d{bottom:3.600000px;}
.y40{bottom:3.765000px;}
.ybe{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y96{bottom:11.910000px;}
.yb4{bottom:12.225000px;}
.yb9{bottom:12.240000px;}
.ybc{bottom:12.420000px;}
.y9b{bottom:12.780000px;}
.y4a{bottom:13.860000px;}
.y3f{bottom:20.325000px;}
.yb0{bottom:20.505000px;}
.y97{bottom:20.550000px;}
.y4{bottom:23.040000px;}
.y9a{bottom:30.240000px;}
.y54{bottom:37.080000px;}
.y3e{bottom:37.605000px;}
.yb1{bottom:37.785000px;}
.y49{bottom:38.160000px;}
.y3{bottom:48.090000px;}
.y48{bottom:51.150000px;}
.y53{bottom:52.590000px;}
.y3d{bottom:54.705000px;}
.y8{bottom:58.500000px;}
.y47{bottom:64.290000px;}
.y52{bottom:70.050000px;}
.y3c{bottom:72.030000px;}
.y46{bottom:77.250000px;}
.y7{bottom:78.660000px;}
.y51{bottom:85.890000px;}
.y3b{bottom:89.310000px;}
.y45{bottom:90.210000px;}
.y50{bottom:101.550000px;}
.yc4{bottom:106.560000px;}
.y3a{bottom:106.590000px;}
.y44{bottom:112.170000px;}
.y4f{bottom:118.830000px;}
.y8f{bottom:123.840000px;}
.y39{bottom:123.870000px;}
.ybf{bottom:125.100000px;}
.y56{bottom:128.880000px;}
.y4e{bottom:134.850000px;}
.ybb{bottom:139.680000px;}
.y38{bottom:140.970000px;}
.y8e{bottom:141.120000px;}
.y55{bottom:146.160000px;}
.y4d{bottom:150.330000px;}
.ybd{bottom:157.680000px;}
.y37{bottom:158.250000px;}
.y8d{bottom:158.400000px;}
.y41{bottom:160.740000px;}
.y4c{bottom:165.810000px;}
.y43{bottom:174.270000px;}
.y36{bottom:175.530000px;}
.y8c{bottom:175.680000px;}
.y42{bottom:184.710000px;}
.y8b{bottom:192.780000px;}
.y35{bottom:192.810000px;}
.yba{bottom:193.680000px;}
.y34{bottom:210.090000px;}
.yb7{bottom:211.725000px;}
.yc3{bottom:227.010000px;}
.y33{bottom:227.370000px;}
.yb8{bottom:229.725000px;}
.y32{bottom:244.470000px;}
.y8a{bottom:244.650000px;}
.yb3{bottom:247.725000px;}
.y1e{bottom:259.230000px;}
.y31{bottom:261.750000px;}
.y89{bottom:261.930000px;}
.yb5{bottom:265.725000px;}
.y30{bottom:279.030000px;}
.y88{bottom:279.210000px;}
.y1d{bottom:283.350000px;}
.yaf{bottom:283.725000px;}
.y2f{bottom:295.950000px;}
.y87{bottom:296.310000px;}
.y1c{bottom:307.500000px;}
.y86{bottom:313.590000px;}
.yde{bottom:315.390000px;}
.y2e{bottom:322.080000px;}
.y85{bottom:330.870000px;}
.y1b{bottom:331.620000px;}
.ydd{bottom:332.670000px;}
.y2d{bottom:337.560000px;}
.yae{bottom:339.510000px;}
.y84{bottom:348.150000px;}
.ydc{bottom:349.770000px;}
.y2c{bottom:353.220000px;}
.y1a{bottom:355.920000px;}
.yad{bottom:357.150000px;}
.y83{bottom:365.430000px;}
.ydb{bottom:367.050000px;}
.y2b{bottom:368.700000px;}
.y10{bottom:373.365000px;}
.yac{bottom:374.430000px;}
.y19{bottom:380.040000px;}
.y82{bottom:382.710000px;}
.y2a{bottom:384.180000px;}
.yda{bottom:384.330000px;}
.yab{bottom:391.710000px;}
.y29{bottom:399.660000px;}
.y81{bottom:399.810000px;}
.yd9{bottom:401.610000px;}
.y18{bottom:404.160000px;}
.yaa{bottom:408.810000px;}
.y28{bottom:415.320000px;}
.y80{bottom:417.090000px;}
.yd8{bottom:418.890000px;}
.ya9{bottom:426.090000px;}
.y17{bottom:428.280000px;}
.y27{bottom:430.800000px;}
.y7f{bottom:434.370000px;}
.yd7{bottom:436.170000px;}
.ya8{bottom:443.370000px;}
.y26{bottom:446.280000px;}
.y7e{bottom:451.695000px;}
.y16{bottom:452.400000px;}
.yd6{bottom:453.315000px;}
.ya7{bottom:460.695000px;}
.y25{bottom:461.760000px;}
.y7d{bottom:468.975000px;}
.yd5{bottom:470.595000px;}
.y15{bottom:476.520000px;}
.y24{bottom:477.420000px;}
.ya6{bottom:477.615000px;}
.y7c{bottom:486.255000px;}
.yd4{bottom:487.875000px;}
.y23{bottom:492.900000px;}
.ya5{bottom:495.255000px;}
.y14{bottom:500.820000px;}
.y7b{bottom:503.355000px;}
.yd3{bottom:505.155000px;}
.y22{bottom:508.380000px;}
.ya2{bottom:509.475000px;}
.y7a{bottom:520.635000px;}
.yd2{bottom:522.075000px;}
.y21{bottom:523.860000px;}
.y13{bottom:524.940000px;}
.ya4{bottom:527.475000px;}
.y79{bottom:537.915000px;}
.y20{bottom:539.520000px;}
.yd1{bottom:539.715000px;}
.ya3{bottom:545.475000px;}
.y12{bottom:549.105000px;}
.y78{bottom:555.195000px;}
.yd0{bottom:556.815000px;}
.y9f{bottom:563.475000px;}
.y1f{bottom:570.525000px;}
.y77{bottom:572.475000px;}
.y11{bottom:573.225000px;}
.ycf{bottom:574.095000px;}
.ya1{bottom:581.475000px;}
.yc2{bottom:589.215000px;}
.y76{bottom:589.575000px;}
.yce{bottom:591.375000px;}
.ya0{bottom:599.475000px;}
.y75{bottom:606.855000px;}
.ycd{bottom:608.655000px;}
.y99{bottom:617.475000px;}
.y74{bottom:624.135000px;}
.ycc{bottom:625.935000px;}
.y9e{bottom:635.475000px;}
.y73{bottom:641.415000px;}
.ycb{bottom:643.215000px;}
.y9c{bottom:653.475000px;}
.y72{bottom:658.335000px;}
.yc1{bottom:658.695000px;}
.yca{bottom:660.315000px;}
.y95{bottom:671.475000px;}
.y71{bottom:675.975000px;}
.yc9{bottom:677.595000px;}
.y70{bottom:693.105000px;}
.yc8{bottom:694.905000px;}
.y94{bottom:710.025000px;}
.y6f{bottom:710.385000px;}
.yc7{bottom:712.185000px;}
.y93{bottom:727.305000px;}
.y6e{bottom:727.665000px;}
.yc6{bottom:729.465000px;}
.y6d{bottom:744.945000px;}
.yc5{bottom:745.845000px;}
.y6c{bottom:762.225000px;}
.y6b{bottom:779.505000px;}
.y6a{bottom:796.605000px;}
.y69{bottom:813.885000px;}
.y68{bottom:831.165000px;}
.y67{bottom:848.445000px;}
.y66{bottom:865.365000px;}
.y92{bottom:865.725000px;}
.yc0{bottom:882.465000px;}
.y65{bottom:882.825000px;}
.y64{bottom:900.105000px;}
.y63{bottom:917.430000px;}
.y62{bottom:934.350000px;}
.y91{bottom:934.710000px;}
.y61{bottom:951.990000px;}
.yf{bottom:959.370000px;}
.ye{bottom:966.210000px;}
.y60{bottom:969.270000px;}
.yd{bottom:983.490000px;}
.y5f{bottom:986.370000px;}
.yc{bottom:1000.230000px;}
.y5e{bottom:1003.290000px;}
.y90{bottom:1003.650000px;}
.yb{bottom:1019.850000px;}
.y5d{bottom:1020.930000px;}
.y5c{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y5b{bottom:1055.490000px;}
.y9{bottom:1071.870000px;}
.y5a{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:8.905078px;}
.h19{height:17.085000px;}
.h1e{height:17.100000px;}
.h1d{height:17.136000px;}
.h20{height:17.280000px;}
.h12{height:27.540000px;}
.h16{height:34.410000px;}
.h1b{height:35.085000px;}
.h1f{height:35.100000px;}
.h1c{height:35.136000px;}
.hf{height:40.948242px;}
.hd{height:40.985156px;}
.h14{height:41.726953px;}
.hc{height:42.086250px;}
.h17{height:42.164648px;}
.h1a{height:51.645000px;}
.he{height:52.971680px;}
.h18{height:53.085000px;}
.h11{height:54.421875px;}
.h6{height:57.324375px;}
.h9{height:58.651172px;}
.h8{height:60.226875px;}
.h15{height:61.423863px;}
.h21{height:62.211094px;}
.h13{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.h10{height:211.890000px;}
.hb{height:582.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:79.761000px;}
.w11{width:80.631000px;}
.wa{width:85.845000px;}
.w9{width:85.896000px;}
.w7{width:88.725000px;}
.wc{width:92.145000px;}
.w2{width:104.076000px;}
.w10{width:120.765000px;}
.w8{width:126.021000px;}
.w4{width:132.651000px;}
.we{width:134.136000px;}
.wf{width:140.961000px;}
.w6{width:162.720000px;}
.w12{width:167.235000px;}
.wd{width:248.601000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x19{left:8.085000px;}
.x4{left:12.765000px;}
.x27{left:14.025000px;}
.x14{left:15.471000px;}
.x6{left:17.265000px;}
.x29{left:19.245000px;}
.x17{left:20.691000px;}
.x24{left:21.780000px;}
.x16{left:23.751000px;}
.x2b{left:25.725000px;}
.x15{left:27.171000px;}
.x1d{left:29.151000px;}
.x39{left:30.420000px;}
.x2e{left:31.890000px;}
.x38{left:34.020000px;}
.x2c{left:35.985000px;}
.x34{left:37.245000px;}
.x2d{left:39.810000px;}
.x37{left:40.860000px;}
.x2a{left:42.690000px;}
.xf{left:43.731000px;}
.x32{left:46.260000px;}
.x1c{left:47.691000px;}
.x10{left:50.751000px;}
.xe{left:55.071000px;}
.x1a{left:62.130000px;}
.x1e{left:66.225000px;}
.x13{left:68.205000px;}
.x12{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x1b{left:103.305000px;}
.x30{left:109.245000px;}
.x20{left:113.436000px;}
.x2f{left:123.165000px;}
.x11{left:124.545000px;}
.x5{left:141.330000px;}
.x21{left:165.645000px;}
.x3{left:182.385000px;}
.x36{left:204.525000px;}
.x18{left:219.105000px;}
.x3c{left:233.310000px;}
.x3e{left:247.170000px;}
.x22{left:255.105000px;}
.x3f{left:350.355000px;}
.x31{left:372.675000px;}
.x23{left:381.855000px;}
.xc{left:414.615000px;}
.x3d{left:418.035000px;}
.x25{left:468.660000px;}
.x3a{left:498.165000px;}
.x3b{left:506.085000px;}
.x33{left:507.720000px;}
.xb{left:526.605000px;}
.x26{left:555.240000px;}
.x28{left:635.730000px;}
.x35{left:649.410000px;}
.xa{left:683.970000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xd{left:806.940000px;}
@media print{
.v2{vertical-align:-60.160000pt;}
.v1{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:-0.141867pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.085867pt;}
.lsf{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.688000pt;}
.ls10{letter-spacing:0.800000pt;}
.lsc{letter-spacing:11.680000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls14{letter-spacing:190.400000pt;}
.ls13{letter-spacing:628.571307pt;}
.ls18{letter-spacing:917.851307pt;}
.ls11{letter-spacing:2072.037973pt;}
.ls15{letter-spacing:2089.317973pt;}
.ls12{letter-spacing:2181.477973pt;}
.ls17{letter-spacing:2271.717973pt;}
.ls16{letter-spacing:2293.477973pt;}
.ls19{letter-spacing:2354.917973pt;}
.ls1{letter-spacing:2548.512000pt;}
.ws4{word-spacing:-22.624747pt;}
.ws3{word-spacing:-22.397013pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws7{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws11{word-spacing:26.534400pt;}
.ws12{word-spacing:27.501440pt;}
.ws16{word-spacing:27.816320pt;}
.wsf{word-spacing:28.089813pt;}
.ws10{word-spacing:28.145280pt;}
.ws17{word-spacing:28.146560pt;}
.ws14{word-spacing:28.166400pt;}
.ws13{word-spacing:28.284907pt;}
.ws18{word-spacing:28.296747pt;}
.wse{word-spacing:28.404907pt;}
.ws15{word-spacing:28.456320pt;}
._14{margin-left:-5.736960pt;}
._16{margin-left:-3.027840pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.036053pt;}
._c{width:3.328000pt;}
._f{width:4.367573pt;}
._4{width:5.359360pt;}
._3{width:6.716160pt;}
._13{width:7.779200pt;}
._b{width:8.688000pt;}
._d{width:9.600000pt;}
._12{width:10.614827pt;}
._10{width:11.898880pt;}
._7{width:14.976000pt;}
._6{width:16.176000pt;}
._5{width:17.376000pt;}
._8{width:18.864000pt;}
._9{width:20.027093pt;}
._e{width:25.296000pt;}
._1c{width:26.842240pt;}
._18{width:29.056000pt;}
._a{width:30.384000pt;}
._17{width:31.968640pt;}
._19{width:41.804800pt;}
._1b{width:58.400000pt;}
._11{width:74.944000pt;}
._1a{width:107.040000pt;}
._15{width:124.960000pt;}
._1d{width:137.831040pt;}
._1e{width:175.591040pt;}
._20{width:300.340480pt;}
._1f{width:1282.897707pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:2.866667pt;}
.y98{bottom:2.880000pt;}
.y4b{bottom:3.040000pt;}
.yb6{bottom:3.186667pt;}
.y9d{bottom:3.200000pt;}
.y40{bottom:3.346667pt;}
.ybe{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y96{bottom:10.586667pt;}
.yb4{bottom:10.866667pt;}
.yb9{bottom:10.880000pt;}
.ybc{bottom:11.040000pt;}
.y9b{bottom:11.360000pt;}
.y4a{bottom:12.320000pt;}
.y3f{bottom:18.066667pt;}
.yb0{bottom:18.226667pt;}
.y97{bottom:18.266667pt;}
.y4{bottom:20.480000pt;}
.y9a{bottom:26.880000pt;}
.y54{bottom:32.960000pt;}
.y3e{bottom:33.426667pt;}
.yb1{bottom:33.586667pt;}
.y49{bottom:33.920000pt;}
.y3{bottom:42.746667pt;}
.y48{bottom:45.466667pt;}
.y53{bottom:46.746667pt;}
.y3d{bottom:48.626667pt;}
.y8{bottom:52.000000pt;}
.y47{bottom:57.146667pt;}
.y52{bottom:62.266667pt;}
.y3c{bottom:64.026667pt;}
.y46{bottom:68.666667pt;}
.y7{bottom:69.920000pt;}
.y51{bottom:76.346667pt;}
.y3b{bottom:79.386667pt;}
.y45{bottom:80.186667pt;}
.y50{bottom:90.266667pt;}
.yc4{bottom:94.720000pt;}
.y3a{bottom:94.746667pt;}
.y44{bottom:99.706667pt;}
.y4f{bottom:105.626667pt;}
.y8f{bottom:110.080000pt;}
.y39{bottom:110.106667pt;}
.ybf{bottom:111.200000pt;}
.y56{bottom:114.560000pt;}
.y4e{bottom:119.866667pt;}
.ybb{bottom:124.160000pt;}
.y38{bottom:125.306667pt;}
.y8e{bottom:125.440000pt;}
.y55{bottom:129.920000pt;}
.y4d{bottom:133.626667pt;}
.ybd{bottom:140.160000pt;}
.y37{bottom:140.666667pt;}
.y8d{bottom:140.800000pt;}
.y41{bottom:142.880000pt;}
.y4c{bottom:147.386667pt;}
.y43{bottom:154.906667pt;}
.y36{bottom:156.026667pt;}
.y8c{bottom:156.160000pt;}
.y42{bottom:164.186667pt;}
.y8b{bottom:171.360000pt;}
.y35{bottom:171.386667pt;}
.yba{bottom:172.160000pt;}
.y34{bottom:186.746667pt;}
.yb7{bottom:188.200000pt;}
.yc3{bottom:201.786667pt;}
.y33{bottom:202.106667pt;}
.yb8{bottom:204.200000pt;}
.y32{bottom:217.306667pt;}
.y8a{bottom:217.466667pt;}
.yb3{bottom:220.200000pt;}
.y1e{bottom:230.426667pt;}
.y31{bottom:232.666667pt;}
.y89{bottom:232.826667pt;}
.yb5{bottom:236.200000pt;}
.y30{bottom:248.026667pt;}
.y88{bottom:248.186667pt;}
.y1d{bottom:251.866667pt;}
.yaf{bottom:252.200000pt;}
.y2f{bottom:263.066667pt;}
.y87{bottom:263.386667pt;}
.y1c{bottom:273.333333pt;}
.y86{bottom:278.746667pt;}
.yde{bottom:280.346667pt;}
.y2e{bottom:286.293333pt;}
.y85{bottom:294.106667pt;}
.y1b{bottom:294.773333pt;}
.ydd{bottom:295.706667pt;}
.y2d{bottom:300.053333pt;}
.yae{bottom:301.786667pt;}
.y84{bottom:309.466667pt;}
.ydc{bottom:310.906667pt;}
.y2c{bottom:313.973333pt;}
.y1a{bottom:316.373333pt;}
.yad{bottom:317.466667pt;}
.y83{bottom:324.826667pt;}
.ydb{bottom:326.266667pt;}
.y2b{bottom:327.733333pt;}
.y10{bottom:331.880000pt;}
.yac{bottom:332.826667pt;}
.y19{bottom:337.813333pt;}
.y82{bottom:340.186667pt;}
.y2a{bottom:341.493333pt;}
.yda{bottom:341.626667pt;}
.yab{bottom:348.186667pt;}
.y29{bottom:355.253333pt;}
.y81{bottom:355.386667pt;}
.yd9{bottom:356.986667pt;}
.y18{bottom:359.253333pt;}
.yaa{bottom:363.386667pt;}
.y28{bottom:369.173333pt;}
.y80{bottom:370.746667pt;}
.yd8{bottom:372.346667pt;}
.ya9{bottom:378.746667pt;}
.y17{bottom:380.693333pt;}
.y27{bottom:382.933333pt;}
.y7f{bottom:386.106667pt;}
.yd7{bottom:387.706667pt;}
.ya8{bottom:394.106667pt;}
.y26{bottom:396.693333pt;}
.y7e{bottom:401.506667pt;}
.y16{bottom:402.133333pt;}
.yd6{bottom:402.946667pt;}
.ya7{bottom:409.506667pt;}
.y25{bottom:410.453333pt;}
.y7d{bottom:416.866667pt;}
.yd5{bottom:418.306667pt;}
.y15{bottom:423.573333pt;}
.y24{bottom:424.373333pt;}
.ya6{bottom:424.546667pt;}
.y7c{bottom:432.226667pt;}
.yd4{bottom:433.666667pt;}
.y23{bottom:438.133333pt;}
.ya5{bottom:440.226667pt;}
.y14{bottom:445.173333pt;}
.y7b{bottom:447.426667pt;}
.yd3{bottom:449.026667pt;}
.y22{bottom:451.893333pt;}
.ya2{bottom:452.866667pt;}
.y7a{bottom:462.786667pt;}
.yd2{bottom:464.066667pt;}
.y21{bottom:465.653333pt;}
.y13{bottom:466.613333pt;}
.ya4{bottom:468.866667pt;}
.y79{bottom:478.146667pt;}
.y20{bottom:479.573333pt;}
.yd1{bottom:479.746667pt;}
.ya3{bottom:484.866667pt;}
.y12{bottom:488.093333pt;}
.y78{bottom:493.506667pt;}
.yd0{bottom:494.946667pt;}
.y9f{bottom:500.866667pt;}
.y1f{bottom:507.133333pt;}
.y77{bottom:508.866667pt;}
.y11{bottom:509.533333pt;}
.ycf{bottom:510.306667pt;}
.ya1{bottom:516.866667pt;}
.yc2{bottom:523.746667pt;}
.y76{bottom:524.066667pt;}
.yce{bottom:525.666667pt;}
.ya0{bottom:532.866667pt;}
.y75{bottom:539.426667pt;}
.ycd{bottom:541.026667pt;}
.y99{bottom:548.866667pt;}
.y74{bottom:554.786667pt;}
.ycc{bottom:556.386667pt;}
.y9e{bottom:564.866667pt;}
.y73{bottom:570.146667pt;}
.ycb{bottom:571.746667pt;}
.y9c{bottom:580.866667pt;}
.y72{bottom:585.186667pt;}
.yc1{bottom:585.506667pt;}
.yca{bottom:586.946667pt;}
.y95{bottom:596.866667pt;}
.y71{bottom:600.866667pt;}
.yc9{bottom:602.306667pt;}
.y70{bottom:616.093333pt;}
.yc8{bottom:617.693333pt;}
.y94{bottom:631.133333pt;}
.y6f{bottom:631.453333pt;}
.yc7{bottom:633.053333pt;}
.y93{bottom:646.493333pt;}
.y6e{bottom:646.813333pt;}
.yc6{bottom:648.413333pt;}
.y6d{bottom:662.173333pt;}
.yc5{bottom:662.973333pt;}
.y6c{bottom:677.533333pt;}
.y6b{bottom:692.893333pt;}
.y6a{bottom:708.093333pt;}
.y69{bottom:723.453333pt;}
.y68{bottom:738.813333pt;}
.y67{bottom:754.173333pt;}
.y66{bottom:769.213333pt;}
.y92{bottom:769.533333pt;}
.yc0{bottom:784.413333pt;}
.y65{bottom:784.733333pt;}
.y64{bottom:800.093333pt;}
.y63{bottom:815.493333pt;}
.y62{bottom:830.533333pt;}
.y91{bottom:830.853333pt;}
.y61{bottom:846.213333pt;}
.yf{bottom:852.773333pt;}
.ye{bottom:858.853333pt;}
.y60{bottom:861.573333pt;}
.yd{bottom:874.213333pt;}
.y5f{bottom:876.773333pt;}
.yc{bottom:889.093333pt;}
.y5e{bottom:891.813333pt;}
.y90{bottom:892.133333pt;}
.yb{bottom:906.533333pt;}
.y5d{bottom:907.493333pt;}
.y5c{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y5b{bottom:938.213333pt;}
.y9{bottom:952.773333pt;}
.y5a{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:7.915625pt;}
.h19{height:15.186667pt;}
.h1e{height:15.200000pt;}
.h1d{height:15.232000pt;}
.h20{height:15.360000pt;}
.h12{height:24.480000pt;}
.h16{height:30.586667pt;}
.h1b{height:31.186667pt;}
.h1f{height:31.200000pt;}
.h1c{height:31.232000pt;}
.hf{height:36.398438pt;}
.hd{height:36.431250pt;}
.h14{height:37.090625pt;}
.hc{height:37.410000pt;}
.h17{height:37.479688pt;}
.h1a{height:45.906667pt;}
.he{height:47.085938pt;}
.h18{height:47.186667pt;}
.h11{height:48.375000pt;}
.h6{height:50.955000pt;}
.h9{height:52.134375pt;}
.h8{height:53.535000pt;}
.h15{height:54.598989pt;}
.h21{height:55.298750pt;}
.h13{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.h10{height:188.346667pt;}
.hb{height:518.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:70.898667pt;}
.w11{width:71.672000pt;}
.wa{width:76.306667pt;}
.w9{width:76.352000pt;}
.w7{width:78.866667pt;}
.wc{width:81.906667pt;}
.w2{width:92.512000pt;}
.w10{width:107.346667pt;}
.w8{width:112.018667pt;}
.w4{width:117.912000pt;}
.we{width:119.232000pt;}
.wf{width:125.298667pt;}
.w6{width:144.640000pt;}
.w12{width:148.653333pt;}
.wd{width:220.978667pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x19{left:7.186667pt;}
.x4{left:11.346667pt;}
.x27{left:12.466667pt;}
.x14{left:13.752000pt;}
.x6{left:15.346667pt;}
.x29{left:17.106667pt;}
.x17{left:18.392000pt;}
.x24{left:19.360000pt;}
.x16{left:21.112000pt;}
.x2b{left:22.866667pt;}
.x15{left:24.152000pt;}
.x1d{left:25.912000pt;}
.x39{left:27.040000pt;}
.x2e{left:28.346667pt;}
.x38{left:30.240000pt;}
.x2c{left:31.986667pt;}
.x34{left:33.106667pt;}
.x2d{left:35.386667pt;}
.x37{left:36.320000pt;}
.x2a{left:37.946667pt;}
.xf{left:38.872000pt;}
.x32{left:41.120000pt;}
.x1c{left:42.392000pt;}
.x10{left:45.112000pt;}
.xe{left:48.952000pt;}
.x1a{left:55.226667pt;}
.x1e{left:58.866667pt;}
.x13{left:60.626667pt;}
.x12{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x1b{left:91.826667pt;}
.x30{left:97.106667pt;}
.x20{left:100.832000pt;}
.x2f{left:109.480000pt;}
.x11{left:110.706667pt;}
.x5{left:125.626667pt;}
.x21{left:147.240000pt;}
.x3{left:162.120000pt;}
.x36{left:181.800000pt;}
.x18{left:194.760000pt;}
.x3c{left:207.386667pt;}
.x3e{left:219.706667pt;}
.x22{left:226.760000pt;}
.x3f{left:311.426667pt;}
.x31{left:331.266667pt;}
.x23{left:339.426667pt;}
.xc{left:368.546667pt;}
.x3d{left:371.586667pt;}
.x25{left:416.586667pt;}
.x3a{left:442.813333pt;}
.x3b{left:449.853333pt;}
.x33{left:451.306667pt;}
.xb{left:468.093333pt;}
.x26{left:493.546667pt;}
.x28{left:565.093333pt;}
.x35{left:577.253333pt;}
.xa{left:607.973333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xd{left:717.280000pt;}
}




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