
    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_075d07eefccc8dd79af87130.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_1ebe71ffa43a52b14df4b792.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_6bb786257c9adbca41c86b54.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4833c17325b0fb7844a1755.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_27976618453511522a560c3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_0b8d4476238abe34e02ffaa8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_23b7374d789f5f097612a9a1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dabfaca52365e53a59d109fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_23acc5ee3789dcf03028abfd.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b778a2b5fb21568d63005b31.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;}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.ls12{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.507000px;}
.lsd{letter-spacing:-0.486600px;}
.lsb{letter-spacing:-0.466800px;}
.lsf{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:6.480000px;}
.ls1{letter-spacing:13.680000px;}
.ls9{letter-spacing:15.120000px;}
.ls11{letter-spacing:16.306560px;}
.ls2{letter-spacing:40.637280px;}
.ls10{letter-spacing:46.558560px;}
.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;}
}
.ws0{word-spacing:-41.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.653200px;}
.wsb{word-spacing:-14.633400px;}
.wsc{word-spacing:-14.613000px;}
.ws9{word-spacing:-14.184000px;}
.ws3{word-spacing:-14.148000px;}
.wse{word-spacing:-13.680000px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-3.257760px;}
._5{margin-left:-2.208480px;}
._0{margin-left:-1.126080px;}
._1{width:1.059840px;}
._2{width:2.157120px;}
._f{width:3.296640px;}
._4{width:4.422720px;}
._9{width:6.358560px;}
._d{width:7.387200px;}
._c{width:8.457600px;}
._e{width:9.577920px;}
._b{width:10.728480px;}
._6{width:12.631680px;}
._7{width:13.647360px;}
._8{width:17.017920px;}
._16{width:18.794400px;}
._12{width:19.828320px;}
._13{width:21.265920px;}
._14{width:22.852320px;}
._15{width:24.540480px;}
._17{width:26.033280px;}
._10{width:27.993120px;}
._11{width:29.378400px;}
._1c{width:31.178400px;}
._1d{width:32.555520px;}
._1e{width:34.526880px;}
._1b{width:35.670240px;}
._1a{width:37.407840px;}
._18{width:38.554080px;}
._19{width:40.252800px;}
._3{width:435.144480px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,176,240);}
.fc5{color:rgb(26,26,26);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y110{bottom:5.400000px;}
.yfa{bottom:5.754000px;}
.yd6{bottom:5.760000px;}
.yf8{bottom:5.805000px;}
.ydb{bottom:6.120000px;}
.ydf{bottom:14.760000px;}
.yd9{bottom:16.920000px;}
.ye9{bottom:17.280000px;}
.y10e{bottom:27.750000px;}
.ye4{bottom:28.080000px;}
.yd4{bottom:28.125000px;}
.y113{bottom:28.440000px;}
.ydd{bottom:37.110000px;}
.yf5{bottom:39.234000px;}
.yfe{bottom:39.240000px;}
.y5{bottom:57.240000px;}
.y4{bottom:77.436000px;}
.yef{bottom:81.720000px;}
.yb6{bottom:113.076000px;}
.yce{bottom:120.636000px;}
.yfb{bottom:123.156000px;}
.y6f{bottom:128.556000px;}
.y137{bottom:130.356000px;}
.y51{bottom:132.516000px;}
.y65{bottom:132.876000px;}
.y60{bottom:135.396000px;}
.yb5{bottom:141.516000px;}
.yf4{bottom:145.476000px;}
.y129{bottom:145.836000px;}
.ycd{bottom:149.076000px;}
.y2a{bottom:153.750000px;}
.y136{bottom:156.270000px;}
.y6e{bottom:156.990000px;}
.y50{bottom:158.790000px;}
.y5f{bottom:161.310000px;}
.yf9{bottom:167.790000px;}
.yb4{bottom:168.870000px;}
.y128{bottom:171.750000px;}
.ycc{bottom:177.510000px;}
.y29{bottom:179.670000px;}
.y135{bottom:181.830000px;}
.y4f{bottom:184.710000px;}
.y6d{bottom:185.430000px;}
.y5e{bottom:187.230000px;}
.yf7{bottom:190.110000px;}
.yb3{bottom:194.835000px;}
.y127{bottom:197.355000px;}
.y28{bottom:205.635000px;}
.ycb{bottom:205.995000px;}
.y134{bottom:207.795000px;}
.y4e{bottom:210.315000px;}
.yf6{bottom:212.475000px;}
.y69{bottom:212.835000px;}
.y5d{bottom:213.195000px;}
.y91{bottom:213.915000px;}
.yb2{bottom:220.755000px;}
.y126{bottom:223.275000px;}
.y27{bottom:231.555000px;}
.y133{bottom:233.715000px;}
.yca{bottom:234.435000px;}
.yee{bottom:235.155000px;}
.y4d{bottom:236.235000px;}
.y5c{bottom:239.115000px;}
.y90{bottom:242.355000px;}
.yb1{bottom:246.675000px;}
.y125{bottom:249.195000px;}
.y26{bottom:257.475000px;}
.y132{bottom:259.635000px;}
.y4c{bottom:262.155000px;}
.yc9{bottom:262.875000px;}
.y5b{bottom:264.675000px;}
.y8f{bottom:270.795000px;}
.yb0{bottom:272.595000px;}
.y124{bottom:275.835000px;}
.yf3{bottom:279.795000px;}
.y25{bottom:283.035000px;}
.y131{bottom:285.555000px;}
.y4b{bottom:288.075000px;}
.y5a{bottom:290.595000px;}
.yc8{bottom:291.315000px;}
.yaf{bottom:298.515000px;}
.y8e{bottom:299.235000px;}
.yf2{bottom:302.115000px;}
.y123{bottom:304.275000px;}
.y24{bottom:308.955000px;}
.y130{bottom:311.475000px;}
.y64{bottom:313.635000px;}
.y4a{bottom:313.995000px;}
.y59{bottom:316.515000px;}
.yc7{bottom:320.145000px;}
.y121{bottom:320.505000px;}
.yae{bottom:324.465000px;}
.y8d{bottom:327.705000px;}
.y23{bottom:335.625000px;}
.y12f{bottom:337.425000px;}
.y49{bottom:339.585000px;}
.y63{bottom:340.665000px;}
.y58{bottom:342.465000px;}
.y122{bottom:342.825000px;}
.yf1{bottom:346.785000px;}
.yc6{bottom:348.585000px;}
.yad{bottom:350.385000px;}
.y8c{bottom:356.145000px;}
.y22{bottom:362.985000px;}
.y12e{bottom:363.345000px;}
.y11f{bottom:365.145000px;}
.y48{bottom:366.585000px;}
.y57{bottom:368.385000px;}
.yf0{bottom:369.105000px;}
.yac{bottom:375.945000px;}
.yc5{bottom:377.025000px;}
.y8b{bottom:384.585000px;}
.y120{bottom:387.825000px;}
.y12d{bottom:388.905000px;}
.y21{bottom:389.265000px;}
.y56{bottom:393.945000px;}
.y47{bottom:394.305000px;}
.yab{bottom:401.505000px;}
.yc4{bottom:405.465000px;}
.yed{bottom:409.425000px;}
.y11e{bottom:410.145000px;}
.y8a{bottom:413.025000px;}
.y20{bottom:415.185000px;}
.y12c{bottom:415.545000px;}
.y46{bottom:420.225000px;}
.yaa{bottom:427.425000px;}
.yec{bottom:431.745000px;}
.y11d{bottom:432.465000px;}
.yc3{bottom:433.905000px;}
.y1f{bottom:441.105000px;}
.y89{bottom:441.465000px;}
.y12b{bottom:443.265000px;}
.y45{bottom:445.785000px;}
.ya9{bottom:453.390000px;}
.yeb{bottom:454.110000px;}
.y11b{bottom:454.830000px;}
.yc2{bottom:462.390000px;}
.y1e{bottom:467.070000px;}
.y88{bottom:469.230000px;}
.y44{bottom:471.750000px;}
.yea{bottom:476.430000px;}
.y11c{bottom:477.150000px;}
.ya8{bottom:479.310000px;}
.yc1{bottom:490.830000px;}
.y1d{bottom:492.990000px;}
.y87{bottom:495.150000px;}
.y43{bottom:497.670000px;}
.ye8{bottom:498.750000px;}
.y11a{bottom:499.470000px;}
.ya7{bottom:505.230000px;}
.y1c{bottom:518.550000px;}
.y86{bottom:521.070000px;}
.ye7{bottom:521.430000px;}
.y117{bottom:521.790000px;}
.y55{bottom:523.230000px;}
.y42{bottom:523.590000px;}
.ya6{bottom:532.230000px;}
.ye3{bottom:543.750000px;}
.y119{bottom:544.110000px;}
.y1b{bottom:544.470000px;}
.y85{bottom:546.990000px;}
.y12a{bottom:547.710000px;}
.y6c{bottom:549.150000px;}
.y41{bottom:549.510000px;}
.ya5{bottom:560.670000px;}
.ye6{bottom:566.070000px;}
.y118{bottom:566.430000px;}
.yc0{bottom:570.030000px;}
.y1a{bottom:570.390000px;}
.y84{bottom:572.940000px;}
.y6b{bottom:575.100000px;}
.y40{bottom:575.460000px;}
.ye5{bottom:588.420000px;}
.y116{bottom:588.780000px;}
.ya4{bottom:589.140000px;}
.ybf{bottom:595.980000px;}
.y19{bottom:596.340000px;}
.y83{bottom:598.860000px;}
.y3f{bottom:601.380000px;}
.ye2{bottom:610.740000px;}
.y112{bottom:611.100000px;}
.ya3{bottom:617.580000px;}
.ybe{bottom:621.540000px;}
.y18{bottom:622.260000px;}
.y82{bottom:624.420000px;}
.y68{bottom:626.940000px;}
.y3e{bottom:627.300000px;}
.ye0{bottom:633.060000px;}
.y115{bottom:633.420000px;}
.ya2{bottom:646.020000px;}
.ybd{bottom:647.460000px;}
.y17{bottom:648.180000px;}
.y81{bottom:650.340000px;}
.y3d{bottom:652.860000px;}
.ye1{bottom:655.380000px;}
.y114{bottom:656.100000px;}
.ybc{bottom:673.380000px;}
.y16{bottom:674.100000px;}
.ya1{bottom:674.460000px;}
.y80{bottom:675.900000px;}
.ydc{bottom:677.700000px;}
.y10d{bottom:678.420000px;}
.y3c{bottom:678.780000px;}
.ybb{bottom:699.330000px;}
.y15{bottom:700.050000px;}
.y111{bottom:700.770000px;}
.y7f{bottom:701.850000px;}
.ya0{bottom:702.930000px;}
.y54{bottom:704.370000px;}
.y3b{bottom:704.730000px;}
.yde{bottom:722.370000px;}
.y10f{bottom:723.090000px;}
.yba{bottom:725.250000px;}
.y14{bottom:726.690000px;}
.y7e{bottom:727.770000px;}
.y3a{bottom:730.650000px;}
.y9f{bottom:731.370000px;}
.yb9{bottom:751.170000px;}
.y7d{bottom:753.690000px;}
.y13{bottom:754.050000px;}
.y39{bottom:756.570000px;}
.y10c{bottom:758.370000px;}
.y9e{bottom:759.810000px;}
.yd8{bottom:762.690000px;}
.yb8{bottom:776.730000px;}
.y10b{bottom:777.450000px;}
.y7c{bottom:779.610000px;}
.y38{bottom:782.490000px;}
.y12{bottom:783.930000px;}
.yda{bottom:785.010000px;}
.y9d{bottom:788.250000px;}
.yb7{bottom:803.730000px;}
.y10a{bottom:804.090000px;}
.y7b{bottom:805.170000px;}
.yd3{bottom:807.690000px;}
.y67{bottom:808.050000px;}
.y37{bottom:808.410000px;}
.y11{bottom:809.850000px;}
.y9c{bottom:816.690000px;}
.y107{bottom:820.290000px;}
.yd7{bottom:830.055000px;}
.y7a{bottom:832.575000px;}
.y62{bottom:834.015000px;}
.y36{bottom:834.375000px;}
.y10{bottom:835.455000px;}
.y109{bottom:842.655000px;}
.y9b{bottom:845.175000px;}
.yd5{bottom:852.375000px;}
.y35{bottom:859.935000px;}
.y79{bottom:861.015000px;}
.y108{bottom:864.975000px;}
.yf{bottom:870.375000px;}
.y9a{bottom:873.975000px;}
.y34{bottom:885.855000px;}
.y104{bottom:887.295000px;}
.yd2{bottom:887.655000px;}
.y78{bottom:889.455000px;}
.ye{bottom:889.815000px;}
.y99{bottom:902.415000px;}
.yd1{bottom:906.735000px;}
.y106{bottom:909.615000px;}
.y66{bottom:911.415000px;}
.y33{bottom:911.775000px;}
.yd{bottom:915.735000px;}
.y77{bottom:917.895000px;}
.y98{bottom:930.855000px;}
.y105{bottom:931.935000px;}
.yd0{bottom:933.375000px;}
.y53{bottom:937.335000px;}
.y32{bottom:937.695000px;}
.yc{bottom:941.655000px;}
.y76{bottom:946.335000px;}
.y102{bottom:954.645000px;}
.y97{bottom:959.325000px;}
.ycf{bottom:961.125000px;}
.y31{bottom:963.645000px;}
.yb{bottom:967.605000px;}
.y75{bottom:974.805000px;}
.y103{bottom:976.965000px;}
.y96{bottom:987.045000px;}
.y30{bottom:989.565000px;}
.y101{bottom:999.285000px;}
.ya{bottom:1002.525000px;}
.y74{bottom:1003.245000px;}
.y95{bottom:1012.605000px;}
.y61{bottom:1015.125000px;}
.y2f{bottom:1015.485000px;}
.yfd{bottom:1021.605000px;}
.y9{bottom:1023.045000px;}
.y73{bottom:1031.685000px;}
.y94{bottom:1038.525000px;}
.y2e{bottom:1041.045000px;}
.y100{bottom:1043.925000px;}
.y8{bottom:1049.685000px;}
.y72{bottom:1060.125000px;}
.y93{bottom:1064.445000px;}
.yff{bottom:1066.245000px;}
.y6a{bottom:1066.605000px;}
.y2d{bottom:1066.965000px;}
.y7{bottom:1081.050000px;}
.y71{bottom:1088.610000px;}
.y92{bottom:1090.410000px;}
.y2c{bottom:1092.930000px;}
.yfc{bottom:1110.930000px;}
.y6{bottom:1114.530000px;}
.y70{bottom:1117.050000px;}
.y52{bottom:1118.490000px;}
.y2b{bottom:1118.850000px;}
.y3{bottom:1136.850000px;}
.y2{bottom:1157.010000px;}
.y1{bottom:1177.170000px;}
.h11{height:21.600000px;}
.h12{height:21.636000px;}
.h7{height:37.757813px;}
.h15{height:39.600000px;}
.ha{height:42.086250px;}
.h13{height:43.920000px;}
.h16{height:44.280000px;}
.h2{height:53.237812px;}
.h3{height:53.302500px;}
.he{height:54.219375px;}
.h9{height:59.328281px;}
.hb{height:59.357813px;}
.hd{height:59.758594px;}
.hf{height:59.938594px;}
.h8{height:60.952500px;}
.h1a{height:62.163910px;}
.h10{height:66.276000px;}
.h19{height:66.600000px;}
.h6{height:66.757500px;}
.hc{height:68.956875px;}
.h5{height:72.326250px;}
.h4{height:78.367500px;}
.h14{height:84.276000px;}
.h18{height:88.596000px;}
.h17{height:173.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:49.680000px;}
.w17{width:57.960000px;}
.w16{width:64.836000px;}
.we{width:86.760000px;}
.wf{width:86.796000px;}
.w9{width:87.120000px;}
.wb{width:87.156000px;}
.wd{width:93.996000px;}
.w8{width:94.356000px;}
.wa{width:94.716000px;}
.w4{width:99.432000px;}
.wc{width:99.792000px;}
.w11{width:106.632000px;}
.w18{width:106.992000px;}
.w13{width:114.876000px;}
.w10{width:115.236000px;}
.w3{width:121.356000px;}
.w14{width:123.156000px;}
.w6{width:181.830000px;}
.w7{width:182.235000px;}
.w12{width:238.395000px;}
.w5{width:364.425000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:7.560000px;}
.x11{left:35.280000px;}
.x13{left:36.720000px;}
.xb{left:73.110000px;}
.x9{left:74.880000px;}
.x10{left:102.630000px;}
.x1{left:108.035987px;}
.x2{left:117.395987px;}
.x4{left:135.035987px;}
.x8{left:161.670000px;}
.x3{left:180.794987px;}
.xe{left:224.355000px;}
.x6{left:230.475000px;}
.x7{left:330.270000px;}
.xf{left:331.350000px;}
.x14{left:381.390000px;}
.xc{left:424.980000px;}
.x12{left:446.580000px;}
.x15{left:504.900000px;}
.xa{left:512.460000px;}
.xd{left:607.530000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.450667pt;}
.lsd{letter-spacing:-0.432533pt;}
.lsb{letter-spacing:-0.414933pt;}
.lsf{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls1{letter-spacing:12.160000pt;}
.ls9{letter-spacing:13.440000pt;}
.ls11{letter-spacing:14.494720pt;}
.ls2{letter-spacing:36.122027pt;}
.ls10{letter-spacing:41.385387pt;}
.ws0{word-spacing:-37.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.025067pt;}
.wsb{word-spacing:-13.007467pt;}
.wsc{word-spacing:-12.989333pt;}
.ws9{word-spacing:-12.608000pt;}
.ws3{word-spacing:-12.576000pt;}
.wse{word-spacing:-12.160000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-2.895787pt;}
._5{margin-left:-1.963093pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.942080pt;}
._2{width:1.917440pt;}
._f{width:2.930347pt;}
._4{width:3.931307pt;}
._9{width:5.652053pt;}
._d{width:6.566400pt;}
._c{width:7.517867pt;}
._e{width:8.513707pt;}
._b{width:9.536427pt;}
._6{width:11.228160pt;}
._7{width:12.130987pt;}
._8{width:15.127040pt;}
._16{width:16.706133pt;}
._12{width:17.625173pt;}
._13{width:18.903040pt;}
._14{width:20.313173pt;}
._15{width:21.813760pt;}
._17{width:23.140693pt;}
._10{width:24.882773pt;}
._11{width:26.114133pt;}
._1c{width:27.714133pt;}
._1d{width:28.938240pt;}
._1e{width:30.690560pt;}
._1b{width:31.706880pt;}
._1a{width:33.251413pt;}
._18{width:34.270293pt;}
._19{width:35.780267pt;}
._3{width:386.795093pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:4.800000pt;}
.yfa{bottom:5.114667pt;}
.yd6{bottom:5.120000pt;}
.yf8{bottom:5.160000pt;}
.ydb{bottom:5.440000pt;}
.ydf{bottom:13.120000pt;}
.yd9{bottom:15.040000pt;}
.ye9{bottom:15.360000pt;}
.y10e{bottom:24.666667pt;}
.ye4{bottom:24.960000pt;}
.yd4{bottom:25.000000pt;}
.y113{bottom:25.280000pt;}
.ydd{bottom:32.986667pt;}
.yf5{bottom:34.874667pt;}
.yfe{bottom:34.880000pt;}
.y5{bottom:50.880000pt;}
.y4{bottom:68.832000pt;}
.yef{bottom:72.640000pt;}
.yb6{bottom:100.512000pt;}
.yce{bottom:107.232000pt;}
.yfb{bottom:109.472000pt;}
.y6f{bottom:114.272000pt;}
.y137{bottom:115.872000pt;}
.y51{bottom:117.792000pt;}
.y65{bottom:118.112000pt;}
.y60{bottom:120.352000pt;}
.yb5{bottom:125.792000pt;}
.yf4{bottom:129.312000pt;}
.y129{bottom:129.632000pt;}
.ycd{bottom:132.512000pt;}
.y2a{bottom:136.666667pt;}
.y136{bottom:138.906667pt;}
.y6e{bottom:139.546667pt;}
.y50{bottom:141.146667pt;}
.y5f{bottom:143.386667pt;}
.yf9{bottom:149.146667pt;}
.yb4{bottom:150.106667pt;}
.y128{bottom:152.666667pt;}
.ycc{bottom:157.786667pt;}
.y29{bottom:159.706667pt;}
.y135{bottom:161.626667pt;}
.y4f{bottom:164.186667pt;}
.y6d{bottom:164.826667pt;}
.y5e{bottom:166.426667pt;}
.yf7{bottom:168.986667pt;}
.yb3{bottom:173.186667pt;}
.y127{bottom:175.426667pt;}
.y28{bottom:182.786667pt;}
.ycb{bottom:183.106667pt;}
.y134{bottom:184.706667pt;}
.y4e{bottom:186.946667pt;}
.yf6{bottom:188.866667pt;}
.y69{bottom:189.186667pt;}
.y5d{bottom:189.506667pt;}
.y91{bottom:190.146667pt;}
.yb2{bottom:196.226667pt;}
.y126{bottom:198.466667pt;}
.y27{bottom:205.826667pt;}
.y133{bottom:207.746667pt;}
.yca{bottom:208.386667pt;}
.yee{bottom:209.026667pt;}
.y4d{bottom:209.986667pt;}
.y5c{bottom:212.546667pt;}
.y90{bottom:215.426667pt;}
.yb1{bottom:219.266667pt;}
.y125{bottom:221.506667pt;}
.y26{bottom:228.866667pt;}
.y132{bottom:230.786667pt;}
.y4c{bottom:233.026667pt;}
.yc9{bottom:233.666667pt;}
.y5b{bottom:235.266667pt;}
.y8f{bottom:240.706667pt;}
.yb0{bottom:242.306667pt;}
.y124{bottom:245.186667pt;}
.yf3{bottom:248.706667pt;}
.y25{bottom:251.586667pt;}
.y131{bottom:253.826667pt;}
.y4b{bottom:256.066667pt;}
.y5a{bottom:258.306667pt;}
.yc8{bottom:258.946667pt;}
.yaf{bottom:265.346667pt;}
.y8e{bottom:265.986667pt;}
.yf2{bottom:268.546667pt;}
.y123{bottom:270.466667pt;}
.y24{bottom:274.626667pt;}
.y130{bottom:276.866667pt;}
.y64{bottom:278.786667pt;}
.y4a{bottom:279.106667pt;}
.y59{bottom:281.346667pt;}
.yc7{bottom:284.573333pt;}
.y121{bottom:284.893333pt;}
.yae{bottom:288.413333pt;}
.y8d{bottom:291.293333pt;}
.y23{bottom:298.333333pt;}
.y12f{bottom:299.933333pt;}
.y49{bottom:301.853333pt;}
.y63{bottom:302.813333pt;}
.y58{bottom:304.413333pt;}
.y122{bottom:304.733333pt;}
.yf1{bottom:308.253333pt;}
.yc6{bottom:309.853333pt;}
.yad{bottom:311.453333pt;}
.y8c{bottom:316.573333pt;}
.y22{bottom:322.653333pt;}
.y12e{bottom:322.973333pt;}
.y11f{bottom:324.573333pt;}
.y48{bottom:325.853333pt;}
.y57{bottom:327.453333pt;}
.yf0{bottom:328.093333pt;}
.yac{bottom:334.173333pt;}
.yc5{bottom:335.133333pt;}
.y8b{bottom:341.853333pt;}
.y120{bottom:344.733333pt;}
.y12d{bottom:345.693333pt;}
.y21{bottom:346.013333pt;}
.y56{bottom:350.173333pt;}
.y47{bottom:350.493333pt;}
.yab{bottom:356.893333pt;}
.yc4{bottom:360.413333pt;}
.yed{bottom:363.933333pt;}
.y11e{bottom:364.573333pt;}
.y8a{bottom:367.133333pt;}
.y20{bottom:369.053333pt;}
.y12c{bottom:369.373333pt;}
.y46{bottom:373.533333pt;}
.yaa{bottom:379.933333pt;}
.yec{bottom:383.773333pt;}
.y11d{bottom:384.413333pt;}
.yc3{bottom:385.693333pt;}
.y1f{bottom:392.093333pt;}
.y89{bottom:392.413333pt;}
.y12b{bottom:394.013333pt;}
.y45{bottom:396.253333pt;}
.ya9{bottom:403.013333pt;}
.yeb{bottom:403.653333pt;}
.y11b{bottom:404.293333pt;}
.yc2{bottom:411.013333pt;}
.y1e{bottom:415.173333pt;}
.y88{bottom:417.093333pt;}
.y44{bottom:419.333333pt;}
.yea{bottom:423.493333pt;}
.y11c{bottom:424.133333pt;}
.ya8{bottom:426.053333pt;}
.yc1{bottom:436.293333pt;}
.y1d{bottom:438.213333pt;}
.y87{bottom:440.133333pt;}
.y43{bottom:442.373333pt;}
.ye8{bottom:443.333333pt;}
.y11a{bottom:443.973333pt;}
.ya7{bottom:449.093333pt;}
.y1c{bottom:460.933333pt;}
.y86{bottom:463.173333pt;}
.ye7{bottom:463.493333pt;}
.y117{bottom:463.813333pt;}
.y55{bottom:465.093333pt;}
.y42{bottom:465.413333pt;}
.ya6{bottom:473.093333pt;}
.ye3{bottom:483.333333pt;}
.y119{bottom:483.653333pt;}
.y1b{bottom:483.973333pt;}
.y85{bottom:486.213333pt;}
.y12a{bottom:486.853333pt;}
.y6c{bottom:488.133333pt;}
.y41{bottom:488.453333pt;}
.ya5{bottom:498.373333pt;}
.ye6{bottom:503.173333pt;}
.y118{bottom:503.493333pt;}
.yc0{bottom:506.693333pt;}
.y1a{bottom:507.013333pt;}
.y84{bottom:509.280000pt;}
.y6b{bottom:511.200000pt;}
.y40{bottom:511.520000pt;}
.ye5{bottom:523.040000pt;}
.y116{bottom:523.360000pt;}
.ya4{bottom:523.680000pt;}
.ybf{bottom:529.760000pt;}
.y19{bottom:530.080000pt;}
.y83{bottom:532.320000pt;}
.y3f{bottom:534.560000pt;}
.ye2{bottom:542.880000pt;}
.y112{bottom:543.200000pt;}
.ya3{bottom:548.960000pt;}
.ybe{bottom:552.480000pt;}
.y18{bottom:553.120000pt;}
.y82{bottom:555.040000pt;}
.y68{bottom:557.280000pt;}
.y3e{bottom:557.600000pt;}
.ye0{bottom:562.720000pt;}
.y115{bottom:563.040000pt;}
.ya2{bottom:574.240000pt;}
.ybd{bottom:575.520000pt;}
.y17{bottom:576.160000pt;}
.y81{bottom:578.080000pt;}
.y3d{bottom:580.320000pt;}
.ye1{bottom:582.560000pt;}
.y114{bottom:583.200000pt;}
.ybc{bottom:598.560000pt;}
.y16{bottom:599.200000pt;}
.ya1{bottom:599.520000pt;}
.y80{bottom:600.800000pt;}
.ydc{bottom:602.400000pt;}
.y10d{bottom:603.040000pt;}
.y3c{bottom:603.360000pt;}
.ybb{bottom:621.626667pt;}
.y15{bottom:622.266667pt;}
.y111{bottom:622.906667pt;}
.y7f{bottom:623.866667pt;}
.ya0{bottom:624.826667pt;}
.y54{bottom:626.106667pt;}
.y3b{bottom:626.426667pt;}
.yde{bottom:642.106667pt;}
.y10f{bottom:642.746667pt;}
.yba{bottom:644.666667pt;}
.y14{bottom:645.946667pt;}
.y7e{bottom:646.906667pt;}
.y3a{bottom:649.466667pt;}
.y9f{bottom:650.106667pt;}
.yb9{bottom:667.706667pt;}
.y7d{bottom:669.946667pt;}
.y13{bottom:670.266667pt;}
.y39{bottom:672.506667pt;}
.y10c{bottom:674.106667pt;}
.y9e{bottom:675.386667pt;}
.yd8{bottom:677.946667pt;}
.yb8{bottom:690.426667pt;}
.y10b{bottom:691.066667pt;}
.y7c{bottom:692.986667pt;}
.y38{bottom:695.546667pt;}
.y12{bottom:696.826667pt;}
.yda{bottom:697.786667pt;}
.y9d{bottom:700.666667pt;}
.yb7{bottom:714.426667pt;}
.y10a{bottom:714.746667pt;}
.y7b{bottom:715.706667pt;}
.yd3{bottom:717.946667pt;}
.y67{bottom:718.266667pt;}
.y37{bottom:718.586667pt;}
.y11{bottom:719.866667pt;}
.y9c{bottom:725.946667pt;}
.y107{bottom:729.146667pt;}
.yd7{bottom:737.826667pt;}
.y7a{bottom:740.066667pt;}
.y62{bottom:741.346667pt;}
.y36{bottom:741.666667pt;}
.y10{bottom:742.626667pt;}
.y109{bottom:749.026667pt;}
.y9b{bottom:751.266667pt;}
.yd5{bottom:757.666667pt;}
.y35{bottom:764.386667pt;}
.y79{bottom:765.346667pt;}
.y108{bottom:768.866667pt;}
.yf{bottom:773.666667pt;}
.y9a{bottom:776.866667pt;}
.y34{bottom:787.426667pt;}
.y104{bottom:788.706667pt;}
.yd2{bottom:789.026667pt;}
.y78{bottom:790.626667pt;}
.ye{bottom:790.946667pt;}
.y99{bottom:802.146667pt;}
.yd1{bottom:805.986667pt;}
.y106{bottom:808.546667pt;}
.y66{bottom:810.146667pt;}
.y33{bottom:810.466667pt;}
.yd{bottom:813.986667pt;}
.y77{bottom:815.906667pt;}
.y98{bottom:827.426667pt;}
.y105{bottom:828.386667pt;}
.yd0{bottom:829.666667pt;}
.y53{bottom:833.186667pt;}
.y32{bottom:833.506667pt;}
.yc{bottom:837.026667pt;}
.y76{bottom:841.186667pt;}
.y102{bottom:848.573333pt;}
.y97{bottom:852.733333pt;}
.ycf{bottom:854.333333pt;}
.y31{bottom:856.573333pt;}
.yb{bottom:860.093333pt;}
.y75{bottom:866.493333pt;}
.y103{bottom:868.413333pt;}
.y96{bottom:877.373333pt;}
.y30{bottom:879.613333pt;}
.y101{bottom:888.253333pt;}
.ya{bottom:891.133333pt;}
.y74{bottom:891.773333pt;}
.y95{bottom:900.093333pt;}
.y61{bottom:902.333333pt;}
.y2f{bottom:902.653333pt;}
.yfd{bottom:908.093333pt;}
.y9{bottom:909.373333pt;}
.y73{bottom:917.053333pt;}
.y94{bottom:923.133333pt;}
.y2e{bottom:925.373333pt;}
.y100{bottom:927.933333pt;}
.y8{bottom:933.053333pt;}
.y72{bottom:942.333333pt;}
.y93{bottom:946.173333pt;}
.yff{bottom:947.773333pt;}
.y6a{bottom:948.093333pt;}
.y2d{bottom:948.413333pt;}
.y7{bottom:960.933333pt;}
.y71{bottom:967.653333pt;}
.y92{bottom:969.253333pt;}
.y2c{bottom:971.493333pt;}
.yfc{bottom:987.493333pt;}
.y6{bottom:990.693333pt;}
.y70{bottom:992.933333pt;}
.y52{bottom:994.213333pt;}
.y2b{bottom:994.533333pt;}
.y3{bottom:1010.533333pt;}
.y2{bottom:1028.453333pt;}
.y1{bottom:1046.373333pt;}
.h11{height:19.200000pt;}
.h12{height:19.232000pt;}
.h7{height:33.562500pt;}
.h15{height:35.200000pt;}
.ha{height:37.410000pt;}
.h13{height:39.040000pt;}
.h16{height:39.360000pt;}
.h2{height:47.322500pt;}
.h3{height:47.380000pt;}
.he{height:48.195000pt;}
.h9{height:52.736250pt;}
.hb{height:52.762500pt;}
.hd{height:53.118750pt;}
.hf{height:53.278750pt;}
.h8{height:54.180000pt;}
.h1a{height:55.256809pt;}
.h10{height:58.912000pt;}
.h19{height:59.200000pt;}
.h6{height:59.340000pt;}
.hc{height:61.295000pt;}
.h5{height:64.290000pt;}
.h4{height:69.660000pt;}
.h14{height:74.912000pt;}
.h18{height:78.752000pt;}
.h17{height:154.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:44.160000pt;}
.w17{width:51.520000pt;}
.w16{width:57.632000pt;}
.we{width:77.120000pt;}
.wf{width:77.152000pt;}
.w9{width:77.440000pt;}
.wb{width:77.472000pt;}
.wd{width:83.552000pt;}
.w8{width:83.872000pt;}
.wa{width:84.192000pt;}
.w4{width:88.384000pt;}
.wc{width:88.704000pt;}
.w11{width:94.784000pt;}
.w18{width:95.104000pt;}
.w13{width:102.112000pt;}
.w10{width:102.432000pt;}
.w3{width:107.872000pt;}
.w14{width:109.472000pt;}
.w6{width:161.626667pt;}
.w7{width:161.986667pt;}
.w12{width:211.906667pt;}
.w5{width:323.933333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:6.720000pt;}
.x11{left:31.360000pt;}
.x13{left:32.640000pt;}
.xb{left:64.986667pt;}
.x9{left:66.560000pt;}
.x10{left:91.226667pt;}
.x1{left:96.031988pt;}
.x2{left:104.351988pt;}
.x4{left:120.031988pt;}
.x8{left:143.706667pt;}
.x3{left:160.706655pt;}
.xe{left:199.426667pt;}
.x6{left:204.866667pt;}
.x7{left:293.573333pt;}
.xf{left:294.533333pt;}
.x14{left:339.013333pt;}
.xc{left:377.760000pt;}
.x12{left:396.960000pt;}
.x15{left:448.800000pt;}
.xa{left:455.520000pt;}
.xd{left:540.026667pt;}
}




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