
    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_51fd87eda411b150b926bc85.woff2')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_98299340b604e469391306d2.woff2')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_0365a4d0ec46bf157bdeb811.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8aa0546410e4fcebe32a481e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_0f5497be26ffc12ed48dd562.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_c7e6afdbb67f4301342de75d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_dd3a82966bbf6ef821a277b9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_795b2f6440f24f39124ebf04.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_63fa75f4bcb7cc4ddd814acd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bf9e48b349b35f0c880604d7.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_7c1fc312bfc3d84fdd0ef8e6.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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:ff10;src:url('chunks/assets/font_a549930b17558e7b83fc8bfb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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:ff11;src:url('chunks/assets/font_a4c25e6b36e5565e2590e68d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_80e6a8dfa99c67ea88c0ca54.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-4.680000px;}
.ls12{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206640px;}
.lse{letter-spacing:0.235920px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.170720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws4{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-10.260000px;}
.ws3{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._19{margin-left:-7.556160px;}
._14{margin-left:-6.214320px;}
._16{margin-left:-4.482000px;}
._2{margin-left:-3.186000px;}
._3{margin-left:-2.090880px;}
._0{margin-left:-1.026000px;}
._1{width:1.074000px;}
._4{width:2.256000px;}
._9{width:3.624720px;}
._8{width:4.721040px;}
._5{width:5.825520px;}
._1b{width:6.852480px;}
._12{width:7.854480px;}
._13{width:9.324240px;}
._10{width:10.456320px;}
._c{width:11.475600px;}
._e{width:13.027680px;}
._11{width:16.075440px;}
._17{width:17.362320px;}
._d{width:18.885840px;}
._6{width:20.085840px;}
._f{width:21.872160px;}
._18{width:23.287200px;}
._7{width:24.382080px;}
._1a{width:25.566240px;}
._15{width:28.032480px;}
._b{width:29.579520px;}
._a{width:31.256160px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.y99{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.y1a{bottom:4.860000px;}
.ye{bottom:9.360000px;}
.y4a{bottom:10.620000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y9a{bottom:17.325000px;}
.y2{bottom:20.016000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.320000px;}
.y49{bottom:25.200000px;}
.y19{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y45{bottom:37.800000px;}
.y5{bottom:41.940000px;}
.ya{bottom:46.620000px;}
.y44{bottom:55.125000px;}
.y18{bottom:58.500000px;}
.y1{bottom:64.440000px;}
.y43{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y17{bottom:74.925000px;}
.y42{bottom:89.685000px;}
.y8{bottom:93.090000px;}
.y16{bottom:95.265000px;}
.y41{bottom:106.785000px;}
.y15{bottom:111.105000px;}
.y7{bottom:111.450000px;}
.y54{bottom:112.176000px;}
.y14{bottom:121.545000px;}
.yed{bottom:123.336000px;}
.y40{bottom:124.065000px;}
.y90{bottom:125.676000px;}
.y53{bottom:129.456000px;}
.y13{bottom:139.905000px;}
.yec{bottom:140.616000px;}
.y3f{bottom:141.345000px;}
.y8f{bottom:142.956000px;}
.y52{bottom:146.736000px;}
.yeb{bottom:157.890000px;}
.y3e{bottom:158.625000px;}
.y12{bottom:158.805000px;}
.y8e{bottom:160.230000px;}
.y51{bottom:164.010000px;}
.yea{bottom:175.170000px;}
.y3d{bottom:175.905000px;}
.y8d{bottom:177.330000px;}
.y50{bottom:181.290000px;}
.y11{bottom:184.545000px;}
.ye9{bottom:192.450000px;}
.y3c{bottom:193.185000px;}
.y8c{bottom:194.610000px;}
.yc0{bottom:196.050000px;}
.y4f{bottom:198.570000px;}
.y10{bottom:209.025000px;}
.ye8{bottom:209.730000px;}
.y3b{bottom:210.285000px;}
.y8b{bottom:211.890000px;}
.ybf{bottom:213.330000px;}
.y4e{bottom:215.670000px;}
.ye7{bottom:226.830000px;}
.y2b{bottom:227.385000px;}
.y3a{bottom:227.565000px;}
.ybe{bottom:228.090000px;}
.y8a{bottom:229.170000px;}
.y4d{bottom:232.950000px;}
.ye6{bottom:244.110000px;}
.y2a{bottom:244.485000px;}
.y39{bottom:244.845000px;}
.ybd{bottom:246.090000px;}
.y89{bottom:246.450000px;}
.y48{bottom:246.990000px;}
.ye5{bottom:261.390000px;}
.y38{bottom:262.125000px;}
.y88{bottom:263.730000px;}
.ybc{bottom:264.090000px;}
.y29{bottom:264.285000px;}
.ye4{bottom:278.670000px;}
.y37{bottom:279.405000px;}
.y87{bottom:280.830000px;}
.ybb{bottom:282.090000px;}
.y1d{bottom:283.530000px;}
.y28{bottom:284.085000px;}
.ye3{bottom:295.950000px;}
.y36{bottom:296.505000px;}
.y86{bottom:298.110000px;}
.yba{bottom:300.090000px;}
.y27{bottom:301.905000px;}
.ye2{bottom:313.230000px;}
.y35{bottom:313.785000px;}
.y85{bottom:315.390000px;}
.yb9{bottom:318.090000px;}
.y26{bottom:319.365000px;}
.ye1{bottom:330.330000px;}
.y34{bottom:331.095000px;}
.y84{bottom:332.670000px;}
.y25{bottom:336.675000px;}
.yb8{bottom:339.375000px;}
.ye0{bottom:347.655000px;}
.y33{bottom:348.375000px;}
.y83{bottom:349.995000px;}
.y24{bottom:354.135000px;}
.yb7{bottom:356.655000px;}
.ydf{bottom:364.935000px;}
.y32{bottom:365.655000px;}
.y82{bottom:367.275000px;}
.y23{bottom:371.595000px;}
.yb6{bottom:373.935000px;}
.yde{bottom:382.215000px;}
.y31{bottom:382.935000px;}
.y81{bottom:384.375000px;}
.y22{bottom:388.875000px;}
.yb5{bottom:391.215000px;}
.ydd{bottom:399.495000px;}
.y30{bottom:400.035000px;}
.y80{bottom:401.655000px;}
.y21{bottom:406.335000px;}
.yb4{bottom:408.315000px;}
.ydc{bottom:416.595000px;}
.y2f{bottom:417.315000px;}
.y7f{bottom:420.015000px;}
.yb3{bottom:425.595000px;}
.y20{bottom:426.675000px;}
.ydb{bottom:433.875000px;}
.y2e{bottom:434.595000px;}
.y7e{bottom:437.295000px;}
.yb2{bottom:440.355000px;}
.yda{bottom:451.155000px;}
.y2d{bottom:451.875000px;}
.y1f{bottom:454.035000px;}
.y7d{bottom:455.655000px;}
.yb1{bottom:458.355000px;}
.yd9{bottom:468.435000px;}
.y2c{bottom:469.155000px;}
.y1e{bottom:471.855000px;}
.y7c{bottom:472.755000px;}
.yb0{bottom:476.355000px;}
.yd8{bottom:485.715000px;}
.y7b{bottom:490.035000px;}
.yaf{bottom:494.355000px;}
.yd7{bottom:502.995000px;}
.y7a{bottom:508.395000px;}
.yae{bottom:512.355000px;}
.yd6{bottom:520.095000px;}
.y79{bottom:525.675000px;}
.yad{bottom:530.355000px;}
.yd5{bottom:537.375000px;}
.y78{bottom:544.035000px;}
.yac{bottom:551.595000px;}
.yd4{bottom:554.655000px;}
.y77{bottom:561.315000px;}
.yab{bottom:568.875000px;}
.yd3{bottom:571.935000px;}
.y76{bottom:579.495000px;}
.yaa{bottom:586.155000px;}
.yd2{bottom:589.215000px;}
.y75{bottom:596.775000px;}
.ya9{bottom:603.435000px;}
.yd1{bottom:606.525000px;}
.y74{bottom:614.085000px;}
.ya8{bottom:618.225000px;}
.yd0{bottom:623.625000px;}
.y73{bottom:631.365000px;}
.ya7{bottom:636.225000px;}
.ycf{bottom:640.905000px;}
.y72{bottom:649.725000px;}
.yf4{bottom:652.965000px;}
.ya6{bottom:654.225000px;}
.yce{bottom:658.185000px;}
.y71{bottom:666.825000px;}
.yf3{bottom:670.065000px;}
.ya5{bottom:672.225000px;}
.ycd{bottom:675.465000px;}
.y70{bottom:685.185000px;}
.yf2{bottom:687.345000px;}
.ya4{bottom:690.225000px;}
.ycc{bottom:692.745000px;}
.y6f{bottom:702.465000px;}
.yf1{bottom:704.625000px;}
.ya3{bottom:708.225000px;}
.ycb{bottom:710.025000px;}
.y6e{bottom:719.745000px;}
.yf0{bottom:721.905000px;}
.ya2{bottom:726.225000px;}
.yca{bottom:727.125000px;}
.y6d{bottom:738.105000px;}
.yef{bottom:739.185000px;}
.yc9{bottom:744.405000px;}
.ya1{bottom:747.465000px;}
.y6c{bottom:755.385000px;}
.yee{bottom:756.465000px;}
.yc8{bottom:761.685000px;}
.ya0{bottom:764.565000px;}
.y1b{bottom:766.725000px;}
.y6b{bottom:773.565000px;}
.yc7{bottom:778.965000px;}
.y9f{bottom:781.845000px;}
.y6a{bottom:790.845000px;}
.yf{bottom:796.245000px;}
.y9e{bottom:799.125000px;}
.y69{bottom:808.125000px;}
.yc6{bottom:813.345000px;}
.y9d{bottom:813.885000px;}
.y68{bottom:825.405000px;}
.yc5{bottom:830.625000px;}
.y9c{bottom:831.885000px;}
.y67{bottom:842.685000px;}
.yc4{bottom:847.905000px;}
.y9b{bottom:849.885000px;}
.y66{bottom:859.785000px;}
.yc3{bottom:865.185000px;}
.y98{bottom:867.885000px;}
.y65{bottom:877.110000px;}
.yc2{bottom:882.510000px;}
.y97{bottom:885.930000px;}
.y64{bottom:894.390000px;}
.yc1{bottom:896.550000px;}
.y96{bottom:903.930000px;}
.y63{bottom:911.670000px;}
.y95{bottom:921.930000px;}
.y62{bottom:928.950000px;}
.y94{bottom:939.930000px;}
.y61{bottom:946.230000px;}
.y93{bottom:957.930000px;}
.y60{bottom:963.330000px;}
.y92{bottom:975.930000px;}
.y5f{bottom:980.610000px;}
.y91{bottom:993.930000px;}
.y5e{bottom:997.890000px;}
.y5d{bottom:1015.170000px;}
.yd{bottom:1020.390000px;}
.y5c{bottom:1032.450000px;}
.y6{bottom:1045.590000px;}
.y5b{bottom:1049.730000px;}
.y5a{bottom:1066.830000px;}
.y59{bottom:1084.110000px;}
.y58{bottom:1101.390000px;}
.y57{bottom:1118.670000px;}
.y56{bottom:1135.950000px;}
.y55{bottom:1153.260000px;}
.h22{height:17.100000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hb{height:24.840000px;}
.h12{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1b{height:38.818125px;}
.h1f{height:42.164648px;}
.h13{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.h1a{height:49.255313px;}
.h1c{height:53.573906px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:224.130000px;}
.h16{height:483.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:69.840000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.w11{width:192.090000px;}
.wb{width:199.470000px;}
.w12{width:211.710000px;}
.w8{width:220.935000px;}
.w10{width:270.795000px;}
.wd{width:283.710000px;}
.wf{width:334.830000px;}
.we{width:411.045000px;}
.wc{width:462.165000px;}
.w9{width:526.395000px;}
.wa{width:546.405000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x12{left:10.620000px;}
.x15{left:12.600000px;}
.xf{left:18.756000px;}
.x11{left:43.056000px;}
.xc{left:46.296000px;}
.x1{left:72.360000px;}
.xd{left:74.196000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x16{left:108.035987px;}
.xe{left:185.970000px;}
.x13{left:215.175000px;}
.x6{left:228.270000px;}
.x1e{left:233.849987px;}
.x1a{left:236.189987px;}
.x9{left:285.195000px;}
.x14{left:293.835000px;}
.x7{left:344.955000px;}
.x10{left:349.815000px;}
.x8{left:364.215000px;}
.xb{left:373.575000px;}
.x1f{left:396.074987px;}
.xa{left:452.460000px;}
.x19{left:485.025000px;}
.x18{left:536.145000px;}
.x1b{left:537.585000px;}
.x17{left:620.385000px;}
.x1d{left:673.889987px;}
.x3{left:745.890000px;}
.x1c{left:750.030000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-4.160000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183680pt;}
.lse{letter-spacing:0.209707pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.lsb{letter-spacing:57.040640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws4{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-9.120000pt;}
.ws3{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._19{margin-left:-6.716587pt;}
._14{margin-left:-5.523840pt;}
._16{margin-left:-3.984000pt;}
._2{margin-left:-2.832000pt;}
._3{margin-left:-1.858560pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.954667pt;}
._4{width:2.005333pt;}
._9{width:3.221973pt;}
._8{width:4.196480pt;}
._5{width:5.178240pt;}
._1b{width:6.091093pt;}
._12{width:6.981760pt;}
._13{width:8.288213pt;}
._10{width:9.294507pt;}
._c{width:10.200533pt;}
._e{width:11.580160pt;}
._11{width:14.289280pt;}
._17{width:15.433173pt;}
._d{width:16.787413pt;}
._6{width:17.854080pt;}
._f{width:19.441920pt;}
._18{width:20.699733pt;}
._7{width:21.672960pt;}
._1a{width:22.725547pt;}
._15{width:24.917760pt;}
._b{width:26.292907pt;}
._a{width:27.783253pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.y99{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.y1a{bottom:4.320000pt;}
.ye{bottom:8.320000pt;}
.y4a{bottom:9.440000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y9a{bottom:15.400000pt;}
.y2{bottom:17.792000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:19.840000pt;}
.y49{bottom:22.400000pt;}
.y19{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y45{bottom:33.600000pt;}
.y5{bottom:37.280000pt;}
.ya{bottom:41.440000pt;}
.y44{bottom:49.000000pt;}
.y18{bottom:52.000000pt;}
.y1{bottom:57.280000pt;}
.y43{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y17{bottom:66.600000pt;}
.y42{bottom:79.720000pt;}
.y8{bottom:82.746667pt;}
.y16{bottom:84.680000pt;}
.y41{bottom:94.920000pt;}
.y15{bottom:98.760000pt;}
.y7{bottom:99.066667pt;}
.y54{bottom:99.712000pt;}
.y14{bottom:108.040000pt;}
.yed{bottom:109.632000pt;}
.y40{bottom:110.280000pt;}
.y90{bottom:111.712000pt;}
.y53{bottom:115.072000pt;}
.y13{bottom:124.360000pt;}
.yec{bottom:124.992000pt;}
.y3f{bottom:125.640000pt;}
.y8f{bottom:127.072000pt;}
.y52{bottom:130.432000pt;}
.yeb{bottom:140.346667pt;}
.y3e{bottom:141.000000pt;}
.y12{bottom:141.160000pt;}
.y8e{bottom:142.426667pt;}
.y51{bottom:145.786667pt;}
.yea{bottom:155.706667pt;}
.y3d{bottom:156.360000pt;}
.y8d{bottom:157.626667pt;}
.y50{bottom:161.146667pt;}
.y11{bottom:164.040000pt;}
.ye9{bottom:171.066667pt;}
.y3c{bottom:171.720000pt;}
.y8c{bottom:172.986667pt;}
.yc0{bottom:174.266667pt;}
.y4f{bottom:176.506667pt;}
.y10{bottom:185.800000pt;}
.ye8{bottom:186.426667pt;}
.y3b{bottom:186.920000pt;}
.y8b{bottom:188.346667pt;}
.ybf{bottom:189.626667pt;}
.y4e{bottom:191.706667pt;}
.ye7{bottom:201.626667pt;}
.y2b{bottom:202.120000pt;}
.y3a{bottom:202.280000pt;}
.ybe{bottom:202.746667pt;}
.y8a{bottom:203.706667pt;}
.y4d{bottom:207.066667pt;}
.ye6{bottom:216.986667pt;}
.y2a{bottom:217.320000pt;}
.y39{bottom:217.640000pt;}
.ybd{bottom:218.746667pt;}
.y89{bottom:219.066667pt;}
.y48{bottom:219.546667pt;}
.ye5{bottom:232.346667pt;}
.y38{bottom:233.000000pt;}
.y88{bottom:234.426667pt;}
.ybc{bottom:234.746667pt;}
.y29{bottom:234.920000pt;}
.ye4{bottom:247.706667pt;}
.y37{bottom:248.360000pt;}
.y87{bottom:249.626667pt;}
.ybb{bottom:250.746667pt;}
.y1d{bottom:252.026667pt;}
.y28{bottom:252.520000pt;}
.ye3{bottom:263.066667pt;}
.y36{bottom:263.560000pt;}
.y86{bottom:264.986667pt;}
.yba{bottom:266.746667pt;}
.y27{bottom:268.360000pt;}
.ye2{bottom:278.426667pt;}
.y35{bottom:278.920000pt;}
.y85{bottom:280.346667pt;}
.yb9{bottom:282.746667pt;}
.y26{bottom:283.880000pt;}
.ye1{bottom:293.626667pt;}
.y34{bottom:294.306667pt;}
.y84{bottom:295.706667pt;}
.y25{bottom:299.266667pt;}
.yb8{bottom:301.666667pt;}
.ye0{bottom:309.026667pt;}
.y33{bottom:309.666667pt;}
.y83{bottom:311.106667pt;}
.y24{bottom:314.786667pt;}
.yb7{bottom:317.026667pt;}
.ydf{bottom:324.386667pt;}
.y32{bottom:325.026667pt;}
.y82{bottom:326.466667pt;}
.y23{bottom:330.306667pt;}
.yb6{bottom:332.386667pt;}
.yde{bottom:339.746667pt;}
.y31{bottom:340.386667pt;}
.y81{bottom:341.666667pt;}
.y22{bottom:345.666667pt;}
.yb5{bottom:347.746667pt;}
.ydd{bottom:355.106667pt;}
.y30{bottom:355.586667pt;}
.y80{bottom:357.026667pt;}
.y21{bottom:361.186667pt;}
.yb4{bottom:362.946667pt;}
.ydc{bottom:370.306667pt;}
.y2f{bottom:370.946667pt;}
.y7f{bottom:373.346667pt;}
.yb3{bottom:378.306667pt;}
.y20{bottom:379.266667pt;}
.ydb{bottom:385.666667pt;}
.y2e{bottom:386.306667pt;}
.y7e{bottom:388.706667pt;}
.yb2{bottom:391.426667pt;}
.yda{bottom:401.026667pt;}
.y2d{bottom:401.666667pt;}
.y1f{bottom:403.586667pt;}
.y7d{bottom:405.026667pt;}
.yb1{bottom:407.426667pt;}
.yd9{bottom:416.386667pt;}
.y2c{bottom:417.026667pt;}
.y1e{bottom:419.426667pt;}
.y7c{bottom:420.226667pt;}
.yb0{bottom:423.426667pt;}
.yd8{bottom:431.746667pt;}
.y7b{bottom:435.586667pt;}
.yaf{bottom:439.426667pt;}
.yd7{bottom:447.106667pt;}
.y7a{bottom:451.906667pt;}
.yae{bottom:455.426667pt;}
.yd6{bottom:462.306667pt;}
.y79{bottom:467.266667pt;}
.yad{bottom:471.426667pt;}
.yd5{bottom:477.666667pt;}
.y78{bottom:483.586667pt;}
.yac{bottom:490.306667pt;}
.yd4{bottom:493.026667pt;}
.y77{bottom:498.946667pt;}
.yab{bottom:505.666667pt;}
.yd3{bottom:508.386667pt;}
.y76{bottom:515.106667pt;}
.yaa{bottom:521.026667pt;}
.yd2{bottom:523.746667pt;}
.y75{bottom:530.466667pt;}
.ya9{bottom:536.386667pt;}
.yd1{bottom:539.133333pt;}
.y74{bottom:545.853333pt;}
.ya8{bottom:549.533333pt;}
.yd0{bottom:554.333333pt;}
.y73{bottom:561.213333pt;}
.ya7{bottom:565.533333pt;}
.ycf{bottom:569.693333pt;}
.y72{bottom:577.533333pt;}
.yf4{bottom:580.413333pt;}
.ya6{bottom:581.533333pt;}
.yce{bottom:585.053333pt;}
.y71{bottom:592.733333pt;}
.yf3{bottom:595.613333pt;}
.ya5{bottom:597.533333pt;}
.ycd{bottom:600.413333pt;}
.y70{bottom:609.053333pt;}
.yf2{bottom:610.973333pt;}
.ya4{bottom:613.533333pt;}
.ycc{bottom:615.773333pt;}
.y6f{bottom:624.413333pt;}
.yf1{bottom:626.333333pt;}
.ya3{bottom:629.533333pt;}
.ycb{bottom:631.133333pt;}
.y6e{bottom:639.773333pt;}
.yf0{bottom:641.693333pt;}
.ya2{bottom:645.533333pt;}
.yca{bottom:646.333333pt;}
.y6d{bottom:656.093333pt;}
.yef{bottom:657.053333pt;}
.yc9{bottom:661.693333pt;}
.ya1{bottom:664.413333pt;}
.y6c{bottom:671.453333pt;}
.yee{bottom:672.413333pt;}
.yc8{bottom:677.053333pt;}
.ya0{bottom:679.613333pt;}
.y1b{bottom:681.533333pt;}
.y6b{bottom:687.613333pt;}
.yc7{bottom:692.413333pt;}
.y9f{bottom:694.973333pt;}
.y6a{bottom:702.973333pt;}
.yf{bottom:707.773333pt;}
.y9e{bottom:710.333333pt;}
.y69{bottom:718.333333pt;}
.yc6{bottom:722.973333pt;}
.y9d{bottom:723.453333pt;}
.y68{bottom:733.693333pt;}
.yc5{bottom:738.333333pt;}
.y9c{bottom:739.453333pt;}
.y67{bottom:749.053333pt;}
.yc4{bottom:753.693333pt;}
.y9b{bottom:755.453333pt;}
.y66{bottom:764.253333pt;}
.yc3{bottom:769.053333pt;}
.y98{bottom:771.453333pt;}
.y65{bottom:779.653333pt;}
.yc2{bottom:784.453333pt;}
.y97{bottom:787.493333pt;}
.y64{bottom:795.013333pt;}
.yc1{bottom:796.933333pt;}
.y96{bottom:803.493333pt;}
.y63{bottom:810.373333pt;}
.y95{bottom:819.493333pt;}
.y62{bottom:825.733333pt;}
.y94{bottom:835.493333pt;}
.y61{bottom:841.093333pt;}
.y93{bottom:851.493333pt;}
.y60{bottom:856.293333pt;}
.y92{bottom:867.493333pt;}
.y5f{bottom:871.653333pt;}
.y91{bottom:883.493333pt;}
.y5e{bottom:887.013333pt;}
.y5d{bottom:902.373333pt;}
.yd{bottom:907.013333pt;}
.y5c{bottom:917.733333pt;}
.y6{bottom:929.413333pt;}
.y5b{bottom:933.093333pt;}
.y5a{bottom:948.293333pt;}
.y59{bottom:963.653333pt;}
.y58{bottom:979.013333pt;}
.y57{bottom:994.373333pt;}
.y56{bottom:1009.733333pt;}
.y55{bottom:1025.120000pt;}
.h22{height:15.200000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hb{height:22.080000pt;}
.h12{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1b{height:34.505000pt;}
.h1f{height:37.479688pt;}
.h13{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h1a{height:43.782500pt;}
.h1c{height:47.621250pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:199.226667pt;}
.h16{height:429.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:62.080000pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.w11{width:170.746667pt;}
.wb{width:177.306667pt;}
.w12{width:188.186667pt;}
.w8{width:196.386667pt;}
.w10{width:240.706667pt;}
.wd{width:252.186667pt;}
.wf{width:297.626667pt;}
.we{width:365.373333pt;}
.wc{width:410.813333pt;}
.w9{width:467.906667pt;}
.wa{width:485.693333pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x12{left:9.440000pt;}
.x15{left:11.200000pt;}
.xf{left:16.672000pt;}
.x11{left:38.272000pt;}
.xc{left:41.152000pt;}
.x1{left:64.320000pt;}
.xd{left:65.952000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x16{left:96.031988pt;}
.xe{left:165.306667pt;}
.x13{left:191.266667pt;}
.x6{left:202.906667pt;}
.x1e{left:207.866655pt;}
.x1a{left:209.946655pt;}
.x9{left:253.506667pt;}
.x14{left:261.186667pt;}
.x7{left:306.626667pt;}
.x10{left:310.946667pt;}
.x8{left:323.746667pt;}
.xb{left:332.066667pt;}
.x1f{left:352.066655pt;}
.xa{left:402.186667pt;}
.x19{left:431.133333pt;}
.x18{left:476.573333pt;}
.x1b{left:477.853333pt;}
.x17{left:551.453333pt;}
.x1d{left:599.013322pt;}
.x3{left:663.013333pt;}
.x1c{left:666.693333pt;}
}




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