
    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_e747d9f4d1b60258e01760ff.woff')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_3283edf7c98881f99bf3ce4e.woff')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_20416fff6bf22ad1bf1b7435.woff')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_2f8de1e03ad27f6372bda165.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')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_014c7e9aad8360bf67fa4078.woff')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_e28ea8b608fba66ac762a553.woff')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_5f2d09a0c585ffac71973771.woff')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_81a860d9bf1c8aca7993dc0d.woff')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_a979ad2260d1c995016e8fe6.woff')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_6db1e91f5cad69d3879ec25f.woff')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_f29c767c2805ed4ec7cb3af0.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_17ccb771de3a0dc7fce513d1.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8fbc0c4b25e03b8a9e19dab6.woff')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_47bf6e810a5c8583970c167c.woff')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_9b90a9d4c04dff5040832e2a.woff')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_706a63a5647fef18f7bc4cdc.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_91129c5ea782d7889589ac19.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.579600px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.298200px;}
.lsa{letter-spacing:-0.127200px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.087600px;}
.ls2{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.156000px;}
.ls7{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.235920px;}
.lsd{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.379920px;}
.ls15{letter-spacing:0.439920px;}
.ls5{letter-spacing:0.447840px;}
.ls13{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.786240px;}
.ls18{letter-spacing:16.506720px;}
.ls17{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;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.wsa{word-spacing:-12.926160px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-7.866720px;}
._17{margin-left:-6.573600px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.453200px;}
._2{margin-left:-3.222480px;}
._3{margin-left:-2.211600px;}
._0{margin-left:-1.158000px;}
._1{width:1.098000px;}
._6{width:2.155440px;}
._c{width:3.742560px;}
._b{width:4.900320px;}
._e{width:6.039600px;}
._a{width:7.173600px;}
._f{width:8.881920px;}
._10{width:10.338480px;}
._7{width:12.047280px;}
._8{width:13.548000px;}
._15{width:16.008480px;}
._16{width:17.091360px;}
._14{width:18.346320px;}
._13{width:19.481760px;}
._12{width:20.916000px;}
._11{width:22.529520px;}
._d{width:24.083280px;}
._1d{width:26.463360px;}
._1c{width:27.937440px;}
._9{width:28.968720px;}
._1b{width:30.616080px;}
._1a{width:33.525360px;}
._19{width:34.601040px;}
._1f{width:52.920240px;}
._1e{width:53.940960px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y44{bottom:3.960000px;}
.yd{bottom:9.540000px;}
.y19{bottom:12.420000px;}
.yb{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:19.980000px;}
.y3d{bottom:20.520000px;}
.y43{bottom:22.140000px;}
.y17{bottom:23.985000px;}
.y41{bottom:28.800000px;}
.ya{bottom:30.240000px;}
.y3c{bottom:37.620000px;}
.y16{bottom:40.365000px;}
.y42{bottom:40.500000px;}
.y1{bottom:42.480000px;}
.y40{bottom:43.560000px;}
.y9{bottom:46.440000px;}
.y3b{bottom:54.900000px;}
.y15{bottom:56.925000px;}
.y14{bottom:69.345000px;}
.y3a{bottom:72.180000px;}
.y8{bottom:73.470000px;}
.y13{bottom:83.925000px;}
.y107{bottom:87.156000px;}
.y39{bottom:89.460000px;}
.y7{bottom:93.090000px;}
.y57{bottom:93.816000px;}
.y97{bottom:94.536000px;}
.yc8{bottom:96.156000px;}
.y29{bottom:98.640000px;}
.y12{bottom:99.225000px;}
.y106{bottom:104.256000px;}
.y38{bottom:106.740000px;}
.y56{bottom:111.096000px;}
.y6{bottom:111.270000px;}
.y96{bottom:111.816000px;}
.yc7{bottom:113.256000px;}
.y28{bottom:113.940000px;}
.y11{bottom:118.305000px;}
.y105{bottom:121.536000px;}
.y37{bottom:123.840000px;}
.y55{bottom:128.376000px;}
.y95{bottom:129.096000px;}
.yc6{bottom:130.536000px;}
.y27{bottom:131.430000px;}
.y104{bottom:138.816000px;}
.y36{bottom:141.150000px;}
.y10{bottom:144.045000px;}
.y54{bottom:145.476000px;}
.y94{bottom:146.376000px;}
.yc5{bottom:147.816000px;}
.y26{bottom:148.710000px;}
.y103{bottom:156.090000px;}
.y35{bottom:158.430000px;}
.yc4{bottom:162.570000px;}
.y53{bottom:162.750000px;}
.y93{bottom:163.470000px;}
.y25{bottom:165.990000px;}
.yf{bottom:168.345000px;}
.y102{bottom:173.370000px;}
.y34{bottom:175.710000px;}
.y52{bottom:180.030000px;}
.yc3{bottom:180.570000px;}
.y92{bottom:180.750000px;}
.y24{bottom:183.810000px;}
.y101{bottom:190.470000px;}
.y33{bottom:192.990000px;}
.y51{bottom:197.310000px;}
.y91{bottom:198.030000px;}
.yc2{bottom:198.570000px;}
.y23{bottom:201.270000px;}
.y100{bottom:207.750000px;}
.y32{bottom:210.270000px;}
.y50{bottom:214.590000px;}
.y90{bottom:215.310000px;}
.yc1{bottom:216.570000px;}
.y22{bottom:218.550000px;}
.yff{bottom:225.030000px;}
.y31{bottom:227.370000px;}
.y4f{bottom:231.690000px;}
.y8f{bottom:232.590000px;}
.yc0{bottom:234.570000px;}
.y21{bottom:236.010000px;}
.yfe{bottom:242.310000px;}
.y30{bottom:244.650000px;}
.y4e{bottom:248.970000px;}
.y8e{bottom:249.870000px;}
.ybf{bottom:252.570000px;}
.y20{bottom:253.290000px;}
.yfd{bottom:259.590000px;}
.y2f{bottom:261.930000px;}
.y4d{bottom:266.250000px;}
.y8d{bottom:266.970000px;}
.ybe{bottom:270.570000px;}
.y1f{bottom:270.750000px;}
.yfc{bottom:276.870000px;}
.y2e{bottom:279.210000px;}
.y4c{bottom:283.530000px;}
.y8c{bottom:284.250000px;}
.y1e{bottom:288.210000px;}
.ybd{bottom:291.810000px;}
.yfb{bottom:293.970000px;}
.y2d{bottom:296.490000px;}
.y4b{bottom:300.810000px;}
.y8b{bottom:301.530000px;}
.y1d{bottom:305.670000px;}
.ybc{bottom:309.090000px;}
.yfa{bottom:311.250000px;}
.y2c{bottom:313.770000px;}
.y4a{bottom:318.090000px;}
.y8a{bottom:318.810000px;}
.ybb{bottom:323.850000px;}
.yf9{bottom:328.530000px;}
.y2b{bottom:330.870000px;}
.y1c{bottom:333.210000px;}
.y49{bottom:335.190000px;}
.y89{bottom:336.090000px;}
.yba{bottom:341.895000px;}
.yf8{bottom:345.855000px;}
.y2a{bottom:348.150000px;}
.y1b{bottom:350.850000px;}
.y48{bottom:352.515000px;}
.y88{bottom:353.415000px;}
.yb9{bottom:359.895000px;}
.yf7{bottom:363.135000px;}
.y47{bottom:369.795000px;}
.y87{bottom:370.515000px;}
.yb8{bottom:377.895000px;}
.yf6{bottom:380.415000px;}
.y46{bottom:387.075000px;}
.y86{bottom:387.795000px;}
.yb7{bottom:395.895000px;}
.yf5{bottom:397.515000px;}
.y45{bottom:404.355000px;}
.y85{bottom:405.075000px;}
.yf4{bottom:414.795000px;}
.yb6{bottom:417.135000px;}
.y3f{bottom:418.395000px;}
.y84{bottom:422.355000px;}
.yf3{bottom:432.075000px;}
.yb5{bottom:434.415000px;}
.y83{bottom:439.635000px;}
.yb4{bottom:449.175000px;}
.yf2{bottom:449.355000px;}
.y82{bottom:456.915000px;}
.yf1{bottom:466.635000px;}
.yb3{bottom:467.175000px;}
.y1a{bottom:473.295000px;}
.y81{bottom:474.015000px;}
.yf0{bottom:483.915000px;}
.yb2{bottom:484.995000px;}
.y80{bottom:491.295000px;}
.yef{bottom:501.015000px;}
.yb1{bottom:502.995000px;}
.y7f{bottom:508.575000px;}
.yee{bottom:518.295000px;}
.yb0{bottom:520.995000px;}
.y7e{bottom:525.855000px;}
.yed{bottom:535.575000px;}
.yaf{bottom:538.995000px;}
.y7d{bottom:543.135000px;}
.yec{bottom:552.855000px;}
.y7c{bottom:560.235000px;}
.yeb{bottom:570.135000px;}
.y7b{bottom:577.515000px;}
.yea{bottom:587.235000px;}
.yae{bottom:592.275000px;}
.y7a{bottom:594.795000px;}
.ye9{bottom:604.545000px;}
.yad{bottom:610.305000px;}
.y79{bottom:612.105000px;}
.ye8{bottom:621.825000px;}
.yac{bottom:628.305000px;}
.y78{bottom:629.385000px;}
.ye7{bottom:639.105000px;}
.yab{bottom:646.305000px;}
.y77{bottom:646.665000px;}
.ye6{bottom:656.385000px;}
.y76{bottom:663.765000px;}
.yaa{bottom:667.545000px;}
.ye5{bottom:673.665000px;}
.y75{bottom:681.045000px;}
.ya9{bottom:684.825000px;}
.ye4{bottom:690.765000px;}
.y74{bottom:698.325000px;}
.ya8{bottom:699.585000px;}
.ye3{bottom:708.045000px;}
.y73{bottom:715.605000px;}
.ya7{bottom:717.585000px;}
.ye2{bottom:725.325000px;}
.y72{bottom:732.885000px;}
.ya6{bottom:735.585000px;}
.ye1{bottom:742.605000px;}
.y71{bottom:750.165000px;}
.ya5{bottom:753.585000px;}
.ye0{bottom:759.885000px;}
.y70{bottom:767.265000px;}
.ya4{bottom:771.585000px;}
.ydf{bottom:777.165000px;}
.y6f{bottom:784.545000px;}
.ya3{bottom:789.585000px;}
.yde{bottom:794.265000px;}
.y6e{bottom:801.825000px;}
.ya2{bottom:807.585000px;}
.ydd{bottom:811.545000px;}
.y6d{bottom:819.105000px;}
.ya1{bottom:825.585000px;}
.ydc{bottom:828.825000px;}
.y18{bottom:835.485000px;}
.y6c{bottom:836.385000px;}
.ya0{bottom:843.585000px;}
.ydb{bottom:846.105000px;}
.y6b{bottom:853.485000px;}
.y9f{bottom:861.585000px;}
.yda{bottom:863.385000px;}
.ye{bottom:865.005000px;}
.y6a{bottom:870.810000px;}
.y9e{bottom:879.630000px;}
.yd9{bottom:880.530000px;}
.y69{bottom:888.090000px;}
.y9d{bottom:897.630000px;}
.yd8{bottom:897.810000px;}
.y68{bottom:905.370000px;}
.yd7{bottom:915.090000px;}
.y9c{bottom:915.630000px;}
.y67{bottom:922.650000px;}
.yd6{bottom:932.370000px;}
.y9b{bottom:933.630000px;}
.y66{bottom:939.930000px;}
.yd5{bottom:949.650000px;}
.y9a{bottom:951.630000px;}
.y65{bottom:957.030000px;}
.yd4{bottom:966.930000px;}
.y99{bottom:969.630000px;}
.y64{bottom:974.310000px;}
.yd3{bottom:984.030000px;}
.y98{bottom:987.630000px;}
.y63{bottom:991.590000px;}
.yd2{bottom:998.790000px;}
.y62{bottom:1008.870000px;}
.yd1{bottom:1016.790000px;}
.y61{bottom:1026.150000px;}
.yd0{bottom:1034.790000px;}
.y60{bottom:1043.430000px;}
.yc{bottom:1048.470000px;}
.ycf{bottom:1052.790000px;}
.y5f{bottom:1060.530000px;}
.y5{bottom:1073.850000px;}
.yce{bottom:1074.030000px;}
.y5e{bottom:1077.810000px;}
.ycd{bottom:1091.310000px;}
.y5d{bottom:1095.090000px;}
.ycc{bottom:1106.070000px;}
.y5c{bottom:1112.370000px;}
.ycb{bottom:1124.070000px;}
.y5b{bottom:1129.650000px;}
.yca{bottom:1142.100000px;}
.y5a{bottom:1146.960000px;}
.yc9{bottom:1160.100000px;}
.y59{bottom:1164.060000px;}
.y58{bottom:1181.340000px;}
.h20{height:17.100000px;}
.h1e{height:17.280000px;}
.h1f{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h21{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1c{height:54.900000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:183.450000px;}
.h14{height:362.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:70.560000px;}
.w3{width:74.880000px;}
.w1e{width:92.016000px;}
.w14{width:93.780000px;}
.we{width:99.540000px;}
.w18{width:106.200000px;}
.w17{width:112.176000px;}
.w1c{width:117.720000px;}
.wd{width:124.056000px;}
.w1b{width:124.416000px;}
.w13{width:135.576000px;}
.w5{width:151.950000px;}
.w16{width:159.330000px;}
.w10{width:170.100000px;}
.w11{width:170.130000px;}
.w1d{width:173.730000px;}
.wb{width:175.530000px;}
.w20{width:186.870000px;}
.w1a{width:203.430000px;}
.w1f{width:220.530000px;}
.w8{width:223.275000px;}
.w19{width:298.695000px;}
.w15{width:366.735000px;}
.wf{width:404.745000px;}
.w12{width:515.805000px;}
.wc{width:521.565000px;}
.w9{width:524.055000px;}
.wa{width:570.345000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xc{left:36.756000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x2b{left:108.035987px;}
.xd{left:113.250000px;}
.xf{left:124.590000px;}
.x10{left:127.290000px;}
.x2c{left:135.035987px;}
.xe{left:158.070000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.x14{left:231.509987px;}
.x27{left:247.710000px;}
.x20{left:251.309987px;}
.x26{left:282.314987px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x19{left:329.294987px;}
.x16{left:335.954987px;}
.x28{left:340.455000px;}
.x7{left:348.195000px;}
.x1d{left:358.634987px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x21{left:440.715000px;}
.xa{left:455.700000px;}
.x1a{left:478.905000px;}
.x29{left:561.705000px;}
.x24{left:576.825000px;}
.x1e{left:589.785000px;}
.x17{left:595.545000px;}
.x22{left:600.765000px;}
.x15{left:644.325000px;}
.x1c{left:649.725000px;}
.x25{left:702.150000px;}
.x23{left:713.670000px;}
.x18{left:720.330000px;}
.x1f{left:726.090000px;}
.x3{left:745.890000px;}
.x2a{left:749.310000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.515200pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsa{letter-spacing:-0.113067pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.077867pt;}
.ls2{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.138667pt;}
.ls7{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.209707pt;}
.lsd{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.337707pt;}
.ls15{letter-spacing:0.391040pt;}
.ls5{letter-spacing:0.398080pt;}
.ls13{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls18{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.489920pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-6.992640pt;}
._17{margin-left:-5.843200pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.958400pt;}
._2{margin-left:-2.864427pt;}
._3{margin-left:-1.965867pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.976000pt;}
._6{width:1.915947pt;}
._c{width:3.326720pt;}
._b{width:4.355840pt;}
._e{width:5.368533pt;}
._a{width:6.376533pt;}
._f{width:7.895040pt;}
._10{width:9.189760pt;}
._7{width:10.708693pt;}
._8{width:12.042667pt;}
._15{width:14.229760pt;}
._16{width:15.192320pt;}
._14{width:16.307840pt;}
._13{width:17.317120pt;}
._12{width:18.592000pt;}
._11{width:20.026240pt;}
._d{width:21.407360pt;}
._1d{width:23.522987pt;}
._1c{width:24.833280pt;}
._9{width:25.749973pt;}
._1b{width:27.214293pt;}
._1a{width:29.800320pt;}
._19{width:30.756480pt;}
._1f{width:47.040213pt;}
._1e{width:47.947520pt;}
.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;}
.y3e{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y44{bottom:3.520000pt;}
.yd{bottom:8.480000pt;}
.y19{bottom:11.040000pt;}
.yb{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.760000pt;}
.y3d{bottom:18.240000pt;}
.y43{bottom:19.680000pt;}
.y17{bottom:21.320000pt;}
.y41{bottom:25.600000pt;}
.ya{bottom:26.880000pt;}
.y3c{bottom:33.440000pt;}
.y16{bottom:35.880000pt;}
.y42{bottom:36.000000pt;}
.y1{bottom:37.760000pt;}
.y40{bottom:38.720000pt;}
.y9{bottom:41.280000pt;}
.y3b{bottom:48.800000pt;}
.y15{bottom:50.600000pt;}
.y14{bottom:61.640000pt;}
.y3a{bottom:64.160000pt;}
.y8{bottom:65.306667pt;}
.y13{bottom:74.600000pt;}
.y107{bottom:77.472000pt;}
.y39{bottom:79.520000pt;}
.y7{bottom:82.746667pt;}
.y57{bottom:83.392000pt;}
.y97{bottom:84.032000pt;}
.yc8{bottom:85.472000pt;}
.y29{bottom:87.680000pt;}
.y12{bottom:88.200000pt;}
.y106{bottom:92.672000pt;}
.y38{bottom:94.880000pt;}
.y56{bottom:98.752000pt;}
.y6{bottom:98.906667pt;}
.y96{bottom:99.392000pt;}
.yc7{bottom:100.672000pt;}
.y28{bottom:101.280000pt;}
.y11{bottom:105.160000pt;}
.y105{bottom:108.032000pt;}
.y37{bottom:110.080000pt;}
.y55{bottom:114.112000pt;}
.y95{bottom:114.752000pt;}
.yc6{bottom:116.032000pt;}
.y27{bottom:116.826667pt;}
.y104{bottom:123.392000pt;}
.y36{bottom:125.466667pt;}
.y10{bottom:128.040000pt;}
.y54{bottom:129.312000pt;}
.y94{bottom:130.112000pt;}
.yc5{bottom:131.392000pt;}
.y26{bottom:132.186667pt;}
.y103{bottom:138.746667pt;}
.y35{bottom:140.826667pt;}
.yc4{bottom:144.506667pt;}
.y53{bottom:144.666667pt;}
.y93{bottom:145.306667pt;}
.y25{bottom:147.546667pt;}
.yf{bottom:149.640000pt;}
.y102{bottom:154.106667pt;}
.y34{bottom:156.186667pt;}
.y52{bottom:160.026667pt;}
.yc3{bottom:160.506667pt;}
.y92{bottom:160.666667pt;}
.y24{bottom:163.386667pt;}
.y101{bottom:169.306667pt;}
.y33{bottom:171.546667pt;}
.y51{bottom:175.386667pt;}
.y91{bottom:176.026667pt;}
.yc2{bottom:176.506667pt;}
.y23{bottom:178.906667pt;}
.y100{bottom:184.666667pt;}
.y32{bottom:186.906667pt;}
.y50{bottom:190.746667pt;}
.y90{bottom:191.386667pt;}
.yc1{bottom:192.506667pt;}
.y22{bottom:194.266667pt;}
.yff{bottom:200.026667pt;}
.y31{bottom:202.106667pt;}
.y4f{bottom:205.946667pt;}
.y8f{bottom:206.746667pt;}
.yc0{bottom:208.506667pt;}
.y21{bottom:209.786667pt;}
.yfe{bottom:215.386667pt;}
.y30{bottom:217.466667pt;}
.y4e{bottom:221.306667pt;}
.y8e{bottom:222.106667pt;}
.ybf{bottom:224.506667pt;}
.y20{bottom:225.146667pt;}
.yfd{bottom:230.746667pt;}
.y2f{bottom:232.826667pt;}
.y4d{bottom:236.666667pt;}
.y8d{bottom:237.306667pt;}
.ybe{bottom:240.506667pt;}
.y1f{bottom:240.666667pt;}
.yfc{bottom:246.106667pt;}
.y2e{bottom:248.186667pt;}
.y4c{bottom:252.026667pt;}
.y8c{bottom:252.666667pt;}
.y1e{bottom:256.186667pt;}
.ybd{bottom:259.386667pt;}
.yfb{bottom:261.306667pt;}
.y2d{bottom:263.546667pt;}
.y4b{bottom:267.386667pt;}
.y8b{bottom:268.026667pt;}
.y1d{bottom:271.706667pt;}
.ybc{bottom:274.746667pt;}
.yfa{bottom:276.666667pt;}
.y2c{bottom:278.906667pt;}
.y4a{bottom:282.746667pt;}
.y8a{bottom:283.386667pt;}
.ybb{bottom:287.866667pt;}
.yf9{bottom:292.026667pt;}
.y2b{bottom:294.106667pt;}
.y1c{bottom:296.186667pt;}
.y49{bottom:297.946667pt;}
.y89{bottom:298.746667pt;}
.yba{bottom:303.906667pt;}
.yf8{bottom:307.426667pt;}
.y2a{bottom:309.466667pt;}
.y1b{bottom:311.866667pt;}
.y48{bottom:313.346667pt;}
.y88{bottom:314.146667pt;}
.yb9{bottom:319.906667pt;}
.yf7{bottom:322.786667pt;}
.y47{bottom:328.706667pt;}
.y87{bottom:329.346667pt;}
.yb8{bottom:335.906667pt;}
.yf6{bottom:338.146667pt;}
.y46{bottom:344.066667pt;}
.y86{bottom:344.706667pt;}
.yb7{bottom:351.906667pt;}
.yf5{bottom:353.346667pt;}
.y45{bottom:359.426667pt;}
.y85{bottom:360.066667pt;}
.yf4{bottom:368.706667pt;}
.yb6{bottom:370.786667pt;}
.y3f{bottom:371.906667pt;}
.y84{bottom:375.426667pt;}
.yf3{bottom:384.066667pt;}
.yb5{bottom:386.146667pt;}
.y83{bottom:390.786667pt;}
.yb4{bottom:399.266667pt;}
.yf2{bottom:399.426667pt;}
.y82{bottom:406.146667pt;}
.yf1{bottom:414.786667pt;}
.yb3{bottom:415.266667pt;}
.y1a{bottom:420.706667pt;}
.y81{bottom:421.346667pt;}
.yf0{bottom:430.146667pt;}
.yb2{bottom:431.106667pt;}
.y80{bottom:436.706667pt;}
.yef{bottom:445.346667pt;}
.yb1{bottom:447.106667pt;}
.y7f{bottom:452.066667pt;}
.yee{bottom:460.706667pt;}
.yb0{bottom:463.106667pt;}
.y7e{bottom:467.426667pt;}
.yed{bottom:476.066667pt;}
.yaf{bottom:479.106667pt;}
.y7d{bottom:482.786667pt;}
.yec{bottom:491.426667pt;}
.y7c{bottom:497.986667pt;}
.yeb{bottom:506.786667pt;}
.y7b{bottom:513.346667pt;}
.yea{bottom:521.986667pt;}
.yae{bottom:526.466667pt;}
.y7a{bottom:528.706667pt;}
.ye9{bottom:537.373333pt;}
.yad{bottom:542.493333pt;}
.y79{bottom:544.093333pt;}
.ye8{bottom:552.733333pt;}
.yac{bottom:558.493333pt;}
.y78{bottom:559.453333pt;}
.ye7{bottom:568.093333pt;}
.yab{bottom:574.493333pt;}
.y77{bottom:574.813333pt;}
.ye6{bottom:583.453333pt;}
.y76{bottom:590.013333pt;}
.yaa{bottom:593.373333pt;}
.ye5{bottom:598.813333pt;}
.y75{bottom:605.373333pt;}
.ya9{bottom:608.733333pt;}
.ye4{bottom:614.013333pt;}
.y74{bottom:620.733333pt;}
.ya8{bottom:621.853333pt;}
.ye3{bottom:629.373333pt;}
.y73{bottom:636.093333pt;}
.ya7{bottom:637.853333pt;}
.ye2{bottom:644.733333pt;}
.y72{bottom:651.453333pt;}
.ya6{bottom:653.853333pt;}
.ye1{bottom:660.093333pt;}
.y71{bottom:666.813333pt;}
.ya5{bottom:669.853333pt;}
.ye0{bottom:675.453333pt;}
.y70{bottom:682.013333pt;}
.ya4{bottom:685.853333pt;}
.ydf{bottom:690.813333pt;}
.y6f{bottom:697.373333pt;}
.ya3{bottom:701.853333pt;}
.yde{bottom:706.013333pt;}
.y6e{bottom:712.733333pt;}
.ya2{bottom:717.853333pt;}
.ydd{bottom:721.373333pt;}
.y6d{bottom:728.093333pt;}
.ya1{bottom:733.853333pt;}
.ydc{bottom:736.733333pt;}
.y18{bottom:742.653333pt;}
.y6c{bottom:743.453333pt;}
.ya0{bottom:749.853333pt;}
.ydb{bottom:752.093333pt;}
.y6b{bottom:758.653333pt;}
.y9f{bottom:765.853333pt;}
.yda{bottom:767.453333pt;}
.ye{bottom:768.893333pt;}
.y6a{bottom:774.053333pt;}
.y9e{bottom:781.893333pt;}
.yd9{bottom:782.693333pt;}
.y69{bottom:789.413333pt;}
.y9d{bottom:797.893333pt;}
.yd8{bottom:798.053333pt;}
.y68{bottom:804.773333pt;}
.yd7{bottom:813.413333pt;}
.y9c{bottom:813.893333pt;}
.y67{bottom:820.133333pt;}
.yd6{bottom:828.773333pt;}
.y9b{bottom:829.893333pt;}
.y66{bottom:835.493333pt;}
.yd5{bottom:844.133333pt;}
.y9a{bottom:845.893333pt;}
.y65{bottom:850.693333pt;}
.yd4{bottom:859.493333pt;}
.y99{bottom:861.893333pt;}
.y64{bottom:866.053333pt;}
.yd3{bottom:874.693333pt;}
.y98{bottom:877.893333pt;}
.y63{bottom:881.413333pt;}
.yd2{bottom:887.813333pt;}
.y62{bottom:896.773333pt;}
.yd1{bottom:903.813333pt;}
.y61{bottom:912.133333pt;}
.yd0{bottom:919.813333pt;}
.y60{bottom:927.493333pt;}
.yc{bottom:931.973333pt;}
.ycf{bottom:935.813333pt;}
.y5f{bottom:942.693333pt;}
.y5{bottom:954.533333pt;}
.yce{bottom:954.693333pt;}
.y5e{bottom:958.053333pt;}
.ycd{bottom:970.053333pt;}
.y5d{bottom:973.413333pt;}
.ycc{bottom:983.173333pt;}
.y5c{bottom:988.773333pt;}
.ycb{bottom:999.173333pt;}
.y5b{bottom:1004.133333pt;}
.yca{bottom:1015.200000pt;}
.y5a{bottom:1019.520000pt;}
.yc9{bottom:1031.200000pt;}
.y59{bottom:1034.720000pt;}
.y58{bottom:1050.080000pt;}
.h20{height:15.200000pt;}
.h1e{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h21{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1c{height:48.800000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:163.066667pt;}
.h14{height:321.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:62.720000pt;}
.w3{width:66.560000pt;}
.w1e{width:81.792000pt;}
.w14{width:83.360000pt;}
.we{width:88.480000pt;}
.w18{width:94.400000pt;}
.w17{width:99.712000pt;}
.w1c{width:104.640000pt;}
.wd{width:110.272000pt;}
.w1b{width:110.592000pt;}
.w13{width:120.512000pt;}
.w5{width:135.066667pt;}
.w16{width:141.626667pt;}
.w10{width:151.200000pt;}
.w11{width:151.226667pt;}
.w1d{width:154.426667pt;}
.wb{width:156.026667pt;}
.w20{width:166.106667pt;}
.w1a{width:180.826667pt;}
.w1f{width:196.026667pt;}
.w8{width:198.466667pt;}
.w19{width:265.506667pt;}
.w15{width:325.986667pt;}
.wf{width:359.773333pt;}
.w12{width:458.493333pt;}
.wc{width:463.613333pt;}
.w9{width:465.826667pt;}
.wa{width:506.973333pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xc{left:32.672000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x2b{left:96.031988pt;}
.xd{left:100.666667pt;}
.xf{left:110.746667pt;}
.x10{left:113.146667pt;}
.x2c{left:120.031988pt;}
.xe{left:140.506667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.x14{left:205.786655pt;}
.x27{left:220.186667pt;}
.x20{left:223.386655pt;}
.x26{left:250.946655pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x19{left:292.706655pt;}
.x16{left:298.626655pt;}
.x28{left:302.626667pt;}
.x7{left:309.506667pt;}
.x1d{left:318.786655pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x21{left:391.746667pt;}
.xa{left:405.066667pt;}
.x1a{left:425.693333pt;}
.x29{left:499.293333pt;}
.x24{left:512.733333pt;}
.x1e{left:524.253333pt;}
.x17{left:529.373333pt;}
.x22{left:534.013333pt;}
.x15{left:572.733333pt;}
.x1c{left:577.533333pt;}
.x25{left:624.133333pt;}
.x23{left:634.373333pt;}
.x18{left:640.293333pt;}
.x1f{left:645.413333pt;}
.x3{left:663.013333pt;}
.x2a{left:666.053333pt;}
}




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