
    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_07a1b0e4f908880ddc354fea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975586;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_bbdaa68e921def536e75468d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_4a9972e1c8842e866f0d6a6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_c45b0169c30390124a897ef9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.089844;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_44ebbb911d980a4f15e8e0a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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_42b732e39375455a26a43b93.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_abfd6a5a75e84bde029fee70.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_625deaa40917737b413f01b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_28a530c442bf0862d674a4ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.048828;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;}
.v4{vertical-align:1.800000px;}
.v7{vertical-align:22.200000px;}
.v2{vertical-align:23.400000px;}
.v6{vertical-align:25.800000px;}
.v1{vertical-align:27.600000px;}
.v3{vertical-align:28.800000px;}
.v5{vertical-align:41.400000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.057000px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.249600px;}
.ls2{letter-spacing:0.451200px;}
.ls4{letter-spacing:60.600000px;}
.ls0{letter-spacing:68.040000px;}
.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;}
}
.ws7{word-spacing:-39.732000px;}
.ws13{word-spacing:-25.056000px;}
.ws0{word-spacing:-20.880000px;}
.ws6{word-spacing:-19.944000px;}
.ws12{word-spacing:-18.282000px;}
.ws5{word-spacing:-16.620000px;}
.ws15{word-spacing:-15.846000px;}
.ws2{word-spacing:-15.789000px;}
.ws11{word-spacing:-14.958000px;}
.ws4{word-spacing:-11.634000px;}
.ws14{word-spacing:-10.636800px;}
.ws1{word-spacing:-9.639600px;}
.ws16{word-spacing:-9.141000px;}
.wsb{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:115.158000px;}
.wsa{word-spacing:147.558000px;}
.wsc{word-spacing:212.898000px;}
.wse{word-spacing:245.298000px;}
.wsf{word-spacing:310.098000px;}
.ws8{word-spacing:313.080000px;}
.wsd{word-spacing:342.498000px;}
.ws10{word-spacing:472.638000px;}
._4{margin-left:-1.020000px;}
._2{width:1.020000px;}
._5{width:2.220000px;}
._1{width:3.240000px;}
._8{width:5.220000px;}
._7{width:6.360000px;}
._0{width:7.440000px;}
._b{width:9.252000px;}
._9{width:10.404000px;}
._3{width:12.180000px;}
._6{width:13.800000px;}
._c{width:14.976000px;}
._d{width:16.236000px;}
._a{width:18.000000px;}
._f{width:21.528000px;}
._11{width:50.844000px;}
._e{width:68.040000px;}
._10{width:809.280000px;}
.fc4{color:rgb(47,79,79);}
.fc2{color:rgb(0,0,128);}
.fc3{color:rgb(105,105,105);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,56,102);}
.fsa{font-size:33.000000px;}
.fs4{font-size:34.800000px;}
.fs8{font-size:38.400000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3f{bottom:45.241500px;}
.y1e{bottom:87.991500px;}
.y3e{bottom:90.841500px;}
.yc2{bottom:93.691500px;}
.y1d{bottom:106.741500px;}
.ya9{bottom:107.491500px;}
.y3d{bottom:110.491500px;}
.y5f{bottom:110.641500px;}
.yeb{bottom:114.241500px;}
.yb7{bottom:119.491500px;}
.y129{bottom:120.241500px;}
.ya8{bottom:125.341500px;}
.y1c{bottom:125.641500px;}
.yc1{bottom:127.441500px;}
.y3c{bottom:129.391500px;}
.y5e{bottom:130.441500px;}
.yb6{bottom:137.341500px;}
.y128{bottom:141.991500px;}
.yea{bottom:147.991500px;}
.y5d{bottom:150.241500px;}
.ya7{bottom:150.391500px;}
.yb5{bottom:155.191500px;}
.yc0{bottom:161.191500px;}
.y127{bottom:163.741500px;}
.ya4{bottom:169.741500px;}
.ya6{bottom:170.191500px;}
.ye9{bottom:179.041500px;}
.y126{bottom:185.491500px;}
.y1b{bottom:188.791500px;}
.ya5{bottom:189.991500px;}
.ybf{bottom:192.241500px;}
.y3b{bottom:194.341500px;}
.y5c{bottom:207.841500px;}
.ye8{bottom:210.091500px;}
.y3a{bottom:214.141500px;}
.y125{bottom:215.791500px;}
.ya3{bottom:216.541500px;}
.y1a{bottom:219.841500px;}
.ybe{bottom:223.291500px;}
.ya2{bottom:225.991500px;}
.y39{bottom:233.941500px;}
.y124{bottom:237.541500px;}
.y5b{bottom:238.891500px;}
.ye7{bottom:241.141500px;}
.y19{bottom:250.891500px;}
.ybd{bottom:257.041500px;}
.yd1{bottom:257.491500px;}
.y123{bottom:259.291500px;}
.yc7{bottom:259.891500px;}
.ya1{bottom:262.891500px;}
.y98{bottom:265.441500px;}
.y5a{bottom:269.941500px;}
.ye6{bottom:272.191500px;}
.yd0{bottom:275.341500px;}
.yc6{bottom:277.741500px;}
.y122{bottom:281.041500px;}
.y9f{bottom:282.241500px;}
.y97{bottom:282.691500px;}
.yd5{bottom:283.291500px;}
.y38{bottom:286.891500px;}
.y71{bottom:290.041500px;}
.y18{bottom:290.341500px;}
.ycf{bottom:293.191500px;}
.ye2{bottom:294.091500px;}
.yc5{bottom:295.591500px;}
.ybc{bottom:299.791500px;}
.y96{bottom:299.941500px;}
.y59{bottom:300.991500px;}
.yd4{bottom:301.141500px;}
.ya0{bottom:302.491500px;}
.y121{bottom:311.191500px;}
.ye1{bottom:311.941500px;}
.ybb{bottom:317.641500px;}
.y37{bottom:317.941500px;}
.yd3{bottom:318.991500px;}
.y70{bottom:321.241500px;}
.y17{bottom:321.391500px;}
.ycc{bottom:323.791500px;}
.ydd{bottom:326.341500px;}
.y9e{bottom:329.041500px;}
.ye0{bottom:329.791500px;}
.y58{bottom:332.041500px;}
.y120{bottom:332.941500px;}
.yba{bottom:335.491500px;}
.y9d{bottom:338.491500px;}
.ycb{bottom:341.641500px;}
.ye5{bottom:342.241500px;}
.ydc{bottom:344.191500px;}
.y101{bottom:346.591500px;}
.y16{bottom:352.441500px;}
.y11f{bottom:354.691500px;}
.y6f{bottom:354.841500px;}
.yca{bottom:359.491500px;}
.ye4{bottom:360.091500px;}
.ydb{bottom:362.041500px;}
.y57{bottom:363.091500px;}
.y9c{bottom:375.391500px;}
.y11e{bottom:376.441500px;}
.y100{bottom:377.641500px;}
.ye3{bottom:377.941500px;}
.y36{bottom:379.891500px;}
.yd8{bottom:380.641500px;}
.y15{bottom:383.491500px;}
.y6e{bottom:385.891500px;}
.y13d{bottom:391.741500px;}
.y56{bottom:394.141500px;}
.y99{bottom:394.741500px;}
.y9b{bottom:395.191500px;}
.yd7{bottom:398.491500px;}
.y11d{bottom:406.741500px;}
.yff{bottom:408.691500px;}
.y14{bottom:414.541500px;}
.y9a{bottom:414.991500px;}
.yd6{bottom:416.341500px;}
.y13c{bottom:420.541500px;}
.y55{bottom:425.191500px;}
.y11c{bottom:428.491500px;}
.yfe{bottom:439.741500px;}
.y35{bottom:440.191500px;}
.y95{bottom:441.541500px;}
.y13{bottom:445.591500px;}
.y13b{bottom:449.341500px;}
.y11b{bottom:450.241500px;}
.y54{bottom:456.241500px;}
.y6d{bottom:456.391500px;}
.y94{bottom:461.341500px;}
.y91{bottom:470.791500px;}
.y34{bottom:471.241500px;}
.y12{bottom:476.641500px;}
.y11a{bottom:480.391500px;}
.y93{bottom:481.141500px;}
.y53{bottom:487.291500px;}
.y6c{bottom:487.591500px;}
.y92{bottom:500.941500px;}
.yfd{bottom:501.841500px;}
.y119{bottom:502.141500px;}
.y33{bottom:502.291500px;}
.y11{bottom:507.691500px;}
.y13a{bottom:508.291500px;}
.y52{bottom:522.541500px;}
.y6b{bottom:522.841500px;}
.y118{bottom:523.891500px;}
.y90{bottom:527.491500px;}
.yfc{bottom:532.891500px;}
.y32{bottom:533.341500px;}
.y88{bottom:545.191500px;}
.y117{bottom:545.641500px;}
.y8f{bottom:547.291500px;}
.y51{bottom:553.591500px;}
.y139{bottom:557.341500px;}
.y6a{bottom:558.091500px;}
.y87{bottom:562.441500px;}
.y31{bottom:564.391500px;}
.y8e{bottom:567.091500px;}
.y116{bottom:567.391500px;}
.y10{bottom:570.841500px;}
.yfb{bottom:572.491500px;}
.y50{bottom:584.641500px;}
.y8d{bottom:586.891500px;}
.y69{bottom:589.141500px;}
.y30{bottom:595.441500px;}
.y89{bottom:596.341500px;}
.y115{bottom:597.691500px;}
.yfa{bottom:603.541500px;}
.y8c{bottom:606.691500px;}
.y4f{bottom:615.691500px;}
.y114{bottom:619.441500px;}
.y68{bottom:620.341500px;}
.y8b{bottom:626.491500px;}
.yf9{bottom:634.591500px;}
.y2f{bottom:635.041500px;}
.yf{bottom:639.391500px;}
.y113{bottom:641.191500px;}
.y8a{bottom:646.291500px;}
.y4e{bottom:646.741500px;}
.y67{bottom:655.591500px;}
.y112{bottom:662.941500px;}
.ye{bottom:665.641500px;}
.y2e{bottom:666.091500px;}
.y138{bottom:673.741500px;}
.y4d{bottom:677.791500px;}
.y111{bottom:684.691500px;}
.y66{bottom:686.641500px;}
.y86{bottom:694.141500px;}
.yf8{bottom:696.691500px;}
.y2d{bottom:697.141500px;}
.y137{bottom:698.341500px;}
.yd{bottom:699.991500px;}
.y4c{bottom:708.841500px;}
.y110{bottom:714.841500px;}
.y65{bottom:721.891500px;}
.y85{bottom:723.241500px;}
.yc{bottom:725.941500px;}
.yf7{bottom:727.741500px;}
.y2c{bottom:728.191500px;}
.y136{bottom:734.341500px;}
.y10f{bottom:736.591500px;}
.y4b{bottom:739.891500px;}
.y82{bottom:742.441500px;}
.y84{bottom:743.041500px;}
.yb{bottom:751.741500px;}
.y64{bottom:753.091500px;}
.yb4{bottom:757.141500px;}
.y10e{bottom:758.341500px;}
.yf6{bottom:758.791500px;}
.y2b{bottom:759.241500px;}
.y83{bottom:762.841500px;}
.y4a{bottom:770.941500px;}
.ya{bottom:777.691500px;}
.y10d{bottom:780.091500px;}
.yb3{bottom:782.641500px;}
.y63{bottom:788.341500px;}
.yf5{bottom:789.841500px;}
.y2a{bottom:790.291500px;}
.y81{bottom:790.591500px;}
.y10c{bottom:801.841500px;}
.y49{bottom:801.991500px;}
.y9{bottom:803.491500px;}
.y80{bottom:820.141500px;}
.yf4{bottom:829.291500px;}
.y8{bottom:829.441500px;}
.y29{bottom:829.741500px;}
.y10b{bottom:832.141500px;}
.y48{bottom:833.041500px;}
.y62{bottom:840.691500px;}
.y7f{bottom:848.341500px;}
.y10a{bottom:853.891500px;}
.y135{bottom:854.491500px;}
.y7{bottom:855.241500px;}
.y7e{bottom:857.791500px;}
.yf3{bottom:860.341500px;}
.y28{bottom:860.791500px;}
.yb2{bottom:864.091500px;}
.y61{bottom:871.741500px;}
.y74{bottom:873.691500px;}
.y109{bottom:875.641500px;}
.y134{bottom:876.241500px;}
.y6{bottom:881.191500px;}
.yf2{bottom:891.391500px;}
.y27{bottom:891.841500px;}
.y7d{bottom:894.691500px;}
.yb1{bottom:895.141500px;}
.y47{bottom:896.791500px;}
.y133{bottom:897.991500px;}
.y7c{bottom:904.141500px;}
.y108{bottom:905.791500px;}
.y5{bottom:907.441500px;}
.y46{bottom:916.591500px;}
.y132{bottom:919.741500px;}
.yf1{bottom:922.441500px;}
.y26{bottom:922.891500px;}
.yb0{bottom:926.191500px;}
.y107{bottom:927.541500px;}
.y45{bottom:936.391500px;}
.y7b{bottom:941.041500px;}
.y106{bottom:949.291500px;}
.y60{bottom:949.741500px;}
.y131{bottom:949.891500px;}
.yf0{bottom:953.491500px;}
.y25{bottom:953.941500px;}
.y44{bottom:956.191500px;}
.yaf{bottom:957.391500px;}
.y78{bottom:960.391500px;}
.y7a{bottom:960.841500px;}
.y105{bottom:971.041500px;}
.y130{bottom:971.641500px;}
.y43{bottom:975.991500px;}
.y79{bottom:980.641500px;}
.yef{bottom:984.541500px;}
.y24{bottom:984.991500px;}
.yae{bottom:991.141500px;}
.y104{bottom:1001.341500px;}
.y12f{bottom:1001.941500px;}
.y77{bottom:1007.191500px;}
.yee{bottom:1015.591500px;}
.y76{bottom:1016.641500px;}
.y4{bottom:1017.541500px;}
.y103{bottom:1023.091500px;}
.y12e{bottom:1023.691500px;}
.y23{bottom:1024.591500px;}
.yad{bottom:1024.741500px;}
.y102{bottom:1044.841500px;}
.y42{bottom:1046.341500px;}
.yed{bottom:1046.641500px;}
.ydf{bottom:1050.991500px;}
.y75{bottom:1053.691500px;}
.y12d{bottom:1053.841500px;}
.y22{bottom:1055.641500px;}
.yac{bottom:1055.791500px;}
.yc4{bottom:1064.491500px;}
.yd2{bottom:1068.691500px;}
.yc9{bottom:1069.441500px;}
.y41{bottom:1070.191500px;}
.y3{bottom:1070.941500px;}
.yda{bottom:1073.791500px;}
.y12c{bottom:1075.591500px;}
.yab{bottom:1079.641500px;}
.yde{bottom:1085.341500px;}
.y73{bottom:1085.491500px;}
.yce{bottom:1085.791500px;}
.yb9{bottom:1085.941500px;}
.y21{bottom:1086.691500px;}
.y40{bottom:1093.891500px;}
.y12b{bottom:1097.341500px;}
.yc3{bottom:1107.091500px;}
.yc8{bottom:1107.691500px;}
.yaa{bottom:1109.341500px;}
.yd9{bottom:1111.291500px;}
.yb8{bottom:1111.441500px;}
.y2{bottom:1112.941500px;}
.ycd{bottom:1115.641500px;}
.y20{bottom:1117.741500px;}
.yec{bottom:1117.891500px;}
.y12a{bottom:1119.091500px;}
.y72{bottom:1120.441500px;}
.y1f{bottom:1162.891500px;}
.h18{height:42.555176px;}
.h11{height:43.901367px;}
.he{height:44.794922px;}
.ha{height:47.408203px;}
.h16{height:47.865234px;}
.h9{height:50.041992px;}
.h17{height:51.171680px;}
.h5{height:52.675781px;}
.h6{height:53.951953px;}
.hf{height:54.475781px;}
.hc{height:54.551953px;}
.h7{height:54.703125px;}
.h12{height:55.075781px;}
.h13{height:57.943359px;}
.h4{height:58.218164px;}
.h14{height:59.512500px;}
.h15{height:60.112500px;}
.h8{height:63.210938px;}
.hb{height:65.073047px;}
.hd{height:65.673047px;}
.h3{height:72.937500px;}
.h10{height:94.075781px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.800000px;}
.x30{left:130.950000px;}
.x13{left:135.600000px;}
.x12{left:139.800000px;}
.x2f{left:141.000000px;}
.x18{left:142.500000px;}
.x15{left:145.650000px;}
.xf{left:148.050000px;}
.x7{left:153.150000px;}
.xe{left:154.800000px;}
.x20{left:157.050000px;}
.x24{left:158.250000px;}
.x1{left:160.200000px;}
.x31{left:162.600000px;}
.x2b{left:164.100000px;}
.x14{left:165.600000px;}
.x27{left:167.550000px;}
.x6{left:170.250000px;}
.x23{left:171.600000px;}
.x1a{left:173.250000px;}
.x1e{left:175.200000px;}
.x21{left:181.200000px;}
.x1b{left:184.200000px;}
.x29{left:187.350000px;}
.x26{left:189.600000px;}
.x2e{left:191.850000px;}
.x2{left:197.250000px;}
.x2a{left:202.800000px;}
.x28{left:205.050000px;}
.xd{left:206.250000px;}
.x4{left:208.500000px;}
.x17{left:214.650000px;}
.x16{left:229.950000px;}
.x10{left:238.500000px;}
.xb{left:244.650000px;}
.x9{left:255.300000px;}
.x2d{left:264.900000px;}
.x1c{left:268.200000px;}
.x19{left:323.850000px;}
.x1f{left:325.800000px;}
.x1d{left:330.450000px;}
.x22{left:332.400000px;}
.x3{left:359.100000px;}
.x2c{left:371.700000px;}
.x8{left:396.600000px;}
.x11{left:421.500000px;}
.x25{left:448.200000px;}
.xc{left:455.700000px;}
.xa{left:800.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.600000pt;}
.v7{vertical-align:19.733333pt;}
.v2{vertical-align:20.800000pt;}
.v6{vertical-align:22.933333pt;}
.v1{vertical-align:24.533333pt;}
.v3{vertical-align:25.600000pt;}
.v5{vertical-align:36.800000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.050667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.221867pt;}
.ls2{letter-spacing:0.401067pt;}
.ls4{letter-spacing:53.866667pt;}
.ls0{letter-spacing:60.480000pt;}
.ws7{word-spacing:-35.317333pt;}
.ws13{word-spacing:-22.272000pt;}
.ws0{word-spacing:-18.560000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws12{word-spacing:-16.250667pt;}
.ws5{word-spacing:-14.773333pt;}
.ws15{word-spacing:-14.085333pt;}
.ws2{word-spacing:-14.034667pt;}
.ws11{word-spacing:-13.296000pt;}
.ws4{word-spacing:-10.341333pt;}
.ws14{word-spacing:-9.454933pt;}
.ws1{word-spacing:-8.568533pt;}
.ws16{word-spacing:-8.125333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:102.362667pt;}
.wsa{word-spacing:131.162667pt;}
.wsc{word-spacing:189.242667pt;}
.wse{word-spacing:218.042667pt;}
.wsf{word-spacing:275.642667pt;}
.ws8{word-spacing:278.293333pt;}
.wsd{word-spacing:304.442667pt;}
.ws10{word-spacing:420.122667pt;}
._4{margin-left:-0.906667pt;}
._2{width:0.906667pt;}
._5{width:1.973333pt;}
._1{width:2.880000pt;}
._8{width:4.640000pt;}
._7{width:5.653333pt;}
._0{width:6.613333pt;}
._b{width:8.224000pt;}
._9{width:9.248000pt;}
._3{width:10.826667pt;}
._6{width:12.266667pt;}
._c{width:13.312000pt;}
._d{width:14.432000pt;}
._a{width:16.000000pt;}
._f{width:19.136000pt;}
._11{width:45.194667pt;}
._e{width:60.480000pt;}
._10{width:719.360000pt;}
.fsa{font-size:29.333333pt;}
.fs4{font-size:30.933333pt;}
.fs8{font-size:34.133333pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3f{bottom:40.214667pt;}
.y1e{bottom:78.214667pt;}
.y3e{bottom:80.748000pt;}
.yc2{bottom:83.281333pt;}
.y1d{bottom:94.881333pt;}
.ya9{bottom:95.548000pt;}
.y3d{bottom:98.214667pt;}
.y5f{bottom:98.348000pt;}
.yeb{bottom:101.548000pt;}
.yb7{bottom:106.214667pt;}
.y129{bottom:106.881333pt;}
.ya8{bottom:111.414667pt;}
.y1c{bottom:111.681333pt;}
.yc1{bottom:113.281333pt;}
.y3c{bottom:115.014667pt;}
.y5e{bottom:115.948000pt;}
.yb6{bottom:122.081333pt;}
.y128{bottom:126.214667pt;}
.yea{bottom:131.548000pt;}
.y5d{bottom:133.548000pt;}
.ya7{bottom:133.681333pt;}
.yb5{bottom:137.948000pt;}
.yc0{bottom:143.281333pt;}
.y127{bottom:145.548000pt;}
.ya4{bottom:150.881333pt;}
.ya6{bottom:151.281333pt;}
.ye9{bottom:159.148000pt;}
.y126{bottom:164.881333pt;}
.y1b{bottom:167.814667pt;}
.ya5{bottom:168.881333pt;}
.ybf{bottom:170.881333pt;}
.y3b{bottom:172.748000pt;}
.y5c{bottom:184.748000pt;}
.ye8{bottom:186.748000pt;}
.y3a{bottom:190.348000pt;}
.y125{bottom:191.814667pt;}
.ya3{bottom:192.481333pt;}
.y1a{bottom:195.414667pt;}
.ybe{bottom:198.481333pt;}
.ya2{bottom:200.881333pt;}
.y39{bottom:207.948000pt;}
.y124{bottom:211.148000pt;}
.y5b{bottom:212.348000pt;}
.ye7{bottom:214.348000pt;}
.y19{bottom:223.014667pt;}
.ybd{bottom:228.481333pt;}
.yd1{bottom:228.881333pt;}
.y123{bottom:230.481333pt;}
.yc7{bottom:231.014667pt;}
.ya1{bottom:233.681333pt;}
.y98{bottom:235.948000pt;}
.y5a{bottom:239.948000pt;}
.ye6{bottom:241.948000pt;}
.yd0{bottom:244.748000pt;}
.yc6{bottom:246.881333pt;}
.y122{bottom:249.814667pt;}
.y9f{bottom:250.881333pt;}
.y97{bottom:251.281333pt;}
.yd5{bottom:251.814667pt;}
.y38{bottom:255.014667pt;}
.y71{bottom:257.814667pt;}
.y18{bottom:258.081333pt;}
.ycf{bottom:260.614667pt;}
.ye2{bottom:261.414667pt;}
.yc5{bottom:262.748000pt;}
.ybc{bottom:266.481333pt;}
.y96{bottom:266.614667pt;}
.y59{bottom:267.548000pt;}
.yd4{bottom:267.681333pt;}
.ya0{bottom:268.881333pt;}
.y121{bottom:276.614667pt;}
.ye1{bottom:277.281333pt;}
.ybb{bottom:282.348000pt;}
.y37{bottom:282.614667pt;}
.yd3{bottom:283.548000pt;}
.y70{bottom:285.548000pt;}
.y17{bottom:285.681333pt;}
.ycc{bottom:287.814667pt;}
.ydd{bottom:290.081333pt;}
.y9e{bottom:292.481333pt;}
.ye0{bottom:293.148000pt;}
.y58{bottom:295.148000pt;}
.y120{bottom:295.948000pt;}
.yba{bottom:298.214667pt;}
.y9d{bottom:300.881333pt;}
.ycb{bottom:303.681333pt;}
.ye5{bottom:304.214667pt;}
.ydc{bottom:305.948000pt;}
.y101{bottom:308.081333pt;}
.y16{bottom:313.281333pt;}
.y11f{bottom:315.281333pt;}
.y6f{bottom:315.414667pt;}
.yca{bottom:319.548000pt;}
.ye4{bottom:320.081333pt;}
.ydb{bottom:321.814667pt;}
.y57{bottom:322.748000pt;}
.y9c{bottom:333.681333pt;}
.y11e{bottom:334.614667pt;}
.y100{bottom:335.681333pt;}
.ye3{bottom:335.948000pt;}
.y36{bottom:337.681333pt;}
.yd8{bottom:338.348000pt;}
.y15{bottom:340.881333pt;}
.y6e{bottom:343.014667pt;}
.y13d{bottom:348.214667pt;}
.y56{bottom:350.348000pt;}
.y99{bottom:350.881333pt;}
.y9b{bottom:351.281333pt;}
.yd7{bottom:354.214667pt;}
.y11d{bottom:361.548000pt;}
.yff{bottom:363.281333pt;}
.y14{bottom:368.481333pt;}
.y9a{bottom:368.881333pt;}
.yd6{bottom:370.081333pt;}
.y13c{bottom:373.814667pt;}
.y55{bottom:377.948000pt;}
.y11c{bottom:380.881333pt;}
.yfe{bottom:390.881333pt;}
.y35{bottom:391.281333pt;}
.y95{bottom:392.481333pt;}
.y13{bottom:396.081333pt;}
.y13b{bottom:399.414667pt;}
.y11b{bottom:400.214667pt;}
.y54{bottom:405.548000pt;}
.y6d{bottom:405.681333pt;}
.y94{bottom:410.081333pt;}
.y91{bottom:418.481333pt;}
.y34{bottom:418.881333pt;}
.y12{bottom:423.681333pt;}
.y11a{bottom:427.014667pt;}
.y93{bottom:427.681333pt;}
.y53{bottom:433.148000pt;}
.y6c{bottom:433.414667pt;}
.y92{bottom:445.281333pt;}
.yfd{bottom:446.081333pt;}
.y119{bottom:446.348000pt;}
.y33{bottom:446.481333pt;}
.y11{bottom:451.281333pt;}
.y13a{bottom:451.814667pt;}
.y52{bottom:464.481333pt;}
.y6b{bottom:464.748000pt;}
.y118{bottom:465.681333pt;}
.y90{bottom:468.881333pt;}
.yfc{bottom:473.681333pt;}
.y32{bottom:474.081333pt;}
.y88{bottom:484.614667pt;}
.y117{bottom:485.014667pt;}
.y8f{bottom:486.481333pt;}
.y51{bottom:492.081333pt;}
.y139{bottom:495.414667pt;}
.y6a{bottom:496.081333pt;}
.y87{bottom:499.948000pt;}
.y31{bottom:501.681333pt;}
.y8e{bottom:504.081333pt;}
.y116{bottom:504.348000pt;}
.y10{bottom:507.414667pt;}
.yfb{bottom:508.881333pt;}
.y50{bottom:519.681333pt;}
.y8d{bottom:521.681333pt;}
.y69{bottom:523.681333pt;}
.y30{bottom:529.281333pt;}
.y89{bottom:530.081333pt;}
.y115{bottom:531.281333pt;}
.yfa{bottom:536.481333pt;}
.y8c{bottom:539.281333pt;}
.y4f{bottom:547.281333pt;}
.y114{bottom:550.614667pt;}
.y68{bottom:551.414667pt;}
.y8b{bottom:556.881333pt;}
.yf9{bottom:564.081333pt;}
.y2f{bottom:564.481333pt;}
.yf{bottom:568.348000pt;}
.y113{bottom:569.948000pt;}
.y8a{bottom:574.481333pt;}
.y4e{bottom:574.881333pt;}
.y67{bottom:582.748000pt;}
.y112{bottom:589.281333pt;}
.ye{bottom:591.681333pt;}
.y2e{bottom:592.081333pt;}
.y138{bottom:598.881333pt;}
.y4d{bottom:602.481333pt;}
.y111{bottom:608.614667pt;}
.y66{bottom:610.348000pt;}
.y86{bottom:617.014667pt;}
.yf8{bottom:619.281333pt;}
.y2d{bottom:619.681333pt;}
.y137{bottom:620.748000pt;}
.yd{bottom:622.214667pt;}
.y4c{bottom:630.081333pt;}
.y110{bottom:635.414667pt;}
.y65{bottom:641.681333pt;}
.y85{bottom:642.881333pt;}
.yc{bottom:645.281333pt;}
.yf7{bottom:646.881333pt;}
.y2c{bottom:647.281333pt;}
.y136{bottom:652.748000pt;}
.y10f{bottom:654.748000pt;}
.y4b{bottom:657.681333pt;}
.y82{bottom:659.948000pt;}
.y84{bottom:660.481333pt;}
.yb{bottom:668.214667pt;}
.y64{bottom:669.414667pt;}
.yb4{bottom:673.014667pt;}
.y10e{bottom:674.081333pt;}
.yf6{bottom:674.481333pt;}
.y2b{bottom:674.881333pt;}
.y83{bottom:678.081333pt;}
.y4a{bottom:685.281333pt;}
.ya{bottom:691.281333pt;}
.y10d{bottom:693.414667pt;}
.yb3{bottom:695.681333pt;}
.y63{bottom:700.748000pt;}
.yf5{bottom:702.081333pt;}
.y2a{bottom:702.481333pt;}
.y81{bottom:702.748000pt;}
.y10c{bottom:712.748000pt;}
.y49{bottom:712.881333pt;}
.y9{bottom:714.214667pt;}
.y80{bottom:729.014667pt;}
.yf4{bottom:737.148000pt;}
.y8{bottom:737.281333pt;}
.y29{bottom:737.548000pt;}
.y10b{bottom:739.681333pt;}
.y48{bottom:740.481333pt;}
.y62{bottom:747.281333pt;}
.y7f{bottom:754.081333pt;}
.y10a{bottom:759.014667pt;}
.y135{bottom:759.548000pt;}
.y7{bottom:760.214667pt;}
.y7e{bottom:762.481333pt;}
.yf3{bottom:764.748000pt;}
.y28{bottom:765.148000pt;}
.yb2{bottom:768.081333pt;}
.y61{bottom:774.881333pt;}
.y74{bottom:776.614667pt;}
.y109{bottom:778.348000pt;}
.y134{bottom:778.881333pt;}
.y6{bottom:783.281333pt;}
.yf2{bottom:792.348000pt;}
.y27{bottom:792.748000pt;}
.y7d{bottom:795.281333pt;}
.yb1{bottom:795.681333pt;}
.y47{bottom:797.148000pt;}
.y133{bottom:798.214667pt;}
.y7c{bottom:803.681333pt;}
.y108{bottom:805.148000pt;}
.y5{bottom:806.614667pt;}
.y46{bottom:814.748000pt;}
.y132{bottom:817.548000pt;}
.yf1{bottom:819.948000pt;}
.y26{bottom:820.348000pt;}
.yb0{bottom:823.281333pt;}
.y107{bottom:824.481333pt;}
.y45{bottom:832.348000pt;}
.y7b{bottom:836.481333pt;}
.y106{bottom:843.814667pt;}
.y60{bottom:844.214667pt;}
.y131{bottom:844.348000pt;}
.yf0{bottom:847.548000pt;}
.y25{bottom:847.948000pt;}
.y44{bottom:849.948000pt;}
.yaf{bottom:851.014667pt;}
.y78{bottom:853.681333pt;}
.y7a{bottom:854.081333pt;}
.y105{bottom:863.148000pt;}
.y130{bottom:863.681333pt;}
.y43{bottom:867.548000pt;}
.y79{bottom:871.681333pt;}
.yef{bottom:875.148000pt;}
.y24{bottom:875.548000pt;}
.yae{bottom:881.014667pt;}
.y104{bottom:890.081333pt;}
.y12f{bottom:890.614667pt;}
.y77{bottom:895.281333pt;}
.yee{bottom:902.748000pt;}
.y76{bottom:903.681333pt;}
.y4{bottom:904.481333pt;}
.y103{bottom:909.414667pt;}
.y12e{bottom:909.948000pt;}
.y23{bottom:910.748000pt;}
.yad{bottom:910.881333pt;}
.y102{bottom:928.748000pt;}
.y42{bottom:930.081333pt;}
.yed{bottom:930.348000pt;}
.ydf{bottom:934.214667pt;}
.y75{bottom:936.614667pt;}
.y12d{bottom:936.748000pt;}
.y22{bottom:938.348000pt;}
.yac{bottom:938.481333pt;}
.yc4{bottom:946.214667pt;}
.yd2{bottom:949.948000pt;}
.yc9{bottom:950.614667pt;}
.y41{bottom:951.281333pt;}
.y3{bottom:951.948000pt;}
.yda{bottom:954.481333pt;}
.y12c{bottom:956.081333pt;}
.yab{bottom:959.681333pt;}
.yde{bottom:964.748000pt;}
.y73{bottom:964.881333pt;}
.yce{bottom:965.148000pt;}
.yb9{bottom:965.281333pt;}
.y21{bottom:965.948000pt;}
.y40{bottom:972.348000pt;}
.y12b{bottom:975.414667pt;}
.yc3{bottom:984.081333pt;}
.yc8{bottom:984.614667pt;}
.yaa{bottom:986.081333pt;}
.yd9{bottom:987.814667pt;}
.yb8{bottom:987.948000pt;}
.y2{bottom:989.281333pt;}
.ycd{bottom:991.681333pt;}
.y20{bottom:993.548000pt;}
.yec{bottom:993.681333pt;}
.y12a{bottom:994.748000pt;}
.y72{bottom:995.948000pt;}
.y1f{bottom:1033.681333pt;}
.h18{height:37.826823pt;}
.h11{height:39.023438pt;}
.he{height:39.817708pt;}
.ha{height:42.140625pt;}
.h16{height:42.546875pt;}
.h9{height:44.481771pt;}
.h17{height:45.485937pt;}
.h5{height:46.822917pt;}
.h6{height:47.957292pt;}
.hf{height:48.422917pt;}
.hc{height:48.490625pt;}
.h7{height:48.625000pt;}
.h12{height:48.956250pt;}
.h13{height:51.505208pt;}
.h4{height:51.749479pt;}
.h14{height:52.900000pt;}
.h15{height:53.433333pt;}
.h8{height:56.187500pt;}
.hb{height:57.842708pt;}
.hd{height:58.376042pt;}
.h3{height:64.833333pt;}
.h10{height:83.622917pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.600000pt;}
.x30{left:116.400000pt;}
.x13{left:120.533333pt;}
.x12{left:124.266667pt;}
.x2f{left:125.333333pt;}
.x18{left:126.666667pt;}
.x15{left:129.466667pt;}
.xf{left:131.600000pt;}
.x7{left:136.133333pt;}
.xe{left:137.600000pt;}
.x20{left:139.600000pt;}
.x24{left:140.666667pt;}
.x1{left:142.400000pt;}
.x31{left:144.533333pt;}
.x2b{left:145.866667pt;}
.x14{left:147.200000pt;}
.x27{left:148.933333pt;}
.x6{left:151.333333pt;}
.x23{left:152.533333pt;}
.x1a{left:154.000000pt;}
.x1e{left:155.733333pt;}
.x21{left:161.066667pt;}
.x1b{left:163.733333pt;}
.x29{left:166.533333pt;}
.x26{left:168.533333pt;}
.x2e{left:170.533333pt;}
.x2{left:175.333333pt;}
.x2a{left:180.266667pt;}
.x28{left:182.266667pt;}
.xd{left:183.333333pt;}
.x4{left:185.333333pt;}
.x17{left:190.800000pt;}
.x16{left:204.400000pt;}
.x10{left:212.000000pt;}
.xb{left:217.466667pt;}
.x9{left:226.933333pt;}
.x2d{left:235.466667pt;}
.x1c{left:238.400000pt;}
.x19{left:287.866667pt;}
.x1f{left:289.600000pt;}
.x1d{left:293.733333pt;}
.x22{left:295.466667pt;}
.x3{left:319.200000pt;}
.x2c{left:330.400000pt;}
.x8{left:352.533333pt;}
.x11{left:374.666667pt;}
.x25{left:398.400000pt;}
.xc{left:405.066667pt;}
.xa{left:711.733333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  