
    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_0daf9bd3661449e0d398e877.woff')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_f85fb2f3c499676b659da2cf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_491e2eb781e2516d4f1a1418.woff')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_28173e486107fd06a4d05bfe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e005927d6cfd4c24e746340b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.057617;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_29022c85583bd63aa0348303.woff')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_4c8c788711f118b5f3e97c48.woff')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_51b6d1221c7d34eb00317783.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_705ad3f54b9318103d499028.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_017135d702c05fec70594335.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.141000px;}
.ls11{letter-spacing:-0.002880px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005760px;}
.ls7{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:16.865280px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.088080px;}
.wsf{word-spacing:-18.000000px;}
.wse{word-spacing:-16.565760px;}
.ws1{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.557120px;}
.ws11{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.518000px;}
.ws8{word-spacing:-12.996000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.676000px;}
.ws6{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.296480px;}
._7{width:2.333040px;}
._6{width:3.544080px;}
._5{width:4.601520px;}
._9{width:6.352800px;}
._a{width:7.534800px;}
._f{width:8.784720px;}
._14{width:9.848640px;}
._c{width:11.055600px;}
._2{width:12.131280px;}
._b{width:13.326480px;}
._10{width:14.374080px;}
._12{width:15.504960px;}
._11{width:17.714400px;}
._d{width:19.541520px;}
._4{width:20.693040px;}
._3{width:21.872160px;}
._17{width:23.184000px;}
._16{width:24.243840px;}
._e{width:25.577280px;}
._13{width:26.951040px;}
._1e{width:27.953280px;}
._1d{width:29.476800px;}
._1c{width:30.602880px;}
._1b{width:31.861440px;}
._8{width:34.421760px;}
._18{width:36.473040px;}
._1a{width:40.340160px;}
._19{width:45.109440px;}
._15{width:49.613760px;}
._21{width:55.442880px;}
._22{width:57.132000px;}
._20{width:175.072320px;}
._1f{width:176.132160px;}
._23{width:430.096320px;}
._24{width:431.172720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.240000px;}
.y37{bottom:4.500000px;}
.y12{bottom:13.680000px;}
.y29{bottom:15.480000px;}
.y5{bottom:21.060000px;}
.y36{bottom:24.840000px;}
.y9{bottom:38.340000px;}
.y4{bottom:40.860000px;}
.y40{bottom:42.840000px;}
.y27{bottom:42.885000px;}
.y35{bottom:45.000000px;}
.y8{bottom:58.320000px;}
.y2{bottom:61.770000px;}
.y26{bottom:63.045000px;}
.y3f{bottom:63.180000px;}
.y3{bottom:65.010000px;}
.y34{bottom:65.340000px;}
.y39{bottom:75.240000px;}
.y3e{bottom:83.340000px;}
.y25{bottom:83.385000px;}
.y33{bottom:85.500000px;}
.y3d{bottom:103.500000px;}
.y24{bottom:103.545000px;}
.y32{bottom:105.840000px;}
.y2a{bottom:120.420000px;}
.y139{bottom:121.140000px;}
.y65{bottom:122.400000px;}
.y3c{bottom:123.840000px;}
.y23{bottom:123.885000px;}
.y92{bottom:125.640000px;}
.y31{bottom:126.000000px;}
.y117{bottom:129.060000px;}
.y138{bottom:143.460000px;}
.y22{bottom:144.045000px;}
.y64{bottom:144.720000px;}
.yed{bottom:146.160000px;}
.y30{bottom:146.190000px;}
.y91{bottom:147.780000px;}
.y10c{bottom:147.960000px;}
.y116{bottom:151.380000px;}
.y21{bottom:164.385000px;}
.yaf{bottom:166.320000px;}
.y2f{bottom:166.530000px;}
.y63{bottom:166.860000px;}
.y90{bottom:170.100000px;}
.y10b{bottom:170.280000px;}
.yec{bottom:171.720000px;}
.y115{bottom:173.520000px;}
.y137{bottom:175.140000px;}
.y20{bottom:184.545000px;}
.y2e{bottom:186.690000px;}
.yae{bottom:188.640000px;}
.y62{bottom:189.180000px;}
.y10a{bottom:192.420000px;}
.yeb{bottom:193.860000px;}
.y114{bottom:195.840000px;}
.y136{bottom:199.440000px;}
.y8f{bottom:201.960000px;}
.y1f{bottom:204.705000px;}
.y2d{bottom:207.030000px;}
.yad{bottom:210.960000px;}
.y61{bottom:211.500000px;}
.y109{bottom:214.740000px;}
.yea{bottom:216.000000px;}
.y113{bottom:218.160000px;}
.y135{bottom:223.200000px;}
.y1e{bottom:225.045000px;}
.y8e{bottom:225.720000px;}
.y2c{bottom:227.190000px;}
.yac{bottom:233.100000px;}
.y60{bottom:233.640000px;}
.y108{bottom:237.060000px;}
.ye9{bottom:238.320000px;}
.ycb{bottom:239.940000px;}
.y112{bottom:240.300000px;}
.y1d{bottom:245.205000px;}
.y134{bottom:245.520000px;}
.y2b{bottom:247.530000px;}
.y8d{bottom:247.860000px;}
.yab{bottom:255.450000px;}
.y5f{bottom:255.990000px;}
.y107{bottom:259.230000px;}
.ye8{bottom:260.670000px;}
.yca{bottom:262.110000px;}
.y111{bottom:262.650000px;}
.y1c{bottom:265.545000px;}
.y133{bottom:267.870000px;}
.y8c{bottom:270.210000px;}
.yaa{bottom:277.770000px;}
.y5e{bottom:279.210000px;}
.y106{bottom:281.550000px;}
.ye7{bottom:282.810000px;}
.yc9{bottom:284.430000px;}
.y110{bottom:284.970000px;}
.y1b{bottom:285.735000px;}
.y132{bottom:290.010000px;}
.y8b{bottom:292.530000px;}
.ya9{bottom:299.910000px;}
.y5d{bottom:301.350000px;}
.y105{bottom:303.870000px;}
.ye6{bottom:305.130000px;}
.y1a{bottom:306.075000px;}
.yc8{bottom:306.750000px;}
.y131{bottom:312.330000px;}
.y8a{bottom:314.670000px;}
.ya8{bottom:322.230000px;}
.y5c{bottom:323.670000px;}
.y10f{bottom:324.930000px;}
.y104{bottom:326.010000px;}
.y19{bottom:326.235000px;}
.ye5{bottom:327.450000px;}
.yc7{bottom:328.890000px;}
.y130{bottom:334.650000px;}
.y89{bottom:336.990000px;}
.y10e{bottom:345.090000px;}
.y5b{bottom:345.810000px;}
.y18{bottom:346.395000px;}
.ya7{bottom:347.970000px;}
.y103{bottom:348.330000px;}
.ye4{bottom:349.590000px;}
.yc6{bottom:351.210000px;}
.y12f{bottom:356.790000px;}
.y88{bottom:359.310000px;}
.y10d{bottom:364.350000px;}
.y17{bottom:366.735000px;}
.y5a{bottom:368.130000px;}
.y102{bottom:370.650000px;}
.ye3{bottom:371.910000px;}
.yc5{bottom:373.530000px;}
.y12e{bottom:379.110000px;}
.ya6{bottom:379.650000px;}
.y87{bottom:381.450000px;}
.y16{bottom:386.895000px;}
.y59{bottom:390.450000px;}
.y101{bottom:392.790000px;}
.y28{bottom:394.050000px;}
.ye2{bottom:394.230000px;}
.yc4{bottom:395.670000px;}
.y12d{bottom:401.430000px;}
.y86{bottom:403.770000px;}
.ya5{bottom:403.950000px;}
.y15{bottom:407.235000px;}
.y58{bottom:412.590000px;}
.y100{bottom:415.110000px;}
.ye1{bottom:416.370000px;}
.yc3{bottom:417.990000px;}
.y12c{bottom:424.110000px;}
.y85{bottom:426.090000px;}
.y13a{bottom:426.270000px;}
.y14{bottom:427.395000px;}
.ya4{bottom:427.710000px;}
.y57{bottom:434.910000px;}
.y13{bottom:435.630000px;}
.ye0{bottom:438.690000px;}
.yc2{bottom:440.310000px;}
.y12b{bottom:447.870000px;}
.y84{bottom:448.230000px;}
.ya3{bottom:449.850000px;}
.yff{bottom:455.070000px;}
.y56{bottom:457.230000px;}
.ydf{bottom:461.010000px;}
.yc1{bottom:462.450000px;}
.y12a{bottom:470.190000px;}
.y83{bottom:470.550000px;}
.ya2{bottom:472.170000px;}
.yfe{bottom:475.410000px;}
.y55{bottom:480.495000px;}
.yde{bottom:483.195000px;}
.yc0{bottom:484.815000px;}
.y129{bottom:492.555000px;}
.y82{bottom:492.915000px;}
.ya1{bottom:494.535000px;}
.y54{bottom:502.635000px;}
.ydd{bottom:505.515000px;}
.ybf{bottom:507.135000px;}
.y128{bottom:514.695000px;}
.y81{bottom:516.135000px;}
.ya0{bottom:516.855000px;}
.y53{bottom:524.775000px;}
.ydc{bottom:527.835000px;}
.ybe{bottom:529.275000px;}
.y127{bottom:537.015000px;}
.y80{bottom:538.275000px;}
.y9f{bottom:538.995000px;}
.y52{bottom:547.095000px;}
.ydb{bottom:549.975000px;}
.ybd{bottom:551.595000px;}
.y126{bottom:559.335000px;}
.y7f{bottom:560.415000px;}
.y9e{bottom:561.315000px;}
.y51{bottom:569.415000px;}
.yda{bottom:572.295000px;}
.ybc{bottom:573.915000px;}
.y125{bottom:581.475000px;}
.y7e{bottom:582.735000px;}
.y9d{bottom:583.635000px;}
.y50{bottom:591.555000px;}
.yd9{bottom:594.615000px;}
.ybb{bottom:596.055000px;}
.y124{bottom:603.795000px;}
.y7d{bottom:605.055000px;}
.y9c{bottom:605.775000px;}
.y4f{bottom:613.875000px;}
.yd8{bottom:616.755000px;}
.yba{bottom:618.375000px;}
.y123{bottom:626.115000px;}
.y7c{bottom:627.195000px;}
.y9b{bottom:628.095000px;}
.y4e{bottom:636.195000px;}
.yd7{bottom:639.075000px;}
.yb9{bottom:640.695000px;}
.y122{bottom:648.255000px;}
.y7b{bottom:649.515000px;}
.y9a{bottom:650.415000px;}
.y4d{bottom:658.335000px;}
.yd6{bottom:661.395000px;}
.yb8{bottom:662.835000px;}
.y121{bottom:670.575000px;}
.y7a{bottom:671.835000px;}
.y99{bottom:672.555000px;}
.y4c{bottom:680.655000px;}
.yd5{bottom:683.535000px;}
.yb7{bottom:685.155000px;}
.y120{bottom:692.895000px;}
.y79{bottom:693.975000px;}
.y98{bottom:694.875000px;}
.y4b{bottom:703.905000px;}
.yd4{bottom:705.885000px;}
.yb6{bottom:707.505000px;}
.y11f{bottom:715.065000px;}
.y78{bottom:716.325000px;}
.y97{bottom:717.225000px;}
.y4a{bottom:726.045000px;}
.yd3{bottom:728.205000px;}
.yb5{bottom:729.645000px;}
.y11e{bottom:737.385000px;}
.y77{bottom:738.645000px;}
.y96{bottom:739.365000px;}
.y49{bottom:748.365000px;}
.yd2{bottom:750.345000px;}
.yb4{bottom:751.965000px;}
.yfd{bottom:758.265000px;}
.y11d{bottom:759.705000px;}
.y76{bottom:760.785000px;}
.y95{bottom:761.685000px;}
.y48{bottom:770.505000px;}
.yd1{bottom:772.665000px;}
.yfc{bottom:780.585000px;}
.y11c{bottom:781.845000px;}
.y75{bottom:783.105000px;}
.y94{bottom:784.005000px;}
.yb3{bottom:791.925000px;}
.y47{bottom:792.825000px;}
.yd0{bottom:794.985000px;}
.yfb{bottom:802.905000px;}
.y11b{bottom:804.165000px;}
.y93{bottom:806.145000px;}
.y74{bottom:806.325000px;}
.yb2{bottom:812.265000px;}
.y46{bottom:815.145000px;}
.ycf{bottom:817.125000px;}
.yfa{bottom:825.045000px;}
.y11a{bottom:826.485000px;}
.y73{bottom:828.465000px;}
.yb1{bottom:832.425000px;}
.y45{bottom:837.285000px;}
.yf9{bottom:847.365000px;}
.y119{bottom:848.625000px;}
.y72{bottom:850.785000px;}
.yb0{bottom:851.685000px;}
.yce{bottom:857.265000px;}
.y44{bottom:859.605000px;}
.yf8{bottom:869.685000px;}
.y118{bottom:871.485000px;}
.y71{bottom:872.925000px;}
.ycd{bottom:877.425000px;}
.y43{bottom:881.925000px;}
.y11{bottom:889.125000px;}
.yf7{bottom:891.825000px;}
.y70{bottom:895.245000px;}
.ycc{bottom:896.685000px;}
.y42{bottom:913.605000px;}
.yf6{bottom:914.145000px;}
.y6f{bottom:917.565000px;}
.y10{bottom:932.910000px;}
.yf5{bottom:936.510000px;}
.y6e{bottom:939.750000px;}
.yf{bottom:951.990000px;}
.y41{bottom:955.950000px;}
.yf4{bottom:958.650000px;}
.y6d{bottom:962.070000px;}
.ye{bottom:978.810000px;}
.yf3{bottom:980.970000px;}
.y6c{bottom:984.390000px;}
.y3b{bottom:994.290000px;}
.yd{bottom:996.630000px;}
.yf2{bottom:1003.290000px;}
.y6b{bottom:1006.530000px;}
.yc{bottom:1018.770000px;}
.yf1{bottom:1025.430000px;}
.y6a{bottom:1028.850000px;}
.yb{bottom:1042.530000px;}
.yf0{bottom:1047.750000px;}
.y69{bottom:1051.170000px;}
.yef{bottom:1070.070000px;}
.ya{bottom:1070.970000px;}
.y68{bottom:1073.310000px;}
.yee{bottom:1092.210000px;}
.y7{bottom:1095.450000px;}
.y67{bottom:1095.630000px;}
.y1{bottom:1114.530000px;}
.y66{bottom:1117.950000px;}
.y3a{bottom:1175.040000px;}
.y38{bottom:1182.420000px;}
.h17{height:20.160000px;}
.hc{height:30.159844px;}
.hf{height:38.340000px;}
.he{height:39.260742px;}
.h14{height:40.140000px;}
.h12{height:43.448555px;}
.h10{height:43.623633px;}
.h13{height:43.798711px;}
.h3{height:45.170156px;}
.h15{height:46.366523px;}
.h7{height:47.344922px;}
.h1a{height:48.159844px;}
.hb{height:48.353906px;}
.h1d{height:48.547969px;}
.h1b{height:52.347656px;}
.h19{height:52.558594px;}
.h6{height:58.651172px;}
.ha{height:61.493555px;}
.hd{height:65.010937px;}
.h9{height:65.360039px;}
.h5{height:66.757500px;}
.h1c{height:68.084282px;}
.h8{height:70.664062px;}
.h2{height:84.636000px;}
.h4{height:84.898125px;}
.h18{height:139.500000px;}
.h16{height:272.190000px;}
.h11{height:452.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:94.860000px;}
.w3{width:559.365000px;}
.w6{width:635.505000px;}
.w5{width:641.265000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xa{left:96.834000px;}
.x1{left:119.556000px;}
.x4{left:127.655987px;}
.x9{left:128.736000px;}
.xf{left:131.255987px;}
.x15{left:133.235987px;}
.xe{left:138.815987px;}
.x12{left:140.615987px;}
.x17{left:149.795987px;}
.x13{left:158.429987px;}
.x19{left:163.649987px;}
.xc{left:170.129987px;}
.xb{left:181.649987px;}
.x3{left:214.410000px;}
.x16{left:223.949987px;}
.x10{left:266.429987px;}
.x6{left:321.734987px;}
.x18{left:330.554987px;}
.x7{left:439.094987px;}
.x5{left:442.874987px;}
.x8{left:446.654987px;}
.x11{left:658.184987px;}
.xd{left:659.264987px;}
.x14{left:660.344987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.125333pt;}
.ls11{letter-spacing:-0.002560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005120pt;}
.ls7{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:14.991360pt;}
.ws10{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.744960pt;}
.wsf{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.725120pt;}
.ws1{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.717440pt;}
.ws11{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.016000pt;}
.ws8{word-spacing:-11.552000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.712000pt;}
.ws6{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.152427pt;}
._7{width:2.073813pt;}
._6{width:3.150293pt;}
._5{width:4.090240pt;}
._9{width:5.646933pt;}
._a{width:6.697600pt;}
._f{width:7.808640pt;}
._14{width:8.754347pt;}
._c{width:9.827200pt;}
._2{width:10.783360pt;}
._b{width:11.845760pt;}
._10{width:12.776960pt;}
._12{width:13.782187pt;}
._11{width:15.746133pt;}
._d{width:17.370240pt;}
._4{width:18.393813pt;}
._3{width:19.441920pt;}
._17{width:20.608000pt;}
._16{width:21.550080pt;}
._e{width:22.735360pt;}
._13{width:23.956480pt;}
._1e{width:24.847360pt;}
._1d{width:26.201600pt;}
._1c{width:27.202560pt;}
._1b{width:28.321280pt;}
._8{width:30.597120pt;}
._18{width:32.420480pt;}
._1a{width:35.857920pt;}
._19{width:40.097280pt;}
._15{width:44.101120pt;}
._21{width:49.282560pt;}
._22{width:50.784000pt;}
._20{width:155.619840pt;}
._1f{width:156.561920pt;}
._23{width:382.307840pt;}
._24{width:383.264640pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.880000pt;}
.y37{bottom:4.000000pt;}
.y12{bottom:12.160000pt;}
.y29{bottom:13.760000pt;}
.y5{bottom:18.720000pt;}
.y36{bottom:22.080000pt;}
.y9{bottom:34.080000pt;}
.y4{bottom:36.320000pt;}
.y40{bottom:38.080000pt;}
.y27{bottom:38.120000pt;}
.y35{bottom:40.000000pt;}
.y8{bottom:51.840000pt;}
.y2{bottom:54.906667pt;}
.y26{bottom:56.040000pt;}
.y3f{bottom:56.160000pt;}
.y3{bottom:57.786667pt;}
.y34{bottom:58.080000pt;}
.y39{bottom:66.880000pt;}
.y3e{bottom:74.080000pt;}
.y25{bottom:74.120000pt;}
.y33{bottom:76.000000pt;}
.y3d{bottom:92.000000pt;}
.y24{bottom:92.040000pt;}
.y32{bottom:94.080000pt;}
.y2a{bottom:107.040000pt;}
.y139{bottom:107.680000pt;}
.y65{bottom:108.800000pt;}
.y3c{bottom:110.080000pt;}
.y23{bottom:110.120000pt;}
.y92{bottom:111.680000pt;}
.y31{bottom:112.000000pt;}
.y117{bottom:114.720000pt;}
.y138{bottom:127.520000pt;}
.y22{bottom:128.040000pt;}
.y64{bottom:128.640000pt;}
.yed{bottom:129.920000pt;}
.y30{bottom:129.946667pt;}
.y91{bottom:131.360000pt;}
.y10c{bottom:131.520000pt;}
.y116{bottom:134.560000pt;}
.y21{bottom:146.120000pt;}
.yaf{bottom:147.840000pt;}
.y2f{bottom:148.026667pt;}
.y63{bottom:148.320000pt;}
.y90{bottom:151.200000pt;}
.y10b{bottom:151.360000pt;}
.yec{bottom:152.640000pt;}
.y115{bottom:154.240000pt;}
.y137{bottom:155.680000pt;}
.y20{bottom:164.040000pt;}
.y2e{bottom:165.946667pt;}
.yae{bottom:167.680000pt;}
.y62{bottom:168.160000pt;}
.y10a{bottom:171.040000pt;}
.yeb{bottom:172.320000pt;}
.y114{bottom:174.080000pt;}
.y136{bottom:177.280000pt;}
.y8f{bottom:179.520000pt;}
.y1f{bottom:181.960000pt;}
.y2d{bottom:184.026667pt;}
.yad{bottom:187.520000pt;}
.y61{bottom:188.000000pt;}
.y109{bottom:190.880000pt;}
.yea{bottom:192.000000pt;}
.y113{bottom:193.920000pt;}
.y135{bottom:198.400000pt;}
.y1e{bottom:200.040000pt;}
.y8e{bottom:200.640000pt;}
.y2c{bottom:201.946667pt;}
.yac{bottom:207.200000pt;}
.y60{bottom:207.680000pt;}
.y108{bottom:210.720000pt;}
.ye9{bottom:211.840000pt;}
.ycb{bottom:213.280000pt;}
.y112{bottom:213.600000pt;}
.y1d{bottom:217.960000pt;}
.y134{bottom:218.240000pt;}
.y2b{bottom:220.026667pt;}
.y8d{bottom:220.320000pt;}
.yab{bottom:227.066667pt;}
.y5f{bottom:227.546667pt;}
.y107{bottom:230.426667pt;}
.ye8{bottom:231.706667pt;}
.yca{bottom:232.986667pt;}
.y111{bottom:233.466667pt;}
.y1c{bottom:236.040000pt;}
.y133{bottom:238.106667pt;}
.y8c{bottom:240.186667pt;}
.yaa{bottom:246.906667pt;}
.y5e{bottom:248.186667pt;}
.y106{bottom:250.266667pt;}
.ye7{bottom:251.386667pt;}
.yc9{bottom:252.826667pt;}
.y110{bottom:253.306667pt;}
.y1b{bottom:253.986667pt;}
.y132{bottom:257.786667pt;}
.y8b{bottom:260.026667pt;}
.ya9{bottom:266.586667pt;}
.y5d{bottom:267.866667pt;}
.y105{bottom:270.106667pt;}
.ye6{bottom:271.226667pt;}
.y1a{bottom:272.066667pt;}
.yc8{bottom:272.666667pt;}
.y131{bottom:277.626667pt;}
.y8a{bottom:279.706667pt;}
.ya8{bottom:286.426667pt;}
.y5c{bottom:287.706667pt;}
.y10f{bottom:288.826667pt;}
.y104{bottom:289.786667pt;}
.y19{bottom:289.986667pt;}
.ye5{bottom:291.066667pt;}
.yc7{bottom:292.346667pt;}
.y130{bottom:297.466667pt;}
.y89{bottom:299.546667pt;}
.y10e{bottom:306.746667pt;}
.y5b{bottom:307.386667pt;}
.y18{bottom:307.906667pt;}
.ya7{bottom:309.306667pt;}
.y103{bottom:309.626667pt;}
.ye4{bottom:310.746667pt;}
.yc6{bottom:312.186667pt;}
.y12f{bottom:317.146667pt;}
.y88{bottom:319.386667pt;}
.y10d{bottom:323.866667pt;}
.y17{bottom:325.986667pt;}
.y5a{bottom:327.226667pt;}
.y102{bottom:329.466667pt;}
.ye3{bottom:330.586667pt;}
.yc5{bottom:332.026667pt;}
.y12e{bottom:336.986667pt;}
.ya6{bottom:337.466667pt;}
.y87{bottom:339.066667pt;}
.y16{bottom:343.906667pt;}
.y59{bottom:347.066667pt;}
.y101{bottom:349.146667pt;}
.y28{bottom:350.266667pt;}
.ye2{bottom:350.426667pt;}
.yc4{bottom:351.706667pt;}
.y12d{bottom:356.826667pt;}
.y86{bottom:358.906667pt;}
.ya5{bottom:359.066667pt;}
.y15{bottom:361.986667pt;}
.y58{bottom:366.746667pt;}
.y100{bottom:368.986667pt;}
.ye1{bottom:370.106667pt;}
.yc3{bottom:371.546667pt;}
.y12c{bottom:376.986667pt;}
.y85{bottom:378.746667pt;}
.y13a{bottom:378.906667pt;}
.y14{bottom:379.906667pt;}
.ya4{bottom:380.186667pt;}
.y57{bottom:386.586667pt;}
.y13{bottom:387.226667pt;}
.ye0{bottom:389.946667pt;}
.yc2{bottom:391.386667pt;}
.y12b{bottom:398.106667pt;}
.y84{bottom:398.426667pt;}
.ya3{bottom:399.866667pt;}
.yff{bottom:404.506667pt;}
.y56{bottom:406.426667pt;}
.ydf{bottom:409.786667pt;}
.yc1{bottom:411.066667pt;}
.y12a{bottom:417.946667pt;}
.y83{bottom:418.266667pt;}
.ya2{bottom:419.706667pt;}
.yfe{bottom:422.586667pt;}
.y55{bottom:427.106667pt;}
.yde{bottom:429.506667pt;}
.yc0{bottom:430.946667pt;}
.y129{bottom:437.826667pt;}
.y82{bottom:438.146667pt;}
.ya1{bottom:439.586667pt;}
.y54{bottom:446.786667pt;}
.ydd{bottom:449.346667pt;}
.ybf{bottom:450.786667pt;}
.y128{bottom:457.506667pt;}
.y81{bottom:458.786667pt;}
.ya0{bottom:459.426667pt;}
.y53{bottom:466.466667pt;}
.ydc{bottom:469.186667pt;}
.ybe{bottom:470.466667pt;}
.y127{bottom:477.346667pt;}
.y80{bottom:478.466667pt;}
.y9f{bottom:479.106667pt;}
.y52{bottom:486.306667pt;}
.ydb{bottom:488.866667pt;}
.ybd{bottom:490.306667pt;}
.y126{bottom:497.186667pt;}
.y7f{bottom:498.146667pt;}
.y9e{bottom:498.946667pt;}
.y51{bottom:506.146667pt;}
.yda{bottom:508.706667pt;}
.ybc{bottom:510.146667pt;}
.y125{bottom:516.866667pt;}
.y7e{bottom:517.986667pt;}
.y9d{bottom:518.786667pt;}
.y50{bottom:525.826667pt;}
.yd9{bottom:528.546667pt;}
.ybb{bottom:529.826667pt;}
.y124{bottom:536.706667pt;}
.y7d{bottom:537.826667pt;}
.y9c{bottom:538.466667pt;}
.y4f{bottom:545.666667pt;}
.yd8{bottom:548.226667pt;}
.yba{bottom:549.666667pt;}
.y123{bottom:556.546667pt;}
.y7c{bottom:557.506667pt;}
.y9b{bottom:558.306667pt;}
.y4e{bottom:565.506667pt;}
.yd7{bottom:568.066667pt;}
.yb9{bottom:569.506667pt;}
.y122{bottom:576.226667pt;}
.y7b{bottom:577.346667pt;}
.y9a{bottom:578.146667pt;}
.y4d{bottom:585.186667pt;}
.yd6{bottom:587.906667pt;}
.yb8{bottom:589.186667pt;}
.y121{bottom:596.066667pt;}
.y7a{bottom:597.186667pt;}
.y99{bottom:597.826667pt;}
.y4c{bottom:605.026667pt;}
.yd5{bottom:607.586667pt;}
.yb7{bottom:609.026667pt;}
.y120{bottom:615.906667pt;}
.y79{bottom:616.866667pt;}
.y98{bottom:617.666667pt;}
.y4b{bottom:625.693333pt;}
.yd4{bottom:627.453333pt;}
.yb6{bottom:628.893333pt;}
.y11f{bottom:635.613333pt;}
.y78{bottom:636.733333pt;}
.y97{bottom:637.533333pt;}
.y4a{bottom:645.373333pt;}
.yd3{bottom:647.293333pt;}
.yb5{bottom:648.573333pt;}
.y11e{bottom:655.453333pt;}
.y77{bottom:656.573333pt;}
.y96{bottom:657.213333pt;}
.y49{bottom:665.213333pt;}
.yd2{bottom:666.973333pt;}
.yb4{bottom:668.413333pt;}
.yfd{bottom:674.013333pt;}
.y11d{bottom:675.293333pt;}
.y76{bottom:676.253333pt;}
.y95{bottom:677.053333pt;}
.y48{bottom:684.893333pt;}
.yd1{bottom:686.813333pt;}
.yfc{bottom:693.853333pt;}
.y11c{bottom:694.973333pt;}
.y75{bottom:696.093333pt;}
.y94{bottom:696.893333pt;}
.yb3{bottom:703.933333pt;}
.y47{bottom:704.733333pt;}
.yd0{bottom:706.653333pt;}
.yfb{bottom:713.693333pt;}
.y11b{bottom:714.813333pt;}
.y93{bottom:716.573333pt;}
.y74{bottom:716.733333pt;}
.yb2{bottom:722.013333pt;}
.y46{bottom:724.573333pt;}
.ycf{bottom:726.333333pt;}
.yfa{bottom:733.373333pt;}
.y11a{bottom:734.653333pt;}
.y73{bottom:736.413333pt;}
.yb1{bottom:739.933333pt;}
.y45{bottom:744.253333pt;}
.yf9{bottom:753.213333pt;}
.y119{bottom:754.333333pt;}
.y72{bottom:756.253333pt;}
.yb0{bottom:757.053333pt;}
.yce{bottom:762.013333pt;}
.y44{bottom:764.093333pt;}
.yf8{bottom:773.053333pt;}
.y118{bottom:774.653333pt;}
.y71{bottom:775.933333pt;}
.ycd{bottom:779.933333pt;}
.y43{bottom:783.933333pt;}
.y11{bottom:790.333333pt;}
.yf7{bottom:792.733333pt;}
.y70{bottom:795.773333pt;}
.ycc{bottom:797.053333pt;}
.y42{bottom:812.093333pt;}
.yf6{bottom:812.573333pt;}
.y6f{bottom:815.613333pt;}
.y10{bottom:829.253333pt;}
.yf5{bottom:832.453333pt;}
.y6e{bottom:835.333333pt;}
.yf{bottom:846.213333pt;}
.y41{bottom:849.733333pt;}
.yf4{bottom:852.133333pt;}
.y6d{bottom:855.173333pt;}
.ye{bottom:870.053333pt;}
.yf3{bottom:871.973333pt;}
.y6c{bottom:875.013333pt;}
.y3b{bottom:883.813333pt;}
.yd{bottom:885.893333pt;}
.yf2{bottom:891.813333pt;}
.y6b{bottom:894.693333pt;}
.yc{bottom:905.573333pt;}
.yf1{bottom:911.493333pt;}
.y6a{bottom:914.533333pt;}
.yb{bottom:926.693333pt;}
.yf0{bottom:931.333333pt;}
.y69{bottom:934.373333pt;}
.yef{bottom:951.173333pt;}
.ya{bottom:951.973333pt;}
.y68{bottom:954.053333pt;}
.yee{bottom:970.853333pt;}
.y7{bottom:973.733333pt;}
.y67{bottom:973.893333pt;}
.y1{bottom:990.693333pt;}
.y66{bottom:993.733333pt;}
.y3a{bottom:1044.480000pt;}
.y38{bottom:1051.040000pt;}
.h17{height:17.920000pt;}
.hc{height:26.808750pt;}
.hf{height:34.080000pt;}
.he{height:34.898438pt;}
.h14{height:35.680000pt;}
.h12{height:38.620938pt;}
.h10{height:38.776563pt;}
.h13{height:38.932188pt;}
.h3{height:40.151250pt;}
.h15{height:41.214688pt;}
.h7{height:42.084375pt;}
.h1a{height:42.808750pt;}
.hb{height:42.981250pt;}
.h1d{height:43.153750pt;}
.h1b{height:46.531250pt;}
.h19{height:46.718750pt;}
.h6{height:52.134375pt;}
.ha{height:54.660937pt;}
.hd{height:57.787500pt;}
.h9{height:58.097812pt;}
.h5{height:59.340000pt;}
.h1c{height:60.519362pt;}
.h8{height:62.812500pt;}
.h2{height:75.232000pt;}
.h4{height:75.465000pt;}
.h18{height:124.000000pt;}
.h16{height:241.946667pt;}
.h11{height:401.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:84.320000pt;}
.w3{width:497.213333pt;}
.w6{width:564.893333pt;}
.w5{width:570.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xa{left:86.074667pt;}
.x1{left:106.272000pt;}
.x4{left:113.471988pt;}
.x9{left:114.432000pt;}
.xf{left:116.671988pt;}
.x15{left:118.431988pt;}
.xe{left:123.391988pt;}
.x12{left:124.991988pt;}
.x17{left:133.151988pt;}
.x13{left:140.826655pt;}
.x19{left:145.466655pt;}
.xc{left:151.226655pt;}
.xb{left:161.466655pt;}
.x3{left:190.586667pt;}
.x16{left:199.066655pt;}
.x10{left:236.826655pt;}
.x6{left:285.986655pt;}
.x18{left:293.826655pt;}
.x7{left:390.306655pt;}
.x5{left:393.666655pt;}
.x8{left:397.026655pt;}
.x11{left:585.053322pt;}
.xd{left:586.013322pt;}
.x14{left:586.973322pt;}
}




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