
    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_80e69cfe9e843e3135749cc9.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_036404f933449d062008d4f6.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_bf4d59e5ff3654d8234a91dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_5063e9faf03d6a59d4c08b0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.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_57f9b2a79d3ea40205ee3ced.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_27acaed4a1bdf97cf3fb592b.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_3701a52f7f693d2085607433.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_d510fc31d0e4788a004cb588.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_d0cf82a02be153b36f6f5504.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_870345d89867c7c40ad0b31c.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_37bb52ab470cf465ae09257e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_69f1847a1535224307efccc7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3413c8ce2d8ff889953148b2.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_ebf16430d665edd7534f3d70.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_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;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.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.lse{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._a{margin-left:-6.631680px;}
._3{margin-left:-5.082000px;}
._2{margin-left:-3.138240px;}
._0{margin-left:-1.158000px;}
._1{width:1.266000px;}
._f{width:2.527920px;}
._6{width:3.616320px;}
._10{width:4.665600px;}
._d{width:5.936880px;}
._e{width:7.476000px;}
._c{width:8.986560px;}
._b{width:10.218960px;}
._17{width:11.256480px;}
._16{width:12.430080px;}
._15{width:13.744800px;}
._21{width:16.673040px;}
._12{width:17.797440px;}
._11{width:19.535040px;}
._4{width:21.579840px;}
._5{width:22.804320px;}
._13{width:24.012480px;}
._14{width:25.232160px;}
._23{width:26.517120px;}
._1d{width:27.549360px;}
._27{width:29.146560px;}
._28{width:30.292080px;}
._9{width:32.181600px;}
._7{width:34.231440px;}
._8{width:35.231760px;}
._22{width:36.362160px;}
._25{width:37.669200px;}
._24{width:38.747760px;}
._26{width:40.851840px;}
._1b{width:47.719200px;}
._1a{width:48.943440px;}
._1f{width:57.776880px;}
._1e{width:58.863600px;}
._1c{width:60.136560px;}
._20{width:61.552800px;}
._19{width:137.866320px;}
._18{width:234.020160px;}
.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;}
.y4f{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y1c{bottom:4.860000px;}
.yb4{bottom:6.300000px;}
.yb0{bottom:6.480000px;}
.yb2{bottom:6.525000px;}
.yf{bottom:9.540000px;}
.yae{bottom:9.720000px;}
.y1e{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y54{bottom:17.820000px;}
.y3{bottom:20.160000px;}
.yd0{bottom:20.340000px;}
.y4e{bottom:20.520000px;}
.ye6{bottom:20.565000px;}
.y6{bottom:23.580000px;}
.y52{bottom:24.480000px;}
.yad{bottom:27.000000px;}
.y1b{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y53{bottom:36.180000px;}
.y2{bottom:36.576000px;}
.y4d{bottom:37.620000px;}
.yc4{bottom:37.800000px;}
.yc2{bottom:37.830000px;}
.y51{bottom:39.240000px;}
.y1a{bottom:45.900000px;}
.y1{bottom:46.080000px;}
.yb{bottom:46.620000px;}
.y4c{bottom:54.900000px;}
.y19{bottom:58.680000px;}
.y4b{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y18{bottom:78.885000px;}
.y4a{bottom:89.460000px;}
.y9{bottom:93.090000px;}
.y17{bottom:94.725000px;}
.y16{bottom:105.165000px;}
.yc0{bottom:106.596000px;}
.y49{bottom:106.740000px;}
.y95{bottom:108.756000px;}
.y8{bottom:111.450000px;}
.yef{bottom:111.816000px;}
.y57{bottom:114.156000px;}
.y15{bottom:123.525000px;}
.ybf{bottom:123.876000px;}
.y48{bottom:124.065000px;}
.y94{bottom:126.036000px;}
.yee{bottom:129.096000px;}
.y56{bottom:131.436000px;}
.ybe{bottom:141.156000px;}
.y47{bottom:141.165000px;}
.y14{bottom:142.425000px;}
.y93{bottom:143.316000px;}
.yed{bottom:146.376000px;}
.y55{bottom:148.716000px;}
.ybd{bottom:158.430000px;}
.y46{bottom:158.445000px;}
.y92{bottom:160.590000px;}
.yec{bottom:161.130000px;}
.y50{bottom:162.750000px;}
.y13{bottom:168.165000px;}
.ybc{bottom:175.710000px;}
.y45{bottom:175.725000px;}
.y91{bottom:177.870000px;}
.ybb{bottom:192.990000px;}
.y44{bottom:193.005000px;}
.y12{bottom:193.905000px;}
.y90{bottom:194.970000px;}
.yeb{bottom:196.230000px;}
.yba{bottom:210.090000px;}
.y43{bottom:210.285000px;}
.y8f{bottom:212.250000px;}
.y1f{bottom:213.330000px;}
.yea{bottom:214.230000px;}
.y11{bottom:218.385000px;}
.yb9{bottom:227.370000px;}
.y42{bottom:227.565000px;}
.y8e{bottom:229.530000px;}
.ye9{bottom:232.230000px;}
.yb8{bottom:244.650000px;}
.y41{bottom:244.665000px;}
.y8d{bottom:246.810000px;}
.yb7{bottom:261.930000px;}
.y40{bottom:261.945000px;}
.y8c{bottom:264.090000px;}
.ye8{bottom:267.510000px;}
.y2f{bottom:270.225000px;}
.yb6{bottom:279.210000px;}
.y3f{bottom:279.225000px;}
.y8b{bottom:281.370000px;}
.ye7{bottom:285.510000px;}
.y2e{bottom:285.525000px;}
.yb5{bottom:296.490000px;}
.y3e{bottom:296.505000px;}
.y8a{bottom:298.470000px;}
.y2d{bottom:303.165000px;}
.yb3{bottom:311.250000px;}
.y3d{bottom:313.785000px;}
.y89{bottom:315.750000px;}
.y2c{bottom:320.445000px;}
.ye5{bottom:320.790000px;}
.y3c{bottom:331.065000px;}
.yb1{bottom:332.310000px;}
.y88{bottom:333.030000px;}
.y2b{bottom:337.725000px;}
.y3b{bottom:348.165000px;}
.y87{bottom:350.355000px;}
.yaf{bottom:353.595000px;}
.y2a{bottom:355.365000px;}
.ye4{bottom:359.355000px;}
.y3a{bottom:365.445000px;}
.y86{bottom:367.635000px;}
.y29{bottom:372.105000px;}
.yac{bottom:374.835000px;}
.ye3{bottom:376.635000px;}
.y39{bottom:382.725000px;}
.y85{bottom:384.915000px;}
.y28{bottom:388.485000px;}
.ye2{bottom:393.915000px;}
.y38{bottom:400.035000px;}
.y84{bottom:402.015000px;}
.y27{bottom:405.615000px;}
.ye1{bottom:411.015000px;}
.y37{bottom:417.315000px;}
.y83{bottom:419.295000px;}
.yab{bottom:419.835000px;}
.y26{bottom:423.075000px;}
.ye0{bottom:428.295000px;}
.y36{bottom:434.415000px;}
.y82{bottom:436.575000px;}
.yaa{bottom:437.115000px;}
.y25{bottom:440.355000px;}
.ydf{bottom:445.575000px;}
.y35{bottom:451.695000px;}
.y81{bottom:453.855000px;}
.ya9{bottom:454.395000px;}
.y24{bottom:457.815000px;}
.yde{bottom:462.855000px;}
.y34{bottom:468.975000px;}
.y80{bottom:471.135000px;}
.ya8{bottom:471.495000px;}
.y23{bottom:475.275000px;}
.ydd{bottom:480.135000px;}
.y33{bottom:486.255000px;}
.y7f{bottom:488.235000px;}
.ya7{bottom:488.775000px;}
.y22{bottom:495.435000px;}
.ydc{bottom:497.235000px;}
.y32{bottom:503.535000px;}
.y7e{bottom:505.515000px;}
.ya6{bottom:506.055000px;}
.ydb{bottom:514.515000px;}
.y31{bottom:520.815000px;}
.y7d{bottom:522.795000px;}
.y21{bottom:522.975000px;}
.ya5{bottom:523.335000px;}
.yda{bottom:531.795000px;}
.y30{bottom:537.915000px;}
.y7c{bottom:540.075000px;}
.y20{bottom:540.615000px;}
.yd9{bottom:549.075000px;}
.y7b{bottom:557.355000px;}
.ya4{bottom:557.895000px;}
.yd8{bottom:566.355000px;}
.y7a{bottom:574.635000px;}
.ya3{bottom:574.995000px;}
.yd7{bottom:583.635000px;}
.y79{bottom:591.735000px;}
.ya2{bottom:592.275000px;}
.yd6{bottom:600.735000px;}
.ya1{bottom:607.065000px;}
.y78{bottom:609.045000px;}
.yd5{bottom:618.045000px;}
.ya0{bottom:625.065000px;}
.y77{bottom:626.325000px;}
.yd4{bottom:632.805000px;}
.y9f{bottom:643.065000px;}
.y76{bottom:643.605000px;}
.y75{bottom:660.885000px;}
.y9e{bottom:661.065000px;}
.yd3{bottom:668.085000px;}
.y74{bottom:678.165000px;}
.y9d{bottom:679.065000px;}
.y73{bottom:695.265000px;}
.y9c{bottom:697.065000px;}
.yd2{bottom:703.365000px;}
.y72{bottom:712.545000px;}
.y9b{bottom:718.305000px;}
.y71{bottom:729.825000px;}
.y9a{bottom:735.585000px;}
.yd1{bottom:738.645000px;}
.y70{bottom:747.105000px;}
.y99{bottom:752.865000px;}
.y6f{bottom:764.385000px;}
.y1d{bottom:765.285000px;}
.y98{bottom:770.145000px;}
.ycf{bottom:773.925000px;}
.y6e{bottom:781.665000px;}
.y97{bottom:787.245000px;}
.y10{bottom:794.805000px;}
.y6d{bottom:798.765000px;}
.y96{bottom:801.285000px;}
.yce{bottom:809.025000px;}
.y6c{bottom:816.045000px;}
.y6b{bottom:833.325000px;}
.y6a{bottom:850.605000px;}
.ycd{bottom:864.825000px;}
.y69{bottom:867.885000px;}
.ycc{bottom:882.150000px;}
.y68{bottom:885.030000px;}
.ycb{bottom:899.430000px;}
.y67{bottom:902.310000px;}
.yca{bottom:916.530000px;}
.y66{bottom:919.590000px;}
.yc9{bottom:933.810000px;}
.y65{bottom:936.870000px;}
.yc8{bottom:951.090000px;}
.y64{bottom:954.150000px;}
.yc7{bottom:968.370000px;}
.y63{bottom:971.430000px;}
.yc6{bottom:985.650000px;}
.y62{bottom:988.530000px;}
.yc5{bottom:1000.410000px;}
.y61{bottom:1005.810000px;}
.y60{bottom:1023.090000px;}
.ye{bottom:1028.310000px;}
.y5f{bottom:1040.370000px;}
.yc3{bottom:1052.790000px;}
.y7{bottom:1053.510000px;}
.y5e{bottom:1057.650000px;}
.y5d{bottom:1074.930000px;}
.y5c{bottom:1092.030000px;}
.yc1{bottom:1105.350000px;}
.y5b{bottom:1109.310000px;}
.y5a{bottom:1126.590000px;}
.y59{bottom:1143.900000px;}
.y58{bottom:1161.180000px;}
.h22{height:17.280000px;}
.h26{height:20.340000px;}
.h24{height:20.520000px;}
.h25{height:20.556000px;}
.hc{height:24.840000px;}
.h15{height:29.520000px;}
.h13{height:31.923633px;}
.h14{height:32.103633px;}
.h2a{height:34.380000px;}
.h2b{height:34.560000px;}
.h2c{height:34.596000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h23{height:41.040000px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h1d{height:42.186445px;}
.h2d{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:46.881563px;}
.h5{height:47.223633px;}
.h18{height:47.980898px;}
.h1c{height:49.255313px;}
.h2{height:49.536000px;}
.h1b{height:49.742227px;}
.h20{height:50.580000px;}
.h29{height:51.660000px;}
.h28{height:51.840000px;}
.h27{height:51.876000px;}
.h21{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h16{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:233.490000px;}
.h17{height:551.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wc{width:100.836000px;}
.w12{width:101.376000px;}
.w1e{width:101.700000px;}
.w1d{width:101.916000px;}
.w14{width:108.180000px;}
.w13{width:108.216000px;}
.w17{width:110.016000px;}
.w19{width:113.760000px;}
.w1a{width:113.976000px;}
.w18{width:114.876000px;}
.wd{width:122.256000px;}
.w11{width:124.200000px;}
.w10{width:124.236000px;}
.we{width:127.080000px;}
.wf{width:127.116000px;}
.w1c{width:128.556000px;}
.w5{width:151.950000px;}
.w15{width:183.090000px;}
.wb{width:206.850000px;}
.w8{width:223.455000px;}
.w16{width:225.750000px;}
.w1b{width:274.170000px;}
.w1f{width:286.410000px;}
.w9{width:507.675000px;}
.wa{width:522.105000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xb{left:17.496000px;}
.xe{left:28.656000px;}
.x11{left:38.016000px;}
.x1{left:81.000000px;}
.x10{left:90.930000px;}
.x4{left:98.130000px;}
.x2d{left:108.035987px;}
.x18{left:169.949987px;}
.x19{left:183.270000px;}
.x23{left:192.450000px;}
.x27{left:201.269987px;}
.xc{left:207.435000px;}
.x28{left:210.990000px;}
.x12{left:215.175000px;}
.x1f{left:222.869987px;}
.xd{left:230.295000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x20{left:292.755000px;}
.x13{left:304.455000px;}
.x1a{left:306.435000px;}
.x24{left:308.055000px;}
.x29{left:313.635000px;}
.xf{left:326.595000px;}
.x6{left:331.995000px;}
.x16{left:343.154987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x2c{left:396.074987px;}
.x21{left:401.835000px;}
.x2a{left:416.055000px;}
.x25{left:422.535000px;}
.x1b{left:434.415000px;}
.x9{left:439.500000px;}
.x2b{left:524.985000px;}
.x26{left:537.225000px;}
.x1d{left:562.245000px;}
.x22{left:585.645000px;}
.x17{left:604.545000px;}
.x15{left:633.344987px;}
.x1e{left:687.210000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.lse{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._a{margin-left:-5.894827pt;}
._3{margin-left:-4.517333pt;}
._2{margin-left:-2.789547pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.125333pt;}
._f{width:2.247040pt;}
._6{width:3.214507pt;}
._10{width:4.147200pt;}
._d{width:5.277227pt;}
._e{width:6.645333pt;}
._c{width:7.988053pt;}
._b{width:9.083520pt;}
._17{width:10.005760pt;}
._16{width:11.048960pt;}
._15{width:12.217600pt;}
._21{width:14.820480pt;}
._12{width:15.819947pt;}
._11{width:17.364480pt;}
._4{width:19.182080pt;}
._5{width:20.270507pt;}
._13{width:21.344427pt;}
._14{width:22.428587pt;}
._23{width:23.570773pt;}
._1d{width:24.488320pt;}
._27{width:25.908053pt;}
._28{width:26.926293pt;}
._9{width:28.605867pt;}
._7{width:30.427947pt;}
._8{width:31.317120pt;}
._22{width:32.321920pt;}
._25{width:33.483733pt;}
._24{width:34.442453pt;}
._26{width:36.312747pt;}
._1b{width:42.417067pt;}
._1a{width:43.505280pt;}
._1f{width:51.357227pt;}
._1e{width:52.323200pt;}
._1c{width:53.454720pt;}
._20{width:54.713600pt;}
._19{width:122.547840pt;}
._18{width:208.017920pt;}
.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;}
.y4f{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y1c{bottom:4.320000pt;}
.yb4{bottom:5.600000pt;}
.yb0{bottom:5.760000pt;}
.yb2{bottom:5.800000pt;}
.yf{bottom:8.480000pt;}
.yae{bottom:8.640000pt;}
.y1e{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y54{bottom:15.840000pt;}
.y3{bottom:17.920000pt;}
.yd0{bottom:18.080000pt;}
.y4e{bottom:18.240000pt;}
.ye6{bottom:18.280000pt;}
.y6{bottom:20.960000pt;}
.y52{bottom:21.760000pt;}
.yad{bottom:24.000000pt;}
.y1b{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y53{bottom:32.160000pt;}
.y2{bottom:32.512000pt;}
.y4d{bottom:33.440000pt;}
.yc4{bottom:33.600000pt;}
.yc2{bottom:33.626667pt;}
.y51{bottom:34.880000pt;}
.y1a{bottom:40.800000pt;}
.y1{bottom:40.960000pt;}
.yb{bottom:41.440000pt;}
.y4c{bottom:48.800000pt;}
.y19{bottom:52.160000pt;}
.y4b{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y18{bottom:70.120000pt;}
.y4a{bottom:79.520000pt;}
.y9{bottom:82.746667pt;}
.y17{bottom:84.200000pt;}
.y16{bottom:93.480000pt;}
.yc0{bottom:94.752000pt;}
.y49{bottom:94.880000pt;}
.y95{bottom:96.672000pt;}
.y8{bottom:99.066667pt;}
.yef{bottom:99.392000pt;}
.y57{bottom:101.472000pt;}
.y15{bottom:109.800000pt;}
.ybf{bottom:110.112000pt;}
.y48{bottom:110.280000pt;}
.y94{bottom:112.032000pt;}
.yee{bottom:114.752000pt;}
.y56{bottom:116.832000pt;}
.ybe{bottom:125.472000pt;}
.y47{bottom:125.480000pt;}
.y14{bottom:126.600000pt;}
.y93{bottom:127.392000pt;}
.yed{bottom:130.112000pt;}
.y55{bottom:132.192000pt;}
.ybd{bottom:140.826667pt;}
.y46{bottom:140.840000pt;}
.y92{bottom:142.746667pt;}
.yec{bottom:143.226667pt;}
.y50{bottom:144.666667pt;}
.y13{bottom:149.480000pt;}
.ybc{bottom:156.186667pt;}
.y45{bottom:156.200000pt;}
.y91{bottom:158.106667pt;}
.ybb{bottom:171.546667pt;}
.y44{bottom:171.560000pt;}
.y12{bottom:172.360000pt;}
.y90{bottom:173.306667pt;}
.yeb{bottom:174.426667pt;}
.yba{bottom:186.746667pt;}
.y43{bottom:186.920000pt;}
.y8f{bottom:188.666667pt;}
.y1f{bottom:189.626667pt;}
.yea{bottom:190.426667pt;}
.y11{bottom:194.120000pt;}
.yb9{bottom:202.106667pt;}
.y42{bottom:202.280000pt;}
.y8e{bottom:204.026667pt;}
.ye9{bottom:206.426667pt;}
.yb8{bottom:217.466667pt;}
.y41{bottom:217.480000pt;}
.y8d{bottom:219.386667pt;}
.yb7{bottom:232.826667pt;}
.y40{bottom:232.840000pt;}
.y8c{bottom:234.746667pt;}
.ye8{bottom:237.786667pt;}
.y2f{bottom:240.200000pt;}
.yb6{bottom:248.186667pt;}
.y3f{bottom:248.200000pt;}
.y8b{bottom:250.106667pt;}
.ye7{bottom:253.786667pt;}
.y2e{bottom:253.800000pt;}
.yb5{bottom:263.546667pt;}
.y3e{bottom:263.560000pt;}
.y8a{bottom:265.306667pt;}
.y2d{bottom:269.480000pt;}
.yb3{bottom:276.666667pt;}
.y3d{bottom:278.920000pt;}
.y89{bottom:280.666667pt;}
.y2c{bottom:284.840000pt;}
.ye5{bottom:285.146667pt;}
.y3c{bottom:294.280000pt;}
.yb1{bottom:295.386667pt;}
.y88{bottom:296.026667pt;}
.y2b{bottom:300.200000pt;}
.y3b{bottom:309.480000pt;}
.y87{bottom:311.426667pt;}
.yaf{bottom:314.306667pt;}
.y2a{bottom:315.880000pt;}
.ye4{bottom:319.426667pt;}
.y3a{bottom:324.840000pt;}
.y86{bottom:326.786667pt;}
.y29{bottom:330.760000pt;}
.yac{bottom:333.186667pt;}
.ye3{bottom:334.786667pt;}
.y39{bottom:340.200000pt;}
.y85{bottom:342.146667pt;}
.y28{bottom:345.320000pt;}
.ye2{bottom:350.146667pt;}
.y38{bottom:355.586667pt;}
.y84{bottom:357.346667pt;}
.y27{bottom:360.546667pt;}
.ye1{bottom:365.346667pt;}
.y37{bottom:370.946667pt;}
.y83{bottom:372.706667pt;}
.yab{bottom:373.186667pt;}
.y26{bottom:376.066667pt;}
.ye0{bottom:380.706667pt;}
.y36{bottom:386.146667pt;}
.y82{bottom:388.066667pt;}
.yaa{bottom:388.546667pt;}
.y25{bottom:391.426667pt;}
.ydf{bottom:396.066667pt;}
.y35{bottom:401.506667pt;}
.y81{bottom:403.426667pt;}
.ya9{bottom:403.906667pt;}
.y24{bottom:406.946667pt;}
.yde{bottom:411.426667pt;}
.y34{bottom:416.866667pt;}
.y80{bottom:418.786667pt;}
.ya8{bottom:419.106667pt;}
.y23{bottom:422.466667pt;}
.ydd{bottom:426.786667pt;}
.y33{bottom:432.226667pt;}
.y7f{bottom:433.986667pt;}
.ya7{bottom:434.466667pt;}
.y22{bottom:440.386667pt;}
.ydc{bottom:441.986667pt;}
.y32{bottom:447.586667pt;}
.y7e{bottom:449.346667pt;}
.ya6{bottom:449.826667pt;}
.ydb{bottom:457.346667pt;}
.y31{bottom:462.946667pt;}
.y7d{bottom:464.706667pt;}
.y21{bottom:464.866667pt;}
.ya5{bottom:465.186667pt;}
.yda{bottom:472.706667pt;}
.y30{bottom:478.146667pt;}
.y7c{bottom:480.066667pt;}
.y20{bottom:480.546667pt;}
.yd9{bottom:488.066667pt;}
.y7b{bottom:495.426667pt;}
.ya4{bottom:495.906667pt;}
.yd8{bottom:503.426667pt;}
.y7a{bottom:510.786667pt;}
.ya3{bottom:511.106667pt;}
.yd7{bottom:518.786667pt;}
.y79{bottom:525.986667pt;}
.ya2{bottom:526.466667pt;}
.yd6{bottom:533.986667pt;}
.ya1{bottom:539.613333pt;}
.y78{bottom:541.373333pt;}
.yd5{bottom:549.373333pt;}
.ya0{bottom:555.613333pt;}
.y77{bottom:556.733333pt;}
.yd4{bottom:562.493333pt;}
.y9f{bottom:571.613333pt;}
.y76{bottom:572.093333pt;}
.y75{bottom:587.453333pt;}
.y9e{bottom:587.613333pt;}
.yd3{bottom:593.853333pt;}
.y74{bottom:602.813333pt;}
.y9d{bottom:603.613333pt;}
.y73{bottom:618.013333pt;}
.y9c{bottom:619.613333pt;}
.yd2{bottom:625.213333pt;}
.y72{bottom:633.373333pt;}
.y9b{bottom:638.493333pt;}
.y71{bottom:648.733333pt;}
.y9a{bottom:653.853333pt;}
.yd1{bottom:656.573333pt;}
.y70{bottom:664.093333pt;}
.y99{bottom:669.213333pt;}
.y6f{bottom:679.453333pt;}
.y1d{bottom:680.253333pt;}
.y98{bottom:684.573333pt;}
.ycf{bottom:687.933333pt;}
.y6e{bottom:694.813333pt;}
.y97{bottom:699.773333pt;}
.y10{bottom:706.493333pt;}
.y6d{bottom:710.013333pt;}
.y96{bottom:712.253333pt;}
.yce{bottom:719.133333pt;}
.y6c{bottom:725.373333pt;}
.y6b{bottom:740.733333pt;}
.y6a{bottom:756.093333pt;}
.ycd{bottom:768.733333pt;}
.y69{bottom:771.453333pt;}
.ycc{bottom:784.133333pt;}
.y68{bottom:786.693333pt;}
.ycb{bottom:799.493333pt;}
.y67{bottom:802.053333pt;}
.yca{bottom:814.693333pt;}
.y66{bottom:817.413333pt;}
.yc9{bottom:830.053333pt;}
.y65{bottom:832.773333pt;}
.yc8{bottom:845.413333pt;}
.y64{bottom:848.133333pt;}
.yc7{bottom:860.773333pt;}
.y63{bottom:863.493333pt;}
.yc6{bottom:876.133333pt;}
.y62{bottom:878.693333pt;}
.yc5{bottom:889.253333pt;}
.y61{bottom:894.053333pt;}
.y60{bottom:909.413333pt;}
.ye{bottom:914.053333pt;}
.y5f{bottom:924.773333pt;}
.yc3{bottom:935.813333pt;}
.y7{bottom:936.453333pt;}
.y5e{bottom:940.133333pt;}
.y5d{bottom:955.493333pt;}
.y5c{bottom:970.693333pt;}
.yc1{bottom:982.533333pt;}
.y5b{bottom:986.053333pt;}
.y5a{bottom:1001.413333pt;}
.y59{bottom:1016.800000pt;}
.y58{bottom:1032.160000pt;}
.h22{height:15.360000pt;}
.h26{height:18.080000pt;}
.h24{height:18.240000pt;}
.h25{height:18.272000pt;}
.hc{height:22.080000pt;}
.h15{height:26.240000pt;}
.h13{height:28.376563pt;}
.h14{height:28.536562pt;}
.h2a{height:30.560000pt;}
.h2b{height:30.720000pt;}
.h2c{height:30.752000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h23{height:36.480000pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h1d{height:37.499062pt;}
.h2d{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:41.672500pt;}
.h5{height:41.976562pt;}
.h18{height:42.649687pt;}
.h1c{height:43.782500pt;}
.h2{height:44.032000pt;}
.h1b{height:44.215312pt;}
.h20{height:44.960000pt;}
.h29{height:45.920000pt;}
.h28{height:46.080000pt;}
.h27{height:46.112000pt;}
.h21{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h16{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:207.546667pt;}
.h17{height:490.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wc{width:89.632000pt;}
.w12{width:90.112000pt;}
.w1e{width:90.400000pt;}
.w1d{width:90.592000pt;}
.w14{width:96.160000pt;}
.w13{width:96.192000pt;}
.w17{width:97.792000pt;}
.w19{width:101.120000pt;}
.w1a{width:101.312000pt;}
.w18{width:102.112000pt;}
.wd{width:108.672000pt;}
.w11{width:110.400000pt;}
.w10{width:110.432000pt;}
.we{width:112.960000pt;}
.wf{width:112.992000pt;}
.w1c{width:114.272000pt;}
.w5{width:135.066667pt;}
.w15{width:162.746667pt;}
.wb{width:183.866667pt;}
.w8{width:198.626667pt;}
.w16{width:200.666667pt;}
.w1b{width:243.706667pt;}
.w1f{width:254.586667pt;}
.w9{width:451.266667pt;}
.wa{width:464.093333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xb{left:15.552000pt;}
.xe{left:25.472000pt;}
.x11{left:33.792000pt;}
.x1{left:72.000000pt;}
.x10{left:80.826667pt;}
.x4{left:87.226667pt;}
.x2d{left:96.031988pt;}
.x18{left:151.066655pt;}
.x19{left:162.906667pt;}
.x23{left:171.066667pt;}
.x27{left:178.906655pt;}
.xc{left:184.386667pt;}
.x28{left:187.546667pt;}
.x12{left:191.266667pt;}
.x1f{left:198.106655pt;}
.xd{left:204.706667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x20{left:260.226667pt;}
.x13{left:270.626667pt;}
.x1a{left:272.386667pt;}
.x24{left:273.826667pt;}
.x29{left:278.786667pt;}
.xf{left:290.306667pt;}
.x6{left:295.106667pt;}
.x16{left:305.026655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x2c{left:352.066655pt;}
.x21{left:357.186667pt;}
.x2a{left:369.826667pt;}
.x25{left:375.586667pt;}
.x1b{left:386.146667pt;}
.x9{left:390.666667pt;}
.x2b{left:466.653333pt;}
.x26{left:477.533333pt;}
.x1d{left:499.773333pt;}
.x22{left:520.573333pt;}
.x17{left:537.373333pt;}
.x15{left:562.973322pt;}
.x1e{left:610.853333pt;}
.x3{left:656.933333pt;}
}




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