
    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_d4d6e9a7749989fc71572860.woff2')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_f2a99f16ca3237c079377e26.woff2')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_d3b31db1cf41dd331ce528b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_a89dba9fd885e986953f2aaf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_32e2be488d40a04d03806b25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_d151c9352f446832ae081694.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_42972674121ff1bfa978aa5b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d275320cded984f5aed00f9e.woff2')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_c8727dc822543f51cdab166e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_2437aa81a34299f5c0e32d02.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d9d390616284b00537237e61.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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);}
.v1{vertical-align:-74.160000px;}
.v4{vertical-align:-61.200000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls25{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.226200px;}
.ls13{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.828000px;}
.ls11{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.924000px;}
.ls18{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.182000px;}
.lsb{letter-spacing:1.188000px;}
.ls1e{letter-spacing:3.780000px;}
.ls14{letter-spacing:7.380000px;}
.ls1f{letter-spacing:9.540000px;}
.ls5{letter-spacing:10.260000px;}
.ls4{letter-spacing:16.020000px;}
.ls24{letter-spacing:16.506720px;}
.ls1d{letter-spacing:31.104000px;}
.ls17{letter-spacing:46.026720px;}
.ls0{letter-spacing:1634.496000px;}
.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;}
}
.ws1a{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.700000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.128000px;}
.ws17{word-spacing:-16.122000px;}
.ws14{word-spacing:-16.020000px;}
.ws18{word-spacing:-15.864000px;}
.ws15{word-spacing:-15.768000px;}
.ws16{word-spacing:-15.606000px;}
.ws1d{word-spacing:-15.453600px;}
.ws6{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws1c{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.526600px;}
.ws1b{word-spacing:-14.274000px;}
.wsa{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws10{word-spacing:-8.928000px;}
.ws12{word-spacing:0.000000px;}
._2{margin-left:-7.254240px;}
._17{margin-left:-4.921200px;}
._3{margin-left:-3.903840px;}
._4{margin-left:-2.642880px;}
._0{margin-left:-1.117440px;}
._1{width:1.971840px;}
._c{width:3.768480px;}
._f{width:5.123520px;}
._d{width:6.156000px;}
._e{width:7.189200px;}
._b{width:8.438400px;}
._7{width:9.489600px;}
._6{width:11.070000px;}
._12{width:12.370320px;}
._13{width:13.666320px;}
._a{width:14.790000px;}
._9{width:16.915440px;}
._8{width:18.252000px;}
._11{width:19.977120px;}
._5{width:21.119760px;}
._15{width:23.149440px;}
._16{width:24.799680px;}
._14{width:28.445760px;}
._10{width:30.348000px;}
.fc5{color:transparent;}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{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;}
.fs9{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.695500px;}
.y42{bottom:4.125000px;}
.y5{bottom:4.140000px;}
.y5c{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4c{bottom:10.255500px;}
.y59{bottom:21.235500px;}
.y41{bottom:21.405000px;}
.y4{bottom:23.070000px;}
.y58{bottom:36.715500px;}
.y40{bottom:38.730000px;}
.y4b{bottom:40.309500px;}
.y3{bottom:48.090000px;}
.y4a{bottom:51.469500px;}
.y57{bottom:54.169500px;}
.y3f{bottom:55.830000px;}
.y7{bottom:57.600000px;}
.y49{bottom:62.989500px;}
.y56{bottom:70.009500px;}
.y3e{bottom:73.110000px;}
.y48{bottom:76.129500px;}
.y55{bottom:85.489500px;}
.y47{bottom:89.089500px;}
.y3d{bottom:90.390000px;}
.yd0{bottom:93.636000px;}
.y5a{bottom:95.796000px;}
.y54{bottom:98.269500px;}
.ye8{bottom:99.216000px;}
.y53{bottom:104.749500px;}
.y96{bottom:106.596000px;}
.y3c{bottom:107.670000px;}
.y43{bottom:110.020500px;}
.y46{bottom:110.869500px;}
.ycf{bottom:110.916000px;}
.ye7{bottom:116.496000px;}
.y52{bottom:120.589500px;}
.y95{bottom:123.876000px;}
.y3b{bottom:124.950000px;}
.yce{bottom:128.916000px;}
.ye6{bottom:133.776000px;}
.y51{bottom:136.069500px;}
.y94{bottom:141.156000px;}
.y3a{bottom:142.230000px;}
.ycd{bottom:146.376000px;}
.ye5{bottom:151.050000px;}
.y50{bottom:151.549500px;}
.y93{bottom:158.430000px;}
.y39{bottom:159.330000px;}
.ycc{bottom:165.810000px;}
.y4f{bottom:167.209500px;}
.ye4{bottom:168.330000px;}
.y45{bottom:173.149500px;}
.y92{bottom:175.710000px;}
.y38{bottom:176.250000px;}
.y4e{bottom:182.329500px;}
.y44{bottom:183.589500px;}
.ycb{bottom:185.250000px;}
.ye3{bottom:185.610000px;}
.y91{bottom:192.810000px;}
.y37{bottom:193.350000px;}
.ye2{bottom:202.710000px;}
.yca{bottom:204.690000px;}
.y22{bottom:208.290000px;}
.y36{bottom:209.010000px;}
.y90{bottom:210.090000px;}
.ye1{bottom:222.510000px;}
.yc9{bottom:224.130000px;}
.y35{bottom:224.490000px;}
.y8f{bottom:227.370000px;}
.y21{bottom:232.410000px;}
.ye0{bottom:239.790000px;}
.y34{bottom:239.970000px;}
.yc8{bottom:243.210000px;}
.y8e{bottom:244.650000px;}
.y33{bottom:255.450000px;}
.y20{bottom:256.530000px;}
.ydf{bottom:259.590000px;}
.yc7{bottom:260.850000px;}
.y8d{bottom:261.570000px;}
.y32{bottom:271.110000px;}
.yde{bottom:276.870000px;}
.yc6{bottom:278.130000px;}
.y8c{bottom:279.210000px;}
.y1f{bottom:280.650000px;}
.y31{bottom:286.590000px;}
.ydd{bottom:294.150000px;}
.yc5{bottom:295.230000px;}
.y8b{bottom:296.310000px;}
.y30{bottom:302.100000px;}
.y1e{bottom:304.800000px;}
.yc4{bottom:312.150000px;}
.ydc{bottom:312.330000px;}
.y8a{bottom:313.590000px;}
.y2f{bottom:317.580000px;}
.y14{bottom:323.685000px;}
.y1d{bottom:328.920000px;}
.yc3{bottom:329.790000px;}
.y89{bottom:330.510000px;}
.y2e{bottom:333.240000px;}
.yc2{bottom:347.070000px;}
.y88{bottom:348.150000px;}
.y2d{bottom:348.720000px;}
.y1c{bottom:353.040000px;}
.y2c{bottom:364.200000px;}
.yc1{bottom:364.395000px;}
.y87{bottom:365.475000px;}
.y1b{bottom:377.340000px;}
.y2b{bottom:379.680000px;}
.ydb{bottom:381.135000px;}
.yc0{bottom:381.495000px;}
.y86{bottom:382.755000px;}
.y2a{bottom:395.340000px;}
.ybf{bottom:398.415000px;}
.yda{bottom:398.775000px;}
.y85{bottom:399.855000px;}
.y1a{bottom:401.460000px;}
.y29{bottom:410.820000px;}
.ybe{bottom:416.055000px;}
.y84{bottom:417.135000px;}
.y19{bottom:425.580000px;}
.y28{bottom:426.300000px;}
.ybd{bottom:433.335000px;}
.y83{bottom:434.415000px;}
.y27{bottom:441.780000px;}
.y18{bottom:449.700000px;}
.yd9{bottom:450.255000px;}
.ybc{bottom:450.615000px;}
.y82{bottom:451.695000px;}
.y26{bottom:457.440000px;}
.ybb{bottom:467.895000px;}
.y81{bottom:468.975000px;}
.y25{bottom:472.920000px;}
.y17{bottom:473.820000px;}
.yba{bottom:484.635000px;}
.yd8{bottom:484.995000px;}
.y80{bottom:486.255000px;}
.y24{bottom:488.400000px;}
.y16{bottom:497.940000px;}
.yb9{bottom:502.275000px;}
.y7f{bottom:503.355000px;}
.y23{bottom:519.180000px;}
.yd7{bottom:519.195000px;}
.yb8{bottom:519.555000px;}
.y7e{bottom:520.275000px;}
.y15{bottom:522.240000px;}
.yb7{bottom:536.835000px;}
.y7d{bottom:537.915000px;}
.yfe{bottom:552.495000px;}
.yb6{bottom:554.115000px;}
.y7c{bottom:555.195000px;}
.yfd{bottom:569.775000px;}
.yb5{bottom:571.035000px;}
.yd6{bottom:571.395000px;}
.y7b{bottom:572.475000px;}
.yfc{bottom:587.055000px;}
.yd5{bottom:588.135000px;}
.yb4{bottom:588.495000px;}
.y7a{bottom:589.575000px;}
.yfb{bottom:604.335000px;}
.yb3{bottom:605.775000px;}
.y79{bottom:606.855000px;}
.yfa{bottom:621.645000px;}
.yb2{bottom:623.085000px;}
.y78{bottom:624.165000px;}
.yf9{bottom:638.925000px;}
.yb1{bottom:640.365000px;}
.y77{bottom:641.445000px;}
.yf8{bottom:656.025000px;}
.yb0{bottom:657.285000px;}
.y76{bottom:658.725000px;}
.yf7{bottom:673.305000px;}
.yaf{bottom:674.925000px;}
.y75{bottom:676.005000px;}
.yf6{bottom:690.585000px;}
.yae{bottom:692.025000px;}
.y74{bottom:693.105000px;}
.yf5{bottom:707.865000px;}
.yd4{bottom:708.945000px;}
.yad{bottom:709.305000px;}
.y73{bottom:710.385000px;}
.yf4{bottom:725.145000px;}
.yac{bottom:726.225000px;}
.yd3{bottom:726.585000px;}
.y72{bottom:727.665000px;}
.yf3{bottom:742.425000px;}
.yab{bottom:743.865000px;}
.y71{bottom:744.945000px;}
.yf2{bottom:759.525000px;}
.yaa{bottom:761.145000px;}
.yd2{bottom:762.045000px;}
.y70{bottom:762.225000px;}
.yf1{bottom:776.805000px;}
.ya9{bottom:777.885000px;}
.y6f{bottom:779.505000px;}
.yf0{bottom:794.085000px;}
.ya8{bottom:795.525000px;}
.y6e{bottom:796.605000px;}
.yef{bottom:811.365000px;}
.ya7{bottom:812.805000px;}
.y6d{bottom:813.885000px;}
.yee{bottom:828.645000px;}
.ya6{bottom:829.725000px;}
.y6c{bottom:831.165000px;}
.yed{bottom:845.745000px;}
.ya5{bottom:847.365000px;}
.y6b{bottom:848.445000px;}
.y13{bottom:857.985000px;}
.y12{bottom:863.025000px;}
.ya4{bottom:864.645000px;}
.y6a{bottom:865.725000px;}
.y11{bottom:880.350000px;}
.ya3{bottom:881.790000px;}
.y69{bottom:882.870000px;}
.y10{bottom:897.630000px;}
.ya2{bottom:899.070000px;}
.y68{bottom:900.150000px;}
.yf{bottom:914.910000px;}
.ya1{bottom:916.350000px;}
.y67{bottom:917.430000px;}
.yec{bottom:932.190000px;}
.ya0{bottom:933.630000px;}
.y66{bottom:934.710000px;}
.ye{bottom:939.030000px;}
.yeb{bottom:949.290000px;}
.yd{bottom:949.470000px;}
.y9f{bottom:950.550000px;}
.y65{bottom:951.990000px;}
.yc{bottom:966.570000px;}
.y9e{bottom:968.190000px;}
.y64{bottom:969.270000px;}
.yea{bottom:983.850000px;}
.y9d{bottom:985.290000px;}
.y63{bottom:986.370000px;}
.yb{bottom:990.690000px;}
.y9c{bottom:1002.570000px;}
.ye9{bottom:1003.470000px;}
.y62{bottom:1003.650000px;}
.ya{bottom:1019.310000px;}
.y9b{bottom:1019.490000px;}
.y61{bottom:1020.930000px;}
.y9a{bottom:1037.130000px;}
.yd1{bottom:1037.850000px;}
.y60{bottom:1038.210000px;}
.y9{bottom:1043.430000px;}
.y99{bottom:1054.410000px;}
.y5f{bottom:1055.490000px;}
.y98{bottom:1071.150000px;}
.y8{bottom:1071.870000px;}
.y5e{bottom:1072.770000px;}
.y5b{bottom:1075.320000px;}
.y97{bottom:1089.690000px;}
.y5d{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.hb{height:5.805000px;}
.h17{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hf{height:52.971680px;}
.h16{height:52.998047px;}
.h14{height:54.421875px;}
.h7{height:57.324375px;}
.h6{height:58.651172px;}
.ha{height:60.226875px;}
.h19{height:61.423863px;}
.h1b{height:62.211094px;}
.h18{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h10{height:72.562500px;}
.h1a{height:74.004654px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h11{height:212.755500px;}
.hc{height:531.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1d{left:-81.894000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x1c{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x1a{left:19.980000px;}
.x20{left:29.160000px;}
.x19{left:34.200000px;}
.x13{left:43.740000px;}
.x1f{left:47.700000px;}
.x14{left:50.760000px;}
.x12{left:55.080000px;}
.x21{left:57.060000px;}
.x18{left:67.134000px;}
.x16{left:75.234000px;}
.x1{left:78.327000px;}
.x9{left:86.436000px;}
.x17{left:94.134000px;}
.x2{left:95.763000px;}
.x22{left:102.774000px;}
.x1e{left:106.734000px;}
.x24{left:113.436000px;}
.x15{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1b{left:219.090000px;}
.xe{left:512.385000px;}
.x10{left:557.745000px;}
.xb{left:564.045000px;}
.xf{left:581.865000px;}
.xc{left:629.430000px;}
.xd{left:687.930000px;}
.xa{left:699.090000px;}
.x8{left:766.080000px;}
.x7{left:799.380000px;}
.x11{left:806.940000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v4{vertical-align:-54.400000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.201067pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.736000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.821333pt;}
.ls18{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.050667pt;}
.lsb{letter-spacing:1.056000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls14{letter-spacing:6.560000pt;}
.ls1f{letter-spacing:8.480000pt;}
.ls5{letter-spacing:9.120000pt;}
.ls4{letter-spacing:14.240000pt;}
.ls24{letter-spacing:14.672640pt;}
.ls1d{letter-spacing:27.648000pt;}
.ls17{letter-spacing:40.912640pt;}
.ls0{letter-spacing:1452.885333pt;}
.ws1a{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.400000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.336000pt;}
.ws17{word-spacing:-14.330667pt;}
.ws14{word-spacing:-14.240000pt;}
.ws18{word-spacing:-14.101333pt;}
.ws15{word-spacing:-14.016000pt;}
.ws16{word-spacing:-13.872000pt;}
.ws1d{word-spacing:-13.736533pt;}
.ws6{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws1c{word-spacing:-13.185067pt;}
.ws19{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.912533pt;}
.ws1b{word-spacing:-12.688000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws10{word-spacing:-7.936000pt;}
.ws12{word-spacing:0.000000pt;}
._2{margin-left:-6.448213pt;}
._17{margin-left:-4.374400pt;}
._3{margin-left:-3.470080pt;}
._4{margin-left:-2.349227pt;}
._0{margin-left:-0.993280pt;}
._1{width:1.752747pt;}
._c{width:3.349760pt;}
._f{width:4.554240pt;}
._d{width:5.472000pt;}
._e{width:6.390400pt;}
._b{width:7.500800pt;}
._7{width:8.435200pt;}
._6{width:9.840000pt;}
._12{width:10.995840pt;}
._13{width:12.147840pt;}
._a{width:13.146667pt;}
._9{width:15.035947pt;}
._8{width:16.224000pt;}
._11{width:17.757440pt;}
._5{width:18.773120pt;}
._15{width:20.577280pt;}
._16{width:22.044160pt;}
._14{width:25.285120pt;}
._10{width:26.976000pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{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;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.396000pt;}
.y42{bottom:3.666667pt;}
.y5{bottom:3.680000pt;}
.y5c{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4c{bottom:9.116000pt;}
.y59{bottom:18.876000pt;}
.y41{bottom:19.026667pt;}
.y4{bottom:20.506667pt;}
.y58{bottom:32.636000pt;}
.y40{bottom:34.426667pt;}
.y4b{bottom:35.830667pt;}
.y3{bottom:42.746667pt;}
.y4a{bottom:45.750667pt;}
.y57{bottom:48.150667pt;}
.y3f{bottom:49.626667pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:55.990667pt;}
.y56{bottom:62.230667pt;}
.y3e{bottom:64.986667pt;}
.y48{bottom:67.670667pt;}
.y55{bottom:75.990667pt;}
.y47{bottom:79.190667pt;}
.y3d{bottom:80.346667pt;}
.yd0{bottom:83.232000pt;}
.y5a{bottom:85.152000pt;}
.y54{bottom:87.350667pt;}
.ye8{bottom:88.192000pt;}
.y53{bottom:93.110667pt;}
.y96{bottom:94.752000pt;}
.y3c{bottom:95.706667pt;}
.y43{bottom:97.796000pt;}
.y46{bottom:98.550667pt;}
.ycf{bottom:98.592000pt;}
.ye7{bottom:103.552000pt;}
.y52{bottom:107.190667pt;}
.y95{bottom:110.112000pt;}
.y3b{bottom:111.066667pt;}
.yce{bottom:114.592000pt;}
.ye6{bottom:118.912000pt;}
.y51{bottom:120.950667pt;}
.y94{bottom:125.472000pt;}
.y3a{bottom:126.426667pt;}
.ycd{bottom:130.112000pt;}
.ye5{bottom:134.266667pt;}
.y50{bottom:134.710667pt;}
.y93{bottom:140.826667pt;}
.y39{bottom:141.626667pt;}
.ycc{bottom:147.386667pt;}
.y4f{bottom:148.630667pt;}
.ye4{bottom:149.626667pt;}
.y45{bottom:153.910667pt;}
.y92{bottom:156.186667pt;}
.y38{bottom:156.666667pt;}
.y4e{bottom:162.070667pt;}
.y44{bottom:163.190667pt;}
.ycb{bottom:164.666667pt;}
.ye3{bottom:164.986667pt;}
.y91{bottom:171.386667pt;}
.y37{bottom:171.866667pt;}
.ye2{bottom:180.186667pt;}
.yca{bottom:181.946667pt;}
.y22{bottom:185.146667pt;}
.y36{bottom:185.786667pt;}
.y90{bottom:186.746667pt;}
.ye1{bottom:197.786667pt;}
.yc9{bottom:199.226667pt;}
.y35{bottom:199.546667pt;}
.y8f{bottom:202.106667pt;}
.y21{bottom:206.586667pt;}
.ye0{bottom:213.146667pt;}
.y34{bottom:213.306667pt;}
.yc8{bottom:216.186667pt;}
.y8e{bottom:217.466667pt;}
.y33{bottom:227.066667pt;}
.y20{bottom:228.026667pt;}
.ydf{bottom:230.746667pt;}
.yc7{bottom:231.866667pt;}
.y8d{bottom:232.506667pt;}
.y32{bottom:240.986667pt;}
.yde{bottom:246.106667pt;}
.yc6{bottom:247.226667pt;}
.y8c{bottom:248.186667pt;}
.y1f{bottom:249.466667pt;}
.y31{bottom:254.746667pt;}
.ydd{bottom:261.466667pt;}
.yc5{bottom:262.426667pt;}
.y8b{bottom:263.386667pt;}
.y30{bottom:268.533333pt;}
.y1e{bottom:270.933333pt;}
.yc4{bottom:277.466667pt;}
.ydc{bottom:277.626667pt;}
.y8a{bottom:278.746667pt;}
.y2f{bottom:282.293333pt;}
.y14{bottom:287.720000pt;}
.y1d{bottom:292.373333pt;}
.yc3{bottom:293.146667pt;}
.y89{bottom:293.786667pt;}
.y2e{bottom:296.213333pt;}
.yc2{bottom:308.506667pt;}
.y88{bottom:309.466667pt;}
.y2d{bottom:309.973333pt;}
.y1c{bottom:313.813333pt;}
.y2c{bottom:323.733333pt;}
.yc1{bottom:323.906667pt;}
.y87{bottom:324.866667pt;}
.y1b{bottom:335.413333pt;}
.y2b{bottom:337.493333pt;}
.ydb{bottom:338.786667pt;}
.yc0{bottom:339.106667pt;}
.y86{bottom:340.226667pt;}
.y2a{bottom:351.413333pt;}
.ybf{bottom:354.146667pt;}
.yda{bottom:354.466667pt;}
.y85{bottom:355.426667pt;}
.y1a{bottom:356.853333pt;}
.y29{bottom:365.173333pt;}
.ybe{bottom:369.826667pt;}
.y84{bottom:370.786667pt;}
.y19{bottom:378.293333pt;}
.y28{bottom:378.933333pt;}
.ybd{bottom:385.186667pt;}
.y83{bottom:386.146667pt;}
.y27{bottom:392.693333pt;}
.y18{bottom:399.733333pt;}
.yd9{bottom:400.226667pt;}
.ybc{bottom:400.546667pt;}
.y82{bottom:401.506667pt;}
.y26{bottom:406.613333pt;}
.ybb{bottom:415.906667pt;}
.y81{bottom:416.866667pt;}
.y25{bottom:420.373333pt;}
.y17{bottom:421.173333pt;}
.yba{bottom:430.786667pt;}
.yd8{bottom:431.106667pt;}
.y80{bottom:432.226667pt;}
.y24{bottom:434.133333pt;}
.y16{bottom:442.613333pt;}
.yb9{bottom:446.466667pt;}
.y7f{bottom:447.426667pt;}
.y23{bottom:461.493333pt;}
.yd7{bottom:461.506667pt;}
.yb8{bottom:461.826667pt;}
.y7e{bottom:462.466667pt;}
.y15{bottom:464.213333pt;}
.yb7{bottom:477.186667pt;}
.y7d{bottom:478.146667pt;}
.yfe{bottom:491.106667pt;}
.yb6{bottom:492.546667pt;}
.y7c{bottom:493.506667pt;}
.yfd{bottom:506.466667pt;}
.yb5{bottom:507.586667pt;}
.yd6{bottom:507.906667pt;}
.y7b{bottom:508.866667pt;}
.yfc{bottom:521.826667pt;}
.yd5{bottom:522.786667pt;}
.yb4{bottom:523.106667pt;}
.y7a{bottom:524.066667pt;}
.yfb{bottom:537.186667pt;}
.yb3{bottom:538.466667pt;}
.y79{bottom:539.426667pt;}
.yfa{bottom:552.573333pt;}
.yb2{bottom:553.853333pt;}
.y78{bottom:554.813333pt;}
.yf9{bottom:567.933333pt;}
.yb1{bottom:569.213333pt;}
.y77{bottom:570.173333pt;}
.yf8{bottom:583.133333pt;}
.yb0{bottom:584.253333pt;}
.y76{bottom:585.533333pt;}
.yf7{bottom:598.493333pt;}
.yaf{bottom:599.933333pt;}
.y75{bottom:600.893333pt;}
.yf6{bottom:613.853333pt;}
.yae{bottom:615.133333pt;}
.y74{bottom:616.093333pt;}
.yf5{bottom:629.213333pt;}
.yd4{bottom:630.173333pt;}
.yad{bottom:630.493333pt;}
.y73{bottom:631.453333pt;}
.yf4{bottom:644.573333pt;}
.yac{bottom:645.533333pt;}
.yd3{bottom:645.853333pt;}
.y72{bottom:646.813333pt;}
.yf3{bottom:659.933333pt;}
.yab{bottom:661.213333pt;}
.y71{bottom:662.173333pt;}
.yf2{bottom:675.133333pt;}
.yaa{bottom:676.573333pt;}
.yd2{bottom:677.373333pt;}
.y70{bottom:677.533333pt;}
.yf1{bottom:690.493333pt;}
.ya9{bottom:691.453333pt;}
.y6f{bottom:692.893333pt;}
.yf0{bottom:705.853333pt;}
.ya8{bottom:707.133333pt;}
.y6e{bottom:708.093333pt;}
.yef{bottom:721.213333pt;}
.ya7{bottom:722.493333pt;}
.y6d{bottom:723.453333pt;}
.yee{bottom:736.573333pt;}
.ya6{bottom:737.533333pt;}
.y6c{bottom:738.813333pt;}
.yed{bottom:751.773333pt;}
.ya5{bottom:753.213333pt;}
.y6b{bottom:754.173333pt;}
.y13{bottom:762.653333pt;}
.y12{bottom:767.133333pt;}
.ya4{bottom:768.573333pt;}
.y6a{bottom:769.533333pt;}
.y11{bottom:782.533333pt;}
.ya3{bottom:783.813333pt;}
.y69{bottom:784.773333pt;}
.y10{bottom:797.893333pt;}
.ya2{bottom:799.173333pt;}
.y68{bottom:800.133333pt;}
.yf{bottom:813.253333pt;}
.ya1{bottom:814.533333pt;}
.y67{bottom:815.493333pt;}
.yec{bottom:828.613333pt;}
.ya0{bottom:829.893333pt;}
.y66{bottom:830.853333pt;}
.ye{bottom:834.693333pt;}
.yeb{bottom:843.813333pt;}
.yd{bottom:843.973333pt;}
.y9f{bottom:844.933333pt;}
.y65{bottom:846.213333pt;}
.yc{bottom:859.173333pt;}
.y9e{bottom:860.613333pt;}
.y64{bottom:861.573333pt;}
.yea{bottom:874.533333pt;}
.y9d{bottom:875.813333pt;}
.y63{bottom:876.773333pt;}
.yb{bottom:880.613333pt;}
.y9c{bottom:891.173333pt;}
.ye9{bottom:891.973333pt;}
.y62{bottom:892.133333pt;}
.ya{bottom:906.053333pt;}
.y9b{bottom:906.213333pt;}
.y61{bottom:907.493333pt;}
.y9a{bottom:921.893333pt;}
.yd1{bottom:922.533333pt;}
.y60{bottom:922.853333pt;}
.y9{bottom:927.493333pt;}
.y99{bottom:937.253333pt;}
.y5f{bottom:938.213333pt;}
.y98{bottom:952.133333pt;}
.y8{bottom:952.773333pt;}
.y5e{bottom:953.573333pt;}
.y5b{bottom:955.840000pt;}
.y97{bottom:968.613333pt;}
.y5d{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.hb{height:5.160000pt;}
.h17{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hf{height:47.085938pt;}
.h16{height:47.109375pt;}
.h14{height:48.375000pt;}
.h7{height:50.955000pt;}
.h6{height:52.134375pt;}
.ha{height:53.535000pt;}
.h19{height:54.598989pt;}
.h1b{height:55.298750pt;}
.h18{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h10{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h11{height:189.116000pt;}
.hc{height:472.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1d{left:-72.794667pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x1c{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x1a{left:17.760000pt;}
.x20{left:25.920000pt;}
.x19{left:30.400000pt;}
.x13{left:38.880000pt;}
.x1f{left:42.400000pt;}
.x14{left:45.120000pt;}
.x12{left:48.960000pt;}
.x21{left:50.720000pt;}
.x18{left:59.674667pt;}
.x16{left:66.874667pt;}
.x1{left:69.624000pt;}
.x9{left:76.832000pt;}
.x17{left:83.674667pt;}
.x2{left:85.122667pt;}
.x22{left:91.354667pt;}
.x1e{left:94.874667pt;}
.x24{left:100.832000pt;}
.x15{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1b{left:194.746667pt;}
.xe{left:455.453333pt;}
.x10{left:495.773333pt;}
.xb{left:501.373333pt;}
.xf{left:517.213333pt;}
.xc{left:559.493333pt;}
.xd{left:611.493333pt;}
.xa{left:621.413333pt;}
.x8{left:680.960000pt;}
.x7{left:710.560000pt;}
.x11{left:717.280000pt;}
}




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