
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_c24a564b66e55d2576809cec.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fab2156061961f425949567f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_062c35f085003d3ab1cb5baf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_de0bfa34093cf0b2a69dee48.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_408c41e5f63c0b46d40f9173.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_52928cdac54efc13e4b0b574.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_130301694ab792f9947e2b7d.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_0b5614ce4c6793be9a65d9b8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_76b969198e0e85200754af84.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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;}
.m5{transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.303025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303025,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);}
.m3{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls28{letter-spacing:-3.180000px;}
.lsc{letter-spacing:-2.988000px;}
.ls38{letter-spacing:-2.418000px;}
.ls7{letter-spacing:-2.190000px;}
.lsa{letter-spacing:-2.106000px;}
.lsb{letter-spacing:-1.980000px;}
.ls9{letter-spacing:-1.800000px;}
.ls39{letter-spacing:-1.698000px;}
.ls3a{letter-spacing:-1.494000px;}
.ls36{letter-spacing:-1.434000px;}
.ls8{letter-spacing:-1.080000px;}
.ls35{letter-spacing:-0.906000px;}
.ls2c{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.246600px;}
.lse{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.133200px;}
.ls25{letter-spacing:-0.113400px;}
.ls18{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.089400px;}
.ls17{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.021840px;}
.ls19{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.158400px;}
.ls16{letter-spacing:0.169200px;}
.ls5{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.240127px;}
.ls3b{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.366000px;}
.ls31{letter-spacing:0.378437px;}
.ls1e{letter-spacing:0.434163px;}
.ls32{letter-spacing:0.446400px;}
.ls14{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.559800px;}
.ls34{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.836640px;}
.ls3{letter-spacing:0.858000px;}
.ls4{letter-spacing:0.870000px;}
.ls2e{letter-spacing:0.882000px;}
.ls37{letter-spacing:1.062000px;}
.ls1c{letter-spacing:1.132988px;}
.ls22{letter-spacing:1.831814px;}
.ls20{letter-spacing:2.220143px;}
.ls1f{letter-spacing:5.325942px;}
.ls2f{letter-spacing:5.520171px;}
.ls30{letter-spacing:5.940000px;}
.ls1a{letter-spacing:7.380000px;}
.ls24{letter-spacing:7.500187px;}
.ls21{letter-spacing:8.820070px;}
.ls2{letter-spacing:10.140209px;}
.ls3d{letter-spacing:12.420000px;}
.ls1d{letter-spacing:16.080259px;}
.ls1b{letter-spacing:21.398930px;}
.ls3c{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;}
}
.ws2f{word-spacing:-60.596640px;}
.ws30{word-spacing:-60.480000px;}
.ws25{word-spacing:-59.760000px;}
.ws3{word-spacing:-19.980000px;}
.ws4{word-spacing:-19.260000px;}
.ws2{word-spacing:-18.870000px;}
.ws0{word-spacing:-16.560000px;}
.ws28{word-spacing:-16.002000px;}
.ws23{word-spacing:-15.822000px;}
.ws13{word-spacing:-15.810000px;}
.ws12{word-spacing:-15.798000px;}
.ws14{word-spacing:-15.660000px;}
.ws31{word-spacing:-15.624000px;}
.ws1f{word-spacing:-15.499800px;}
.ws10{word-spacing:-15.420000px;}
.ws2d{word-spacing:-15.386400px;}
.ws1b{word-spacing:-15.306000px;}
.ws1{word-spacing:-15.300000px;}
.ws2e{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.109200px;}
.ws1c{word-spacing:-15.098400px;}
.ws20{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.961840px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.839800px;}
.ws1a{word-spacing:-14.826600px;}
.wse{word-spacing:-14.806800px;}
.wsd{word-spacing:-14.760000px;}
.ws1e{word-spacing:-14.693400px;}
.wsc{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws21{word-spacing:-14.148000px;}
.ws26{word-spacing:-14.034000px;}
.ws24{word-spacing:-13.860000px;}
.ws1d{word-spacing:-13.722000px;}
.ws27{word-spacing:-13.506000px;}
.ws2c{word-spacing:-13.446000px;}
.ws17{word-spacing:-13.392000px;}
.ws2b{word-spacing:-13.242000px;}
.ws29{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.834000px;}
.ws2a{word-spacing:-12.522000px;}
.ws7{word-spacing:-11.952000px;}
.wsa{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.213800px;}
.ws6{word-spacing:-9.720000px;}
.ws16{word-spacing:-8.928000px;}
.ws18{word-spacing:0.000000px;}
._4{margin-left:-6.892560px;}
._1{margin-left:-5.734080px;}
._3{margin-left:-4.284960px;}
._2{margin-left:-2.528640px;}
._0{margin-left:-1.093680px;}
._5{width:1.195200px;}
._6{width:2.339280px;}
._11{width:3.433680px;}
._b{width:4.459680px;}
._c{width:5.646240px;}
._7{width:7.380000px;}
._12{width:8.380080px;}
._9{width:9.439920px;}
._8{width:10.528320px;}
._a{width:12.456000px;}
._14{width:13.909508px;}
._d{width:16.153200px;}
._10{width:17.669520px;}
._f{width:19.553040px;}
._e{width:20.599920px;}
._15{width:22.577552px;}
._16{width:24.660330px;}
._13{width:27.489600px;}
.fc4{color:rgb(9,78,154);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y5a{bottom:5.010000px;}
.y3f{bottom:5.940000px;}
.y2{bottom:9.930000px;}
.y4a{bottom:10.260000px;}
.y58{bottom:19.800000px;}
.y4{bottom:22.710000px;}
.y3e{bottom:25.740000px;}
.y57{bottom:38.520000px;}
.y49{bottom:40.140000px;}
.y3d{bottom:45.540000px;}
.y3{bottom:47.910000px;}
.y48{bottom:51.294000px;}
.y7{bottom:57.060000px;}
.y56{bottom:57.774000px;}
.y47{bottom:62.454000px;}
.y3c{bottom:65.340000px;}
.y55{bottom:73.614000px;}
.y46{bottom:74.154000px;}
.y3b{bottom:85.140000px;}
.y45{bottom:87.114000px;}
.y54{bottom:90.714000px;}
.ya1{bottom:97.056000px;}
.y44{bottom:100.254000px;}
.y40{bottom:104.076000px;}
.y3a{bottom:105.120000px;}
.y53{bottom:107.994000px;}
.ya0{bottom:116.856000px;}
.y8c{bottom:117.756000px;}
.y43{bottom:122.214000px;}
.y52{bottom:122.754000px;}
.y39{bottom:124.920000px;}
.y51{bottom:130.674000px;}
.y9f{bottom:136.836000px;}
.y8b{bottom:137.556000px;}
.y38{bottom:144.720000px;}
.y50{bottom:146.154000px;}
.y9e{bottom:156.630000px;}
.y8a{bottom:157.350000px;}
.y4f{bottom:161.634000px;}
.y37{bottom:164.520000px;}
.y9d{bottom:176.430000px;}
.y89{bottom:177.150000px;}
.y4e{bottom:177.294000px;}
.y42{bottom:184.134000px;}
.y36{bottom:184.320000px;}
.y4d{bottom:192.774000px;}
.y41{bottom:194.754000px;}
.y9c{bottom:196.230000px;}
.y88{bottom:196.950000px;}
.y35{bottom:204.300000px;}
.y4c{bottom:208.254000px;}
.y9b{bottom:216.030000px;}
.y87{bottom:216.930000px;}
.y34{bottom:224.100000px;}
.y9a{bottom:236.010000px;}
.y86{bottom:236.730000px;}
.y33{bottom:243.900000px;}
.y99{bottom:255.810000px;}
.y85{bottom:256.530000px;}
.y32{bottom:263.700000px;}
.y98{bottom:275.610000px;}
.y84{bottom:276.330000px;}
.y31{bottom:283.530000px;}
.y97{bottom:295.410000px;}
.y83{bottom:296.130000px;}
.y1e{bottom:299.370000px;}
.y30{bottom:303.510000px;}
.y96{bottom:315.210000px;}
.y82{bottom:316.110000px;}
.y2f{bottom:323.310000px;}
.y1d{bottom:323.490000px;}
.y10{bottom:328.935000px;}
.y95{bottom:335.235000px;}
.y81{bottom:335.955000px;}
.y2e{bottom:342.570000px;}
.y1c{bottom:347.610000px;}
.y94{bottom:355.035000px;}
.y80{bottom:355.755000px;}
.y2d{bottom:360.390000px;}
.y1b{bottom:371.730000px;}
.y93{bottom:374.835000px;}
.y7f{bottom:375.555000px;}
.y2c{bottom:378.210000px;}
.y92{bottom:394.635000px;}
.y7e{bottom:395.355000px;}
.y1a{bottom:395.850000px;}
.y2b{bottom:396.030000px;}
.y2a{bottom:414.030000px;}
.y91{bottom:414.795000px;}
.y7d{bottom:415.335000px;}
.y19{bottom:419.970000px;}
.y29{bottom:431.850000px;}
.y90{bottom:434.415000px;}
.y7c{bottom:435.135000px;}
.y18{bottom:444.090000px;}
.y28{bottom:449.670000px;}
.y8f{bottom:454.755000px;}
.y7b{bottom:454.935000px;}
.y27{bottom:467.490000px;}
.y17{bottom:468.390000px;}
.y8e{bottom:474.375000px;}
.y7a{bottom:474.735000px;}
.y8d{bottom:475.095000px;}
.y26{bottom:485.310000px;}
.y16{bottom:492.510000px;}
.y79{bottom:494.535000px;}
.y25{bottom:503.310000px;}
.y78{bottom:514.515000px;}
.y15{bottom:516.630000px;}
.y24{bottom:521.130000px;}
.y77{bottom:534.315000px;}
.y23{bottom:538.995000px;}
.y14{bottom:540.795000px;}
.y76{bottom:554.115000px;}
.y22{bottom:556.815000px;}
.y13{bottom:564.915000px;}
.y75{bottom:573.915000px;}
.y21{bottom:574.635000px;}
.y12{bottom:589.035000px;}
.y20{bottom:592.455000px;}
.y74{bottom:593.715000px;}
.y1f{bottom:610.455000px;}
.y11{bottom:613.335000px;}
.y73{bottom:613.725000px;}
.y72{bottom:633.525000px;}
.y71{bottom:653.325000px;}
.y70{bottom:673.125000px;}
.y6f{bottom:692.925000px;}
.y6e{bottom:712.905000px;}
.y6d{bottom:732.705000px;}
.y6c{bottom:752.505000px;}
.y6b{bottom:772.305000px;}
.y6a{bottom:792.105000px;}
.y69{bottom:812.085000px;}
.y68{bottom:831.885000px;}
.y67{bottom:851.685000px;}
.y66{bottom:871.530000px;}
.y65{bottom:891.330000px;}
.y64{bottom:911.310000px;}
.y63{bottom:931.110000px;}
.y62{bottom:950.910000px;}
.yf{bottom:954.510000px;}
.ye{bottom:962.070000px;}
.y61{bottom:970.710000px;}
.yd{bottom:981.870000px;}
.y60{bottom:990.510000px;}
.yc{bottom:1001.670000px;}
.yb{bottom:1006.890000px;}
.y5f{bottom:1010.490000px;}
.ya{bottom:1021.470000px;}
.y5e{bottom:1030.290000px;}
.y9{bottom:1043.610000px;}
.y5d{bottom:1050.090000px;}
.y5c{bottom:1069.890000px;}
.y8{bottom:1072.230000px;}
.y59{bottom:1075.500000px;}
.y5b{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.h12{height:4.021875px;}
.hb{height:4.165313px;}
.h17{height:9.329414px;}
.h15{height:21.114844px;}
.h14{height:25.136719px;}
.ha{height:27.147656px;}
.h19{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h16{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h1b{height:41.027344px;}
.h10{height:41.159180px;}
.h6{height:41.726953px;}
.h11{height:42.164648px;}
.h1c{height:43.506914px;}
.h18{height:45.549492px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h8{height:59.436914px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h13{height:224.130000px;}
.hc{height:623.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.056000px;}
.x1b{left:8.136000px;}
.x4{left:12.780000px;}
.x1a{left:16.056000px;}
.x23{left:18.216000px;}
.x18{left:19.656000px;}
.x19{left:26.136000px;}
.x25{left:29.196000px;}
.x6{left:33.840000px;}
.x21{left:38.520000px;}
.x24{left:47.736000px;}
.x13{left:50.796000px;}
.x12{left:54.936000px;}
.x27{left:57.096000px;}
.x1d{left:62.100000px;}
.x26{left:66.270000px;}
.x20{left:71.865000px;}
.x16{left:73.290000px;}
.x1{left:78.300000px;}
.x17{left:79.590000px;}
.x15{left:82.470000px;}
.x7{left:86.399987px;}
.x39{left:94.139987px;}
.x2{left:95.790000px;}
.x28{left:102.810000px;}
.x22{left:106.770000px;}
.x36{left:113.435987px;}
.x14{left:124.590000px;}
.x42{left:130.895987px;}
.x5{left:141.345000px;}
.x2b{left:152.309987px;}
.x4d{left:174.449987px;}
.x53{left:178.229987px;}
.x4c{left:180.569987px;}
.x3{left:182.370000px;}
.x41{left:196.949987px;}
.x43{left:203.789987px;}
.x46{left:212.429987px;}
.x1c{left:219.090000px;}
.x37{left:225.389987px;}
.x48{left:236.189987px;}
.x3a{left:245.729987px;}
.x52{left:265.709987px;}
.x49{left:274.889987px;}
.x44{left:281.369987px;}
.x47{left:291.494987px;}
.x2f{left:294.194987px;}
.x2c{left:299.054987px;}
.x4f{left:302.294987px;}
.x51{left:303.554987px;}
.x3d{left:313.634987px;}
.x50{left:325.694987px;}
.x45{left:343.514987px;}
.xb{left:366.014987px;}
.x2d{left:376.094987px;}
.x1f{left:400.575000px;}
.x3e{left:439.094987px;}
.x4b{left:449.174987px;}
.x38{left:452.054987px;}
.x30{left:458.714987px;}
.x54{left:472.424987px;}
.x3b{left:476.204987px;}
.x3c{left:486.644987px;}
.xa{left:514.724987px;}
.x4e{left:517.604987px;}
.x1e{left:527.700000px;}
.x40{left:532.004987px;}
.x31{left:550.184987px;}
.x34{left:559.364987px;}
.x4a{left:590.504987px;}
.x10{left:617.684987px;}
.x32{left:647.744987px;}
.xe{left:669.749987px;}
.xc{left:683.969987px;}
.x2a{left:704.669987px;}
.x3f{left:709.169987px;}
.x2e{left:717.629987px;}
.x33{left:723.929987px;}
.x9{left:766.049987px;}
.x8{left:784.229987px;}
.x35{left:795.929987px;}
.x11{left:806.729987px;}
.xd{left:809.789987px;}
.xf{left:810.869987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls28{letter-spacing:-2.826667pt;}
.lsc{letter-spacing:-2.656000pt;}
.ls38{letter-spacing:-2.149333pt;}
.ls7{letter-spacing:-1.946667pt;}
.lsa{letter-spacing:-1.872000pt;}
.lsb{letter-spacing:-1.760000pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls39{letter-spacing:-1.509333pt;}
.ls3a{letter-spacing:-1.328000pt;}
.ls36{letter-spacing:-1.274667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls35{letter-spacing:-0.805333pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.219200pt;}
.lse{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.118400pt;}
.ls25{letter-spacing:-0.100800pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.079467pt;}
.ls17{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.019413pt;}
.ls19{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.140800pt;}
.ls16{letter-spacing:0.150400pt;}
.ls5{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.213446pt;}
.ls3b{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.325333pt;}
.ls31{letter-spacing:0.336388pt;}
.ls1e{letter-spacing:0.385923pt;}
.ls32{letter-spacing:0.396800pt;}
.ls14{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.497600pt;}
.ls34{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.743680pt;}
.ls3{letter-spacing:0.762667pt;}
.ls4{letter-spacing:0.773333pt;}
.ls2e{letter-spacing:0.784000pt;}
.ls37{letter-spacing:0.944000pt;}
.ls1c{letter-spacing:1.007101pt;}
.ls22{letter-spacing:1.628279pt;}
.ls20{letter-spacing:1.973460pt;}
.ls1f{letter-spacing:4.734171pt;}
.ls2f{letter-spacing:4.906818pt;}
.ls30{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls24{letter-spacing:6.666833pt;}
.ls21{letter-spacing:7.840062pt;}
.ls2{letter-spacing:9.013519pt;}
.ls3d{letter-spacing:11.040000pt;}
.ls1d{letter-spacing:14.293563pt;}
.ls1b{letter-spacing:19.021271pt;}
.ls3c{letter-spacing:40.912640pt;}
.ws2f{word-spacing:-53.863680pt;}
.ws30{word-spacing:-53.760000pt;}
.ws25{word-spacing:-53.120000pt;}
.ws3{word-spacing:-17.760000pt;}
.ws4{word-spacing:-17.120000pt;}
.ws2{word-spacing:-16.773333pt;}
.ws0{word-spacing:-14.720000pt;}
.ws28{word-spacing:-14.224000pt;}
.ws23{word-spacing:-14.064000pt;}
.ws13{word-spacing:-14.053333pt;}
.ws12{word-spacing:-14.042667pt;}
.ws14{word-spacing:-13.920000pt;}
.ws31{word-spacing:-13.888000pt;}
.ws1f{word-spacing:-13.777600pt;}
.ws10{word-spacing:-13.706667pt;}
.ws2d{word-spacing:-13.676800pt;}
.ws1b{word-spacing:-13.605333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2e{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.430400pt;}
.ws1c{word-spacing:-13.420800pt;}
.ws20{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.299413pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.190933pt;}
.ws1a{word-spacing:-13.179200pt;}
.wse{word-spacing:-13.161600pt;}
.wsd{word-spacing:-13.120000pt;}
.ws1e{word-spacing:-13.060800pt;}
.wsc{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws21{word-spacing:-12.576000pt;}
.ws26{word-spacing:-12.474667pt;}
.ws24{word-spacing:-12.320000pt;}
.ws1d{word-spacing:-12.197333pt;}
.ws27{word-spacing:-12.005333pt;}
.ws2c{word-spacing:-11.952000pt;}
.ws17{word-spacing:-11.904000pt;}
.ws2b{word-spacing:-11.770667pt;}
.ws29{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.408000pt;}
.ws2a{word-spacing:-11.130667pt;}
.ws7{word-spacing:-10.624000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.640000pt;}
.ws16{word-spacing:-7.936000pt;}
.ws18{word-spacing:0.000000pt;}
._4{margin-left:-6.126720pt;}
._1{margin-left:-5.096960pt;}
._3{margin-left:-3.808853pt;}
._2{margin-left:-2.247680pt;}
._0{margin-left:-0.972160pt;}
._5{width:1.062400pt;}
._6{width:2.079360pt;}
._11{width:3.052160pt;}
._b{width:3.964160pt;}
._c{width:5.018880pt;}
._7{width:6.560000pt;}
._12{width:7.448960pt;}
._9{width:8.391040pt;}
._8{width:9.358507pt;}
._a{width:11.072000pt;}
._14{width:12.364008pt;}
._d{width:14.358400pt;}
._10{width:15.706240pt;}
._f{width:17.380480pt;}
._e{width:18.311040pt;}
._15{width:20.068935pt;}
._16{width:21.920293pt;}
._13{width:24.435200pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y5a{bottom:4.453333pt;}
.y3f{bottom:5.280000pt;}
.y2{bottom:8.826667pt;}
.y4a{bottom:9.120000pt;}
.y58{bottom:17.600000pt;}
.y4{bottom:20.186667pt;}
.y3e{bottom:22.880000pt;}
.y57{bottom:34.240000pt;}
.y49{bottom:35.680000pt;}
.y3d{bottom:40.480000pt;}
.y3{bottom:42.586667pt;}
.y48{bottom:45.594667pt;}
.y7{bottom:50.720000pt;}
.y56{bottom:51.354667pt;}
.y47{bottom:55.514667pt;}
.y3c{bottom:58.080000pt;}
.y55{bottom:65.434667pt;}
.y46{bottom:65.914667pt;}
.y3b{bottom:75.680000pt;}
.y45{bottom:77.434667pt;}
.y54{bottom:80.634667pt;}
.ya1{bottom:86.272000pt;}
.y44{bottom:89.114667pt;}
.y40{bottom:92.512000pt;}
.y3a{bottom:93.440000pt;}
.y53{bottom:95.994667pt;}
.ya0{bottom:103.872000pt;}
.y8c{bottom:104.672000pt;}
.y43{bottom:108.634667pt;}
.y52{bottom:109.114667pt;}
.y39{bottom:111.040000pt;}
.y51{bottom:116.154667pt;}
.y9f{bottom:121.632000pt;}
.y8b{bottom:122.272000pt;}
.y38{bottom:128.640000pt;}
.y50{bottom:129.914667pt;}
.y9e{bottom:139.226667pt;}
.y8a{bottom:139.866667pt;}
.y4f{bottom:143.674667pt;}
.y37{bottom:146.240000pt;}
.y9d{bottom:156.826667pt;}
.y89{bottom:157.466667pt;}
.y4e{bottom:157.594667pt;}
.y42{bottom:163.674667pt;}
.y36{bottom:163.840000pt;}
.y4d{bottom:171.354667pt;}
.y41{bottom:173.114667pt;}
.y9c{bottom:174.426667pt;}
.y88{bottom:175.066667pt;}
.y35{bottom:181.600000pt;}
.y4c{bottom:185.114667pt;}
.y9b{bottom:192.026667pt;}
.y87{bottom:192.826667pt;}
.y34{bottom:199.200000pt;}
.y9a{bottom:209.786667pt;}
.y86{bottom:210.426667pt;}
.y33{bottom:216.800000pt;}
.y99{bottom:227.386667pt;}
.y85{bottom:228.026667pt;}
.y32{bottom:234.400000pt;}
.y98{bottom:244.986667pt;}
.y84{bottom:245.626667pt;}
.y31{bottom:252.026667pt;}
.y97{bottom:262.586667pt;}
.y83{bottom:263.226667pt;}
.y1e{bottom:266.106667pt;}
.y30{bottom:269.786667pt;}
.y96{bottom:280.186667pt;}
.y82{bottom:280.986667pt;}
.y2f{bottom:287.386667pt;}
.y1d{bottom:287.546667pt;}
.y10{bottom:292.386667pt;}
.y95{bottom:297.986667pt;}
.y81{bottom:298.626667pt;}
.y2e{bottom:304.506667pt;}
.y1c{bottom:308.986667pt;}
.y94{bottom:315.586667pt;}
.y80{bottom:316.226667pt;}
.y2d{bottom:320.346667pt;}
.y1b{bottom:330.426667pt;}
.y93{bottom:333.186667pt;}
.y7f{bottom:333.826667pt;}
.y2c{bottom:336.186667pt;}
.y92{bottom:350.786667pt;}
.y7e{bottom:351.426667pt;}
.y1a{bottom:351.866667pt;}
.y2b{bottom:352.026667pt;}
.y2a{bottom:368.026667pt;}
.y91{bottom:368.706667pt;}
.y7d{bottom:369.186667pt;}
.y19{bottom:373.306667pt;}
.y29{bottom:383.866667pt;}
.y90{bottom:386.146667pt;}
.y7c{bottom:386.786667pt;}
.y18{bottom:394.746667pt;}
.y28{bottom:399.706667pt;}
.y8f{bottom:404.226667pt;}
.y7b{bottom:404.386667pt;}
.y27{bottom:415.546667pt;}
.y17{bottom:416.346667pt;}
.y8e{bottom:421.666667pt;}
.y7a{bottom:421.986667pt;}
.y8d{bottom:422.306667pt;}
.y26{bottom:431.386667pt;}
.y16{bottom:437.786667pt;}
.y79{bottom:439.586667pt;}
.y25{bottom:447.386667pt;}
.y78{bottom:457.346667pt;}
.y15{bottom:459.226667pt;}
.y24{bottom:463.226667pt;}
.y77{bottom:474.946667pt;}
.y23{bottom:479.106667pt;}
.y14{bottom:480.706667pt;}
.y76{bottom:492.546667pt;}
.y22{bottom:494.946667pt;}
.y13{bottom:502.146667pt;}
.y75{bottom:510.146667pt;}
.y21{bottom:510.786667pt;}
.y12{bottom:523.586667pt;}
.y20{bottom:526.626667pt;}
.y74{bottom:527.746667pt;}
.y1f{bottom:542.626667pt;}
.y11{bottom:545.186667pt;}
.y73{bottom:545.533333pt;}
.y72{bottom:563.133333pt;}
.y71{bottom:580.733333pt;}
.y70{bottom:598.333333pt;}
.y6f{bottom:615.933333pt;}
.y6e{bottom:633.693333pt;}
.y6d{bottom:651.293333pt;}
.y6c{bottom:668.893333pt;}
.y6b{bottom:686.493333pt;}
.y6a{bottom:704.093333pt;}
.y69{bottom:721.853333pt;}
.y68{bottom:739.453333pt;}
.y67{bottom:757.053333pt;}
.y66{bottom:774.693333pt;}
.y65{bottom:792.293333pt;}
.y64{bottom:810.053333pt;}
.y63{bottom:827.653333pt;}
.y62{bottom:845.253333pt;}
.yf{bottom:848.453333pt;}
.ye{bottom:855.173333pt;}
.y61{bottom:862.853333pt;}
.yd{bottom:872.773333pt;}
.y60{bottom:880.453333pt;}
.yc{bottom:890.373333pt;}
.yb{bottom:895.013333pt;}
.y5f{bottom:898.213333pt;}
.ya{bottom:907.973333pt;}
.y5e{bottom:915.813333pt;}
.y9{bottom:927.653333pt;}
.y5d{bottom:933.413333pt;}
.y5c{bottom:951.013333pt;}
.y8{bottom:953.093333pt;}
.y59{bottom:956.000000pt;}
.y5b{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.h12{height:3.575000pt;}
.hb{height:3.702500pt;}
.h17{height:8.292813pt;}
.h15{height:18.768750pt;}
.h14{height:22.343750pt;}
.ha{height:24.131250pt;}
.h19{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h16{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h1b{height:36.468750pt;}
.h10{height:36.585938pt;}
.h6{height:37.090625pt;}
.h11{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h18{height:40.488438pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h8{height:52.832812pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h13{height:199.226667pt;}
.hc{height:553.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.272000pt;}
.x1b{left:7.232000pt;}
.x4{left:11.360000pt;}
.x1a{left:14.272000pt;}
.x23{left:16.192000pt;}
.x18{left:17.472000pt;}
.x19{left:23.232000pt;}
.x25{left:25.952000pt;}
.x6{left:30.080000pt;}
.x21{left:34.240000pt;}
.x24{left:42.432000pt;}
.x13{left:45.152000pt;}
.x12{left:48.832000pt;}
.x27{left:50.752000pt;}
.x1d{left:55.200000pt;}
.x26{left:58.906667pt;}
.x20{left:63.880000pt;}
.x16{left:65.146667pt;}
.x1{left:69.600000pt;}
.x17{left:70.746667pt;}
.x15{left:73.306667pt;}
.x7{left:76.799988pt;}
.x39{left:83.679988pt;}
.x2{left:85.146667pt;}
.x28{left:91.386667pt;}
.x22{left:94.906667pt;}
.x36{left:100.831988pt;}
.x14{left:110.746667pt;}
.x42{left:116.351988pt;}
.x5{left:125.640000pt;}
.x2b{left:135.386655pt;}
.x4d{left:155.066655pt;}
.x53{left:158.426655pt;}
.x4c{left:160.506655pt;}
.x3{left:162.106667pt;}
.x41{left:175.066655pt;}
.x43{left:181.146655pt;}
.x46{left:188.826655pt;}
.x1c{left:194.746667pt;}
.x37{left:200.346655pt;}
.x48{left:209.946655pt;}
.x3a{left:218.426655pt;}
.x52{left:236.186655pt;}
.x49{left:244.346655pt;}
.x44{left:250.106655pt;}
.x47{left:259.106655pt;}
.x2f{left:261.506655pt;}
.x2c{left:265.826655pt;}
.x4f{left:268.706655pt;}
.x51{left:269.826655pt;}
.x3d{left:278.786655pt;}
.x50{left:289.506655pt;}
.x45{left:305.346655pt;}
.xb{left:325.346655pt;}
.x2d{left:334.306655pt;}
.x1f{left:356.066667pt;}
.x3e{left:390.306655pt;}
.x4b{left:399.266655pt;}
.x38{left:401.826655pt;}
.x30{left:407.746655pt;}
.x54{left:419.933322pt;}
.x3b{left:423.293322pt;}
.x3c{left:432.573322pt;}
.xa{left:457.533322pt;}
.x4e{left:460.093322pt;}
.x1e{left:469.066667pt;}
.x40{left:472.893322pt;}
.x31{left:489.053322pt;}
.x34{left:497.213322pt;}
.x4a{left:524.893322pt;}
.x10{left:549.053322pt;}
.x32{left:575.773322pt;}
.xe{left:595.333322pt;}
.xc{left:607.973322pt;}
.x2a{left:626.373322pt;}
.x3f{left:630.373322pt;}
.x2e{left:637.893322pt;}
.x33{left:643.493322pt;}
.x9{left:680.933322pt;}
.x8{left:697.093322pt;}
.x35{left:707.493322pt;}
.x11{left:717.093322pt;}
.xd{left:719.813322pt;}
.xf{left:720.773322pt;}
}




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