
    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_6be27e00270043b67eb24163.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_349ce6602a78498e56bf6d42.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_760760cf9b71ff92d31e269e.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_9fac2d5065c2ef9b5624e57f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_10caf48a75bff7c42d4cd729.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.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_65bc58f3aee046e5915889b4.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_96627e37fc641b04c6b4332d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_b84c5002b16b547a3dbbca69.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5387ebb550853c95cde22efe.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_921c8b5c21482c1c7fb9204f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c176b213855b75a3135057b3.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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;}
.lsc{letter-spacing:-4.680000px;}
.lsd{letter-spacing:-3.960000px;}
.ls12{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.127200px;}
.lsa{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.132600px;}
.ls15{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lsf{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.544320px;}
.ls0{letter-spacing:10.974240px;}
.ls6{letter-spacing:14.940000px;}
.ls17{letter-spacing:16.506720px;}
.ls16{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:-54.036000px;}
.wse{word-spacing:-34.063200px;}
.ws4{word-spacing:-16.626360px;}
.ws5{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws1{word-spacing:-12.186000px;}
.wsa{word-spacing:-10.980000px;}
.ws9{word-spacing:-10.260000px;}
.ws6{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._17{margin-left:-7.788240px;}
._16{margin-left:-6.454080px;}
._1c{margin-left:-5.047680px;}
._f{margin-left:-3.974640px;}
._5{margin-left:-2.840880px;}
._1{margin-left:-1.286880px;}
._3{width:1.317840px;}
._4{width:3.005760px;}
._c{width:4.794480px;}
._6{width:5.841600px;}
._14{width:7.135680px;}
._11{width:8.721840px;}
._2{width:9.898080px;}
._0{width:11.055600px;}
._10{width:12.187920px;}
._a{width:13.622160px;}
._d{width:16.374240px;}
._e{width:17.538720px;}
._15{width:18.648480px;}
._7{width:19.735920px;}
._8{width:22.167840px;}
._9{width:23.312640px;}
._b{width:25.448400px;}
._12{width:27.964560px;}
._13{width:29.196480px;}
._19{width:30.238560px;}
._18{width:31.971600px;}
._1b{width:33.525360px;}
._1a{width:34.720560px;}
._1e{width:45.430080px;}
._1d{width:46.971360px;}
.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(68,84,106);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y16{bottom:3.600000px;}
.ya9{bottom:3.780000px;}
.y97{bottom:3.960000px;}
.y9a{bottom:5.040000px;}
.y95{bottom:5.220000px;}
.yb0{bottom:5.580000px;}
.yae{bottom:5.760000px;}
.yaa{bottom:6.480000px;}
.yb2{bottom:7.020000px;}
.ybd{bottom:9.180000px;}
.yc2{bottom:9.360000px;}
.yc{bottom:9.540000px;}
.yb7{bottom:10.080000px;}
.yc5{bottom:10.110000px;}
.ybb{bottom:10.260000px;}
.ycc{bottom:11.160000px;}
.y18{bottom:12.420000px;}
.y4a{bottom:13.320000px;}
.ya{bottom:13.860000px;}
.y98{bottom:18.000000px;}
.y9e{bottom:18.030000px;}
.ya2{bottom:19.080000px;}
.ya7{bottom:19.260000px;}
.y45{bottom:20.340000px;}
.y4c{bottom:21.240000px;}
.ybe{bottom:23.220000px;}
.yc3{bottom:23.400000px;}
.y15{bottom:23.805000px;}
.yb8{bottom:24.120000px;}
.y3{bottom:26.640000px;}
.y49{bottom:27.900000px;}
.y9{bottom:30.240000px;}
.y44{bottom:37.620000px;}
.y4b{bottom:39.600000px;}
.y14{bottom:40.365000px;}
.y48{bottom:42.660000px;}
.y8{bottom:46.620000px;}
.y2{bottom:47.700000px;}
.y43{bottom:54.900000px;}
.y13{bottom:56.925000px;}
.y1{bottom:66.060000px;}
.y12{bottom:69.885000px;}
.y42{bottom:72.180000px;}
.y7{bottom:73.440000px;}
.y11{bottom:87.525000px;}
.y41{bottom:89.460000px;}
.y6{bottom:93.090000px;}
.yd2{bottom:99.576000px;}
.yc0{bottom:102.816000px;}
.y51{bottom:104.256000px;}
.y40{bottom:106.785000px;}
.y10{bottom:107.325000px;}
.yee{bottom:108.396000px;}
.y5{bottom:111.270000px;}
.y50{bottom:121.536000px;}
.y3f{bottom:123.885000px;}
.yed{bottom:125.676000px;}
.ybf{bottom:127.656000px;}
.y89{bottom:130.896000px;}
.yf{bottom:133.065000px;}
.yd1{bottom:137.556000px;}
.y4f{bottom:138.816000px;}
.y3e{bottom:141.165000px;}
.yec{bottom:142.956000px;}
.y88{bottom:148.176000px;}
.ybc{bottom:152.670000px;}
.y4e{bottom:156.090000px;}
.ye{bottom:157.365000px;}
.y3d{bottom:158.445000px;}
.yeb{bottom:160.230000px;}
.y87{bottom:165.450000px;}
.y4d{bottom:174.090000px;}
.y3c{bottom:175.725000px;}
.yba{bottom:176.610000px;}
.yea{bottom:177.510000px;}
.y86{bottom:182.730000px;}
.y47{bottom:188.310000px;}
.y3b{bottom:193.005000px;}
.ye9{bottom:194.610000px;}
.y85{bottom:200.010000px;}
.yb9{bottom:201.630000px;}
.y3a{bottom:210.285000px;}
.ye8{bottom:211.890000px;}
.y84{bottom:217.110000px;}
.yb6{bottom:226.470000px;}
.y39{bottom:227.385000px;}
.ye7{bottom:229.170000px;}
.y83{bottom:234.390000px;}
.y19{bottom:242.310000px;}
.y38{bottom:244.665000px;}
.ye6{bottom:246.450000px;}
.yb5{bottom:251.310000px;}
.y37{bottom:261.945000px;}
.y82{bottom:263.550000px;}
.ye5{bottom:263.730000px;}
.yb4{bottom:272.550000px;}
.y36{bottom:279.225000px;}
.y81{bottom:280.830000px;}
.yb3{bottom:291.090000px;}
.y35{bottom:296.505000px;}
.y80{bottom:298.110000px;}
.yb1{bottom:307.470000px;}
.y34{bottom:313.785000px;}
.y7f{bottom:315.390000px;}
.yaf{bottom:329.250000px;}
.y33{bottom:330.885000px;}
.y7e{bottom:332.670000px;}
.ye4{bottom:344.595000px;}
.y32{bottom:348.165000px;}
.yad{bottom:349.635000px;}
.y7d{bottom:361.875000px;}
.y31{bottom:365.475000px;}
.yac{bottom:373.395000px;}
.y7c{bottom:379.155000px;}
.y30{bottom:382.755000px;}
.yab{bottom:391.935000px;}
.y24{bottom:393.735000px;}
.y7b{bottom:396.435000px;}
.y2f{bottom:400.035000px;}
.y23{bottom:408.315000px;}
.y7a{bottom:413.715000px;}
.y2e{bottom:417.135000px;}
.y22{bottom:425.415000px;}
.ya8{bottom:429.555000px;}
.y79{bottom:430.995000px;}
.y2d{bottom:434.415000px;}
.y21{bottom:442.695000px;}
.ya6{bottom:448.095000px;}
.y78{bottom:448.275000px;}
.y2c{bottom:451.695000px;}
.y20{bottom:459.975000px;}
.y77{bottom:465.375000px;}
.ya5{bottom:468.075000px;}
.y2b{bottom:468.975000px;}
.y1f{bottom:477.255000px;}
.y76{bottom:482.655000px;}
.y2a{bottom:486.255000px;}
.ya4{bottom:488.055000px;}
.y1e{bottom:495.075000px;}
.y75{bottom:499.935000px;}
.y29{bottom:503.535000px;}
.ya3{bottom:508.035000px;}
.yd0{bottom:508.755000px;}
.y1d{bottom:512.355000px;}
.y74{bottom:517.215000px;}
.y28{bottom:520.635000px;}
.ya1{bottom:526.755000px;}
.ycf{bottom:527.655000px;}
.y1c{bottom:529.995000px;}
.y73{bottom:534.495000px;}
.y27{bottom:537.915000px;}
.ya0{bottom:546.555000px;}
.y72{bottom:551.775000px;}
.y26{bottom:555.195000px;}
.y1b{bottom:557.355000px;}
.ye3{bottom:563.655000px;}
.yce{bottom:565.815000px;}
.y9f{bottom:566.535000px;}
.y71{bottom:568.875000px;}
.y25{bottom:572.475000px;}
.y1a{bottom:575.175000px;}
.ye2{bottom:580.935000px;}
.y9d{bottom:586.515000px;}
.y70{bottom:598.215000px;}
.y102{bottom:599.295000px;}
.y9c{bottom:605.265000px;}
.y6f{bottom:615.525000px;}
.y101{bottom:616.965000px;}
.y9b{bottom:625.245000px;}
.y6e{bottom:632.625000px;}
.y100{bottom:634.245000px;}
.ye1{bottom:644.685000px;}
.y99{bottom:645.225000px;}
.y6d{bottom:649.905000px;}
.yff{bottom:651.525000px;}
.ye0{bottom:661.965000px;}
.y96{bottom:665.025000px;}
.y6c{bottom:667.185000px;}
.yfe{bottom:668.625000px;}
.ydf{bottom:679.245000px;}
.y94{bottom:683.745000px;}
.yfd{bottom:685.905000px;}
.y6b{bottom:696.345000px;}
.yde{bottom:696.525000px;}
.yfc{bottom:703.185000px;}
.y93{bottom:706.965000px;}
.y6a{bottom:713.625000px;}
.yfb{bottom:720.465000px;}
.y69{bottom:730.905000px;}
.y92{bottom:736.125000px;}
.yfa{bottom:737.745000px;}
.y68{bottom:748.185000px;}
.y91{bottom:753.405000px;}
.yf9{bottom:755.025000px;}
.ydd{bottom:760.245000px;}
.y67{bottom:765.465000px;}
.y90{bottom:770.685000px;}
.yf8{bottom:772.125000px;}
.ydc{bottom:777.525000px;}
.y66{bottom:782.745000px;}
.yf7{bottom:789.405000px;}
.ydb{bottom:794.625000px;}
.y8f{bottom:799.845000px;}
.yf6{bottom:806.685000px;}
.y65{bottom:811.905000px;}
.y8e{bottom:817.125000px;}
.yf5{bottom:823.965000px;}
.y17{bottom:828.825000px;}
.y64{bottom:829.185000px;}
.y8d{bottom:834.405000px;}
.yf4{bottom:841.245000px;}
.y63{bottom:846.465000px;}
.yd{bottom:858.345000px;}
.yf3{bottom:858.525000px;}
.y62{bottom:863.745000px;}
.yda{bottom:875.670000px;}
.y61{bottom:881.070000px;}
.yd9{bottom:892.950000px;}
.y60{bottom:898.170000px;}
.yd8{bottom:910.230000px;}
.y5f{bottom:927.510000px;}
.y5e{bottom:944.790000px;}
.yd7{bottom:956.670000px;}
.y5d{bottom:962.070000px;}
.ycd{bottom:963.690000px;}
.yd6{bottom:973.950000px;}
.y5c{bottom:979.170000px;}
.ycb{bottom:980.070000px;}
.yd5{bottom:991.230000px;}
.y5b{bottom:996.450000px;}
.yca{bottom:1005.810000px;}
.yd4{bottom:1008.510000px;}
.y5a{bottom:1013.730000px;}
.yd3{bottom:1025.790000px;}
.yc9{bottom:1029.930000px;}
.yb{bottom:1030.830000px;}
.y8c{bottom:1031.010000px;}
.y59{bottom:1042.890000px;}
.y8b{bottom:1048.290000px;}
.yc8{bottom:1054.950000px;}
.y4{bottom:1056.210000px;}
.y58{bottom:1060.170000px;}
.y8a{bottom:1065.390000px;}
.y57{bottom:1077.450000px;}
.yc7{bottom:1079.790000px;}
.yf2{bottom:1082.670000px;}
.y56{bottom:1094.730000px;}
.yf1{bottom:1099.950000px;}
.yc6{bottom:1103.910000px;}
.y55{bottom:1112.010000px;}
.yf0{bottom:1117.230000px;}
.yc4{bottom:1128.750000px;}
.y54{bottom:1129.290000px;}
.yef{bottom:1134.510000px;}
.y53{bottom:1146.420000px;}
.yc1{bottom:1153.620000px;}
.y52{bottom:1163.700000px;}
.h26{height:17.280000px;}
.h20{height:17.820000px;}
.h1d{height:18.000000px;}
.h1f{height:18.036000px;}
.h1e{height:19.080000px;}
.h1c{height:19.260000px;}
.h24{height:19.656000px;}
.h23{height:19.800000px;}
.h21{height:20.340000px;}
.h25{height:21.060000px;}
.h29{height:23.220000px;}
.h2a{height:23.400000px;}
.h27{height:24.120000px;}
.h2b{height:24.156000px;}
.h28{height:24.300000px;}
.h8{height:25.020000px;}
.hc{height:28.968750px;}
.he{height:29.520000px;}
.h5{height:36.180000px;}
.h19{height:36.462656px;}
.h15{height:38.818125px;}
.hd{height:40.816406px;}
.h17{height:41.726953px;}
.h16{height:42.164648px;}
.h13{height:42.281367px;}
.h2c{height:43.506914px;}
.ha{height:44.002969px;}
.h7{height:44.820000px;}
.h1a{height:45.170156px;}
.h12{height:45.770625px;}
.h11{height:47.980898px;}
.h1b{height:48.088125px;}
.h6{height:54.000000px;}
.h18{height:58.819922px;}
.h14{height:59.439023px;}
.h2{height:61.189805px;}
.hb{height:63.180000px;}
.h22{height:65.884219px;}
.h3{height:71.613281px;}
.hf{height:73.722656px;}
.h4{height:121.536000px;}
.h9{height:172.470000px;}
.h10{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:87.300000px;}
.w11{width:154.080000px;}
.w3{width:155.370000px;}
.wb{width:171.390000px;}
.w10{width:205.455000px;}
.w6{width:220.935000px;}
.w9{width:221.970000px;}
.wa{width:233.850000px;}
.wc{width:239.295000px;}
.wd{width:246.450000px;}
.w8{width:289.155000px;}
.wf{width:385.635000px;}
.w7{width:526.395000px;}
.w4{width:591.945000px;}
.w5{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x12{left:12.600000px;}
.xb{left:39.096000px;}
.x2{left:72.900000px;}
.x1{left:80.999987px;}
.x3{left:98.130000px;}
.x1e{left:108.035987px;}
.xc{left:120.270000px;}
.x1f{left:135.035987px;}
.xd{left:181.650000px;}
.x10{left:215.175000px;}
.x4{left:228.270000px;}
.xf{left:231.195000px;}
.x13{left:238.169987px;}
.x1c{left:243.749987px;}
.x16{left:245.370000px;}
.x15{left:257.249987px;}
.xe{left:270.075000px;}
.x8{left:285.015000px;}
.x11{left:293.835000px;}
.x6{left:344.775000px;}
.x7{left:364.035000px;}
.xa{left:373.575000px;}
.x9{left:452.280000px;}
.x19{left:459.615000px;}
.x17{left:485.385000px;}
.x14{left:586.005000px;}
.x1a{left:665.790000px;}
.x1d{left:676.949987px;}
.x1b{left:728.249987px;}
.x18{left:732.570000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-4.160000pt;}
.lsd{letter-spacing:-3.520000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.113067pt;}
.lsa{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.117867pt;}
.ls15{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lsf{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.483840pt;}
.ls0{letter-spacing:9.754880pt;}
.ls6{letter-spacing:13.280000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.ws2{word-spacing:-48.032000pt;}
.wse{word-spacing:-30.278400pt;}
.ws4{word-spacing:-14.778987pt;}
.ws5{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1{word-spacing:-10.832000pt;}
.wsa{word-spacing:-9.760000pt;}
.ws9{word-spacing:-9.120000pt;}
.ws6{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._17{margin-left:-6.922880pt;}
._16{margin-left:-5.736960pt;}
._1c{margin-left:-4.486827pt;}
._f{margin-left:-3.533013pt;}
._5{margin-left:-2.525227pt;}
._1{margin-left:-1.143893pt;}
._3{width:1.171413pt;}
._4{width:2.671787pt;}
._c{width:4.261760pt;}
._6{width:5.192533pt;}
._14{width:6.342827pt;}
._11{width:7.752747pt;}
._2{width:8.798293pt;}
._0{width:9.827200pt;}
._10{width:10.833707pt;}
._a{width:12.108587pt;}
._d{width:14.554880pt;}
._e{width:15.589973pt;}
._15{width:16.576427pt;}
._7{width:17.543040pt;}
._8{width:19.704747pt;}
._9{width:20.722347pt;}
._b{width:22.620800pt;}
._12{width:24.857387pt;}
._13{width:25.952427pt;}
._19{width:26.878720pt;}
._18{width:28.419200pt;}
._1b{width:29.800320pt;}
._1a{width:30.862720pt;}
._1e{width:40.382293pt;}
._1d{width:41.752320pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y16{bottom:3.200000pt;}
.ya9{bottom:3.360000pt;}
.y97{bottom:3.520000pt;}
.y9a{bottom:4.480000pt;}
.y95{bottom:4.640000pt;}
.yb0{bottom:4.960000pt;}
.yae{bottom:5.120000pt;}
.yaa{bottom:5.760000pt;}
.yb2{bottom:6.240000pt;}
.ybd{bottom:8.160000pt;}
.yc2{bottom:8.320000pt;}
.yc{bottom:8.480000pt;}
.yb7{bottom:8.960000pt;}
.yc5{bottom:8.986667pt;}
.ybb{bottom:9.120000pt;}
.ycc{bottom:9.920000pt;}
.y18{bottom:11.040000pt;}
.y4a{bottom:11.840000pt;}
.ya{bottom:12.320000pt;}
.y98{bottom:16.000000pt;}
.y9e{bottom:16.026667pt;}
.ya2{bottom:16.960000pt;}
.ya7{bottom:17.120000pt;}
.y45{bottom:18.080000pt;}
.y4c{bottom:18.880000pt;}
.ybe{bottom:20.640000pt;}
.yc3{bottom:20.800000pt;}
.y15{bottom:21.160000pt;}
.yb8{bottom:21.440000pt;}
.y3{bottom:23.680000pt;}
.y49{bottom:24.800000pt;}
.y9{bottom:26.880000pt;}
.y44{bottom:33.440000pt;}
.y4b{bottom:35.200000pt;}
.y14{bottom:35.880000pt;}
.y48{bottom:37.920000pt;}
.y8{bottom:41.440000pt;}
.y2{bottom:42.400000pt;}
.y43{bottom:48.800000pt;}
.y13{bottom:50.600000pt;}
.y1{bottom:58.720000pt;}
.y12{bottom:62.120000pt;}
.y42{bottom:64.160000pt;}
.y7{bottom:65.280000pt;}
.y11{bottom:77.800000pt;}
.y41{bottom:79.520000pt;}
.y6{bottom:82.746667pt;}
.yd2{bottom:88.512000pt;}
.yc0{bottom:91.392000pt;}
.y51{bottom:92.672000pt;}
.y40{bottom:94.920000pt;}
.y10{bottom:95.400000pt;}
.yee{bottom:96.352000pt;}
.y5{bottom:98.906667pt;}
.y50{bottom:108.032000pt;}
.y3f{bottom:110.120000pt;}
.yed{bottom:111.712000pt;}
.ybf{bottom:113.472000pt;}
.y89{bottom:116.352000pt;}
.yf{bottom:118.280000pt;}
.yd1{bottom:122.272000pt;}
.y4f{bottom:123.392000pt;}
.y3e{bottom:125.480000pt;}
.yec{bottom:127.072000pt;}
.y88{bottom:131.712000pt;}
.ybc{bottom:135.706667pt;}
.y4e{bottom:138.746667pt;}
.ye{bottom:139.880000pt;}
.y3d{bottom:140.840000pt;}
.yeb{bottom:142.426667pt;}
.y87{bottom:147.066667pt;}
.y4d{bottom:154.746667pt;}
.y3c{bottom:156.200000pt;}
.yba{bottom:156.986667pt;}
.yea{bottom:157.786667pt;}
.y86{bottom:162.426667pt;}
.y47{bottom:167.386667pt;}
.y3b{bottom:171.560000pt;}
.ye9{bottom:172.986667pt;}
.y85{bottom:177.786667pt;}
.yb9{bottom:179.226667pt;}
.y3a{bottom:186.920000pt;}
.ye8{bottom:188.346667pt;}
.y84{bottom:192.986667pt;}
.yb6{bottom:201.306667pt;}
.y39{bottom:202.120000pt;}
.ye7{bottom:203.706667pt;}
.y83{bottom:208.346667pt;}
.y19{bottom:215.386667pt;}
.y38{bottom:217.480000pt;}
.ye6{bottom:219.066667pt;}
.yb5{bottom:223.386667pt;}
.y37{bottom:232.840000pt;}
.y82{bottom:234.266667pt;}
.ye5{bottom:234.426667pt;}
.yb4{bottom:242.266667pt;}
.y36{bottom:248.200000pt;}
.y81{bottom:249.626667pt;}
.yb3{bottom:258.746667pt;}
.y35{bottom:263.560000pt;}
.y80{bottom:264.986667pt;}
.yb1{bottom:273.306667pt;}
.y34{bottom:278.920000pt;}
.y7f{bottom:280.346667pt;}
.yaf{bottom:292.666667pt;}
.y33{bottom:294.120000pt;}
.y7e{bottom:295.706667pt;}
.ye4{bottom:306.306667pt;}
.y32{bottom:309.480000pt;}
.yad{bottom:310.786667pt;}
.y7d{bottom:321.666667pt;}
.y31{bottom:324.866667pt;}
.yac{bottom:331.906667pt;}
.y7c{bottom:337.026667pt;}
.y30{bottom:340.226667pt;}
.yab{bottom:348.386667pt;}
.y24{bottom:349.986667pt;}
.y7b{bottom:352.386667pt;}
.y2f{bottom:355.586667pt;}
.y23{bottom:362.946667pt;}
.y7a{bottom:367.746667pt;}
.y2e{bottom:370.786667pt;}
.y22{bottom:378.146667pt;}
.ya8{bottom:381.826667pt;}
.y79{bottom:383.106667pt;}
.y2d{bottom:386.146667pt;}
.y21{bottom:393.506667pt;}
.ya6{bottom:398.306667pt;}
.y78{bottom:398.466667pt;}
.y2c{bottom:401.506667pt;}
.y20{bottom:408.866667pt;}
.y77{bottom:413.666667pt;}
.ya5{bottom:416.066667pt;}
.y2b{bottom:416.866667pt;}
.y1f{bottom:424.226667pt;}
.y76{bottom:429.026667pt;}
.y2a{bottom:432.226667pt;}
.ya4{bottom:433.826667pt;}
.y1e{bottom:440.066667pt;}
.y75{bottom:444.386667pt;}
.y29{bottom:447.586667pt;}
.ya3{bottom:451.586667pt;}
.yd0{bottom:452.226667pt;}
.y1d{bottom:455.426667pt;}
.y74{bottom:459.746667pt;}
.y28{bottom:462.786667pt;}
.ya1{bottom:468.226667pt;}
.ycf{bottom:469.026667pt;}
.y1c{bottom:471.106667pt;}
.y73{bottom:475.106667pt;}
.y27{bottom:478.146667pt;}
.ya0{bottom:485.826667pt;}
.y72{bottom:490.466667pt;}
.y26{bottom:493.506667pt;}
.y1b{bottom:495.426667pt;}
.ye3{bottom:501.026667pt;}
.yce{bottom:502.946667pt;}
.y9f{bottom:503.586667pt;}
.y71{bottom:505.666667pt;}
.y25{bottom:508.866667pt;}
.y1a{bottom:511.266667pt;}
.ye2{bottom:516.386667pt;}
.y9d{bottom:521.346667pt;}
.y70{bottom:531.746667pt;}
.y102{bottom:532.706667pt;}
.y9c{bottom:538.013333pt;}
.y6f{bottom:547.133333pt;}
.y101{bottom:548.413333pt;}
.y9b{bottom:555.773333pt;}
.y6e{bottom:562.333333pt;}
.y100{bottom:563.773333pt;}
.ye1{bottom:573.053333pt;}
.y99{bottom:573.533333pt;}
.y6d{bottom:577.693333pt;}
.yff{bottom:579.133333pt;}
.ye0{bottom:588.413333pt;}
.y96{bottom:591.133333pt;}
.y6c{bottom:593.053333pt;}
.yfe{bottom:594.333333pt;}
.ydf{bottom:603.773333pt;}
.y94{bottom:607.773333pt;}
.yfd{bottom:609.693333pt;}
.y6b{bottom:618.973333pt;}
.yde{bottom:619.133333pt;}
.yfc{bottom:625.053333pt;}
.y93{bottom:628.413333pt;}
.y6a{bottom:634.333333pt;}
.yfb{bottom:640.413333pt;}
.y69{bottom:649.693333pt;}
.y92{bottom:654.333333pt;}
.yfa{bottom:655.773333pt;}
.y68{bottom:665.053333pt;}
.y91{bottom:669.693333pt;}
.yf9{bottom:671.133333pt;}
.ydd{bottom:675.773333pt;}
.y67{bottom:680.413333pt;}
.y90{bottom:685.053333pt;}
.yf8{bottom:686.333333pt;}
.ydc{bottom:691.133333pt;}
.y66{bottom:695.773333pt;}
.yf7{bottom:701.693333pt;}
.ydb{bottom:706.333333pt;}
.y8f{bottom:710.973333pt;}
.yf6{bottom:717.053333pt;}
.y65{bottom:721.693333pt;}
.y8e{bottom:726.333333pt;}
.yf5{bottom:732.413333pt;}
.y17{bottom:736.733333pt;}
.y64{bottom:737.053333pt;}
.y8d{bottom:741.693333pt;}
.yf4{bottom:747.773333pt;}
.y63{bottom:752.413333pt;}
.yd{bottom:762.973333pt;}
.yf3{bottom:763.133333pt;}
.y62{bottom:767.773333pt;}
.yda{bottom:778.373333pt;}
.y61{bottom:783.173333pt;}
.yd9{bottom:793.733333pt;}
.y60{bottom:798.373333pt;}
.yd8{bottom:809.093333pt;}
.y5f{bottom:824.453333pt;}
.y5e{bottom:839.813333pt;}
.yd7{bottom:850.373333pt;}
.y5d{bottom:855.173333pt;}
.ycd{bottom:856.613333pt;}
.yd6{bottom:865.733333pt;}
.y5c{bottom:870.373333pt;}
.ycb{bottom:871.173333pt;}
.yd5{bottom:881.093333pt;}
.y5b{bottom:885.733333pt;}
.yca{bottom:894.053333pt;}
.yd4{bottom:896.453333pt;}
.y5a{bottom:901.093333pt;}
.yd3{bottom:911.813333pt;}
.yc9{bottom:915.493333pt;}
.yb{bottom:916.293333pt;}
.y8c{bottom:916.453333pt;}
.y59{bottom:927.013333pt;}
.y8b{bottom:931.813333pt;}
.yc8{bottom:937.733333pt;}
.y4{bottom:938.853333pt;}
.y58{bottom:942.373333pt;}
.y8a{bottom:947.013333pt;}
.y57{bottom:957.733333pt;}
.yc7{bottom:959.813333pt;}
.yf2{bottom:962.373333pt;}
.y56{bottom:973.093333pt;}
.yf1{bottom:977.733333pt;}
.yc6{bottom:981.253333pt;}
.y55{bottom:988.453333pt;}
.yf0{bottom:993.093333pt;}
.yc4{bottom:1003.333333pt;}
.y54{bottom:1003.813333pt;}
.yef{bottom:1008.453333pt;}
.y53{bottom:1019.040000pt;}
.yc1{bottom:1025.440000pt;}
.y52{bottom:1034.400000pt;}
.h26{height:15.360000pt;}
.h20{height:15.840000pt;}
.h1d{height:16.000000pt;}
.h1f{height:16.032000pt;}
.h1e{height:16.960000pt;}
.h1c{height:17.120000pt;}
.h24{height:17.472000pt;}
.h23{height:17.600000pt;}
.h21{height:18.080000pt;}
.h25{height:18.720000pt;}
.h29{height:20.640000pt;}
.h2a{height:20.800000pt;}
.h27{height:21.440000pt;}
.h2b{height:21.472000pt;}
.h28{height:21.600000pt;}
.h8{height:22.240000pt;}
.hc{height:25.750000pt;}
.he{height:26.240000pt;}
.h5{height:32.160000pt;}
.h19{height:32.411250pt;}
.h15{height:34.505000pt;}
.hd{height:36.281250pt;}
.h17{height:37.090625pt;}
.h16{height:37.479688pt;}
.h13{height:37.583438pt;}
.h2c{height:38.672812pt;}
.ha{height:39.113750pt;}
.h7{height:39.840000pt;}
.h1a{height:40.151250pt;}
.h12{height:40.685000pt;}
.h11{height:42.649687pt;}
.h1b{height:42.745000pt;}
.h6{height:48.000000pt;}
.h18{height:52.284375pt;}
.h14{height:52.834688pt;}
.h2{height:54.390938pt;}
.hb{height:56.160000pt;}
.h22{height:58.563750pt;}
.h3{height:63.656250pt;}
.hf{height:65.531250pt;}
.h4{height:108.032000pt;}
.h9{height:153.306667pt;}
.h10{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:77.600000pt;}
.w11{width:136.960000pt;}
.w3{width:138.106667pt;}
.wb{width:152.346667pt;}
.w10{width:182.626667pt;}
.w6{width:196.386667pt;}
.w9{width:197.306667pt;}
.wa{width:207.866667pt;}
.wc{width:212.706667pt;}
.wd{width:219.066667pt;}
.w8{width:257.026667pt;}
.wf{width:342.786667pt;}
.w7{width:467.906667pt;}
.w4{width:526.173333pt;}
.w5{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x12{left:11.200000pt;}
.xb{left:34.752000pt;}
.x2{left:64.800000pt;}
.x1{left:71.999988pt;}
.x3{left:87.226667pt;}
.x1e{left:96.031988pt;}
.xc{left:106.906667pt;}
.x1f{left:120.031988pt;}
.xd{left:161.466667pt;}
.x10{left:191.266667pt;}
.x4{left:202.906667pt;}
.xf{left:205.506667pt;}
.x13{left:211.706655pt;}
.x1c{left:216.666655pt;}
.x16{left:218.106667pt;}
.x15{left:228.666655pt;}
.xe{left:240.066667pt;}
.x8{left:253.346667pt;}
.x11{left:261.186667pt;}
.x6{left:306.466667pt;}
.x7{left:323.586667pt;}
.xa{left:332.066667pt;}
.x9{left:402.026667pt;}
.x19{left:408.546667pt;}
.x17{left:431.453333pt;}
.x14{left:520.893333pt;}
.x1a{left:591.813333pt;}
.x1d{left:601.733322pt;}
.x1b{left:647.333322pt;}
.x18{left:651.173333pt;}
}




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