
    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_641ca86c44b2a7947dda7745.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_623694c383f11696b89fe77e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_deef2eef12f9933b96dcf53d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_ed7b79b64e0ec77b6fb2c8da.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_8fd10f5e5ac9644ddd6fbb3a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ebdc1a9f36bda8d51dd80b8e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d5db20fba8b9b611d884e25.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_aed0deb7a40287ca860c871f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_28686506ed041006bd88e42a.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9d3a49f47edd24ac8001b90e.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_22451bbbd928a1e95177c0ae.woff')format("woff");}.ff11{font-family:ff11;line-height:1.063477;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160000px;}
.v3{vertical-align:14.400000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.v2{vertical-align:38.880000px;}
.ls9{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls12{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.ls1{letter-spacing:0.187200px;}
.ls10{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.414600px;}
.ls4{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.lsc{letter-spacing:1.728000px;}
.lsd{letter-spacing:2.200320px;}
.ls11{letter-spacing:2.465280px;}
.ls14{letter-spacing:12.545280px;}
.lse{letter-spacing:17.870400px;}
.lsa{letter-spacing:66.545280px;}
.lsf{letter-spacing:77.958720px;}
.ls15{letter-spacing:87.401280px;}
.ls16{letter-spacing:87.425280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-49.481280px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsc{word-spacing:-16.974600px;}
.ws9{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-2.216880px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.310240px;}
._a{width:3.475440px;}
._7{width:5.162400px;}
._6{width:6.685920px;}
._e{width:7.980240px;}
._13{width:9.015360px;}
._8{width:10.103760px;}
._9{width:11.592000px;}
._10{width:13.049280px;}
._3d{width:14.081040px;}
._4{width:15.089040px;}
._b{width:18.547200px;}
._1d{width:19.587600px;}
._29{width:21.298320px;}
._2e{width:23.028720px;}
._d{width:24.134160px;}
._c{width:25.369920px;}
._21{width:26.562240px;}
._14{width:28.537200px;}
._11{width:30.384720px;}
._34{width:32.145840px;}
._1a{width:33.716160px;}
._1b{width:35.188320px;}
._31{width:36.498240px;}
._19{width:37.955520px;}
._2a{width:39.015360px;}
._12{width:40.204080px;}
._f{width:41.863680px;}
._1c{width:43.320960px;}
._2b{width:45.417600px;}
._1e{width:46.699200px;}
._1f{width:48.238560px;}
._2f{width:50.342400px;}
._30{width:52.161840px;}
._20{width:53.323200px;}
._24{width:54.449280px;}
._23{width:55.545600px;}
._32{width:56.635200px;}
._40{width:58.502880px;}
._3a{width:59.751360px;}
._36{width:61.731360px;}
._35{width:63.162000px;}
._41{width:67.631040px;}
._26{width:68.690880px;}
._22{width:73.990080px;}
._27{width:75.579840px;}
._42{width:77.633280px;}
._2c{width:80.715600px;}
._33{width:82.270080px;}
._3f{width:84.257280px;}
._38{width:87.105600px;}
._37{width:88.262640px;}
._3c{width:91.380240px;}
._25{width:94.240080px;}
._2d{width:96.480000px;}
._28{width:113.040000px;}
._39{width:115.128000px;}
._3b{width:116.847360px;}
._17{width:152.893440px;}
._15{width:189.617520px;}
._16{width:197.647200px;}
._3{width:199.416000px;}
._3e{width:205.479360px;}
._43{width:244.889280px;}
._44{width:846.876000px;}
._18{width:862.145760px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:0.180000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y4a{bottom:2.340000px;}
.y3{bottom:3.420000px;}
.y4d{bottom:3.960000px;}
.y17{bottom:4.140000px;}
.y46{bottom:5.040000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y44{bottom:9.720000px;}
.y9f{bottom:25.920000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.yaf{bottom:34.410000px;}
.y15{bottom:47.925000px;}
.ya2{bottom:51.300000px;}
.y1{bottom:51.480000px;}
.yad{bottom:59.790000px;}
.y14{bottom:70.785000px;}
.y3f{bottom:75.240000px;}
.y13{bottom:93.285000px;}
.y5e{bottom:124.560000px;}
.y9b{bottom:124.920000px;}
.yd1{bottom:126.180000px;}
.y3a{bottom:129.780000px;}
.y5d{bottom:139.500000px;}
.y9a{bottom:149.580000px;}
.yd0{bottom:150.840000px;}
.y39{bottom:154.440000px;}
.y5c{bottom:164.160000px;}
.yac{bottom:166.680000px;}
.y99{bottom:173.880000px;}
.ycf{bottom:175.500000px;}
.y38{bottom:179.100000px;}
.y85{bottom:183.420000px;}
.yae{bottom:192.060000px;}
.y98{bottom:198.900000px;}
.yce{bottom:200.160000px;}
.y37{bottom:203.760000px;}
.y84{bottom:208.110000px;}
.y97{bottom:223.590000px;}
.ycd{bottom:224.850000px;}
.y36{bottom:228.450000px;}
.y83{bottom:232.770000px;}
.yab{bottom:242.130000px;}
.y96{bottom:248.250000px;}
.ycc{bottom:249.510000px;}
.y35{bottom:253.110000px;}
.ya9{bottom:253.290000px;}
.y82{bottom:257.430000px;}
.yaa{bottom:267.510000px;}
.y95{bottom:272.910000px;}
.ycb{bottom:274.170000px;}
.y34{bottom:277.770000px;}
.ya8{bottom:277.950000px;}
.y81{bottom:282.090000px;}
.y94{bottom:297.570000px;}
.yca{bottom:298.470000px;}
.yd5{bottom:298.830000px;}
.y33{bottom:302.430000px;}
.ya7{bottom:302.610000px;}
.y80{bottom:306.750000px;}
.y93{bottom:322.230000px;}
.yc9{bottom:323.490000px;}
.y32{bottom:327.090000px;}
.ya6{bottom:327.270000px;}
.y7f{bottom:331.410000px;}
.y92{bottom:346.890000px;}
.ya5{bottom:348.150000px;}
.y5b{bottom:349.230000px;}
.y31{bottom:351.750000px;}
.y7e{bottom:356.070000px;}
.y91{bottom:371.190000px;}
.yc8{bottom:372.810000px;}
.y58{bottom:373.890000px;}
.y30{bottom:376.410000px;}
.y7d{bottom:380.730000px;}
.y90{bottom:396.210000px;}
.yc7{bottom:397.470000px;}
.y57{bottom:398.730000px;}
.y2f{bottom:401.070000px;}
.y7c{bottom:405.390000px;}
.y8f{bottom:420.870000px;}
.yc6{bottom:422.130000px;}
.y56{bottom:423.390000px;}
.y2e{bottom:425.730000px;}
.y7b{bottom:430.050000px;}
.yd7{bottom:439.410000px;}
.y8e{bottom:445.755000px;}
.yc5{bottom:446.835000px;}
.y55{bottom:448.095000px;}
.y2d{bottom:450.435000px;}
.y7a{bottom:454.755000px;}
.yd6{bottom:459.435000px;}
.y8d{bottom:470.415000px;}
.yc4{bottom:471.135000px;}
.yd4{bottom:471.495000px;}
.y54{bottom:472.755000px;}
.y2c{bottom:475.095000px;}
.y79{bottom:479.595000px;}
.y8c{bottom:495.075000px;}
.yc3{bottom:495.795000px;}
.yd3{bottom:496.155000px;}
.y53{bottom:497.415000px;}
.y2b{bottom:499.755000px;}
.y78{bottom:504.255000px;}
.y8b{bottom:519.735000px;}
.yc2{bottom:520.815000px;}
.y52{bottom:522.075000px;}
.y2a{bottom:524.415000px;}
.y77{bottom:528.915000px;}
.y8a{bottom:544.395000px;}
.yc1{bottom:545.475000px;}
.y51{bottom:546.735000px;}
.y29{bottom:549.075000px;}
.y76{bottom:553.575000px;}
.y89{bottom:565.455000px;}
.yc0{bottom:570.135000px;}
.y50{bottom:571.035000px;}
.y5a{bottom:571.395000px;}
.y28{bottom:573.375000px;}
.y3c{bottom:573.735000px;}
.y75{bottom:578.235000px;}
.ybf{bottom:594.795000px;}
.y4f{bottom:595.695000px;}
.y59{bottom:596.055000px;}
.y27{bottom:598.035000px;}
.y3b{bottom:598.395000px;}
.ya4{bottom:600.015000px;}
.y74{bottom:602.895000px;}
.ya1{bottom:615.675000px;}
.ybe{bottom:619.635000px;}
.y4e{bottom:620.715000px;}
.y26{bottom:622.155000px;}
.y73{bottom:627.555000px;}
.y4c{bottom:635.655000px;}
.ya3{bottom:641.055000px;}
.y25{bottom:644.115000px;}
.ybd{bottom:644.295000px;}
.y72{bottom:652.215000px;}
.y49{bottom:654.555000px;}
.y24{bottom:668.415000px;}
.ybc{bottom:668.955000px;}
.y71{bottom:676.905000px;}
.ya0{bottom:682.665000px;}
.y23{bottom:690.225000px;}
.ybb{bottom:693.645000px;}
.y70{bottom:701.565000px;}
.y22{bottom:712.005000px;}
.yba{bottom:718.305000px;}
.y9e{bottom:724.245000px;}
.y6f{bottom:726.225000px;}
.y21{bottom:733.785000px;}
.yb9{bottom:742.965000px;}
.y6e{bottom:750.885000px;}
.y20{bottom:755.745000px;}
.yb8{bottom:767.625000px;}
.y6d{bottom:775.545000px;}
.y1f{bottom:777.525000px;}
.yb7{bottom:792.285000px;}
.y1e{bottom:799.305000px;}
.y88{bottom:799.845000px;}
.y6c{bottom:800.205000px;}
.yb6{bottom:816.945000px;}
.y1d{bottom:821.085000px;}
.y6b{bottom:824.865000px;}
.yb5{bottom:841.605000px;}
.y1c{bottom:843.045000px;}
.y48{bottom:846.825000px;}
.y6a{bottom:849.525000px;}
.y1b{bottom:864.465000px;}
.yb4{bottom:866.265000px;}
.y47{bottom:871.485000px;}
.y69{bottom:874.185000px;}
.y1a{bottom:883.725000px;}
.yb3{bottom:890.565000px;}
.yd2{bottom:890.925000px;}
.y18{bottom:892.365000px;}
.y45{bottom:896.145000px;}
.y68{bottom:898.845000px;}
.y12{bottom:899.565000px;}
.yb2{bottom:915.630000px;}
.y67{bottom:923.550000px;}
.yb1{bottom:940.290000px;}
.y66{bottom:948.210000px;}
.yb0{bottom:960.990000px;}
.y65{bottom:972.870000px;}
.y9d{bottom:997.170000px;}
.y64{bottom:997.530000px;}
.y10{bottom:1018.590000px;}
.y9c{bottom:1021.830000px;}
.y63{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y62{bottom:1046.850000px;}
.y61{bottom:1071.510000px;}
.y43{bottom:1072.950000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y60{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y42{bottom:1120.110000px;}
.y87{bottom:1120.470000px;}
.y5f{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y86{bottom:1145.130000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h23{height:18.885000px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h1f{height:24.645000px;}
.h26{height:24.658500px;}
.h21{height:24.660000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.h29{height:40.860000px;}
.h2b{height:40.890000px;}
.h2d{height:49.356000px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.h2e{height:59.383125px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1a{height:65.010937px;}
.h1e{height:65.884219px;}
.h2a{height:66.270000px;}
.h1b{height:66.757500px;}
.h14{height:67.803750px;}
.h24{height:68.084282px;}
.h2f{height:71.225156px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h2c{height:74.736000px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h27{height:79.535391px;}
.h28{height:98.130937px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h25{height:175.350000px;}
.h20{height:176.790000px;}
.h22{height:192.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:45.396000px;}
.w1c{width:52.380000px;}
.w10{width:52.401000px;}
.w14{width:60.321000px;}
.w1b{width:63.000000px;}
.w15{width:65.685000px;}
.w20{width:65.880000px;}
.w11{width:72.720000px;}
.wc{width:82.605000px;}
.w1d{width:84.276000px;}
.w17{width:92.376000px;}
.w12{width:95.976000px;}
.w1e{width:99.180000px;}
.w13{width:105.465000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w1a{width:111.996000px;}
.w18{width:116.100000px;}
.wd{width:125.841000px;}
.wf{width:126.921000px;}
.w19{width:184.170000px;}
.we{width:202.170000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:343.860000px;}
.w8{width:349.444500px;}
.w16{width:507.165000px;}
.wb{width:539.910000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.wa{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x1f{left:29.689500px;}
.xb{left:34.185000px;}
.x13{left:43.363500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x17{left:72.883500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x37{left:91.485000px;}
.xd{left:95.925000px;}
.x1e{left:99.946500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x26{left:129.636000px;}
.x3f{left:135.036000px;}
.x14{left:138.043500px;}
.x2a{left:149.563500px;}
.x25{left:151.543500px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x2e{left:176.625000px;}
.x18{left:182.368500px;}
.x36{left:192.990000px;}
.x6{left:209.010000px;}
.x19{left:214.048500px;}
.x16{left:218.008500px;}
.x15{left:239.608500px;}
.x2f{left:260.145000px;}
.x38{left:286.275000px;}
.x35{left:299.595000px;}
.x3e{left:311.835000px;}
.x32{left:313.275000px;}
.x24{left:317.550000px;}
.x22{left:330.690000px;}
.x23{left:333.388500px;}
.x12{left:335.578500px;}
.x21{left:341.158500px;}
.x3b{left:349.995000px;}
.x30{left:386.715000px;}
.x39{left:403.275000px;}
.xa{left:445.620000px;}
.x20{left:449.400000px;}
.x28{left:457.305000px;}
.x1c{left:473.505000px;}
.x2d{left:484.125000px;}
.x3c{left:488.265000px;}
.x2b{left:495.105000px;}
.x40{left:500.505000px;}
.x29{left:508.918500px;}
.x27{left:522.105000px;}
.x1d{left:527.505000px;}
.x2c{left:549.105000px;}
.x3a{left:588.165000px;}
.x31{left:589.620000px;}
.x3d{left:634.290000px;}
.x34{left:646.350000px;}
.x33{left:650.850000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920000pt;}
.v3{vertical-align:12.800000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.v2{vertical-align:34.560000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.ls1{letter-spacing:0.166400pt;}
.ls10{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.368533pt;}
.ls4{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.lsc{letter-spacing:1.536000pt;}
.lsd{letter-spacing:1.955840pt;}
.ls11{letter-spacing:2.191360pt;}
.ls14{letter-spacing:11.151360pt;}
.lse{letter-spacing:15.884800pt;}
.lsa{letter-spacing:59.151360pt;}
.lsf{letter-spacing:69.296640pt;}
.ls15{letter-spacing:77.690027pt;}
.ls16{letter-spacing:77.711360pt;}
.wsa{word-spacing:-43.983360pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsc{word-spacing:-15.088533pt;}
.ws9{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-1.970560pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.053547pt;}
._a{width:3.089280pt;}
._7{width:4.588800pt;}
._6{width:5.943040pt;}
._e{width:7.093547pt;}
._13{width:8.013653pt;}
._8{width:8.981120pt;}
._9{width:10.304000pt;}
._10{width:11.599360pt;}
._3d{width:12.516480pt;}
._4{width:13.412480pt;}
._b{width:16.486400pt;}
._1d{width:17.411200pt;}
._29{width:18.931840pt;}
._2e{width:20.469973pt;}
._d{width:21.452587pt;}
._c{width:22.551040pt;}
._21{width:23.610880pt;}
._14{width:25.366400pt;}
._11{width:27.008640pt;}
._34{width:28.574080pt;}
._1a{width:29.969920pt;}
._1b{width:31.278507pt;}
._31{width:32.442880pt;}
._19{width:33.738240pt;}
._2a{width:34.680320pt;}
._12{width:35.736960pt;}
._f{width:37.212160pt;}
._1c{width:38.507520pt;}
._2b{width:40.371200pt;}
._1e{width:41.510400pt;}
._1f{width:42.878720pt;}
._2f{width:44.748800pt;}
._30{width:46.366080pt;}
._20{width:47.398400pt;}
._24{width:48.399360pt;}
._23{width:49.373867pt;}
._32{width:50.342400pt;}
._40{width:52.002560pt;}
._3a{width:53.112320pt;}
._36{width:54.872320pt;}
._35{width:56.144000pt;}
._41{width:60.116480pt;}
._26{width:61.058560pt;}
._22{width:65.768960pt;}
._27{width:67.182080pt;}
._42{width:69.007360pt;}
._2c{width:71.747200pt;}
._33{width:73.128960pt;}
._3f{width:74.895360pt;}
._38{width:77.427200pt;}
._37{width:78.455680pt;}
._3c{width:81.226880pt;}
._25{width:83.768960pt;}
._2d{width:85.760000pt;}
._28{width:100.480000pt;}
._39{width:102.336000pt;}
._3b{width:103.864320pt;}
._17{width:135.905280pt;}
._15{width:168.548907pt;}
._16{width:175.686400pt;}
._3{width:177.258667pt;}
._3e{width:182.648320pt;}
._43{width:217.679360pt;}
._44{width:752.778667pt;}
._18{width:766.351787pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.160000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y4a{bottom:2.080000pt;}
.y3{bottom:3.040000pt;}
.y4d{bottom:3.520000pt;}
.y17{bottom:3.680000pt;}
.y46{bottom:4.480000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y44{bottom:8.640000pt;}
.y9f{bottom:23.040000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.yaf{bottom:30.586667pt;}
.y15{bottom:42.600000pt;}
.ya2{bottom:45.600000pt;}
.y1{bottom:45.760000pt;}
.yad{bottom:53.146667pt;}
.y14{bottom:62.920000pt;}
.y3f{bottom:66.880000pt;}
.y13{bottom:82.920000pt;}
.y5e{bottom:110.720000pt;}
.y9b{bottom:111.040000pt;}
.yd1{bottom:112.160000pt;}
.y3a{bottom:115.360000pt;}
.y5d{bottom:124.000000pt;}
.y9a{bottom:132.960000pt;}
.yd0{bottom:134.080000pt;}
.y39{bottom:137.280000pt;}
.y5c{bottom:145.920000pt;}
.yac{bottom:148.160000pt;}
.y99{bottom:154.560000pt;}
.ycf{bottom:156.000000pt;}
.y38{bottom:159.200000pt;}
.y85{bottom:163.040000pt;}
.yae{bottom:170.720000pt;}
.y98{bottom:176.800000pt;}
.yce{bottom:177.920000pt;}
.y37{bottom:181.120000pt;}
.y84{bottom:184.986667pt;}
.y97{bottom:198.746667pt;}
.ycd{bottom:199.866667pt;}
.y36{bottom:203.066667pt;}
.y83{bottom:206.906667pt;}
.yab{bottom:215.226667pt;}
.y96{bottom:220.666667pt;}
.ycc{bottom:221.786667pt;}
.y35{bottom:224.986667pt;}
.ya9{bottom:225.146667pt;}
.y82{bottom:228.826667pt;}
.yaa{bottom:237.786667pt;}
.y95{bottom:242.586667pt;}
.ycb{bottom:243.706667pt;}
.y34{bottom:246.906667pt;}
.ya8{bottom:247.066667pt;}
.y81{bottom:250.746667pt;}
.y94{bottom:264.506667pt;}
.yca{bottom:265.306667pt;}
.yd5{bottom:265.626667pt;}
.y33{bottom:268.826667pt;}
.ya7{bottom:268.986667pt;}
.y80{bottom:272.666667pt;}
.y93{bottom:286.426667pt;}
.yc9{bottom:287.546667pt;}
.y32{bottom:290.746667pt;}
.ya6{bottom:290.906667pt;}
.y7f{bottom:294.586667pt;}
.y92{bottom:308.346667pt;}
.ya5{bottom:309.466667pt;}
.y5b{bottom:310.426667pt;}
.y31{bottom:312.666667pt;}
.y7e{bottom:316.506667pt;}
.y91{bottom:329.946667pt;}
.yc8{bottom:331.386667pt;}
.y58{bottom:332.346667pt;}
.y30{bottom:334.586667pt;}
.y7d{bottom:338.426667pt;}
.y90{bottom:352.186667pt;}
.yc7{bottom:353.306667pt;}
.y57{bottom:354.426667pt;}
.y2f{bottom:356.506667pt;}
.y7c{bottom:360.346667pt;}
.y8f{bottom:374.106667pt;}
.yc6{bottom:375.226667pt;}
.y56{bottom:376.346667pt;}
.y2e{bottom:378.426667pt;}
.y7b{bottom:382.266667pt;}
.yd7{bottom:390.586667pt;}
.y8e{bottom:396.226667pt;}
.yc5{bottom:397.186667pt;}
.y55{bottom:398.306667pt;}
.y2d{bottom:400.386667pt;}
.y7a{bottom:404.226667pt;}
.yd6{bottom:408.386667pt;}
.y8d{bottom:418.146667pt;}
.yc4{bottom:418.786667pt;}
.yd4{bottom:419.106667pt;}
.y54{bottom:420.226667pt;}
.y2c{bottom:422.306667pt;}
.y79{bottom:426.306667pt;}
.y8c{bottom:440.066667pt;}
.yc3{bottom:440.706667pt;}
.yd3{bottom:441.026667pt;}
.y53{bottom:442.146667pt;}
.y2b{bottom:444.226667pt;}
.y78{bottom:448.226667pt;}
.y8b{bottom:461.986667pt;}
.yc2{bottom:462.946667pt;}
.y52{bottom:464.066667pt;}
.y2a{bottom:466.146667pt;}
.y77{bottom:470.146667pt;}
.y8a{bottom:483.906667pt;}
.yc1{bottom:484.866667pt;}
.y51{bottom:485.986667pt;}
.y29{bottom:488.066667pt;}
.y76{bottom:492.066667pt;}
.y89{bottom:502.626667pt;}
.yc0{bottom:506.786667pt;}
.y50{bottom:507.586667pt;}
.y5a{bottom:507.906667pt;}
.y28{bottom:509.666667pt;}
.y3c{bottom:509.986667pt;}
.y75{bottom:513.986667pt;}
.ybf{bottom:528.706667pt;}
.y4f{bottom:529.506667pt;}
.y59{bottom:529.826667pt;}
.y27{bottom:531.586667pt;}
.y3b{bottom:531.906667pt;}
.ya4{bottom:533.346667pt;}
.y74{bottom:535.906667pt;}
.ya1{bottom:547.266667pt;}
.ybe{bottom:550.786667pt;}
.y4e{bottom:551.746667pt;}
.y26{bottom:553.026667pt;}
.y73{bottom:557.826667pt;}
.y4c{bottom:565.026667pt;}
.ya3{bottom:569.826667pt;}
.y25{bottom:572.546667pt;}
.ybd{bottom:572.706667pt;}
.y72{bottom:579.746667pt;}
.y49{bottom:581.826667pt;}
.y24{bottom:594.146667pt;}
.ybc{bottom:594.626667pt;}
.y71{bottom:601.693333pt;}
.ya0{bottom:606.813333pt;}
.y23{bottom:613.533333pt;}
.ybb{bottom:616.573333pt;}
.y70{bottom:623.613333pt;}
.y22{bottom:632.893333pt;}
.yba{bottom:638.493333pt;}
.y9e{bottom:643.773333pt;}
.y6f{bottom:645.533333pt;}
.y21{bottom:652.253333pt;}
.yb9{bottom:660.413333pt;}
.y6e{bottom:667.453333pt;}
.y20{bottom:671.773333pt;}
.yb8{bottom:682.333333pt;}
.y6d{bottom:689.373333pt;}
.y1f{bottom:691.133333pt;}
.yb7{bottom:704.253333pt;}
.y1e{bottom:710.493333pt;}
.y88{bottom:710.973333pt;}
.y6c{bottom:711.293333pt;}
.yb6{bottom:726.173333pt;}
.y1d{bottom:729.853333pt;}
.y6b{bottom:733.213333pt;}
.yb5{bottom:748.093333pt;}
.y1c{bottom:749.373333pt;}
.y48{bottom:752.733333pt;}
.y6a{bottom:755.133333pt;}
.y1b{bottom:768.413333pt;}
.yb4{bottom:770.013333pt;}
.y47{bottom:774.653333pt;}
.y69{bottom:777.053333pt;}
.y1a{bottom:785.533333pt;}
.yb3{bottom:791.613333pt;}
.yd2{bottom:791.933333pt;}
.y18{bottom:793.213333pt;}
.y45{bottom:796.573333pt;}
.y68{bottom:798.973333pt;}
.y12{bottom:799.613333pt;}
.yb2{bottom:813.893333pt;}
.y67{bottom:820.933333pt;}
.yb1{bottom:835.813333pt;}
.y66{bottom:842.853333pt;}
.yb0{bottom:854.213333pt;}
.y65{bottom:864.773333pt;}
.y9d{bottom:886.373333pt;}
.y64{bottom:886.693333pt;}
.y10{bottom:905.413333pt;}
.y9c{bottom:908.293333pt;}
.y63{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y62{bottom:930.533333pt;}
.y61{bottom:952.453333pt;}
.y43{bottom:953.733333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y60{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y42{bottom:995.653333pt;}
.y87{bottom:995.973333pt;}
.y5f{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y86{bottom:1017.893333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h23{height:16.786667pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h1f{height:21.906667pt;}
.h26{height:21.918667pt;}
.h21{height:21.920000pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.h29{height:36.320000pt;}
.h2b{height:36.346667pt;}
.h2d{height:43.872000pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.h2e{height:52.785000pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h1e{height:58.563750pt;}
.h2a{height:58.906667pt;}
.h1b{height:59.340000pt;}
.h14{height:60.270000pt;}
.h24{height:60.519362pt;}
.h2f{height:63.311250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h2c{height:66.432000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h27{height:70.698125pt;}
.h28{height:87.227500pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h25{height:155.866667pt;}
.h20{height:157.146667pt;}
.h22{height:170.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:40.352000pt;}
.w1c{width:46.560000pt;}
.w10{width:46.578667pt;}
.w14{width:53.618667pt;}
.w1b{width:56.000000pt;}
.w15{width:58.386667pt;}
.w20{width:58.560000pt;}
.w11{width:64.640000pt;}
.wc{width:73.426667pt;}
.w1d{width:74.912000pt;}
.w17{width:82.112000pt;}
.w12{width:85.312000pt;}
.w1e{width:88.160000pt;}
.w13{width:93.746667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w1a{width:99.552000pt;}
.w18{width:103.200000pt;}
.wd{width:111.858667pt;}
.wf{width:112.818667pt;}
.w19{width:163.706667pt;}
.we{width:179.706667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:305.653333pt;}
.w8{width:310.617333pt;}
.w16{width:450.813333pt;}
.wb{width:479.920000pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.wa{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x1f{left:26.390667pt;}
.xb{left:30.386667pt;}
.x13{left:38.545333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x17{left:64.785333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x37{left:81.320000pt;}
.xd{left:85.266667pt;}
.x1e{left:88.841333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x26{left:115.232000pt;}
.x3f{left:120.032000pt;}
.x14{left:122.705333pt;}
.x2a{left:132.945333pt;}
.x25{left:134.705333pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x2e{left:157.000000pt;}
.x18{left:162.105333pt;}
.x36{left:171.546667pt;}
.x6{left:185.786667pt;}
.x19{left:190.265333pt;}
.x16{left:193.785333pt;}
.x15{left:212.985333pt;}
.x2f{left:231.240000pt;}
.x38{left:254.466667pt;}
.x35{left:266.306667pt;}
.x3e{left:277.186667pt;}
.x32{left:278.466667pt;}
.x24{left:282.266667pt;}
.x22{left:293.946667pt;}
.x23{left:296.345333pt;}
.x12{left:298.292000pt;}
.x21{left:303.252000pt;}
.x3b{left:311.106667pt;}
.x30{left:343.746667pt;}
.x39{left:358.466667pt;}
.xa{left:396.106667pt;}
.x20{left:399.466667pt;}
.x28{left:406.493333pt;}
.x1c{left:420.893333pt;}
.x2d{left:430.333333pt;}
.x3c{left:434.013333pt;}
.x2b{left:440.093333pt;}
.x40{left:444.893333pt;}
.x29{left:452.372000pt;}
.x27{left:464.093333pt;}
.x1d{left:468.893333pt;}
.x2c{left:488.093333pt;}
.x3a{left:522.813333pt;}
.x31{left:524.106667pt;}
.x3d{left:563.813333pt;}
.x34{left:574.533333pt;}
.x33{left:578.533333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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