
    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_550c37ff6c6b89f9877a6d56.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_47ce564770e0c9b63315bbfd.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_d06e0460b8d9306c5ae5ecc4.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_bf2889aa2d228b2e4f8e09e0.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_d83a8fdcfafca2edc47991b8.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_c6c8cad64bc160186784eeb3.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_8efd177397b446715916c6b7.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_a89848f8b14fd470be07cd12.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_dead230326261503ac48d5b7.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_f45fe122ef93a95268207c84.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_65088114c8c2fe70a2614757.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_1d3b90f27bb38b3e9c26d93d.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_35cce040393a957a592c48a5.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_2bc950b85a648936d1ab81b4.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_cf5b54b838ee9f69dcdff9c4.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.708000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.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;}
.ls6{letter-spacing:0.894240px;}
.lsf{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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.732960px;}
.ws9{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.012000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._1a{margin-left:-8.086800px;}
._1b{margin-left:-6.631200px;}
._17{margin-left:-5.318640px;}
._4{margin-left:-4.115280px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.248000px;}
._1{width:1.206000px;}
._3{width:2.526000px;}
._5{width:3.576240px;}
._6{width:4.598640px;}
._d{width:5.890560px;}
._7{width:7.051680px;}
._8{width:8.157600px;}
._14{width:9.320880px;}
._9{width:10.626480px;}
._15{width:11.670240px;}
._11{width:12.837600px;}
._12{width:13.844640px;}
._10{width:16.374240px;}
._19{width:17.569440px;}
._c{width:19.052640px;}
._13{width:22.111200px;}
._16{width:24.083280px;}
._b{width:25.438800px;}
._a{width:26.533440px;}
._e{width:27.595680px;}
._f{width:29.051280px;}
._18{width:65.855520px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(5,99,193);}
.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;}
.y43{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y19{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y46{bottom:14.940000px;}
.ya9{bottom:17.280000px;}
.y4{bottom:17.316000px;}
.y45{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y42{bottom:20.340000px;}
.yd4{bottom:20.520000px;}
.y18{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.680000px;}
.y41{bottom:37.620000px;}
.yd3{bottom:37.800000px;}
.yd7{bottom:37.830000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y1{bottom:54.180000px;}
.y40{bottom:54.900000px;}
.y16{bottom:62.505000px;}
.y3f{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y3e{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y3d{bottom:106.560000px;}
.y13{bottom:106.965000px;}
.y91{bottom:108.576000px;}
.y7{bottom:111.270000px;}
.y54{bottom:119.196000px;}
.yf2{bottom:119.376000px;}
.y3c{bottom:123.840000px;}
.y12{bottom:126.045000px;}
.ycd{bottom:126.756000px;}
.y90{bottom:129.816000px;}
.y53{bottom:136.476000px;}
.yea{bottom:138.096000px;}
.y3b{bottom:141.120000px;}
.ycc{bottom:144.036000px;}
.y8f{bottom:147.096000px;}
.y2b{bottom:149.580000px;}
.y11{bottom:151.785000px;}
.y52{bottom:153.750000px;}
.ye9{bottom:155.190000px;}
.y3a{bottom:158.400000px;}
.ycb{bottom:161.310000px;}
.y8e{bottom:164.370000px;}
.y2a{bottom:164.880000px;}
.y51{bottom:171.030000px;}
.ye8{bottom:172.470000px;}
.y39{bottom:175.680000px;}
.y10{bottom:176.085000px;}
.yca{bottom:178.590000px;}
.y8d{bottom:181.470000px;}
.y29{bottom:182.520000px;}
.y50{bottom:188.310000px;}
.ye7{bottom:189.750000px;}
.y38{bottom:192.960000px;}
.yc9{bottom:195.870000px;}
.y8c{bottom:198.750000px;}
.y28{bottom:199.620000px;}
.y4f{bottom:205.410000px;}
.yf1{bottom:205.590000px;}
.ye6{bottom:207.030000px;}
.y37{bottom:210.060000px;}
.yc8{bottom:212.970000px;}
.y8b{bottom:216.030000px;}
.y27{bottom:216.930000px;}
.y4e{bottom:222.690000px;}
.yf0{bottom:222.870000px;}
.ye5{bottom:224.310000px;}
.y36{bottom:227.370000px;}
.yc7{bottom:230.250000px;}
.y8a{bottom:233.310000px;}
.y26{bottom:234.750000px;}
.y4d{bottom:239.970000px;}
.ye4{bottom:241.590000px;}
.y35{bottom:244.650000px;}
.yc6{bottom:245.010000px;}
.y89{bottom:248.070000px;}
.y25{bottom:251.490000px;}
.y4c{bottom:257.250000px;}
.ye3{bottom:258.690000px;}
.y34{bottom:261.930000px;}
.yc5{bottom:263.010000px;}
.y88{bottom:266.070000px;}
.y24{bottom:267.870000px;}
.y4b{bottom:274.530000px;}
.ye2{bottom:275.970000px;}
.y33{bottom:279.210000px;}
.yc4{bottom:281.010000px;}
.y87{bottom:284.070000px;}
.y23{bottom:284.970000px;}
.y4a{bottom:291.630000px;}
.yef{bottom:291.810000px;}
.ye1{bottom:293.250000px;}
.y32{bottom:296.490000px;}
.yc3{bottom:299.010000px;}
.y86{bottom:302.070000px;}
.y22{bottom:302.250000px;}
.y49{bottom:308.910000px;}
.yee{bottom:309.090000px;}
.ye0{bottom:310.530000px;}
.y31{bottom:313.590000px;}
.y21{bottom:319.710000px;}
.y85{bottom:320.070000px;}
.yc2{bottom:320.250000px;}
.y48{bottom:326.190000px;}
.yed{bottom:326.370000px;}
.ydf{bottom:327.810000px;}
.y30{bottom:330.870000px;}
.y20{bottom:337.170000px;}
.yc1{bottom:337.575000px;}
.y84{bottom:338.115000px;}
.y47{bottom:343.515000px;}
.yde{bottom:345.135000px;}
.y2f{bottom:348.150000px;}
.yc0{bottom:354.855000px;}
.y83{bottom:356.115000px;}
.y1f{bottom:357.330000px;}
.y44{bottom:357.555000px;}
.yec{bottom:360.795000px;}
.ydd{bottom:362.235000px;}
.y2e{bottom:365.430000px;}
.ybf{bottom:372.135000px;}
.y82{bottom:374.115000px;}
.yeb{bottom:378.075000px;}
.ydc{bottom:379.515000px;}
.y2d{bottom:382.710000px;}
.y1e{bottom:384.870000px;}
.y1c{bottom:386.895000px;}
.ybe{bottom:389.415000px;}
.ydb{bottom:394.275000px;}
.y81{bottom:395.355000px;}
.y2c{bottom:399.810000px;}
.y1d{bottom:402.510000px;}
.ybd{bottom:406.515000px;}
.y80{bottom:412.635000px;}
.ybc{bottom:421.275000px;}
.y7f{bottom:429.915000px;}
.ybb{bottom:439.275000px;}
.yda{bottom:446.835000px;}
.y7e{bottom:447.015000px;}
.yba{bottom:457.275000px;}
.y7d{bottom:464.295000px;}
.yb9{bottom:475.275000px;}
.y7c{bottom:481.575000px;}
.yd9{bottom:482.115000px;}
.yb8{bottom:493.275000px;}
.y7b{bottom:498.855000px;}
.yb7{bottom:511.275000px;}
.y7a{bottom:516.135000px;}
.yb6{bottom:532.515000px;}
.y79{bottom:533.235000px;}
.yd8{bottom:534.495000px;}
.yb5{bottom:549.795000px;}
.y78{bottom:550.515000px;}
.yb4{bottom:567.075000px;}
.y77{bottom:567.795000px;}
.yd6{bottom:569.775000px;}
.yb3{bottom:584.355000px;}
.y76{bottom:585.075000px;}
.yb2{bottom:601.635000px;}
.y75{bottom:602.355000px;}
.yb1{bottom:618.765000px;}
.y74{bottom:619.665000px;}
.yd5{bottom:622.365000px;}
.yb0{bottom:633.525000px;}
.y73{bottom:636.765000px;}
.yaf{bottom:651.525000px;}
.y72{bottom:654.045000px;}
.yae{bottom:669.525000px;}
.y71{bottom:671.325000px;}
.yd2{bottom:674.745000px;}
.yad{bottom:687.525000px;}
.y70{bottom:688.605000px;}
.yac{bottom:705.525000px;}
.y6f{bottom:705.885000px;}
.y6e{bottom:723.165000px;}
.yab{bottom:723.525000px;}
.yd1{bottom:730.545000px;}
.y6d{bottom:740.265000px;}
.yaa{bottom:741.525000px;}
.yd0{bottom:747.825000px;}
.y6c{bottom:757.545000px;}
.ya8{bottom:759.525000px;}
.ycf{bottom:765.105000px;}
.y6b{bottom:774.825000px;}
.ya7{bottom:777.525000px;}
.yce{bottom:778.965000px;}
.y6a{bottom:792.105000px;}
.ya6{bottom:795.525000px;}
.y1a{bottom:800.745000px;}
.y69{bottom:809.385000px;}
.ya5{bottom:816.765000px;}
.y68{bottom:826.485000px;}
.yf{bottom:830.265000px;}
.ya4{bottom:834.045000px;}
.y67{bottom:843.765000px;}
.ya3{bottom:851.325000px;}
.y66{bottom:861.045000px;}
.ya2{bottom:868.605000px;}
.y65{bottom:878.370000px;}
.ya1{bottom:885.930000px;}
.y64{bottom:895.650000px;}
.ya0{bottom:903.030000px;}
.y63{bottom:912.930000px;}
.y9f{bottom:920.310000px;}
.y62{bottom:930.030000px;}
.y9e{bottom:937.590000px;}
.y61{bottom:947.310000px;}
.y9d{bottom:952.350000px;}
.y60{bottom:964.590000px;}
.y9c{bottom:970.350000px;}
.y5f{bottom:981.870000px;}
.y9b{bottom:988.350000px;}
.y5e{bottom:999.150000px;}
.y9a{bottom:1006.350000px;}
.y5d{bottom:1016.430000px;}
.yd{bottom:1021.470000px;}
.y99{bottom:1024.350000px;}
.y5c{bottom:1033.530000px;}
.y98{bottom:1042.350000px;}
.y6{bottom:1046.850000px;}
.y5b{bottom:1050.810000px;}
.y97{bottom:1060.350000px;}
.y5a{bottom:1068.090000px;}
.y96{bottom:1078.350000px;}
.y59{bottom:1085.370000px;}
.y95{bottom:1096.350000px;}
.y58{bottom:1102.650000px;}
.y94{bottom:1114.350000px;}
.y57{bottom:1119.930000px;}
.y93{bottom:1132.350000px;}
.y56{bottom:1137.030000px;}
.y92{bottom:1150.380000px;}
.y55{bottom:1154.340000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:25.020000px;}
.h1e{height:29.340000px;}
.h13{height:29.520000px;}
.h12{height:32.103633px;}
.h2{height:32.976000px;}
.h27{height:34.380000px;}
.h26{height:34.560000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h28{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:46.881563px;}
.h16{height:47.980898px;}
.h1f{height:48.027656px;}
.h20{height:48.147656px;}
.h1a{height:49.255313px;}
.h19{height:49.742227px;}
.h24{height:51.660000px;}
.h23{height:51.840000px;}
.h25{height:51.876000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:191.190000px;}
.h15{height:413.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w19{width:86.976000px;}
.w1a{width:121.320000px;}
.w1c{width:122.976000px;}
.w18{width:123.156000px;}
.w1b{width:133.056000px;}
.w1d{width:138.600000px;}
.w5{width:151.950000px;}
.wb{width:162.900000px;}
.wd{width:163.470000px;}
.wc{width:186.330000px;}
.w13{width:188.670000px;}
.wa{width:214.815000px;}
.w15{width:221.610000px;}
.w8{width:223.455000px;}
.wf{width:253.470000px;}
.w11{width:257.835000px;}
.w12{width:281.730000px;}
.w17{width:314.490000px;}
.w16{width:414.465000px;}
.we{width:475.485000px;}
.w14{width:507.345000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w10{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:16.236000px;}
.xe{left:21.456000px;}
.xf{left:30.996000px;}
.xc{left:43.776000px;}
.x10{left:72.570000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x2a{left:108.035987px;}
.x24{left:205.590000px;}
.xd{left:210.495000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x14{left:254.369987px;}
.x21{left:269.849987px;}
.x8{left:272.235000px;}
.x18{left:289.694987px;}
.x25{left:293.295000px;}
.x15{left:297.255000px;}
.x23{left:300.494987px;}
.x12{left:304.455000px;}
.x1c{left:305.714987px;}
.x1e{left:314.894987px;}
.x6{left:331.995000px;}
.x1a{left:340.275000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x29{left:396.074987px;}
.x26{left:415.335000px;}
.x9{left:439.500000px;}
.x22{left:446.474987px;}
.x16{left:460.875000px;}
.x1f{left:496.905000px;}
.x27{left:549.105000px;}
.x19{left:557.925000px;}
.x1d{left:589.785000px;}
.x1b{left:622.725000px;}
.x17{left:647.925000px;}
.x28{left:672.810000px;}
.x20{left:726.629987px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.629333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.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;}
.ls6{letter-spacing:0.794880pt;}
.lsf{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.651520pt;}
.ws9{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.010667pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._1a{margin-left:-7.188267pt;}
._1b{margin-left:-5.894400pt;}
._17{margin-left:-4.727680pt;}
._4{margin-left:-3.658027pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.109333pt;}
._1{width:1.072000pt;}
._3{width:2.245333pt;}
._5{width:3.178880pt;}
._6{width:4.087680pt;}
._d{width:5.236053pt;}
._7{width:6.268160pt;}
._8{width:7.251200pt;}
._14{width:8.285227pt;}
._9{width:9.445760pt;}
._15{width:10.373547pt;}
._11{width:11.411200pt;}
._12{width:12.306347pt;}
._10{width:14.554880pt;}
._19{width:15.617280pt;}
._c{width:16.935680pt;}
._13{width:19.654400pt;}
._16{width:21.407360pt;}
._b{width:22.612267pt;}
._a{width:23.585280pt;}
._e{width:24.529493pt;}
._f{width:25.823360pt;}
._18{width:58.538240pt;}
.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;}
.y43{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y19{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y46{bottom:13.280000pt;}
.ya9{bottom:15.360000pt;}
.y4{bottom:15.392000pt;}
.y45{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y42{bottom:18.080000pt;}
.yd4{bottom:18.240000pt;}
.y18{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.160000pt;}
.y41{bottom:33.440000pt;}
.yd3{bottom:33.600000pt;}
.yd7{bottom:33.626667pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:48.160000pt;}
.y40{bottom:48.800000pt;}
.y16{bottom:55.560000pt;}
.y3f{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y3e{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y3d{bottom:94.720000pt;}
.y13{bottom:95.080000pt;}
.y91{bottom:96.512000pt;}
.y7{bottom:98.906667pt;}
.y54{bottom:105.952000pt;}
.yf2{bottom:106.112000pt;}
.y3c{bottom:110.080000pt;}
.y12{bottom:112.040000pt;}
.ycd{bottom:112.672000pt;}
.y90{bottom:115.392000pt;}
.y53{bottom:121.312000pt;}
.yea{bottom:122.752000pt;}
.y3b{bottom:125.440000pt;}
.ycc{bottom:128.032000pt;}
.y8f{bottom:130.752000pt;}
.y2b{bottom:132.960000pt;}
.y11{bottom:134.920000pt;}
.y52{bottom:136.666667pt;}
.ye9{bottom:137.946667pt;}
.y3a{bottom:140.800000pt;}
.ycb{bottom:143.386667pt;}
.y8e{bottom:146.106667pt;}
.y2a{bottom:146.560000pt;}
.y51{bottom:152.026667pt;}
.ye8{bottom:153.306667pt;}
.y39{bottom:156.160000pt;}
.y10{bottom:156.520000pt;}
.yca{bottom:158.746667pt;}
.y8d{bottom:161.306667pt;}
.y29{bottom:162.240000pt;}
.y50{bottom:167.386667pt;}
.ye7{bottom:168.666667pt;}
.y38{bottom:171.520000pt;}
.yc9{bottom:174.106667pt;}
.y8c{bottom:176.666667pt;}
.y28{bottom:177.440000pt;}
.y4f{bottom:182.586667pt;}
.yf1{bottom:182.746667pt;}
.ye6{bottom:184.026667pt;}
.y37{bottom:186.720000pt;}
.yc8{bottom:189.306667pt;}
.y8b{bottom:192.026667pt;}
.y27{bottom:192.826667pt;}
.y4e{bottom:197.946667pt;}
.yf0{bottom:198.106667pt;}
.ye5{bottom:199.386667pt;}
.y36{bottom:202.106667pt;}
.yc7{bottom:204.666667pt;}
.y8a{bottom:207.386667pt;}
.y26{bottom:208.666667pt;}
.y4d{bottom:213.306667pt;}
.ye4{bottom:214.746667pt;}
.y35{bottom:217.466667pt;}
.yc6{bottom:217.786667pt;}
.y89{bottom:220.506667pt;}
.y25{bottom:223.546667pt;}
.y4c{bottom:228.666667pt;}
.ye3{bottom:229.946667pt;}
.y34{bottom:232.826667pt;}
.yc5{bottom:233.786667pt;}
.y88{bottom:236.506667pt;}
.y24{bottom:238.106667pt;}
.y4b{bottom:244.026667pt;}
.ye2{bottom:245.306667pt;}
.y33{bottom:248.186667pt;}
.yc4{bottom:249.786667pt;}
.y87{bottom:252.506667pt;}
.y23{bottom:253.306667pt;}
.y4a{bottom:259.226667pt;}
.yef{bottom:259.386667pt;}
.ye1{bottom:260.666667pt;}
.y32{bottom:263.546667pt;}
.yc3{bottom:265.786667pt;}
.y86{bottom:268.506667pt;}
.y22{bottom:268.666667pt;}
.y49{bottom:274.586667pt;}
.yee{bottom:274.746667pt;}
.ye0{bottom:276.026667pt;}
.y31{bottom:278.746667pt;}
.y21{bottom:284.186667pt;}
.y85{bottom:284.506667pt;}
.yc2{bottom:284.666667pt;}
.y48{bottom:289.946667pt;}
.yed{bottom:290.106667pt;}
.ydf{bottom:291.386667pt;}
.y30{bottom:294.106667pt;}
.y20{bottom:299.706667pt;}
.yc1{bottom:300.066667pt;}
.y84{bottom:300.546667pt;}
.y47{bottom:305.346667pt;}
.yde{bottom:306.786667pt;}
.y2f{bottom:309.466667pt;}
.yc0{bottom:315.426667pt;}
.y83{bottom:316.546667pt;}
.y1f{bottom:317.626667pt;}
.y44{bottom:317.826667pt;}
.yec{bottom:320.706667pt;}
.ydd{bottom:321.986667pt;}
.y2e{bottom:324.826667pt;}
.ybf{bottom:330.786667pt;}
.y82{bottom:332.546667pt;}
.yeb{bottom:336.066667pt;}
.ydc{bottom:337.346667pt;}
.y2d{bottom:340.186667pt;}
.y1e{bottom:342.106667pt;}
.y1c{bottom:343.906667pt;}
.ybe{bottom:346.146667pt;}
.ydb{bottom:350.466667pt;}
.y81{bottom:351.426667pt;}
.y2c{bottom:355.386667pt;}
.y1d{bottom:357.786667pt;}
.ybd{bottom:361.346667pt;}
.y80{bottom:366.786667pt;}
.ybc{bottom:374.466667pt;}
.y7f{bottom:382.146667pt;}
.ybb{bottom:390.466667pt;}
.yda{bottom:397.186667pt;}
.y7e{bottom:397.346667pt;}
.yba{bottom:406.466667pt;}
.y7d{bottom:412.706667pt;}
.yb9{bottom:422.466667pt;}
.y7c{bottom:428.066667pt;}
.yd9{bottom:428.546667pt;}
.yb8{bottom:438.466667pt;}
.y7b{bottom:443.426667pt;}
.yb7{bottom:454.466667pt;}
.y7a{bottom:458.786667pt;}
.yb6{bottom:473.346667pt;}
.y79{bottom:473.986667pt;}
.yd8{bottom:475.106667pt;}
.yb5{bottom:488.706667pt;}
.y78{bottom:489.346667pt;}
.yb4{bottom:504.066667pt;}
.y77{bottom:504.706667pt;}
.yd6{bottom:506.466667pt;}
.yb3{bottom:519.426667pt;}
.y76{bottom:520.066667pt;}
.yb2{bottom:534.786667pt;}
.y75{bottom:535.426667pt;}
.yb1{bottom:550.013333pt;}
.y74{bottom:550.813333pt;}
.yd5{bottom:553.213333pt;}
.yb0{bottom:563.133333pt;}
.y73{bottom:566.013333pt;}
.yaf{bottom:579.133333pt;}
.y72{bottom:581.373333pt;}
.yae{bottom:595.133333pt;}
.y71{bottom:596.733333pt;}
.yd2{bottom:599.773333pt;}
.yad{bottom:611.133333pt;}
.y70{bottom:612.093333pt;}
.yac{bottom:627.133333pt;}
.y6f{bottom:627.453333pt;}
.y6e{bottom:642.813333pt;}
.yab{bottom:643.133333pt;}
.yd1{bottom:649.373333pt;}
.y6d{bottom:658.013333pt;}
.yaa{bottom:659.133333pt;}
.yd0{bottom:664.733333pt;}
.y6c{bottom:673.373333pt;}
.ya8{bottom:675.133333pt;}
.ycf{bottom:680.093333pt;}
.y6b{bottom:688.733333pt;}
.ya7{bottom:691.133333pt;}
.yce{bottom:692.413333pt;}
.y6a{bottom:704.093333pt;}
.ya6{bottom:707.133333pt;}
.y1a{bottom:711.773333pt;}
.y69{bottom:719.453333pt;}
.ya5{bottom:726.013333pt;}
.y68{bottom:734.653333pt;}
.yf{bottom:738.013333pt;}
.ya4{bottom:741.373333pt;}
.y67{bottom:750.013333pt;}
.ya3{bottom:756.733333pt;}
.y66{bottom:765.373333pt;}
.ya2{bottom:772.093333pt;}
.y65{bottom:780.773333pt;}
.ya1{bottom:787.493333pt;}
.y64{bottom:796.133333pt;}
.ya0{bottom:802.693333pt;}
.y63{bottom:811.493333pt;}
.y9f{bottom:818.053333pt;}
.y62{bottom:826.693333pt;}
.y9e{bottom:833.413333pt;}
.y61{bottom:842.053333pt;}
.y9d{bottom:846.533333pt;}
.y60{bottom:857.413333pt;}
.y9c{bottom:862.533333pt;}
.y5f{bottom:872.773333pt;}
.y9b{bottom:878.533333pt;}
.y5e{bottom:888.133333pt;}
.y9a{bottom:894.533333pt;}
.y5d{bottom:903.493333pt;}
.yd{bottom:907.973333pt;}
.y99{bottom:910.533333pt;}
.y5c{bottom:918.693333pt;}
.y98{bottom:926.533333pt;}
.y6{bottom:930.533333pt;}
.y5b{bottom:934.053333pt;}
.y97{bottom:942.533333pt;}
.y5a{bottom:949.413333pt;}
.y96{bottom:958.533333pt;}
.y59{bottom:964.773333pt;}
.y95{bottom:974.533333pt;}
.y58{bottom:980.133333pt;}
.y94{bottom:990.533333pt;}
.y57{bottom:995.493333pt;}
.y93{bottom:1006.533333pt;}
.y56{bottom:1010.693333pt;}
.y92{bottom:1022.560000pt;}
.y55{bottom:1026.080000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.240000pt;}
.h1e{height:26.080000pt;}
.h13{height:26.240000pt;}
.h12{height:28.536562pt;}
.h2{height:29.312000pt;}
.h27{height:30.560000pt;}
.h26{height:30.720000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h28{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:41.672500pt;}
.h16{height:42.649687pt;}
.h1f{height:42.691250pt;}
.h20{height:42.797917pt;}
.h1a{height:43.782500pt;}
.h19{height:44.215312pt;}
.h24{height:45.920000pt;}
.h23{height:46.080000pt;}
.h25{height:46.112000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.946667pt;}
.h15{height:367.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w19{width:77.312000pt;}
.w1a{width:107.840000pt;}
.w1c{width:109.312000pt;}
.w18{width:109.472000pt;}
.w1b{width:118.272000pt;}
.w1d{width:123.200000pt;}
.w5{width:135.066667pt;}
.wb{width:144.800000pt;}
.wd{width:145.306667pt;}
.wc{width:165.626667pt;}
.w13{width:167.706667pt;}
.wa{width:190.946667pt;}
.w15{width:196.986667pt;}
.w8{width:198.626667pt;}
.wf{width:225.306667pt;}
.w11{width:229.186667pt;}
.w12{width:250.426667pt;}
.w17{width:279.546667pt;}
.w16{width:368.413333pt;}
.we{width:422.653333pt;}
.w14{width:450.973333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w10{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:14.432000pt;}
.xe{left:19.072000pt;}
.xf{left:27.552000pt;}
.xc{left:38.912000pt;}
.x10{left:64.506667pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x2a{left:96.031988pt;}
.x24{left:182.746667pt;}
.xd{left:187.106667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x14{left:226.106655pt;}
.x21{left:239.866655pt;}
.x8{left:241.986667pt;}
.x18{left:257.506655pt;}
.x25{left:260.706667pt;}
.x15{left:264.226667pt;}
.x23{left:267.106655pt;}
.x12{left:270.626667pt;}
.x1c{left:271.746655pt;}
.x1e{left:279.906655pt;}
.x6{left:295.106667pt;}
.x1a{left:302.466667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x29{left:352.066655pt;}
.x26{left:369.186667pt;}
.x9{left:390.666667pt;}
.x22{left:396.866655pt;}
.x16{left:409.666667pt;}
.x1f{left:441.693333pt;}
.x27{left:488.093333pt;}
.x19{left:495.933333pt;}
.x1d{left:524.253333pt;}
.x1b{left:553.533333pt;}
.x17{left:575.933333pt;}
.x28{left:598.053333pt;}
.x20{left:645.893322pt;}
.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; }
  