
    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_8f4c03000b72dc9834cfa014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_49c3633bb59eb6843b3d4e95.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_7c15c560ff272fab1c5f44c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ce3812155574a629524d47da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_80aa49f8652f90d1dff3a421.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2c0d003b7fe9095888d7d4af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4c51802b925b4cacb142ba88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.618000px;}
.ls9{letter-spacing:-0.564600px;}
.ls3{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.478200px;}
.ls4{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.233400px;}
.ls17{letter-spacing:-0.150000px;}
.ls7{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.075000px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.187200px;}
.ls15{letter-spacing:0.308400px;}
.lsc{letter-spacing:0.385800px;}
.lsd{letter-spacing:3.185280px;}
.lsa{letter-spacing:11.825280px;}
.lsf{letter-spacing:39.881280px;}
.lse{letter-spacing:43.481280px;}
.ls10{letter-spacing:47.081280px;}
.ls12{letter-spacing:59.321280px;}
.ls11{letter-spacing:62.921280px;}
.ls16{letter-spacing:66.521280px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.ws10{word-spacing:-15.840000px;}
.wsb{word-spacing:-14.958600px;}
.wse{word-spacing:-14.881200px;}
.wsc{word-spacing:-14.647800px;}
.ws12{word-spacing:-14.595840px;}
.wsa{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.422800px;}
.wsd{word-spacing:-14.339400px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.134600px;}
.ws2{word-spacing:-9.187200px;}
.ws8{word-spacing:-9.092400px;}
.ws3{word-spacing:-8.614200px;}
.ws6{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-5.418960px;}
._13{margin-left:-3.609600px;}
._10{margin-left:-2.458080px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._4{width:3.285480px;}
._9{width:4.310040px;}
._d{width:5.616120px;}
._19{width:6.705480px;}
._a{width:7.888320px;}
._c{width:9.262800px;}
._17{width:10.532160px;}
._b{width:12.077520px;}
._1e{width:13.110000px;}
._e{width:14.169120px;}
._11{width:15.418080px;}
._12{width:17.091360px;}
._1a{width:18.750240px;}
._8{width:20.079360px;}
._7{width:21.274560px;}
._18{width:22.973760px;}
._1f{width:24.472560px;}
._28{width:25.506000px;}
._f{width:26.652960px;}
._20{width:28.525920px;}
._1d{width:30.309840px;}
._1c{width:31.331520px;}
._26{width:32.992080px;}
._29{width:34.643520px;}
._2a{width:36.034560px;}
._1b{width:38.551680px;}
._24{width:39.583440px;}
._23{width:40.936320px;}
._25{width:43.043760px;}
._21{width:44.068800px;}
._22{width:45.427680px;}
._15{width:47.189040px;}
._0{width:75.000000px;}
._27{width:98.167680px;}
._3{width:181.080000px;}
._5{width:198.429840px;}
._6{width:202.852800px;}
._16{width:1056.007200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y56{bottom:-27.900000px;}
.y55{bottom:-7.200000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.600000px;}
.ybd{bottom:3.780000px;}
.yb7{bottom:4.140000px;}
.ycf{bottom:6.480000px;}
.y54{bottom:11.520000px;}
.yb4{bottom:14.790000px;}
.yd4{bottom:21.600000px;}
.yd2{bottom:21.780000px;}
.y53{bottom:21.960000px;}
.yd8{bottom:22.860000px;}
.yb9{bottom:23.040000px;}
.yb6{bottom:23.400000px;}
.yce{bottom:28.800000px;}
.y52{bottom:32.580000px;}
.y51{bottom:43.050000px;}
.yd1{bottom:43.920000px;}
.yd7{bottom:45.000000px;}
.y59{bottom:46.980000px;}
.y8{bottom:56.520000px;}
.y50{bottom:64.650000px;}
.y7{bottom:70.596000px;}
.y4f{bottom:81.390000px;}
.y6{bottom:84.636000px;}
.yfc{bottom:113.796000px;}
.y88{bottom:115.596000px;}
.y3e{bottom:122.256000px;}
.ye2{bottom:125.496000px;}
.y124{bottom:127.296000px;}
.yc0{bottom:127.476000px;}
.yb2{bottom:131.076000px;}
.y4e{bottom:134.310000px;}
.yfb{bottom:136.116000px;}
.y87{bottom:137.916000px;}
.y3d{bottom:144.396000px;}
.ye1{bottom:147.636000px;}
.y123{bottom:149.616000px;}
.y4d{bottom:150.510000px;}
.yb1{bottom:153.390000px;}
.yfa{bottom:158.250000px;}
.y86{bottom:160.050000px;}
.y3c{bottom:166.710000px;}
.ye0{bottom:169.950000px;}
.y122{bottom:171.750000px;}
.yb0{bottom:175.530000px;}
.yf9{bottom:180.570000px;}
.y85{bottom:182.370000px;}
.y4c{bottom:182.910000px;}
.y3b{bottom:188.850000px;}
.ydf{bottom:192.090000px;}
.y121{bottom:194.070000px;}
.yaf{bottom:197.850000px;}
.y4b{bottom:199.110000px;}
.yf8{bottom:202.710000px;}
.y84{bottom:204.510000px;}
.y3a{bottom:211.170000px;}
.y4a{bottom:213.150000px;}
.yde{bottom:214.410000px;}
.y120{bottom:216.210000px;}
.yae{bottom:219.990000px;}
.yf7{bottom:225.030000px;}
.y83{bottom:226.830000px;}
.y49{bottom:227.190000px;}
.y39{bottom:233.490000px;}
.ydd{bottom:236.730000px;}
.y11f{bottom:238.530000px;}
.y48{bottom:241.230000px;}
.yad{bottom:242.310000px;}
.yf6{bottom:247.350000px;}
.y82{bottom:249.150000px;}
.y47{bottom:255.450000px;}
.y38{bottom:255.630000px;}
.ydc{bottom:258.870000px;}
.y11e{bottom:260.850000px;}
.yac{bottom:264.630000px;}
.yf5{bottom:269.490000px;}
.y46{bottom:270.750000px;}
.y81{bottom:271.290000px;}
.y37{bottom:274.890000px;}
.ydb{bottom:281.190000px;}
.y11d{bottom:282.990000px;}
.yab{bottom:286.770000px;}
.y45{bottom:290.190000px;}
.yf4{bottom:291.810000px;}
.y36{bottom:292.530000px;}
.y80{bottom:293.610000px;}
.yda{bottom:303.330000px;}
.y44{bottom:304.275000px;}
.y11c{bottom:305.310000px;}
.yaa{bottom:306.390000px;}
.y35{bottom:310.170000px;}
.yf3{bottom:313.950000px;}
.y7f{bottom:315.750000px;}
.y43{bottom:318.315000px;}
.ya9{bottom:325.650000px;}
.y11b{bottom:327.450000px;}
.y34{bottom:327.630000px;}
.y42{bottom:332.355000px;}
.yf2{bottom:336.270000px;}
.y7e{bottom:338.115000px;}
.ya8{bottom:345.135000px;}
.y33{bottom:345.315000px;}
.y41{bottom:346.395000px;}
.yd9{bottom:348.015000px;}
.y11a{bottom:349.815000px;}
.yf1{bottom:358.455000px;}
.y7d{bottom:360.255000px;}
.y40{bottom:360.795000px;}
.y32{bottom:362.955000px;}
.ya7{bottom:364.395000px;}
.yd6{bottom:364.575000px;}
.y119{bottom:371.955000px;}
.y31{bottom:380.415000px;}
.yf0{bottom:380.775000px;}
.y7c{bottom:382.575000px;}
.ya6{bottom:383.655000px;}
.ybf{bottom:392.835000px;}
.y118{bottom:394.275000px;}
.y30{bottom:398.055000px;}
.ya5{bottom:403.095000px;}
.y7b{bottom:404.895000px;}
.ybe{bottom:414.975000px;}
.y2f{bottom:415.695000px;}
.y117{bottom:416.595000px;}
.ya4{bottom:425.055000px;}
.yef{bottom:425.235000px;}
.yd5{bottom:426.315000px;}
.y7a{bottom:427.035000px;}
.ybc{bottom:431.535000px;}
.y2e{bottom:433.155000px;}
.y116{bottom:438.735000px;}
.ya3{bottom:447.375000px;}
.yee{bottom:447.555000px;}
.y79{bottom:449.355000px;}
.y2d{bottom:450.795000px;}
.y115{bottom:461.775000px;}
.y2c{bottom:468.435000px;}
.ya2{bottom:469.695000px;}
.ybb{bottom:471.135000px;}
.y78{bottom:471.495000px;}
.y114{bottom:485.355000px;}
.y2b{bottom:486.075000px;}
.yd3{bottom:486.795000px;}
.ya1{bottom:491.835000px;}
.yed{bottom:492.015000px;}
.y77{bottom:493.815000px;}
.y2a{bottom:503.535000px;}
.y113{bottom:504.795000px;}
.yb8{bottom:510.555000px;}
.ya0{bottom:514.155000px;}
.yec{bottom:514.335000px;}
.y76{bottom:516.135000px;}
.y29{bottom:521.175000px;}
.y112{bottom:524.235000px;}
.y9f{bottom:536.295000px;}
.yeb{bottom:536.475000px;}
.y75{bottom:538.275000px;}
.y28{bottom:540.975000px;}
.y111{bottom:543.495000px;}
.yd0{bottom:547.275000px;}
.yb5{bottom:549.975000px;}
.y27{bottom:558.615000px;}
.yea{bottom:558.795000px;}
.y74{bottom:560.595000px;}
.y110{bottom:562.755000px;}
.y3f{bottom:566.355000px;}
.y26{bottom:576.255000px;}
.y9e{bottom:580.935000px;}
.y10f{bottom:582.195000px;}
.y73{bottom:582.735000px;}
.yb3{bottom:589.755000px;}
.y25{bottom:593.715000px;}
.y10e{bottom:601.455000px;}
.y9d{bottom:603.075000px;}
.ye9{bottom:603.255000px;}
.y72{bottom:605.085000px;}
.ycd{bottom:607.785000px;}
.y24{bottom:611.385000px;}
.y10d{bottom:620.925000px;}
.y9c{bottom:625.425000px;}
.ye8{bottom:625.605000px;}
.y71{bottom:627.405000px;}
.y23{bottom:629.025000px;}
.y10c{bottom:640.185000px;}
.y22{bottom:646.485000px;}
.y9b{bottom:647.565000px;}
.ye7{bottom:647.745000px;}
.y70{bottom:649.545000px;}
.ycc{bottom:659.445000px;}
.y10b{bottom:659.625000px;}
.y21{bottom:664.125000px;}
.y9a{bottom:669.885000px;}
.ye6{bottom:670.065000px;}
.y6f{bottom:671.865000px;}
.y10a{bottom:678.885000px;}
.y20{bottom:681.765000px;}
.y99{bottom:692.205000px;}
.y6e{bottom:694.005000px;}
.y109{bottom:698.325000px;}
.y1f{bottom:699.225000px;}
.ycb{bottom:703.905000px;}
.y98{bottom:714.345000px;}
.ye5{bottom:714.525000px;}
.y125{bottom:715.425000px;}
.y6d{bottom:716.325000px;}
.y1e{bottom:716.865000px;}
.y108{bottom:717.585000px;}
.yca{bottom:726.225000px;}
.y1d{bottom:734.505000px;}
.y97{bottom:736.665000px;}
.y6c{bottom:738.465000px;}
.y107{bottom:739.725000px;}
.yc9{bottom:748.545000px;}
.y1c{bottom:752.145000px;}
.y96{bottom:758.805000px;}
.ye4{bottom:758.985000px;}
.y6b{bottom:760.785000px;}
.y106{bottom:761.865000px;}
.y1b{bottom:769.605000px;}
.yc8{bottom:770.685000px;}
.ye3{bottom:777.705000px;}
.y95{bottom:781.125000px;}
.y6a{bottom:783.105000px;}
.y105{bottom:784.185000px;}
.y1a{bottom:787.245000px;}
.yc7{bottom:793.005000px;}
.y94{bottom:803.265000px;}
.y19{bottom:804.885000px;}
.y69{bottom:805.245000px;}
.y104{bottom:806.505000px;}
.yc6{bottom:815.145000px;}
.y18{bottom:822.345000px;}
.y93{bottom:825.585000px;}
.y68{bottom:827.565000px;}
.y103{bottom:828.645000px;}
.yc5{bottom:837.465000px;}
.y17{bottom:839.985000px;}
.y92{bottom:847.905000px;}
.y67{bottom:849.705000px;}
.y102{bottom:850.965000px;}
.y16{bottom:857.625000px;}
.yc4{bottom:859.785000px;}
.y91{bottom:870.045000px;}
.y66{bottom:872.070000px;}
.y101{bottom:873.150000px;}
.y15{bottom:875.130000px;}
.yc3{bottom:881.970000px;}
.y90{bottom:892.410000px;}
.y14{bottom:892.770000px;}
.y65{bottom:894.390000px;}
.y100{bottom:895.470000px;}
.yc2{bottom:904.290000px;}
.y13{bottom:910.410000px;}
.y8f{bottom:911.850000px;}
.y64{bottom:916.530000px;}
.yff{bottom:917.610000px;}
.yc1{bottom:922.830000px;}
.y12{bottom:928.050000px;}
.y8e{bottom:931.290000px;}
.y63{bottom:938.850000px;}
.yfe{bottom:939.930000px;}
.y11{bottom:945.870000px;}
.y8d{bottom:950.550000px;}
.yfd{bottom:959.730000px;}
.y62{bottom:960.990000px;}
.y10{bottom:968.730000px;}
.y8c{bottom:969.990000px;}
.yf{bottom:982.770000px;}
.y61{bottom:983.310000px;}
.y8b{bottom:989.250000px;}
.ye{bottom:1001.850000px;}
.y60{bottom:1005.450000px;}
.y8a{bottom:1008.690000px;}
.yd{bottom:1019.670000px;}
.y5f{bottom:1027.770000px;}
.y89{bottom:1027.950000px;}
.yc{bottom:1038.930000px;}
.y5e{bottom:1050.090000px;}
.yb{bottom:1058.910000px;}
.y5d{bottom:1072.230000px;}
.ya{bottom:1081.770000px;}
.y5c{bottom:1094.550000px;}
.y9{bottom:1108.230000px;}
.y5b{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y5a{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y58{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.he{height:30.456000px;}
.hb{height:30.480469px;}
.h8{height:35.477578px;}
.h3{height:38.100586px;}
.h10{height:38.700000px;}
.hf{height:39.060000px;}
.h4{height:40.843828px;}
.h11{height:44.640000px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h7{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.h13{height:59.760000px;}
.h12{height:59.796000px;}
.h14{height:60.840000px;}
.hd{height:60.960938px;}
.h5{height:65.837812px;}
.h9{height:373.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:127.260000px;}
.w4{width:135.180000px;}
.w3{width:208.110000px;}
.w6{width:243.570000px;}
.w9{width:248.610000px;}
.w8{width:261.075000px;}
.w5{width:285.735000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:108.035987px;}
.x4{left:111.995987px;}
.x12{left:113.616000px;}
.x2{left:116.135987px;}
.x6{left:121.175987px;}
.x1b{left:127.476000px;}
.xf{left:129.275987px;}
.xc{left:134.994000px;}
.xb{left:162.029987px;}
.xe{left:171.929987px;}
.x20{left:182.549987px;}
.x10{left:203.789987px;}
.x9{left:224.309987px;}
.x16{left:237.989987px;}
.x8{left:243.929987px;}
.x14{left:249.510000px;}
.x1c{left:255.450000px;}
.x1a{left:288.974987px;}
.x11{left:294.554987px;}
.x18{left:327.674987px;}
.xa{left:335.414987px;}
.x5{left:344.774987px;}
.x1e{left:360.254987px;}
.x7{left:375.734987px;}
.x3{left:446.474987px;}
.x1d{left:517.245000px;}
.x15{left:535.965000px;}
.xd{left:546.224987px;}
.x17{left:633.344987px;}
.x19{left:642.704987px;}
.x1f{left:722.669987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.549333pt;}
.ls9{letter-spacing:-0.501867pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.425067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.207467pt;}
.ls17{letter-spacing:-0.133333pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.066667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.166400pt;}
.ls15{letter-spacing:0.274133pt;}
.lsc{letter-spacing:0.342933pt;}
.lsd{letter-spacing:2.831360pt;}
.lsa{letter-spacing:10.511360pt;}
.lsf{letter-spacing:35.450027pt;}
.lse{letter-spacing:38.650027pt;}
.ls10{letter-spacing:41.850027pt;}
.ls12{letter-spacing:52.730027pt;}
.ls11{letter-spacing:55.930027pt;}
.ls16{letter-spacing:59.130027pt;}
.ws11{word-spacing:-58.880000pt;}
.ws10{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.296533pt;}
.wse{word-spacing:-13.227733pt;}
.wsc{word-spacing:-13.020267pt;}
.ws12{word-spacing:-12.974080pt;}
.wsa{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.820267pt;}
.wsd{word-spacing:-12.746133pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.008533pt;}
.ws2{word-spacing:-8.166400pt;}
.ws8{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.657067pt;}
.ws6{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-4.816853pt;}
._13{margin-left:-3.208533pt;}
._10{margin-left:-2.184960pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._4{width:2.920427pt;}
._9{width:3.831147pt;}
._d{width:4.992107pt;}
._19{width:5.960427pt;}
._a{width:7.011840pt;}
._c{width:8.233600pt;}
._17{width:9.361920pt;}
._b{width:10.735573pt;}
._1e{width:11.653333pt;}
._e{width:12.594773pt;}
._11{width:13.704960pt;}
._12{width:15.192320pt;}
._1a{width:16.666880pt;}
._8{width:17.848320pt;}
._7{width:18.910720pt;}
._18{width:20.421120pt;}
._1f{width:21.753387pt;}
._28{width:22.672000pt;}
._f{width:23.691520pt;}
._20{width:25.356373pt;}
._1d{width:26.942080pt;}
._1c{width:27.850240pt;}
._26{width:29.326293pt;}
._29{width:30.794240pt;}
._2a{width:32.030720pt;}
._1b{width:34.268160pt;}
._24{width:35.185280pt;}
._23{width:36.387840pt;}
._25{width:38.261120pt;}
._21{width:39.172267pt;}
._22{width:40.380160pt;}
._15{width:41.945813pt;}
._0{width:66.666667pt;}
._27{width:87.260160pt;}
._3{width:160.960000pt;}
._5{width:176.382080pt;}
._6{width:180.313600pt;}
._16{width:938.673067pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y56{bottom:-24.800000pt;}
.y55{bottom:-6.400000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:3.200000pt;}
.ybd{bottom:3.360000pt;}
.yb7{bottom:3.680000pt;}
.ycf{bottom:5.760000pt;}
.y54{bottom:10.240000pt;}
.yb4{bottom:13.146667pt;}
.yd4{bottom:19.200000pt;}
.yd2{bottom:19.360000pt;}
.y53{bottom:19.520000pt;}
.yd8{bottom:20.320000pt;}
.yb9{bottom:20.480000pt;}
.yb6{bottom:20.800000pt;}
.yce{bottom:25.600000pt;}
.y52{bottom:28.960000pt;}
.y51{bottom:38.266667pt;}
.yd1{bottom:39.040000pt;}
.yd7{bottom:40.000000pt;}
.y59{bottom:41.760000pt;}
.y8{bottom:50.240000pt;}
.y50{bottom:57.466667pt;}
.y7{bottom:62.752000pt;}
.y4f{bottom:72.346667pt;}
.y6{bottom:75.232000pt;}
.yfc{bottom:101.152000pt;}
.y88{bottom:102.752000pt;}
.y3e{bottom:108.672000pt;}
.ye2{bottom:111.552000pt;}
.y124{bottom:113.152000pt;}
.yc0{bottom:113.312000pt;}
.yb2{bottom:116.512000pt;}
.y4e{bottom:119.386667pt;}
.yfb{bottom:120.992000pt;}
.y87{bottom:122.592000pt;}
.y3d{bottom:128.352000pt;}
.ye1{bottom:131.232000pt;}
.y123{bottom:132.992000pt;}
.y4d{bottom:133.786667pt;}
.yb1{bottom:136.346667pt;}
.yfa{bottom:140.666667pt;}
.y86{bottom:142.266667pt;}
.y3c{bottom:148.186667pt;}
.ye0{bottom:151.066667pt;}
.y122{bottom:152.666667pt;}
.yb0{bottom:156.026667pt;}
.yf9{bottom:160.506667pt;}
.y85{bottom:162.106667pt;}
.y4c{bottom:162.586667pt;}
.y3b{bottom:167.866667pt;}
.ydf{bottom:170.746667pt;}
.y121{bottom:172.506667pt;}
.yaf{bottom:175.866667pt;}
.y4b{bottom:176.986667pt;}
.yf8{bottom:180.186667pt;}
.y84{bottom:181.786667pt;}
.y3a{bottom:187.706667pt;}
.y4a{bottom:189.466667pt;}
.yde{bottom:190.586667pt;}
.y120{bottom:192.186667pt;}
.yae{bottom:195.546667pt;}
.yf7{bottom:200.026667pt;}
.y83{bottom:201.626667pt;}
.y49{bottom:201.946667pt;}
.y39{bottom:207.546667pt;}
.ydd{bottom:210.426667pt;}
.y11f{bottom:212.026667pt;}
.y48{bottom:214.426667pt;}
.yad{bottom:215.386667pt;}
.yf6{bottom:219.866667pt;}
.y82{bottom:221.466667pt;}
.y47{bottom:227.066667pt;}
.y38{bottom:227.226667pt;}
.ydc{bottom:230.106667pt;}
.y11e{bottom:231.866667pt;}
.yac{bottom:235.226667pt;}
.yf5{bottom:239.546667pt;}
.y46{bottom:240.666667pt;}
.y81{bottom:241.146667pt;}
.y37{bottom:244.346667pt;}
.ydb{bottom:249.946667pt;}
.y11d{bottom:251.546667pt;}
.yab{bottom:254.906667pt;}
.y45{bottom:257.946667pt;}
.yf4{bottom:259.386667pt;}
.y36{bottom:260.026667pt;}
.y80{bottom:260.986667pt;}
.yda{bottom:269.626667pt;}
.y44{bottom:270.466667pt;}
.y11c{bottom:271.386667pt;}
.yaa{bottom:272.346667pt;}
.y35{bottom:275.706667pt;}
.yf3{bottom:279.066667pt;}
.y7f{bottom:280.666667pt;}
.y43{bottom:282.946667pt;}
.ya9{bottom:289.466667pt;}
.y11b{bottom:291.066667pt;}
.y34{bottom:291.226667pt;}
.y42{bottom:295.426667pt;}
.yf2{bottom:298.906667pt;}
.y7e{bottom:300.546667pt;}
.ya8{bottom:306.786667pt;}
.y33{bottom:306.946667pt;}
.y41{bottom:307.906667pt;}
.yd9{bottom:309.346667pt;}
.y11a{bottom:310.946667pt;}
.yf1{bottom:318.626667pt;}
.y7d{bottom:320.226667pt;}
.y40{bottom:320.706667pt;}
.y32{bottom:322.626667pt;}
.ya7{bottom:323.906667pt;}
.yd6{bottom:324.066667pt;}
.y119{bottom:330.626667pt;}
.y31{bottom:338.146667pt;}
.yf0{bottom:338.466667pt;}
.y7c{bottom:340.066667pt;}
.ya6{bottom:341.026667pt;}
.ybf{bottom:349.186667pt;}
.y118{bottom:350.466667pt;}
.y30{bottom:353.826667pt;}
.ya5{bottom:358.306667pt;}
.y7b{bottom:359.906667pt;}
.ybe{bottom:368.866667pt;}
.y2f{bottom:369.506667pt;}
.y117{bottom:370.306667pt;}
.ya4{bottom:377.826667pt;}
.yef{bottom:377.986667pt;}
.yd5{bottom:378.946667pt;}
.y7a{bottom:379.586667pt;}
.ybc{bottom:383.586667pt;}
.y2e{bottom:385.026667pt;}
.y116{bottom:389.986667pt;}
.ya3{bottom:397.666667pt;}
.yee{bottom:397.826667pt;}
.y79{bottom:399.426667pt;}
.y2d{bottom:400.706667pt;}
.y115{bottom:410.466667pt;}
.y2c{bottom:416.386667pt;}
.ya2{bottom:417.506667pt;}
.ybb{bottom:418.786667pt;}
.y78{bottom:419.106667pt;}
.y114{bottom:431.426667pt;}
.y2b{bottom:432.066667pt;}
.yd3{bottom:432.706667pt;}
.ya1{bottom:437.186667pt;}
.yed{bottom:437.346667pt;}
.y77{bottom:438.946667pt;}
.y2a{bottom:447.586667pt;}
.y113{bottom:448.706667pt;}
.yb8{bottom:453.826667pt;}
.ya0{bottom:457.026667pt;}
.yec{bottom:457.186667pt;}
.y76{bottom:458.786667pt;}
.y29{bottom:463.266667pt;}
.y112{bottom:465.986667pt;}
.y9f{bottom:476.706667pt;}
.yeb{bottom:476.866667pt;}
.y75{bottom:478.466667pt;}
.y28{bottom:480.866667pt;}
.y111{bottom:483.106667pt;}
.yd0{bottom:486.466667pt;}
.yb5{bottom:488.866667pt;}
.y27{bottom:496.546667pt;}
.yea{bottom:496.706667pt;}
.y74{bottom:498.306667pt;}
.y110{bottom:500.226667pt;}
.y3f{bottom:503.426667pt;}
.y26{bottom:512.226667pt;}
.y9e{bottom:516.386667pt;}
.y10f{bottom:517.506667pt;}
.y73{bottom:517.986667pt;}
.yb3{bottom:524.226667pt;}
.y25{bottom:527.746667pt;}
.y10e{bottom:534.626667pt;}
.y9d{bottom:536.066667pt;}
.ye9{bottom:536.226667pt;}
.y72{bottom:537.853333pt;}
.ycd{bottom:540.253333pt;}
.y24{bottom:543.453333pt;}
.y10d{bottom:551.933333pt;}
.y9c{bottom:555.933333pt;}
.ye8{bottom:556.093333pt;}
.y71{bottom:557.693333pt;}
.y23{bottom:559.133333pt;}
.y10c{bottom:569.053333pt;}
.y22{bottom:574.653333pt;}
.y9b{bottom:575.613333pt;}
.ye7{bottom:575.773333pt;}
.y70{bottom:577.373333pt;}
.ycc{bottom:586.173333pt;}
.y10b{bottom:586.333333pt;}
.y21{bottom:590.333333pt;}
.y9a{bottom:595.453333pt;}
.ye6{bottom:595.613333pt;}
.y6f{bottom:597.213333pt;}
.y10a{bottom:603.453333pt;}
.y20{bottom:606.013333pt;}
.y99{bottom:615.293333pt;}
.y6e{bottom:616.893333pt;}
.y109{bottom:620.733333pt;}
.y1f{bottom:621.533333pt;}
.ycb{bottom:625.693333pt;}
.y98{bottom:634.973333pt;}
.ye5{bottom:635.133333pt;}
.y125{bottom:635.933333pt;}
.y6d{bottom:636.733333pt;}
.y1e{bottom:637.213333pt;}
.y108{bottom:637.853333pt;}
.yca{bottom:645.533333pt;}
.y1d{bottom:652.893333pt;}
.y97{bottom:654.813333pt;}
.y6c{bottom:656.413333pt;}
.y107{bottom:657.533333pt;}
.yc9{bottom:665.373333pt;}
.y1c{bottom:668.573333pt;}
.y96{bottom:674.493333pt;}
.ye4{bottom:674.653333pt;}
.y6b{bottom:676.253333pt;}
.y106{bottom:677.213333pt;}
.y1b{bottom:684.093333pt;}
.yc8{bottom:685.053333pt;}
.ye3{bottom:691.293333pt;}
.y95{bottom:694.333333pt;}
.y6a{bottom:696.093333pt;}
.y105{bottom:697.053333pt;}
.y1a{bottom:699.773333pt;}
.yc7{bottom:704.893333pt;}
.y94{bottom:714.013333pt;}
.y19{bottom:715.453333pt;}
.y69{bottom:715.773333pt;}
.y104{bottom:716.893333pt;}
.yc6{bottom:724.573333pt;}
.y18{bottom:730.973333pt;}
.y93{bottom:733.853333pt;}
.y68{bottom:735.613333pt;}
.y103{bottom:736.573333pt;}
.yc5{bottom:744.413333pt;}
.y17{bottom:746.653333pt;}
.y92{bottom:753.693333pt;}
.y67{bottom:755.293333pt;}
.y102{bottom:756.413333pt;}
.y16{bottom:762.333333pt;}
.yc4{bottom:764.253333pt;}
.y91{bottom:773.373333pt;}
.y66{bottom:775.173333pt;}
.y101{bottom:776.133333pt;}
.y15{bottom:777.893333pt;}
.yc3{bottom:783.973333pt;}
.y90{bottom:793.253333pt;}
.y14{bottom:793.573333pt;}
.y65{bottom:795.013333pt;}
.y100{bottom:795.973333pt;}
.yc2{bottom:803.813333pt;}
.y13{bottom:809.253333pt;}
.y8f{bottom:810.533333pt;}
.y64{bottom:814.693333pt;}
.yff{bottom:815.653333pt;}
.yc1{bottom:820.293333pt;}
.y12{bottom:824.933333pt;}
.y8e{bottom:827.813333pt;}
.y63{bottom:834.533333pt;}
.yfe{bottom:835.493333pt;}
.y11{bottom:840.773333pt;}
.y8d{bottom:844.933333pt;}
.yfd{bottom:853.093333pt;}
.y62{bottom:854.213333pt;}
.y10{bottom:861.093333pt;}
.y8c{bottom:862.213333pt;}
.yf{bottom:873.573333pt;}
.y61{bottom:874.053333pt;}
.y8b{bottom:879.333333pt;}
.ye{bottom:890.533333pt;}
.y60{bottom:893.733333pt;}
.y8a{bottom:896.613333pt;}
.yd{bottom:906.373333pt;}
.y5f{bottom:913.573333pt;}
.y89{bottom:913.733333pt;}
.yc{bottom:923.493333pt;}
.y5e{bottom:933.413333pt;}
.yb{bottom:941.253333pt;}
.y5d{bottom:953.093333pt;}
.ya{bottom:961.573333pt;}
.y5c{bottom:972.933333pt;}
.y9{bottom:985.093333pt;}
.y5b{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y5a{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y58{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.he{height:27.072000pt;}
.hb{height:27.093750pt;}
.h8{height:31.535625pt;}
.h3{height:33.867188pt;}
.h10{height:34.400000pt;}
.hf{height:34.720000pt;}
.h4{height:36.305625pt;}
.h11{height:39.680000pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h7{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.h13{height:53.120000pt;}
.h12{height:53.152000pt;}
.h14{height:54.080000pt;}
.hd{height:54.187500pt;}
.h5{height:58.522500pt;}
.h9{height:332.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:113.120000pt;}
.w4{width:120.160000pt;}
.w3{width:184.986667pt;}
.w6{width:216.506667pt;}
.w9{width:220.986667pt;}
.w8{width:232.066667pt;}
.w5{width:253.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:96.031988pt;}
.x4{left:99.551988pt;}
.x12{left:100.992000pt;}
.x2{left:103.231988pt;}
.x6{left:107.711988pt;}
.x1b{left:113.312000pt;}
.xf{left:114.911988pt;}
.xc{left:119.994667pt;}
.xb{left:144.026655pt;}
.xe{left:152.826655pt;}
.x20{left:162.266655pt;}
.x10{left:181.146655pt;}
.x9{left:199.386655pt;}
.x16{left:211.546655pt;}
.x8{left:216.826655pt;}
.x14{left:221.786667pt;}
.x1c{left:227.066667pt;}
.x1a{left:256.866655pt;}
.x11{left:261.826655pt;}
.x18{left:291.266655pt;}
.xa{left:298.146655pt;}
.x5{left:306.466655pt;}
.x1e{left:320.226655pt;}
.x7{left:333.986655pt;}
.x3{left:396.866655pt;}
.x1d{left:459.773333pt;}
.x15{left:476.413333pt;}
.xd{left:485.533322pt;}
.x17{left:562.973322pt;}
.x19{left:571.293322pt;}
.x1f{left:642.373322pt;}
}




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