
    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_6f8b11aea13fbc71791e4e71.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c6556b38ebbb6b3fed6a5b6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_bcd2139b851af2f96c4c6ed0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_aa33743f2538490f85261d7e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_cb1c47039e6ac03989d54a12.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_e9f4a5f16e502d5f44ea849e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_2c8a830b1c451942818df54a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_09ad98b2e8454d7d3d5b800e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eef3846fd473cc2d05affbd6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c05c7230522ef3a775c3c26d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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_1436fd8fe5f294c8d9bdeb15.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_18e9c700bc386db2dac682d7.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_a9b9b2128aa9df6f029eed3c.woff')format("woff");}.fff{font-family:fff;line-height:1.065430;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;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.080640px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.274800px;}
.ls9{letter-spacing:0.541200px;}
.ls2{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.900000px;}
.ls8{letter-spacing:41.904000px;}
.lsb{letter-spacing:43.666560px;}
.ls6{letter-spacing:46.224000px;}
.ls7{letter-spacing:51.984000px;}
.lsc{letter-spacing:53.424000px;}
.ls4{letter-spacing:133.694400px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws0{word-spacing:-37.635120px;}
.ws1{word-spacing:-30.247680px;}
.ws5{word-spacing:-15.840000px;}
.ws4{word-spacing:-13.305600px;}
.ws6{word-spacing:-12.579600px;}
.ws7{word-spacing:-12.038400px;}
.ws3{word-spacing:-9.187200px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-6.536160px;}
._27{margin-left:-4.813488px;}
._1{margin-left:-3.758832px;}
._0{margin-left:-2.164176px;}
._4{margin-left:-1.120032px;}
._2{width:1.395216px;}
._5{width:2.582880px;}
._d{width:3.656016px;}
._c{width:4.671072px;}
._b{width:5.927040px;}
._13{width:7.016688px;}
._14{width:8.327952px;}
._6{width:9.405792px;}
._15{width:10.470096px;}
._12{width:12.217680px;}
._19{width:14.123520px;}
._11{width:15.508800px;}
._10{width:16.800336px;}
._29{width:17.953632px;}
._e{width:18.961632px;}
._f{width:20.035152px;}
._9{width:21.077616px;}
._8{width:22.135680px;}
._a{width:23.541072px;}
._1f{width:24.648192px;}
._17{width:26.575056px;}
._16{width:28.534752px;}
._2a{width:29.668464px;}
._1c{width:30.700800px;}
._2b{width:31.907232px;}
._18{width:32.940864px;}
._28{width:34.692480px;}
._20{width:36.038736px;}
._21{width:37.084176px;}
._25{width:38.603232px;}
._26{width:39.945600px;}
._1b{width:41.732064px;}
._1a{width:43.120368px;}
._22{width:44.172288px;}
._2e{width:46.044144px;}
._2d{width:47.172528px;}
._2c{width:49.113936px;}
._1d{width:56.033280px;}
._1e{width:57.149856px;}
._24{width:60.878736px;}
._23{width:62.026272px;}
._7{width:851.085984px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(73,79,86);}
.fs7{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fsa{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs0{font-size:113.904000px;}
.fs1{font-size:120.240000px;}
.fs8{font-size:168.480000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y10{bottom:2.160000px;}
.y6c{bottom:2.880000px;}
.yd1{bottom:2.910000px;}
.yd9{bottom:18.405000px;}
.y75{bottom:18.720000px;}
.y8e{bottom:18.750000px;}
.yc3{bottom:18.765000px;}
.yd8{bottom:34.245000px;}
.y83{bottom:34.560000px;}
.y8d{bottom:34.590000px;}
.y74{bottom:34.599000px;}
.yc2{bottom:34.605000px;}
.y94{bottom:50.070000px;}
.ybf{bottom:50.079000px;}
.yd7{bottom:50.085000px;}
.y8b{bottom:50.400000px;}
.y82{bottom:50.430000px;}
.y73{bottom:50.439000px;}
.yc1{bottom:50.445000px;}
.yf{bottom:50.796000px;}
.ye{bottom:55.116000px;}
.ydc{bottom:65.880000px;}
.y93{bottom:65.910000px;}
.ybe{bottom:65.919000px;}
.yd6{bottom:65.925000px;}
.ya3{bottom:66.240000px;}
.y81{bottom:66.270000px;}
.y72{bottom:66.279000px;}
.y8a{bottom:66.285000px;}
.yd{bottom:67.716000px;}
.yc{bottom:79.956000px;}
.ydb{bottom:81.720000px;}
.y92{bottom:81.750000px;}
.ybd{bottom:81.759000px;}
.yd5{bottom:81.765000px;}
.ya2{bottom:82.080000px;}
.y80{bottom:82.110000px;}
.y71{bottom:82.119000px;}
.y89{bottom:82.125000px;}
.yb{bottom:92.196000px;}
.y91{bottom:97.590000px;}
.ybc{bottom:97.599000px;}
.ya1{bottom:97.920000px;}
.y7f{bottom:97.950000px;}
.y70{bottom:97.959000px;}
.y88{bottom:97.965000px;}
.ya{bottom:104.796000px;}
.y90{bottom:113.430000px;}
.ybb{bottom:113.439000px;}
.yaf{bottom:113.760000px;}
.y7e{bottom:113.790000px;}
.y6f{bottom:113.799000px;}
.y87{bottom:113.805000px;}
.y9e{bottom:119.556000px;}
.ye9{bottom:121.356000px;}
.yb7{bottom:122.076000px;}
.y6d{bottom:124.956000px;}
.yae{bottom:129.270000px;}
.yba{bottom:129.279000px;}
.y7d{bottom:129.630000px;}
.y6e{bottom:129.639000px;}
.y86{bottom:129.645000px;}
.yde{bottom:130.356000px;}
.y10c{bottom:131.436000px;}
.ye8{bottom:138.636000px;}
.yad{bottom:145.110000px;}
.yb9{bottom:145.119000px;}
.y7c{bottom:145.470000px;}
.y85{bottom:145.485000px;}
.y10b{bottom:149.076000px;}
.yc9{bottom:151.995000px;}
.ye7{bottom:156.315000px;}
.yac{bottom:160.950000px;}
.yb8{bottom:160.989000px;}
.y7b{bottom:161.310000px;}
.yb6{bottom:161.325000px;}
.y10a{bottom:166.755000px;}
.y47{bottom:174.675000px;}
.yab{bottom:176.790000px;}
.y9d{bottom:177.150000px;}
.yb5{bottom:177.165000px;}
.y7a{bottom:177.195000px;}
.ydd{bottom:178.635000px;}
.ye6{bottom:182.955000px;}
.y109{bottom:184.395000px;}
.y46{bottom:192.315000px;}
.yaa{bottom:192.630000px;}
.y9c{bottom:192.990000px;}
.yb4{bottom:193.005000px;}
.y79{bottom:193.035000px;}
.ye5{bottom:198.075000px;}
.y108{bottom:202.035000px;}
.ya9{bottom:208.470000px;}
.yb3{bottom:208.845000px;}
.y78{bottom:208.875000px;}
.y45{bottom:209.955000px;}
.y95{bottom:215.355000px;}
.y107{bottom:219.675000px;}
.ya8{bottom:224.310000px;}
.y77{bottom:224.355000px;}
.yb2{bottom:224.685000px;}
.y9b{bottom:224.715000px;}
.y44{bottom:227.595000px;}
.yc8{bottom:231.915000px;}
.y106{bottom:237.315000px;}
.ya7{bottom:240.150000px;}
.yb1{bottom:240.525000px;}
.y9a{bottom:240.555000px;}
.y43{bottom:244.875000px;}
.y105{bottom:254.595000px;}
.ya6{bottom:256.035000px;}
.y99{bottom:256.395000px;}
.y42{bottom:262.515000px;}
.y6b{bottom:269.715000px;}
.ya5{bottom:271.875000px;}
.y98{bottom:272.235000px;}
.y41{bottom:280.155000px;}
.y97{bottom:288.075000px;}
.y104{bottom:290.625000px;}
.y6a{bottom:291.345000px;}
.ye4{bottom:293.865000px;}
.yb0{bottom:296.745000px;}
.y40{bottom:297.825000px;}
.y96{bottom:303.915000px;}
.yda{bottom:306.105000px;}
.y69{bottom:308.625000px;}
.yc7{bottom:311.865000px;}
.y3f{bottom:315.465000px;}
.y68{bottom:326.265000px;}
.y103{bottom:329.145000px;}
.y3e{bottom:333.105000px;}
.y102{bottom:346.785000px;}
.y3d{bottom:350.745000px;}
.y67{bottom:353.625000px;}
.y101{bottom:364.065000px;}
.y3c{bottom:368.025000px;}
.y100{bottom:381.705000px;}
.y3b{bottom:385.665000px;}
.y66{bottom:392.145000px;}
.yff{bottom:399.345000px;}
.yd4{bottom:401.865000px;}
.y3a{bottom:403.305000px;}
.y65{bottom:410.505000px;}
.yfe{bottom:417.030000px;}
.y39{bottom:420.990000px;}
.ye3{bottom:421.350000px;}
.yfd{bottom:434.670000px;}
.y38{bottom:438.630000px;}
.y64{bottom:448.710000px;}
.yfc{bottom:452.310000px;}
.yc6{bottom:455.190000px;}
.y37{bottom:456.270000px;}
.y2{bottom:461.625000px;}
.y63{bottom:467.070000px;}
.yfb{bottom:469.950000px;}
.y36{bottom:473.550000px;}
.yfa{bottom:487.230000px;}
.y35{bottom:491.190000px;}
.yd3{bottom:497.310000px;}
.yf9{bottom:504.870000px;}
.y62{bottom:505.590000px;}
.y34{bottom:508.830000px;}
.yf8{bottom:522.510000px;}
.y61{bottom:523.230000px;}
.y33{bottom:526.470000px;}
.y8f{bottom:532.950000px;}
.yf7{bottom:540.150000px;}
.y60{bottom:540.510000px;}
.y32{bottom:544.140000px;}
.ya4{bottom:550.980000px;}
.yf6{bottom:557.820000px;}
.y5f{bottom:558.180000px;}
.y6{bottom:558.360000px;}
.y31{bottom:561.780000px;}
.yf5{bottom:575.460000px;}
.y5e{bottom:575.820000px;}
.y30{bottom:579.420000px;}
.yf4{bottom:592.740000px;}
.yd2{bottom:593.100000px;}
.y5d{bottom:593.460000px;}
.y2f{bottom:596.700000px;}
.yf3{bottom:610.380000px;}
.y5c{bottom:611.100000px;}
.y2e{bottom:614.340000px;}
.y5{bottom:615.960000px;}
.yf2{bottom:628.020000px;}
.ye2{bottom:628.380000px;}
.y5b{bottom:628.740000px;}
.yc5{bottom:630.180000px;}
.y2d{bottom:631.980000px;}
.yf1{bottom:645.660000px;}
.y5a{bottom:646.020000px;}
.y2c{bottom:649.620000px;}
.y8c{bottom:660.060000px;}
.yf0{bottom:663.300000px;}
.y59{bottom:663.660000px;}
.y2b{bottom:667.260000px;}
.yd0{bottom:673.020000px;}
.y4{bottom:673.560000px;}
.yef{bottom:680.970000px;}
.y58{bottom:681.330000px;}
.y2a{bottom:684.930000px;}
.yee{bottom:698.610000px;}
.y57{bottom:698.970000px;}
.y29{bottom:702.210000px;}
.yed{bottom:715.890000px;}
.y56{bottom:716.610000px;}
.y28{bottom:719.850000px;}
.ye1{bottom:724.170000px;}
.y3{bottom:731.160000px;}
.yec{bottom:733.530000px;}
.y55{bottom:734.250000px;}
.y27{bottom:737.490000px;}
.y84{bottom:740.010000px;}
.yeb{bottom:751.170000px;}
.y54{bottom:752.610000px;}
.y26{bottom:755.130000px;}
.ycf{bottom:768.810000px;}
.y25{bottom:772.770000px;}
.yc4{bottom:773.130000px;}
.yea{bottom:787.170000px;}
.y24{bottom:790.410000px;}
.y53{bottom:790.770000px;}
.y23{bottom:808.095000px;}
.y52{bottom:808.455000px;}
.y22{bottom:825.375000px;}
.y51{bottom:826.095000px;}
.ye0{bottom:835.815000px;}
.ya0{bottom:836.535000px;}
.y21{bottom:843.015000px;}
.y50{bottom:843.735000px;}
.y20{bottom:860.655000px;}
.y4f{bottom:861.375000px;}
.y7{bottom:864.075000px;}
.y1f{bottom:878.295000px;}
.y4e{bottom:878.655000px;}
.y1e{bottom:895.935000px;}
.y4d{bottom:896.295000px;}
.yce{bottom:897.735000px;}
.y76{bottom:899.175000px;}
.y1d{bottom:913.575000px;}
.y4c{bottom:913.935000px;}
.ycd{bottom:918.975000px;}
.y1c{bottom:931.215000px;}
.y4b{bottom:932.295000px;}
.ycc{bottom:936.615000px;}
.y1b{bottom:948.525000px;}
.ycb{bottom:963.285000px;}
.y1a{bottom:966.165000px;}
.y4a{bottom:978.765000px;}
.yca{bottom:979.845000px;}
.y19{bottom:983.805000px;}
.y18{bottom:1001.445000px;}
.y9f{bottom:1011.525000px;}
.y17{bottom:1019.085000px;}
.y49{bottom:1029.885000px;}
.y16{bottom:1036.725000px;}
.y15{bottom:1054.005000px;}
.yc0{bottom:1059.045000px;}
.y14{bottom:1071.690000px;}
.ydf{bottom:1074.930000px;}
.y48{bottom:1081.410000px;}
.y13{bottom:1089.330000px;}
.y1{bottom:1101.450000px;}
.y12{bottom:1106.970000px;}
.y11{bottom:1124.610000px;}
.y9{bottom:1142.250000px;}
.y8{bottom:1156.650000px;}
.hd{height:12.240000px;}
.h24{height:15.840000px;}
.h11{height:15.876000px;}
.h23{height:31.716000px;}
.hb{height:35.357344px;}
.hc{height:36.336094px;}
.ha{height:41.347969px;}
.h12{height:46.330312px;}
.h27{height:47.556000px;}
.h14{height:47.612812px;}
.h10{height:51.207188px;}
.h9{height:52.624688px;}
.hf{height:60.960938px;}
.h28{height:63.360000px;}
.h6{height:73.222734px;}
.h22{height:79.200000px;}
.h17{height:79.236000px;}
.h3{height:91.941328px;}
.h26{height:94.680000px;}
.h25{height:94.716000px;}
.h1a{height:95.076000px;}
.h2a{height:110.520000px;}
.h29{height:110.916000px;}
.h2{height:113.292211px;}
.h18{height:126.396000px;}
.h1b{height:126.756000px;}
.h21{height:142.236000px;}
.h13{height:142.596000px;}
.h4{height:146.996016px;}
.h5{height:147.106125px;}
.h16{height:158.430000px;}
.he{height:167.575078px;}
.h1f{height:173.955000px;}
.h1c{height:174.270000px;}
.h15{height:237.315000px;}
.h1e{height:253.515000px;}
.h1d{height:284.835000px;}
.h20{height:285.195000px;}
.h19{height:316.515000px;}
.h7{height:1261.440000px;}
.h8{height:1261.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:5.760000px;}
.wc{width:78.120000px;}
.w8{width:84.240000px;}
.w6{width:105.876000px;}
.wa{width:109.116000px;}
.w7{width:116.352000px;}
.wb{width:120.312000px;}
.wd{width:413.100000px;}
.w9{width:414.180000px;}
.w4{width:892.439987px;}
.w3{width:892.440000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:8.280000px;}
.x1d{left:9.720000px;}
.x27{left:10.800000px;}
.x15{left:11.880000px;}
.x1b{left:12.960000px;}
.x21{left:14.400000px;}
.x25{left:15.840000px;}
.x20{left:16.920000px;}
.x1e{left:18.000000px;}
.x22{left:20.160000px;}
.x1a{left:21.600000px;}
.x31{left:23.040000px;}
.x19{left:24.120000px;}
.x16{left:25.560000px;}
.x29{left:27.000000px;}
.x2f{left:28.110000px;}
.x18{left:29.520000px;}
.x23{left:30.630000px;}
.x28{left:32.070000px;}
.x17{left:33.150000px;}
.x33{left:34.230000px;}
.x1f{left:35.310000px;}
.x24{left:36.750000px;}
.x32{left:38.190000px;}
.x2e{left:39.270000px;}
.x1c{left:40.350000px;}
.x30{left:41.430000px;}
.x26{left:42.870000px;}
.x35{left:45.390000px;}
.x2a{left:46.830000px;}
.x34{left:51.510000px;}
.x9{left:84.995987px;}
.x36{left:90.035987px;}
.x3{left:110.231987px;}
.xd{left:117.035987px;}
.x5{left:125.171987px;}
.x10{left:128.195987px;}
.xe{left:136.151987px;}
.x4{left:154.514987px;}
.x12{left:191.595000px;}
.x2b{left:194.835000px;}
.xf{left:202.754987px;}
.x8{left:274.064987px;}
.x13{left:308.670000px;}
.x2c{left:315.870000px;}
.x6{left:317.624987px;}
.x2{left:369.509987px;}
.x1{left:373.394987px;}
.x14{left:393.630000px;}
.x2d{left:394.710000px;}
.xb{left:446.219987px;}
.x7{left:591.809987px;}
.xc{left:726.764987px;}
.xa{left:800.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.071680pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.244267pt;}
.ls9{letter-spacing:0.481067pt;}
.ls2{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.800000pt;}
.ls8{letter-spacing:37.248000pt;}
.lsb{letter-spacing:38.814720pt;}
.ls6{letter-spacing:41.088000pt;}
.ls7{letter-spacing:46.208000pt;}
.lsc{letter-spacing:47.488000pt;}
.ls4{letter-spacing:118.839467pt;}
.ws8{word-spacing:-53.760000pt;}
.ws0{word-spacing:-33.453440pt;}
.ws1{word-spacing:-26.886827pt;}
.ws5{word-spacing:-14.080000pt;}
.ws4{word-spacing:-11.827200pt;}
.ws6{word-spacing:-11.181867pt;}
.ws7{word-spacing:-10.700800pt;}
.ws3{word-spacing:-8.166400pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-5.809920pt;}
._27{margin-left:-4.278656pt;}
._1{margin-left:-3.341184pt;}
._0{margin-left:-1.923712pt;}
._4{margin-left:-0.995584pt;}
._2{width:1.240192pt;}
._5{width:2.295893pt;}
._d{width:3.249792pt;}
._c{width:4.152064pt;}
._b{width:5.268480pt;}
._13{width:6.237056pt;}
._14{width:7.402624pt;}
._6{width:8.360704pt;}
._15{width:9.306752pt;}
._12{width:10.860160pt;}
._19{width:12.554240pt;}
._11{width:13.785600pt;}
._10{width:14.933632pt;}
._29{width:15.958784pt;}
._e{width:16.854784pt;}
._f{width:17.809024pt;}
._9{width:18.735659pt;}
._8{width:19.676160pt;}
._a{width:20.925397pt;}
._1f{width:21.909504pt;}
._17{width:23.622272pt;}
._16{width:25.364224pt;}
._2a{width:26.371968pt;}
._1c{width:27.289600pt;}
._2b{width:28.361984pt;}
._18{width:29.280768pt;}
._28{width:30.837760pt;}
._20{width:32.034432pt;}
._21{width:32.963712pt;}
._25{width:34.313984pt;}
._26{width:35.507200pt;}
._1b{width:37.095168pt;}
._1a{width:38.329216pt;}
._22{width:39.264256pt;}
._2e{width:40.928128pt;}
._2d{width:41.931136pt;}
._2c{width:43.656832pt;}
._1d{width:49.807360pt;}
._1e{width:50.799872pt;}
._24{width:54.114432pt;}
._23{width:55.134464pt;}
._7{width:756.520875pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fsa{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs0{font-size:101.248000pt;}
.fs1{font-size:106.880000pt;}
.fs8{font-size:149.760000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.920000pt;}
.y6c{bottom:2.560000pt;}
.yd1{bottom:2.586667pt;}
.yd9{bottom:16.360000pt;}
.y75{bottom:16.640000pt;}
.y8e{bottom:16.666667pt;}
.yc3{bottom:16.680000pt;}
.yd8{bottom:30.440000pt;}
.y83{bottom:30.720000pt;}
.y8d{bottom:30.746667pt;}
.y74{bottom:30.754667pt;}
.yc2{bottom:30.760000pt;}
.y94{bottom:44.506667pt;}
.ybf{bottom:44.514667pt;}
.yd7{bottom:44.520000pt;}
.y8b{bottom:44.800000pt;}
.y82{bottom:44.826667pt;}
.y73{bottom:44.834667pt;}
.yc1{bottom:44.840000pt;}
.yf{bottom:45.152000pt;}
.ye{bottom:48.992000pt;}
.ydc{bottom:58.560000pt;}
.y93{bottom:58.586667pt;}
.ybe{bottom:58.594667pt;}
.yd6{bottom:58.600000pt;}
.ya3{bottom:58.880000pt;}
.y81{bottom:58.906667pt;}
.y72{bottom:58.914667pt;}
.y8a{bottom:58.920000pt;}
.yd{bottom:60.192000pt;}
.yc{bottom:71.072000pt;}
.ydb{bottom:72.640000pt;}
.y92{bottom:72.666667pt;}
.ybd{bottom:72.674667pt;}
.yd5{bottom:72.680000pt;}
.ya2{bottom:72.960000pt;}
.y80{bottom:72.986667pt;}
.y71{bottom:72.994667pt;}
.y89{bottom:73.000000pt;}
.yb{bottom:81.952000pt;}
.y91{bottom:86.746667pt;}
.ybc{bottom:86.754667pt;}
.ya1{bottom:87.040000pt;}
.y7f{bottom:87.066667pt;}
.y70{bottom:87.074667pt;}
.y88{bottom:87.080000pt;}
.ya{bottom:93.152000pt;}
.y90{bottom:100.826667pt;}
.ybb{bottom:100.834667pt;}
.yaf{bottom:101.120000pt;}
.y7e{bottom:101.146667pt;}
.y6f{bottom:101.154667pt;}
.y87{bottom:101.160000pt;}
.y9e{bottom:106.272000pt;}
.ye9{bottom:107.872000pt;}
.yb7{bottom:108.512000pt;}
.y6d{bottom:111.072000pt;}
.yae{bottom:114.906667pt;}
.yba{bottom:114.914667pt;}
.y7d{bottom:115.226667pt;}
.y6e{bottom:115.234667pt;}
.y86{bottom:115.240000pt;}
.yde{bottom:115.872000pt;}
.y10c{bottom:116.832000pt;}
.ye8{bottom:123.232000pt;}
.yad{bottom:128.986667pt;}
.yb9{bottom:128.994667pt;}
.y7c{bottom:129.306667pt;}
.y85{bottom:129.320000pt;}
.y10b{bottom:132.512000pt;}
.yc9{bottom:135.106667pt;}
.ye7{bottom:138.946667pt;}
.yac{bottom:143.066667pt;}
.yb8{bottom:143.101333pt;}
.y7b{bottom:143.386667pt;}
.yb6{bottom:143.400000pt;}
.y10a{bottom:148.226667pt;}
.y47{bottom:155.266667pt;}
.yab{bottom:157.146667pt;}
.y9d{bottom:157.466667pt;}
.yb5{bottom:157.480000pt;}
.y7a{bottom:157.506667pt;}
.ydd{bottom:158.786667pt;}
.ye6{bottom:162.626667pt;}
.y109{bottom:163.906667pt;}
.y46{bottom:170.946667pt;}
.yaa{bottom:171.226667pt;}
.y9c{bottom:171.546667pt;}
.yb4{bottom:171.560000pt;}
.y79{bottom:171.586667pt;}
.ye5{bottom:176.066667pt;}
.y108{bottom:179.586667pt;}
.ya9{bottom:185.306667pt;}
.yb3{bottom:185.640000pt;}
.y78{bottom:185.666667pt;}
.y45{bottom:186.626667pt;}
.y95{bottom:191.426667pt;}
.y107{bottom:195.266667pt;}
.ya8{bottom:199.386667pt;}
.y77{bottom:199.426667pt;}
.yb2{bottom:199.720000pt;}
.y9b{bottom:199.746667pt;}
.y44{bottom:202.306667pt;}
.yc8{bottom:206.146667pt;}
.y106{bottom:210.946667pt;}
.ya7{bottom:213.466667pt;}
.yb1{bottom:213.800000pt;}
.y9a{bottom:213.826667pt;}
.y43{bottom:217.666667pt;}
.y105{bottom:226.306667pt;}
.ya6{bottom:227.586667pt;}
.y99{bottom:227.906667pt;}
.y42{bottom:233.346667pt;}
.y6b{bottom:239.746667pt;}
.ya5{bottom:241.666667pt;}
.y98{bottom:241.986667pt;}
.y41{bottom:249.026667pt;}
.y97{bottom:256.066667pt;}
.y104{bottom:258.333333pt;}
.y6a{bottom:258.973333pt;}
.ye4{bottom:261.213333pt;}
.yb0{bottom:263.773333pt;}
.y40{bottom:264.733333pt;}
.y96{bottom:270.146667pt;}
.yda{bottom:272.093333pt;}
.y69{bottom:274.333333pt;}
.yc7{bottom:277.213333pt;}
.y3f{bottom:280.413333pt;}
.y68{bottom:290.013333pt;}
.y103{bottom:292.573333pt;}
.y3e{bottom:296.093333pt;}
.y102{bottom:308.253333pt;}
.y3d{bottom:311.773333pt;}
.y67{bottom:314.333333pt;}
.y101{bottom:323.613333pt;}
.y3c{bottom:327.133333pt;}
.y100{bottom:339.293333pt;}
.y3b{bottom:342.813333pt;}
.y66{bottom:348.573333pt;}
.yff{bottom:354.973333pt;}
.yd4{bottom:357.213333pt;}
.y3a{bottom:358.493333pt;}
.y65{bottom:364.893333pt;}
.yfe{bottom:370.693333pt;}
.y39{bottom:374.213333pt;}
.ye3{bottom:374.533333pt;}
.yfd{bottom:386.373333pt;}
.y38{bottom:389.893333pt;}
.y64{bottom:398.853333pt;}
.yfc{bottom:402.053333pt;}
.yc6{bottom:404.613333pt;}
.y37{bottom:405.573333pt;}
.y2{bottom:410.333333pt;}
.y63{bottom:415.173333pt;}
.yfb{bottom:417.733333pt;}
.y36{bottom:420.933333pt;}
.yfa{bottom:433.093333pt;}
.y35{bottom:436.613333pt;}
.yd3{bottom:442.053333pt;}
.yf9{bottom:448.773333pt;}
.y62{bottom:449.413333pt;}
.y34{bottom:452.293333pt;}
.yf8{bottom:464.453333pt;}
.y61{bottom:465.093333pt;}
.y33{bottom:467.973333pt;}
.y8f{bottom:473.733333pt;}
.yf7{bottom:480.133333pt;}
.y60{bottom:480.453333pt;}
.y32{bottom:483.680000pt;}
.ya4{bottom:489.760000pt;}
.yf6{bottom:495.840000pt;}
.y5f{bottom:496.160000pt;}
.y6{bottom:496.320000pt;}
.y31{bottom:499.360000pt;}
.yf5{bottom:511.520000pt;}
.y5e{bottom:511.840000pt;}
.y30{bottom:515.040000pt;}
.yf4{bottom:526.880000pt;}
.yd2{bottom:527.200000pt;}
.y5d{bottom:527.520000pt;}
.y2f{bottom:530.400000pt;}
.yf3{bottom:542.560000pt;}
.y5c{bottom:543.200000pt;}
.y2e{bottom:546.080000pt;}
.y5{bottom:547.520000pt;}
.yf2{bottom:558.240000pt;}
.ye2{bottom:558.560000pt;}
.y5b{bottom:558.880000pt;}
.yc5{bottom:560.160000pt;}
.y2d{bottom:561.760000pt;}
.yf1{bottom:573.920000pt;}
.y5a{bottom:574.240000pt;}
.y2c{bottom:577.440000pt;}
.y8c{bottom:586.720000pt;}
.yf0{bottom:589.600000pt;}
.y59{bottom:589.920000pt;}
.y2b{bottom:593.120000pt;}
.yd0{bottom:598.240000pt;}
.y4{bottom:598.720000pt;}
.yef{bottom:605.306667pt;}
.y58{bottom:605.626667pt;}
.y2a{bottom:608.826667pt;}
.yee{bottom:620.986667pt;}
.y57{bottom:621.306667pt;}
.y29{bottom:624.186667pt;}
.yed{bottom:636.346667pt;}
.y56{bottom:636.986667pt;}
.y28{bottom:639.866667pt;}
.ye1{bottom:643.706667pt;}
.y3{bottom:649.920000pt;}
.yec{bottom:652.026667pt;}
.y55{bottom:652.666667pt;}
.y27{bottom:655.546667pt;}
.y84{bottom:657.786667pt;}
.yeb{bottom:667.706667pt;}
.y54{bottom:668.986667pt;}
.y26{bottom:671.226667pt;}
.ycf{bottom:683.386667pt;}
.y25{bottom:686.906667pt;}
.yc4{bottom:687.226667pt;}
.yea{bottom:699.706667pt;}
.y24{bottom:702.586667pt;}
.y53{bottom:702.906667pt;}
.y23{bottom:718.306667pt;}
.y52{bottom:718.626667pt;}
.y22{bottom:733.666667pt;}
.y51{bottom:734.306667pt;}
.ye0{bottom:742.946667pt;}
.ya0{bottom:743.586667pt;}
.y21{bottom:749.346667pt;}
.y50{bottom:749.986667pt;}
.y20{bottom:765.026667pt;}
.y4f{bottom:765.666667pt;}
.y7{bottom:768.066667pt;}
.y1f{bottom:780.706667pt;}
.y4e{bottom:781.026667pt;}
.y1e{bottom:796.386667pt;}
.y4d{bottom:796.706667pt;}
.yce{bottom:797.986667pt;}
.y76{bottom:799.266667pt;}
.y1d{bottom:812.066667pt;}
.y4c{bottom:812.386667pt;}
.ycd{bottom:816.866667pt;}
.y1c{bottom:827.746667pt;}
.y4b{bottom:828.706667pt;}
.ycc{bottom:832.546667pt;}
.y1b{bottom:843.133333pt;}
.ycb{bottom:856.253333pt;}
.y1a{bottom:858.813333pt;}
.y4a{bottom:870.013333pt;}
.yca{bottom:870.973333pt;}
.y19{bottom:874.493333pt;}
.y18{bottom:890.173333pt;}
.y9f{bottom:899.133333pt;}
.y17{bottom:905.853333pt;}
.y49{bottom:915.453333pt;}
.y16{bottom:921.533333pt;}
.y15{bottom:936.893333pt;}
.yc0{bottom:941.373333pt;}
.y14{bottom:952.613333pt;}
.ydf{bottom:955.493333pt;}
.y48{bottom:961.253333pt;}
.y13{bottom:968.293333pt;}
.y1{bottom:979.066667pt;}
.y12{bottom:983.973333pt;}
.y11{bottom:999.653333pt;}
.y9{bottom:1015.333333pt;}
.y8{bottom:1028.133333pt;}
.hd{height:10.880000pt;}
.h24{height:14.080000pt;}
.h11{height:14.112000pt;}
.h23{height:28.192000pt;}
.hb{height:31.428750pt;}
.hc{height:32.298750pt;}
.ha{height:36.753750pt;}
.h12{height:41.182500pt;}
.h27{height:42.272000pt;}
.h14{height:42.322500pt;}
.h10{height:45.517500pt;}
.h9{height:46.777500pt;}
.hf{height:54.187500pt;}
.h28{height:56.320000pt;}
.h6{height:65.086875pt;}
.h22{height:70.400000pt;}
.h17{height:70.432000pt;}
.h3{height:81.725625pt;}
.h26{height:84.160000pt;}
.h25{height:84.192000pt;}
.h1a{height:84.512000pt;}
.h2a{height:98.240000pt;}
.h29{height:98.592000pt;}
.h2{height:100.704187pt;}
.h18{height:112.352000pt;}
.h1b{height:112.672000pt;}
.h21{height:126.432000pt;}
.h13{height:126.752000pt;}
.h4{height:130.663125pt;}
.h5{height:130.761000pt;}
.h16{height:140.826667pt;}
.he{height:148.955625pt;}
.h1f{height:154.626667pt;}
.h1c{height:154.906667pt;}
.h15{height:210.946667pt;}
.h1e{height:225.346667pt;}
.h1d{height:253.186667pt;}
.h20{height:253.506667pt;}
.h19{height:281.346667pt;}
.h7{height:1121.280000pt;}
.h8{height:1121.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:5.120000pt;}
.wc{width:69.440000pt;}
.w8{width:74.880000pt;}
.w6{width:94.112000pt;}
.wa{width:96.992000pt;}
.w7{width:103.424000pt;}
.wb{width:106.944000pt;}
.wd{width:367.200000pt;}
.w9{width:368.160000pt;}
.w4{width:793.279988pt;}
.w3{width:793.280000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:7.360000pt;}
.x1d{left:8.640000pt;}
.x27{left:9.600000pt;}
.x15{left:10.560000pt;}
.x1b{left:11.520000pt;}
.x21{left:12.800000pt;}
.x25{left:14.080000pt;}
.x20{left:15.040000pt;}
.x1e{left:16.000000pt;}
.x22{left:17.920000pt;}
.x1a{left:19.200000pt;}
.x31{left:20.480000pt;}
.x19{left:21.440000pt;}
.x16{left:22.720000pt;}
.x29{left:24.000000pt;}
.x2f{left:24.986667pt;}
.x18{left:26.240000pt;}
.x23{left:27.226667pt;}
.x28{left:28.506667pt;}
.x17{left:29.466667pt;}
.x33{left:30.426667pt;}
.x1f{left:31.386667pt;}
.x24{left:32.666667pt;}
.x32{left:33.946667pt;}
.x2e{left:34.906667pt;}
.x1c{left:35.866667pt;}
.x30{left:36.826667pt;}
.x26{left:38.106667pt;}
.x35{left:40.346667pt;}
.x2a{left:41.626667pt;}
.x34{left:45.786667pt;}
.x9{left:75.551988pt;}
.x36{left:80.031988pt;}
.x3{left:97.983988pt;}
.xd{left:104.031988pt;}
.x5{left:111.263988pt;}
.x10{left:113.951988pt;}
.xe{left:121.023988pt;}
.x4{left:137.346655pt;}
.x12{left:170.306667pt;}
.x2b{left:173.186667pt;}
.xf{left:180.226655pt;}
.x8{left:243.613322pt;}
.x13{left:274.373333pt;}
.x2c{left:280.773333pt;}
.x6{left:282.333322pt;}
.x2{left:328.453322pt;}
.x1{left:331.906655pt;}
.x14{left:349.893333pt;}
.x2d{left:350.853333pt;}
.xb{left:396.639988pt;}
.x7{left:526.053322pt;}
.xc{left:646.013322pt;}
.xa{left:711.973333pt;}
}




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