
    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_29ca969f6d8b48f03533c8a1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7cd82ba2aa39f606027d50d6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_a6a07e4f7b285e87786fe5a5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_1b74eee2ec0fcff79dbb0d35.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_d14055f763589f841533bedd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.996094;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_d3f98a74fdc78384f81a92f2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_92b0d10f312b96792a3d5e52.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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ee849803320e874bbcfc296b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_434a04f713ecc946f338e2e3.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_59bb36721be078582b437471.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3b8a74f166c85c3097668fab.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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_a58673de1d4415407f62dd23.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6ab2d7a156567012795e4633.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_92b50f3662f6fddd376dc681.woff')format("woff");}.ff13{font-family:ff13;line-height:0.916016;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-1.596000px;}
.lsb{letter-spacing:-1.482000px;}
.lsa{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.961323px;}
.lsd{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.090000px;}
.lse{letter-spacing:0.690000px;}
.ls14{letter-spacing:1.677000px;}
.ls1{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.026500px;}
.ls4{letter-spacing:2.146500px;}
.ls15{letter-spacing:2.164500px;}
.ls11{letter-spacing:2.190000px;}
.ls0{letter-spacing:2.250000px;}
.ls7{letter-spacing:2.322000px;}
.ls6{letter-spacing:2.370000px;}
.ls17{letter-spacing:2.430000px;}
.ls8{letter-spacing:4.779000px;}
.ls2{letter-spacing:5.760450px;}
.ls18{letter-spacing:15.387000px;}
.ls16{letter-spacing:46.887000px;}
.ls13{letter-spacing:64.887000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(23,54,93),0 0.015em rgb(23,54,93),0.015em 0 rgb(23,54,93),0 -0.015em  rgb(23,54,93);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(23,54,93);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-61.663798px;}
.ws3{word-spacing:-16.875000px;}
.ws5{word-spacing:-16.146000px;}
.ws4{word-spacing:-15.354000px;}
.ws0{word-spacing:-14.625000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.221000px;}
.ws6{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-10.452600px;}
._6{margin-left:-5.728200px;}
._14{margin-left:-4.686300px;}
._9{margin-left:-3.205500px;}
._0{margin-left:-1.755000px;}
._3{width:1.345500px;}
._2{width:2.515500px;}
._1{width:4.329000px;}
._4{width:5.374500px;}
._f{width:6.424500px;}
._a{width:7.956000px;}
._16{width:9.117000px;}
._5{width:10.797000px;}
._d{width:12.054000px;}
._c{width:13.092000px;}
._8{width:15.154500px;}
._15{width:16.588500px;}
._b{width:17.608500px;}
._e{width:22.062000px;}
._11{width:29.676000px;}
._12{width:31.297500px;}
._13{width:34.056000px;}
._10{width:35.263500px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs4{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y1a{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.375000px;}
.yc5{bottom:3.390000px;}
.y46{bottom:3.420000px;}
.y18{bottom:4.500000px;}
.y93{bottom:4.515000px;}
.ya0{bottom:4.530000px;}
.y8f{bottom:4.545000px;}
.y44{bottom:10.170000px;}
.yd{bottom:11.295000px;}
.y1b{bottom:13.485000px;}
.yb{bottom:13.500000px;}
.y3{bottom:15.750000px;}
.y41{bottom:21.405000px;}
.y45{bottom:21.420000px;}
.y43{bottom:24.795000px;}
.y17{bottom:27.000000px;}
.ya{bottom:30.405000px;}
.y2{bottom:36.037500px;}
.y4{bottom:37.162500px;}
.y40{bottom:38.280000px;}
.y16{bottom:43.920000px;}
.y9{bottom:46.155000px;}
.y3f{bottom:56.325000px;}
.y1{bottom:59.662500px;}
.y15{bottom:59.670000px;}
.y8{bottom:73.185000px;}
.y3e{bottom:73.200000px;}
.y14{bottom:76.575000px;}
.y13{bottom:86.700000px;}
.y3d{bottom:90.075000px;}
.y7{bottom:93.435000px;}
.y12{bottom:104.700000px;}
.y3c{bottom:108.105000px;}
.y6{bottom:110.355000px;}
.yca{bottom:121.612500px;}
.y11{bottom:123.870000px;}
.y3b{bottom:124.980000px;}
.yed{bottom:126.112500px;}
.y8c{bottom:129.487500px;}
.yad{bottom:133.987500px;}
.y51{bottom:137.362500px;}
.yc9{bottom:138.487500px;}
.y3a{bottom:141.900000px;}
.yec{bottom:142.987500px;}
.y8b{bottom:146.362500px;}
.y10{bottom:149.745000px;}
.yac{bottom:150.870000px;}
.yc8{bottom:151.995000px;}
.y50{bottom:155.370000px;}
.y39{bottom:159.900000px;}
.yeb{bottom:161.025000px;}
.y8a{bottom:164.400000px;}
.yab{bottom:167.775000px;}
.y4f{bottom:172.275000px;}
.yf{bottom:174.525000px;}
.y38{bottom:176.820000px;}
.yea{bottom:177.900000px;}
.y89{bottom:181.275000px;}
.yaa{bottom:185.775000px;}
.y4e{bottom:189.150000px;}
.y37{bottom:193.695000px;}
.ye9{bottom:194.775000px;}
.y88{bottom:198.150000px;}
.ya9{bottom:199.275000px;}
.y4d{bottom:207.195000px;}
.y36{bottom:211.680000px;}
.ye8{bottom:212.820000px;}
.y87{bottom:216.195000px;}
.y4c{bottom:224.070000px;}
.y35{bottom:228.600000px;}
.ye7{bottom:229.695000px;}
.y86{bottom:233.070000px;}
.y28{bottom:235.350000px;}
.y4b{bottom:240.945000px;}
.y34{bottom:245.475000px;}
.ye6{bottom:246.600000px;}
.y85{bottom:249.975000px;}
.y27{bottom:251.100000px;}
.y4a{bottom:258.975000px;}
.y33{bottom:263.520000px;}
.ye5{bottom:264.600000px;}
.y84{bottom:267.975000px;}
.y26{bottom:269.145000px;}
.y49{bottom:275.850000px;}
.y32{bottom:280.395000px;}
.ye4{bottom:281.475000px;}
.y83{bottom:284.895000px;}
.y25{bottom:286.020000px;}
.y48{bottom:292.755000px;}
.y31{bottom:297.270000px;}
.ye3{bottom:298.395000px;}
.y82{bottom:301.770000px;}
.y24{bottom:304.050000px;}
.y47{bottom:310.755000px;}
.y30{bottom:315.300000px;}
.ye2{bottom:316.380000px;}
.y81{bottom:319.755000px;}
.y23{bottom:320.925000px;}
.y42{bottom:324.255000px;}
.y2f{bottom:332.175000px;}
.ye1{bottom:333.300000px;}
.y80{bottom:337.800000px;}
.y22{bottom:338.925000px;}
.y2e{bottom:349.095000px;}
.ye0{bottom:350.175000px;}
.y7f{bottom:354.675000px;}
.y21{bottom:355.845000px;}
.y1c{bottom:360.300000px;}
.y2d{bottom:367.080000px;}
.ydf{bottom:368.205000px;}
.y20{bottom:373.830000px;}
.y2c{bottom:384.000000px;}
.yde{bottom:385.080000px;}
.y7e{bottom:390.705000px;}
.y1f{bottom:391.875000px;}
.y2b{bottom:400.875000px;}
.ydd{bottom:401.955000px;}
.y7d{bottom:407.580000px;}
.y2a{bottom:418.875000px;}
.y1e{bottom:420.000000px;}
.y7c{bottom:424.500000px;}
.y29{bottom:435.780000px;}
.ydc{bottom:436.875000px;}
.y1d{bottom:438.030000px;}
.y7b{bottom:443.625000px;}
.yc7{bottom:451.530000px;}
.ydb{bottom:453.795000px;}
.y7a{bottom:460.545000px;}
.yc6{bottom:466.155000px;}
.yda{bottom:471.780000px;}
.y79{bottom:478.530000px;}
.yc4{bottom:484.155000px;}
.yd9{bottom:488.655000px;}
.y78{bottom:496.575000px;}
.yc3{bottom:502.200000px;}
.yd8{bottom:505.575000px;}
.y77{bottom:513.450000px;}
.yc2{bottom:520.200000px;}
.yd7{bottom:523.575000px;}
.y76{bottom:530.325000px;}
.yd6{bottom:540.495000px;}
.yc1{bottom:541.605000px;}
.y75{bottom:548.355000px;}
.yd5{bottom:557.370000px;}
.yc0{bottom:559.620000px;}
.ya8{bottom:560.745000px;}
.y74{bottom:566.370000px;}
.yd4{bottom:575.355000px;}
.ybf{bottom:576.495000px;}
.ya7{bottom:577.650000px;}
.y73{bottom:584.400000px;}
.ybe{bottom:590.025000px;}
.yd3{bottom:592.275000px;}
.ya6{bottom:595.650000px;}
.y72{bottom:603.525000px;}
.ya5{bottom:609.150000px;}
.y71{bottom:621.570000px;}
.ya4{bottom:627.195000px;}
.y70{bottom:638.445000px;}
.yd2{bottom:644.070000px;}
.ya3{bottom:645.195000px;}
.y6f{bottom:656.445000px;}
.yd1{bottom:660.975000px;}
.ya2{bottom:663.225000px;}
.y6e{bottom:674.475000px;}
.yd0{bottom:678.975000px;}
.ya1{bottom:681.225000px;}
.y6d{bottom:692.475000px;}
.ycf{bottom:695.850000px;}
.y9f{bottom:699.225000px;}
.y6c{bottom:710.505000px;}
.yce{bottom:712.770000px;}
.y9e{bottom:721.755000px;}
.y6b{bottom:728.505000px;}
.ycd{bottom:730.755000px;}
.y9d{bottom:738.630000px;}
.y6a{bottom:745.425000px;}
.ycc{bottom:747.675000px;}
.y9c{bottom:753.300000px;}
.y69{bottom:763.425000px;}
.ycb{bottom:764.550000px;}
.y9b{bottom:771.300000px;}
.y68{bottom:782.550000px;}
.y9a{bottom:789.330000px;}
.y67{bottom:799.455000px;}
.y98{bottom:807.330000px;}
.y19{bottom:809.595000px;}
.y66{bottom:816.330000px;}
.y97{bottom:825.330000px;}
.y65{bottom:834.375000px;}
.ye{bottom:838.875000px;}
.y96{bottom:846.750000px;}
.y64{bottom:851.250000px;}
.y95{bottom:863.625000px;}
.y63{bottom:868.125000px;}
.ybd{bottom:874.920000px;}
.y94{bottom:881.670000px;}
.y62{bottom:886.170000px;}
.ybc{bottom:889.545000px;}
.y92{bottom:895.155000px;}
.y61{bottom:903.045000px;}
.ybb{bottom:907.530000px;}
.y91{bottom:913.200000px;}
.y60{bottom:919.950000px;}
.yba{bottom:925.575000px;}
.y90{bottom:931.200000px;}
.y5f{bottom:937.950000px;}
.yb9{bottom:943.575000px;}
.y8e{bottom:949.200000px;}
.y5e{bottom:954.870000px;}
.yb8{bottom:964.995000px;}
.y8d{bottom:967.245000px;}
.y5d{bottom:971.745000px;}
.yb7{bottom:982.995000px;}
.y5c{bottom:989.745000px;}
.yb6{bottom:996.525000px;}
.y5b{bottom:1006.650000px;}
.yb5{bottom:1014.525000px;}
.y5a{bottom:1023.525000px;}
.yc{bottom:1028.025000px;}
.yb4{bottom:1032.525000px;}
.y59{bottom:1041.570000px;}
.y5{bottom:1053.945000px;}
.yb3{bottom:1055.070000px;}
.y58{bottom:1058.445000px;}
.yb2{bottom:1071.945000px;}
.y57{bottom:1075.320000px;}
.yb1{bottom:1086.600000px;}
.y56{bottom:1093.350000px;}
.yb0{bottom:1104.600000px;}
.y55{bottom:1110.225000px;}
.yaf{bottom:1122.630000px;}
.y54{bottom:1127.130000px;}
.yae{bottom:1140.630000px;}
.y53{bottom:1145.130000px;}
.y52{bottom:1162.050000px;}
.h26{height:16.860000px;}
.h24{height:16.875000px;}
.h23{height:16.912500px;}
.h20{height:17.985000px;}
.h22{height:18.000000px;}
.h25{height:18.022500px;}
.h21{height:18.037500px;}
.hd{height:25.912500px;}
.h16{height:27.738281px;}
.h17{height:29.272500px;}
.h15{height:35.806641px;}
.h1e{height:36.037500px;}
.h9{height:37.125000px;}
.h1c{height:37.801758px;}
.h5{height:41.275635px;}
.h1d{height:42.303955px;}
.h1f{height:42.589600px;}
.h3{height:42.760986px;}
.h10{height:43.075195px;}
.hb{height:43.875000px;}
.h1b{height:44.674805px;}
.h1a{height:49.234131px;}
.h2{height:49.537500px;}
.he{height:50.625000px;}
.h4{height:51.968611px;}
.h6{height:52.066406px;}
.ha{height:54.000000px;}
.h13{height:58.185791px;}
.h14{height:59.899658px;}
.h12{height:64.237500px;}
.h8{height:67.137451px;}
.h18{height:69.114990px;}
.hc{height:71.613281px;}
.h11{height:72.183545px;}
.h7{height:121.612500px;}
.hf{height:189.150000px;}
.h19{height:449.280000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1c{width:64.200000px;}
.w14{width:67.575000px;}
.w18{width:70.950000px;}
.w2{width:74.362500px;}
.w10{width:76.612500px;}
.wc{width:82.237500px;}
.w4{width:152.055000px;}
.w16{width:161.055000px;}
.w1e{width:170.070000px;}
.we{width:181.350000px;}
.w17{width:190.380000px;}
.w1a{width:192.600000px;}
.wa{width:195.975000px;}
.w12{width:200.520000px;}
.w1f{width:201.600000px;}
.wf{width:214.005000px;}
.w1b{width:219.675000px;}
.w7{width:223.020000px;}
.w13{width:229.800000px;}
.wb{width:230.925000px;}
.w9{width:236.550000px;}
.w11{width:248.925000px;}
.w19{width:269.220000px;}
.wd{width:272.595000px;}
.w1d{width:298.500000px;}
.w15{width:324.405000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.750000px;}
.xa{left:7.875000px;}
.x2{left:9.037500px;}
.x17{left:12.420000px;}
.x1{left:72.075000px;}
.x7{left:73.237500px;}
.x6{left:81.112487px;}
.x8{left:97.987500px;}
.x18{left:108.149987px;}
.x19{left:135.187487px;}
.x11{left:194.857500px;}
.x10{left:206.137500px;}
.x1f{left:207.269987px;}
.x15{left:214.012500px;}
.x1a{left:216.254987px;}
.x9{left:225.300000px;}
.x12{left:229.762500px;}
.x13{left:233.137500px;}
.x14{left:245.557500px;}
.x24{left:250.079987px;}
.x29{left:257.969987px;}
.x2f{left:282.749987px;}
.x34{left:286.124987px;}
.xd{left:290.625000px;}
.x2a{left:291.749987px;}
.x38{left:293.999987px;}
.x16{left:296.250000px;}
.x1b{left:310.920000px;}
.x25{left:323.295000px;}
.x30{left:343.575000px;}
.xb{left:345.780000px;}
.x21{left:346.950000px;}
.x20{left:354.824987px;}
.x2b{left:362.699987px;}
.xc{left:364.950000px;}
.x35{left:372.870000px;}
.xf{left:373.957500px;}
.x2c{left:398.775000px;}
.x3{left:421.305000px;}
.x4{left:449.475000px;}
.xe{left:453.945000px;}
.x1c{left:506.895000px;}
.x26{left:523.800000px;}
.x22{left:529.425000px;}
.x31{left:536.175000px;}
.x36{left:544.095000px;}
.x2d{left:559.845000px;}
.x37{left:726.569987px;}
.x33{left:732.194987px;}
.x28{left:735.569987px;}
.x1d{left:738.945000px;}
.x23{left:744.570000px;}
.x5{left:746.820000px;}
.x2e{left:750.225000px;}
.x27{left:753.600000px;}
.x32{left:756.975000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-1.418667pt;}
.lsb{letter-spacing:-1.317333pt;}
.lsa{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.854509pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.613333pt;}
.ls14{letter-spacing:1.490667pt;}
.ls1{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.801333pt;}
.ls4{letter-spacing:1.908000pt;}
.ls15{letter-spacing:1.924000pt;}
.ls11{letter-spacing:1.946667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls7{letter-spacing:2.064000pt;}
.ls6{letter-spacing:2.106667pt;}
.ls17{letter-spacing:2.160000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls2{letter-spacing:5.120400pt;}
.ls18{letter-spacing:13.677333pt;}
.ls16{letter-spacing:41.677333pt;}
.ls13{letter-spacing:57.677333pt;}
.ws2{word-spacing:-54.812265pt;}
.ws3{word-spacing:-15.000000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws4{word-spacing:-13.648000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-9.291200pt;}
._6{margin-left:-5.091733pt;}
._14{margin-left:-4.165600pt;}
._9{margin-left:-2.849333pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.196000pt;}
._2{width:2.236000pt;}
._1{width:3.848000pt;}
._4{width:4.777333pt;}
._f{width:5.710667pt;}
._a{width:7.072000pt;}
._16{width:8.104000pt;}
._5{width:9.597333pt;}
._d{width:10.714667pt;}
._c{width:11.637333pt;}
._8{width:13.470667pt;}
._15{width:14.745333pt;}
._b{width:15.652000pt;}
._e{width:19.610667pt;}
._11{width:26.378667pt;}
._12{width:27.820000pt;}
._13{width:30.272000pt;}
._10{width:31.345333pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs4{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y1a{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.000000pt;}
.yc5{bottom:3.013333pt;}
.y46{bottom:3.040000pt;}
.y18{bottom:4.000000pt;}
.y93{bottom:4.013333pt;}
.ya0{bottom:4.026667pt;}
.y8f{bottom:4.040000pt;}
.y44{bottom:9.040000pt;}
.yd{bottom:10.040000pt;}
.y1b{bottom:11.986667pt;}
.yb{bottom:12.000000pt;}
.y3{bottom:14.000000pt;}
.y41{bottom:19.026667pt;}
.y45{bottom:19.040000pt;}
.y43{bottom:22.040000pt;}
.y17{bottom:24.000000pt;}
.ya{bottom:27.026667pt;}
.y2{bottom:32.033333pt;}
.y4{bottom:33.033333pt;}
.y40{bottom:34.026667pt;}
.y16{bottom:39.040000pt;}
.y9{bottom:41.026667pt;}
.y3f{bottom:50.066667pt;}
.y1{bottom:53.033333pt;}
.y15{bottom:53.040000pt;}
.y8{bottom:65.053333pt;}
.y3e{bottom:65.066667pt;}
.y14{bottom:68.066667pt;}
.y13{bottom:77.066667pt;}
.y3d{bottom:80.066667pt;}
.y7{bottom:83.053333pt;}
.y12{bottom:93.066667pt;}
.y3c{bottom:96.093333pt;}
.y6{bottom:98.093333pt;}
.yca{bottom:108.100000pt;}
.y11{bottom:110.106667pt;}
.y3b{bottom:111.093333pt;}
.yed{bottom:112.100000pt;}
.y8c{bottom:115.100000pt;}
.yad{bottom:119.100000pt;}
.y51{bottom:122.100000pt;}
.yc9{bottom:123.100000pt;}
.y3a{bottom:126.133333pt;}
.yec{bottom:127.100000pt;}
.y8b{bottom:130.100000pt;}
.y10{bottom:133.106667pt;}
.yac{bottom:134.106667pt;}
.yc8{bottom:135.106667pt;}
.y50{bottom:138.106667pt;}
.y39{bottom:142.133333pt;}
.yeb{bottom:143.133333pt;}
.y8a{bottom:146.133333pt;}
.yab{bottom:149.133333pt;}
.y4f{bottom:153.133333pt;}
.yf{bottom:155.133333pt;}
.y38{bottom:157.173333pt;}
.yea{bottom:158.133333pt;}
.y89{bottom:161.133333pt;}
.yaa{bottom:165.133333pt;}
.y4e{bottom:168.133333pt;}
.y37{bottom:172.173333pt;}
.ye9{bottom:173.133333pt;}
.y88{bottom:176.133333pt;}
.ya9{bottom:177.133333pt;}
.y4d{bottom:184.173333pt;}
.y36{bottom:188.160000pt;}
.ye8{bottom:189.173333pt;}
.y87{bottom:192.173333pt;}
.y4c{bottom:199.173333pt;}
.y35{bottom:203.200000pt;}
.ye7{bottom:204.173333pt;}
.y86{bottom:207.173333pt;}
.y28{bottom:209.200000pt;}
.y4b{bottom:214.173333pt;}
.y34{bottom:218.200000pt;}
.ye6{bottom:219.200000pt;}
.y85{bottom:222.200000pt;}
.y27{bottom:223.200000pt;}
.y4a{bottom:230.200000pt;}
.y33{bottom:234.240000pt;}
.ye5{bottom:235.200000pt;}
.y84{bottom:238.200000pt;}
.y26{bottom:239.240000pt;}
.y49{bottom:245.200000pt;}
.y32{bottom:249.240000pt;}
.ye4{bottom:250.200000pt;}
.y83{bottom:253.240000pt;}
.y25{bottom:254.240000pt;}
.y48{bottom:260.226667pt;}
.y31{bottom:264.240000pt;}
.ye3{bottom:265.240000pt;}
.y82{bottom:268.240000pt;}
.y24{bottom:270.266667pt;}
.y47{bottom:276.226667pt;}
.y30{bottom:280.266667pt;}
.ye2{bottom:281.226667pt;}
.y81{bottom:284.226667pt;}
.y23{bottom:285.266667pt;}
.y42{bottom:288.226667pt;}
.y2f{bottom:295.266667pt;}
.ye1{bottom:296.266667pt;}
.y80{bottom:300.266667pt;}
.y22{bottom:301.266667pt;}
.y2e{bottom:310.306667pt;}
.ye0{bottom:311.266667pt;}
.y7f{bottom:315.266667pt;}
.y21{bottom:316.306667pt;}
.y1c{bottom:320.266667pt;}
.y2d{bottom:326.293333pt;}
.ydf{bottom:327.293333pt;}
.y20{bottom:332.293333pt;}
.y2c{bottom:341.333333pt;}
.yde{bottom:342.293333pt;}
.y7e{bottom:347.293333pt;}
.y1f{bottom:348.333333pt;}
.y2b{bottom:356.333333pt;}
.ydd{bottom:357.293333pt;}
.y7d{bottom:362.293333pt;}
.y2a{bottom:372.333333pt;}
.y1e{bottom:373.333333pt;}
.y7c{bottom:377.333333pt;}
.y29{bottom:387.360000pt;}
.ydc{bottom:388.333333pt;}
.y1d{bottom:389.360000pt;}
.y7b{bottom:394.333333pt;}
.yc7{bottom:401.360000pt;}
.ydb{bottom:403.373333pt;}
.y7a{bottom:409.373333pt;}
.yc6{bottom:414.360000pt;}
.yda{bottom:419.360000pt;}
.y79{bottom:425.360000pt;}
.yc4{bottom:430.360000pt;}
.yd9{bottom:434.360000pt;}
.y78{bottom:441.400000pt;}
.yc3{bottom:446.400000pt;}
.yd8{bottom:449.400000pt;}
.y77{bottom:456.400000pt;}
.yc2{bottom:462.400000pt;}
.yd7{bottom:465.400000pt;}
.y76{bottom:471.400000pt;}
.yd6{bottom:480.440000pt;}
.yc1{bottom:481.426667pt;}
.y75{bottom:487.426667pt;}
.yd5{bottom:495.440000pt;}
.yc0{bottom:497.440000pt;}
.ya8{bottom:498.440000pt;}
.y74{bottom:503.440000pt;}
.yd4{bottom:511.426667pt;}
.ybf{bottom:512.440000pt;}
.ya7{bottom:513.466667pt;}
.y73{bottom:519.466667pt;}
.ybe{bottom:524.466667pt;}
.yd3{bottom:526.466667pt;}
.ya6{bottom:529.466667pt;}
.y72{bottom:536.466667pt;}
.ya5{bottom:541.466667pt;}
.y71{bottom:552.506667pt;}
.ya4{bottom:557.506667pt;}
.y70{bottom:567.506667pt;}
.yd2{bottom:572.506667pt;}
.ya3{bottom:573.506667pt;}
.y6f{bottom:583.506667pt;}
.yd1{bottom:587.533333pt;}
.ya2{bottom:589.533333pt;}
.y6e{bottom:599.533333pt;}
.yd0{bottom:603.533333pt;}
.ya1{bottom:605.533333pt;}
.y6d{bottom:615.533333pt;}
.ycf{bottom:618.533333pt;}
.y9f{bottom:621.533333pt;}
.y6c{bottom:631.560000pt;}
.yce{bottom:633.573333pt;}
.y9e{bottom:641.560000pt;}
.y6b{bottom:647.560000pt;}
.ycd{bottom:649.560000pt;}
.y9d{bottom:656.560000pt;}
.y6a{bottom:662.600000pt;}
.ycc{bottom:664.600000pt;}
.y9c{bottom:669.600000pt;}
.y69{bottom:678.600000pt;}
.ycb{bottom:679.600000pt;}
.y9b{bottom:685.600000pt;}
.y68{bottom:695.600000pt;}
.y9a{bottom:701.626667pt;}
.y67{bottom:710.626667pt;}
.y98{bottom:717.626667pt;}
.y19{bottom:719.640000pt;}
.y66{bottom:725.626667pt;}
.y97{bottom:733.626667pt;}
.y65{bottom:741.666667pt;}
.ye{bottom:745.666667pt;}
.y96{bottom:752.666667pt;}
.y64{bottom:756.666667pt;}
.y95{bottom:767.666667pt;}
.y63{bottom:771.666667pt;}
.ybd{bottom:777.706667pt;}
.y94{bottom:783.706667pt;}
.y62{bottom:787.706667pt;}
.ybc{bottom:790.706667pt;}
.y92{bottom:795.693333pt;}
.y61{bottom:802.706667pt;}
.ybb{bottom:806.693333pt;}
.y91{bottom:811.733333pt;}
.y60{bottom:817.733333pt;}
.yba{bottom:822.733333pt;}
.y90{bottom:827.733333pt;}
.y5f{bottom:833.733333pt;}
.yb9{bottom:838.733333pt;}
.y8e{bottom:843.733333pt;}
.y5e{bottom:848.773333pt;}
.yb8{bottom:857.773333pt;}
.y8d{bottom:859.773333pt;}
.y5d{bottom:863.773333pt;}
.yb7{bottom:873.773333pt;}
.y5c{bottom:879.773333pt;}
.yb6{bottom:885.800000pt;}
.y5b{bottom:894.800000pt;}
.yb5{bottom:901.800000pt;}
.y5a{bottom:909.800000pt;}
.yc{bottom:913.800000pt;}
.yb4{bottom:917.800000pt;}
.y59{bottom:925.840000pt;}
.y5{bottom:936.840000pt;}
.yb3{bottom:937.840000pt;}
.y58{bottom:940.840000pt;}
.yb2{bottom:952.840000pt;}
.y57{bottom:955.840000pt;}
.yb1{bottom:965.866667pt;}
.y56{bottom:971.866667pt;}
.yb0{bottom:981.866667pt;}
.y55{bottom:986.866667pt;}
.yaf{bottom:997.893333pt;}
.y54{bottom:1001.893333pt;}
.yae{bottom:1013.893333pt;}
.y53{bottom:1017.893333pt;}
.y52{bottom:1032.933333pt;}
.h26{height:14.986667pt;}
.h24{height:15.000000pt;}
.h23{height:15.033333pt;}
.h20{height:15.986667pt;}
.h22{height:16.000000pt;}
.h25{height:16.020000pt;}
.h21{height:16.033333pt;}
.hd{height:23.033333pt;}
.h16{height:24.656250pt;}
.h17{height:26.020000pt;}
.h15{height:31.828125pt;}
.h1e{height:32.033333pt;}
.h9{height:33.000000pt;}
.h1c{height:33.601562pt;}
.h5{height:36.689453pt;}
.h1d{height:37.603516pt;}
.h1f{height:37.857422pt;}
.h3{height:38.009766pt;}
.h10{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1b{height:39.710938pt;}
.h1a{height:43.763672pt;}
.h2{height:44.033333pt;}
.he{height:45.000000pt;}
.h4{height:46.194321pt;}
.h6{height:46.281250pt;}
.ha{height:48.000000pt;}
.h13{height:51.720703pt;}
.h14{height:53.244141pt;}
.h12{height:57.100000pt;}
.h8{height:59.677734pt;}
.h18{height:61.435547pt;}
.hc{height:63.656250pt;}
.h11{height:64.163151pt;}
.h7{height:108.100000pt;}
.hf{height:168.133333pt;}
.h19{height:399.360000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1c{width:57.066667pt;}
.w14{width:60.066667pt;}
.w18{width:63.066667pt;}
.w2{width:66.100000pt;}
.w10{width:68.100000pt;}
.wc{width:73.100000pt;}
.w4{width:135.160000pt;}
.w16{width:143.160000pt;}
.w1e{width:151.173333pt;}
.we{width:161.200000pt;}
.w17{width:169.226667pt;}
.w1a{width:171.200000pt;}
.wa{width:174.200000pt;}
.w12{width:178.240000pt;}
.w1f{width:179.200000pt;}
.wf{width:190.226667pt;}
.w1b{width:195.266667pt;}
.w7{width:198.240000pt;}
.w13{width:204.266667pt;}
.wb{width:205.266667pt;}
.w9{width:210.266667pt;}
.w11{width:221.266667pt;}
.w19{width:239.306667pt;}
.wd{width:242.306667pt;}
.w1d{width:265.333333pt;}
.w15{width:288.360000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.000000pt;}
.xa{left:7.000000pt;}
.x2{left:8.033333pt;}
.x17{left:11.040000pt;}
.x1{left:64.066667pt;}
.x7{left:65.100000pt;}
.x6{left:72.099988pt;}
.x8{left:87.100000pt;}
.x18{left:96.133322pt;}
.x19{left:120.166655pt;}
.x11{left:173.206667pt;}
.x10{left:183.233333pt;}
.x1f{left:184.239988pt;}
.x15{left:190.233333pt;}
.x1a{left:192.226655pt;}
.x9{left:200.266667pt;}
.x12{left:204.233333pt;}
.x13{left:207.233333pt;}
.x14{left:218.273333pt;}
.x24{left:222.293322pt;}
.x29{left:229.306655pt;}
.x2f{left:251.333322pt;}
.x34{left:254.333322pt;}
.xd{left:258.333333pt;}
.x2a{left:259.333322pt;}
.x38{left:261.333322pt;}
.x16{left:263.333333pt;}
.x1b{left:276.373333pt;}
.x25{left:287.373333pt;}
.x30{left:305.400000pt;}
.xb{left:307.360000pt;}
.x21{left:308.400000pt;}
.x20{left:315.399988pt;}
.x2b{left:322.399988pt;}
.xc{left:324.400000pt;}
.x35{left:331.440000pt;}
.xf{left:332.406667pt;}
.x2c{left:354.466667pt;}
.x3{left:374.493333pt;}
.x4{left:399.533333pt;}
.xe{left:403.506667pt;}
.x1c{left:450.573333pt;}
.x26{left:465.600000pt;}
.x22{left:470.600000pt;}
.x31{left:476.600000pt;}
.x36{left:483.640000pt;}
.x2d{left:497.640000pt;}
.x37{left:645.839988pt;}
.x33{left:650.839988pt;}
.x28{left:653.839988pt;}
.x1d{left:656.840000pt;}
.x23{left:661.840000pt;}
.x5{left:663.840000pt;}
.x2e{left:666.866667pt;}
.x27{left:669.866667pt;}
.x32{left:672.866667pt;}
}




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