
    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_56cf7abc5a9da89b14fe9cb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_965a4447b69f3719af46708d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_600a6551dc728dad2502dc44.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_e4f39732087813d7fe409f5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_f446ef74972dd99dde27a0a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2ba628b5e6fe0b0c2363c9d4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
.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);}
.v3{vertical-align:-78.120000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-1.320000px;}
.lsd{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.208800px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.120000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.lse{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls14{letter-spacing:87.954000px;}
.ls12{letter-spacing:90.090000px;}
.ls10{letter-spacing:91.290000px;}
.lsf{letter-spacing:453.180000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.wsb{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.540000px;}
.ws0{word-spacing:-15.204000px;}
.wsc{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.100000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.136000px;}
.ws9{word-spacing:-9.900000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-2.538000px;}
._1{margin-left:-1.278000px;}
._0{width:1.122000px;}
._2{width:3.084000px;}
._b{width:4.296000px;}
._10{width:5.640000px;}
._5{width:6.798000px;}
._6{width:8.652000px;}
._8{width:9.930000px;}
._7{width:11.130000px;}
._9{width:12.798000px;}
._f{width:13.920000px;}
._a{width:16.380000px;}
._e{width:17.400000px;}
._14{width:18.786000px;}
._13{width:19.986000px;}
._12{width:21.726000px;}
._d{width:22.782000px;}
._c{width:23.898000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc6{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc7{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y41{bottom:7.200000px;}
.y5{bottom:12.337500px;}
.y40{bottom:25.200000px;}
.y3f{bottom:44.715000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3e{bottom:59.115000px;}
.y43{bottom:74.137500px;}
.y3d{bottom:76.500000px;}
.y3{bottom:81.337500px;}
.y3c{bottom:93.600000px;}
.y3b{bottom:111.045000px;}
.y159{bottom:114.337500px;}
.yb8{bottom:116.137500px;}
.y7e{bottom:125.137500px;}
.y3a{bottom:128.145000px;}
.y2b{bottom:128.737500px;}
.y158{bottom:131.737500px;}
.yb7{bottom:133.537500px;}
.yf2{bottom:138.037500px;}
.y7d{bottom:142.537500px;}
.y39{bottom:145.545000px;}
.y2a{bottom:146.137500px;}
.yb6{bottom:150.630000px;}
.y157{bottom:151.245000px;}
.yf1{bottom:155.130000px;}
.y7c{bottom:159.645000px;}
.y38{bottom:162.645000px;}
.y29{bottom:163.245000px;}
.y156{bottom:171.045000px;}
.yf0{bottom:172.530000px;}
.y7b{bottom:177.045000px;}
.yb5{bottom:179.775000px;}
.y37{bottom:180.045000px;}
.y28{bottom:180.675000px;}
.y129{bottom:187.875000px;}
.yef{bottom:189.675000px;}
.y155{bottom:190.875000px;}
.y7a{bottom:194.175000px;}
.y36{bottom:197.145000px;}
.yb4{bottom:197.175000px;}
.y27{bottom:197.775000px;}
.y128{bottom:205.575000px;}
.yee{bottom:206.175000px;}
.y154{bottom:210.675000px;}
.y26{bottom:214.275000px;}
.y35{bottom:214.545000px;}
.yb3{bottom:214.575000px;}
.yec{bottom:220.875000px;}
.y78{bottom:223.275000px;}
.yed{bottom:226.275000px;}
.y79{bottom:228.675000px;}
.y25{bottom:228.975000px;}
.y127{bottom:229.875000px;}
.y153{bottom:230.475000px;}
.y34{bottom:231.645000px;}
.yb2{bottom:231.675000px;}
.yeb{bottom:237.975000px;}
.y77{bottom:240.675000px;}
.y24{bottom:246.075000px;}
.y125{bottom:247.875000px;}
.y33{bottom:249.045000px;}
.y152{bottom:250.275000px;}
.y126{bottom:254.775000px;}
.yea{bottom:255.375000px;}
.y76{bottom:258.075000px;}
.yb0{bottom:261.375000px;}
.y23{bottom:263.475000px;}
.y32{bottom:266.145000px;}
.y151{bottom:267.975000px;}
.yb1{bottom:268.275000px;}
.ye9{bottom:272.475000px;}
.y22{bottom:280.575000px;}
.yaf{bottom:281.775000px;}
.y31{bottom:283.590000px;}
.y150{bottom:285.075000px;}
.y123{bottom:285.975000px;}
.y75{bottom:286.875000px;}
.ye8{bottom:289.875000px;}
.y124{bottom:292.875000px;}
.y21{bottom:297.975000px;}
.yae{bottom:298.875000px;}
.y30{bottom:300.690000px;}
.y74{bottom:304.575000px;}
.y121{bottom:306.675000px;}
.ye7{bottom:306.975000px;}
.y122{bottom:313.575000px;}
.y20{bottom:315.675000px;}
.yad{bottom:316.275000px;}
.y2f{bottom:318.090000px;}
.y14f{bottom:324.375000px;}
.ye6{bottom:324.675000px;}
.y120{bottom:326.775000px;}
.y73{bottom:333.375000px;}
.y2e{bottom:335.190000px;}
.y1f{bottom:335.775000px;}
.y11f{bottom:344.175000px;}
.y14e{bottom:344.475000px;}
.y1e{bottom:349.620000px;}
.y72{bottom:351.105000px;}
.y2d{bottom:352.890000px;}
.ye4{bottom:356.820000px;}
.yac{bottom:358.005000px;}
.y11d{bottom:361.920000px;}
.ye5{bottom:362.220000px;}
.y71{bottom:368.205000px;}
.y11e{bottom:368.820000px;}
.yab{bottom:371.505000px;}
.ye3{bottom:374.205000px;}
.y14d{bottom:379.320000px;}
.y11b{bottom:382.620000px;}
.yaa{bottom:388.605000px;}
.y11c{bottom:389.520000px;}
.ye2{bottom:391.605000px;}
.y14c{bottom:396.420000px;}
.y6f{bottom:397.905000px;}
.y11a{bottom:402.720000px;}
.y70{bottom:404.820000px;}
.ya9{bottom:405.120000px;}
.ye1{bottom:408.705000px;}
.y2c{bottom:412.005000px;}
.y14b{bottom:415.920000px;}
.y6e{bottom:418.320000px;}
.ya7{bottom:420.120000px;}
.ye0{bottom:426.120000px;}
.ya8{bottom:427.005000px;}
.y6d{bottom:435.420000px;}
.y14a{bottom:435.705000px;}
.y119{bottom:437.205000px;}
.ya5{bottom:440.820000px;}
.ydf{bottom:443.220000px;}
.ya6{bottom:447.705000px;}
.y149{bottom:453.420000px;}
.y118{bottom:454.620000px;}
.yde{bottom:460.620000px;}
.ya4{bottom:461.205000px;}
.y6b{bottom:465.120000px;}
.y117{bottom:471.720000px;}
.y6c{bottom:472.005000px;}
.y148{bottom:472.905000px;}
.ydd{bottom:477.705000px;}
.ya3{bottom:478.320000px;}
.y6a{bottom:485.505000px;}
.y116{bottom:489.120000px;}
.y147{bottom:492.705000px;}
.ya2{bottom:495.705000px;}
.y69{bottom:502.605000px;}
.y115{bottom:506.205000px;}
.ydb{bottom:506.820000px;}
.ydc{bottom:512.220000px;}
.ya1{bottom:512.820000px;}
.y114{bottom:523.650000px;}
.yda{bottom:524.250000px;}
.ya0{bottom:530.550000px;}
.y146{bottom:530.850000px;}
.y67{bottom:532.350000px;}
.y68{bottom:539.250000px;}
.y113{bottom:540.750000px;}
.yd9{bottom:548.850000px;}
.y9f{bottom:550.950000px;}
.y66{bottom:552.750000px;}
.y112{bottom:558.150000px;}
.y145{bottom:565.950000px;}
.yd8{bottom:566.250000px;}
.y9d{bottom:568.050000px;}
.y65{bottom:569.850000px;}
.y9e{bottom:573.450000px;}
.y111{bottom:575.250000px;}
.y144{bottom:583.350000px;}
.y64{bottom:587.250000px;}
.y9c{bottom:592.650000px;}
.yd7{bottom:595.350000px;}
.y143{bottom:600.750000px;}
.y63{bottom:604.350000px;}
.y110{bottom:609.750000px;}
.y9b{bottom:610.050000px;}
.yd6{bottom:612.750000px;}
.y142{bottom:617.850000px;}
.y62{bottom:621.750000px;}
.y10f{bottom:627.150000px;}
.y9a{bottom:627.450000px;}
.yd5{bottom:630.150000px;}
.y61{bottom:638.850000px;}
.y10e{bottom:644.250000px;}
.y99{bottom:644.550000px;}
.y141{bottom:646.950000px;}
.yd3{bottom:647.850000px;}
.yd4{bottom:654.750000px;}
.y60{bottom:656.250000px;}
.y10d{bottom:661.650000px;}
.y140{bottom:664.350000px;}
.yd2{bottom:667.950000px;}
.y5f{bottom:673.350000px;}
.y98{bottom:673.650000px;}
.y10c{bottom:678.750000px;}
.y13f{bottom:681.795000px;}
.yd1{bottom:685.395000px;}
.y5e{bottom:690.780000px;}
.y97{bottom:691.095000px;}
.y10b{bottom:696.195000px;}
.y13e{bottom:698.895000px;}
.yd0{bottom:702.495000px;}
.y96{bottom:708.480000px;}
.y10a{bottom:713.280000px;}
.y13d{bottom:716.280000px;}
.ycf{bottom:719.880000px;}
.y5c{bottom:720.495000px;}
.y95{bottom:724.980000px;}
.y5d{bottom:727.395000px;}
.y109{bottom:730.695000px;}
.y13c{bottom:733.380000px;}
.yce{bottom:736.980000px;}
.y94{bottom:739.395000px;}
.y5b{bottom:740.580000px;}
.y108{bottom:747.795000px;}
.y13b{bottom:750.795000px;}
.ycd{bottom:754.395000px;}
.y93{bottom:756.780000px;}
.y5a{bottom:757.995000px;}
.y106{bottom:765.480000px;}
.y13a{bottom:768.495000px;}
.y107{bottom:772.380000px;}
.y92{bottom:773.880000px;}
.ycc{bottom:783.195000px;}
.y104{bottom:786.195000px;}
.y59{bottom:786.795000px;}
.y139{bottom:787.995000px;}
.y91{bottom:790.380000px;}
.y105{bottom:793.080000px;}
.y1d{bottom:796.380000px;}
.ycb{bottom:800.880000px;}
.y138{bottom:802.380000px;}
.y58{bottom:804.480000px;}
.y90{bottom:805.080000px;}
.y103{bottom:806.580000px;}
.y1c{bottom:816.795000px;}
.yca{bottom:817.980000px;}
.y137{bottom:819.795000px;}
.y102{bottom:823.695000px;}
.y57{bottom:828.795000px;}
.y8f{bottom:829.380000px;}
.y1b{bottom:833.880000px;}
.yc8{bottom:835.695000px;}
.y136{bottom:836.880000px;}
.y100{bottom:841.380000px;}
.y169{bottom:841.995000px;}
.yc9{bottom:842.580000px;}
.y8e{bottom:844.995000px;}
.y56{bottom:846.495000px;}
.y101{bottom:848.295000px;}
.y1a{bottom:854.325000px;}
.y8d{bottom:855.525000px;}
.yc7{bottom:856.125000px;}
.yff{bottom:861.825000px;}
.y168{bottom:862.125000px;}
.y55{bottom:863.625000px;}
.y135{bottom:871.425000px;}
.yc6{bottom:873.225000px;}
.y19{bottom:874.125000px;}
.yfe{bottom:878.925000px;}
.y167{bottom:879.525000px;}
.y8c{bottom:880.125000px;}
.y54{bottom:881.025000px;}
.y134{bottom:888.825000px;}
.y18{bottom:892.425000px;}
.yfc{bottom:896.625000px;}
.y8b{bottom:897.525000px;}
.y53{bottom:898.125000px;}
.yc5{bottom:902.325000px;}
.yfd{bottom:903.525000px;}
.y133{bottom:905.925000px;}
.y166{bottom:914.025000px;}
.y8a{bottom:914.925000px;}
.y17{bottom:916.725000px;}
.yfb{bottom:917.025000px;}
.yc3{bottom:920.325000px;}
.y132{bottom:923.325000px;}
.yc4{bottom:927.225000px;}
.y51{bottom:927.825000px;}
.y16{bottom:928.725000px;}
.y165{bottom:931.125000px;}
.yfa{bottom:934.125000px;}
.y52{bottom:934.725000px;}
.yc2{bottom:940.425000px;}
.y89{bottom:944.625000px;}
.y50{bottom:948.225000px;}
.y164{bottom:948.525000px;}
.y15{bottom:951.525000px;}
.yc1{bottom:957.825000px;}
.y88{bottom:964.725000px;}
.y4f{bottom:965.325000px;}
.y163{bottom:965.625000px;}
.y14{bottom:968.625000px;}
.yc0{bottom:974.925000px;}
.y13{bottom:980.625000px;}
.y87{bottom:982.125000px;}
.y162{bottom:983.025000px;}
.yf9{bottom:986.025000px;}
.ybf{bottom:992.325000px;}
.y130{bottom:992.625000px;}
.y4d{bottom:995.025000px;}
.y12{bottom:998.325000px;}
.y86{bottom:999.225000px;}
.y131{bottom:999.525000px;}
.y161{bottom:1000.125000px;}
.y4e{bottom:1001.925000px;}
.yf8{bottom:1003.125000px;}
.ybe{bottom:1009.425000px;}
.y12f{bottom:1013.025000px;}
.y4c{bottom:1015.425000px;}
.y85{bottom:1016.670000px;}
.y160{bottom:1017.570000px;}
.y11{bottom:1019.070000px;}
.yf7{bottom:1020.570000px;}
.ybd{bottom:1025.955000px;}
.y12e{bottom:1030.170000px;}
.y4b{bottom:1032.570000px;}
.y84{bottom:1033.755000px;}
.y15f{bottom:1034.670000px;}
.y10{bottom:1036.755000px;}
.yf6{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y12d{bottom:1047.570000px;}
.ybc{bottom:1047.870000px;}
.y15e{bottom:1052.070000px;}
.y83{bottom:1052.370000px;}
.yf5{bottom:1055.070000px;}
.ybb{bottom:1061.370000px;}
.y49{bottom:1062.255000px;}
.yc{bottom:1062.570000px;}
.y12c{bottom:1064.670000px;}
.yb{bottom:1068.255000px;}
.y4a{bottom:1069.170000px;}
.yf4{bottom:1072.170000px;}
.y82{bottom:1074.570000px;}
.y12b{bottom:1082.070000px;}
.y48{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.yba{bottom:1085.670000px;}
.y15d{bottom:1086.570000px;}
.y81{bottom:1089.255000px;}
.yf3{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y46{bottom:1100.370000px;}
.yb9{bottom:1103.370000px;}
.y15c{bottom:1103.670000px;}
.y12a{bottom:1106.370000px;}
.y80{bottom:1106.670000px;}
.y47{bottom:1107.255000px;}
.y8{bottom:1115.670000px;}
.y45{bottom:1120.455000px;}
.y15b{bottom:1121.070000px;}
.y7f{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y44{bottom:1138.170000px;}
.y15a{bottom:1139.370000px;}
.y6{bottom:1141.170000px;}
.y42{bottom:1196.400000px;}
.h9{height:8.378906px;}
.hb{height:12.568359px;}
.h5{height:12.700195px;}
.h17{height:20.947266px;}
.ha{height:21.000000px;}
.hd{height:27.650391px;}
.h12{height:33.515625px;}
.h7{height:33.867188px;}
.h15{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hf{height:38.100586px;}
.he{height:41.894531px;}
.h4{height:42.333984px;}
.h18{height:43.681641px;}
.h16{height:44.507812px;}
.hc{height:49.250391px;}
.h11{height:49.453125px;}
.h6{height:50.800781px;}
.h14{height:51.996094px;}
.h19{height:52.417969px;}
.h10{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h13{height:369.675000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:243.975000px;}
.w5{width:483.450000px;}
.w7{width:726.825000px;}
.w8{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xe{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.x59{left:88.537487px;}
.x58{left:96.337487px;}
.x57{left:100.537487px;}
.x55{left:103.837487px;}
.xc{left:107.445000px;}
.x56{left:108.937487px;}
.x54{left:111.337487px;}
.x53{left:115.537487px;}
.x52{left:118.837487px;}
.x48{left:120.037473px;}
.x51{left:123.037487px;}
.x45{left:126.337473px;}
.x17{left:135.037487px;}
.x49{left:138.037487px;}
.x8{left:153.629987px;}
.x21{left:156.629987px;}
.x50{left:162.029987px;}
.x22{left:175.529973px;}
.x23{left:180.674987px;}
.x12{left:185.774973px;}
.x13{left:192.374987px;}
.x46{left:201.074973px;}
.x14{left:203.174987px;}
.x3e{left:208.874973px;}
.x1d{left:219.374973px;}
.x47{left:222.374987px;}
.x3f{left:230.174987px;}
.x1e{left:235.274987px;}
.xa{left:241.567500px;}
.x24{left:286.274973px;}
.x36{left:293.774973px;}
.x25{left:295.619987px;}
.x1a{left:300.704973px;}
.x37{left:305.819987px;}
.x1b{left:310.004987px;}
.x4e{left:331.319973px;}
.x4f{left:359.219987px;}
.x15{left:373.619973px;}
.x1c{left:375.704973px;}
.x16{left:382.919987px;}
.x5{left:388.319987px;}
.x28{left:413.219973px;}
.x30{left:421.649973px;}
.x29{left:429.149987px;}
.x31{left:440.249987px;}
.x2a{left:444.449973px;}
.x4c{left:453.449973px;}
.x2b{left:459.749987px;}
.x38{left:461.249973px;}
.x39{left:474.149987px;}
.x40{left:476.849987px;}
.x4d{left:478.049987px;}
.x2e{left:487.349973px;}
.x2f{left:502.649987px;}
.x32{left:510.149973px;}
.x33{left:532.049987px;}
.x26{left:538.094973px;}
.x2c{left:539.879973px;}
.xf{left:546.779987px;}
.x27{left:548.594987px;}
.x2d{left:551.879987px;}
.xb{left:566.280000px;}
.x34{left:584.894973px;}
.x35{left:600.194987px;}
.x18{left:640.994973px;}
.x19{left:646.979987px;}
.x3a{left:652.694973px;}
.x3b{left:668.324987px;}
.x3c{left:670.424973px;}
.x10{left:674.024973px;}
.x11{left:677.324987px;}
.x3d{left:688.724987px;}
.x6{left:695.624987px;}
.x41{left:717.524973px;}
.x1f{left:735.224973px;}
.x42{left:738.824987px;}
.x20{left:743.024987px;}
.x4a{left:769.724973px;}
.x43{left:773.954973px;}
.x4b{left:791.069987px;}
.x44{left:798.569987px;}
.xd{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v3{vertical-align:-69.440000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-1.173333pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.185600pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls14{letter-spacing:78.181333pt;}
.ls12{letter-spacing:80.080000pt;}
.ls10{letter-spacing:81.146667pt;}
.lsf{letter-spacing:402.826667pt;}
.ws1{word-spacing:-16.341333pt;}
.wsb{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.813333pt;}
.ws0{word-spacing:-13.514667pt;}
.wsc{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.226667pt;}
.wsd{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.533333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws5{word-spacing:-9.898667pt;}
.ws9{word-spacing:-8.800000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-2.256000pt;}
._1{margin-left:-1.136000pt;}
._0{width:0.997333pt;}
._2{width:2.741333pt;}
._b{width:3.818667pt;}
._10{width:5.013333pt;}
._5{width:6.042667pt;}
._6{width:7.690667pt;}
._8{width:8.826667pt;}
._7{width:9.893333pt;}
._9{width:11.376000pt;}
._f{width:12.373333pt;}
._a{width:14.560000pt;}
._e{width:15.466667pt;}
._14{width:16.698667pt;}
._13{width:17.765333pt;}
._12{width:19.312000pt;}
._d{width:20.250667pt;}
._c{width:21.242667pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y41{bottom:6.400000pt;}
.y5{bottom:10.966667pt;}
.y40{bottom:22.400000pt;}
.y3f{bottom:39.746667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3e{bottom:52.546667pt;}
.y43{bottom:65.900000pt;}
.y3d{bottom:68.000000pt;}
.y3{bottom:72.300000pt;}
.y3c{bottom:83.200000pt;}
.y3b{bottom:98.706667pt;}
.y159{bottom:101.633333pt;}
.yb8{bottom:103.233333pt;}
.y7e{bottom:111.233333pt;}
.y3a{bottom:113.906667pt;}
.y2b{bottom:114.433333pt;}
.y158{bottom:117.100000pt;}
.yb7{bottom:118.700000pt;}
.yf2{bottom:122.700000pt;}
.y7d{bottom:126.700000pt;}
.y39{bottom:129.373333pt;}
.y2a{bottom:129.900000pt;}
.yb6{bottom:133.893333pt;}
.y157{bottom:134.440000pt;}
.yf1{bottom:137.893333pt;}
.y7c{bottom:141.906667pt;}
.y38{bottom:144.573333pt;}
.y29{bottom:145.106667pt;}
.y156{bottom:152.040000pt;}
.yf0{bottom:153.360000pt;}
.y7b{bottom:157.373333pt;}
.yb5{bottom:159.800000pt;}
.y37{bottom:160.040000pt;}
.y28{bottom:160.600000pt;}
.y129{bottom:167.000000pt;}
.yef{bottom:168.600000pt;}
.y155{bottom:169.666667pt;}
.y7a{bottom:172.600000pt;}
.y36{bottom:175.240000pt;}
.yb4{bottom:175.266667pt;}
.y27{bottom:175.800000pt;}
.y128{bottom:182.733333pt;}
.yee{bottom:183.266667pt;}
.y154{bottom:187.266667pt;}
.y26{bottom:190.466667pt;}
.y35{bottom:190.706667pt;}
.yb3{bottom:190.733333pt;}
.yec{bottom:196.333333pt;}
.y78{bottom:198.466667pt;}
.yed{bottom:201.133333pt;}
.y79{bottom:203.266667pt;}
.y25{bottom:203.533333pt;}
.y127{bottom:204.333333pt;}
.y153{bottom:204.866667pt;}
.y34{bottom:205.906667pt;}
.yb2{bottom:205.933333pt;}
.yeb{bottom:211.533333pt;}
.y77{bottom:213.933333pt;}
.y24{bottom:218.733333pt;}
.y125{bottom:220.333333pt;}
.y33{bottom:221.373333pt;}
.y152{bottom:222.466667pt;}
.y126{bottom:226.466667pt;}
.yea{bottom:227.000000pt;}
.y76{bottom:229.400000pt;}
.yb0{bottom:232.333333pt;}
.y23{bottom:234.200000pt;}
.y32{bottom:236.573333pt;}
.y151{bottom:238.200000pt;}
.yb1{bottom:238.466667pt;}
.ye9{bottom:242.200000pt;}
.y22{bottom:249.400000pt;}
.yaf{bottom:250.466667pt;}
.y31{bottom:252.080000pt;}
.y150{bottom:253.400000pt;}
.y123{bottom:254.200000pt;}
.y75{bottom:255.000000pt;}
.ye8{bottom:257.666667pt;}
.y124{bottom:260.333333pt;}
.y21{bottom:264.866667pt;}
.yae{bottom:265.666667pt;}
.y30{bottom:267.280000pt;}
.y74{bottom:270.733333pt;}
.y121{bottom:272.600000pt;}
.ye7{bottom:272.866667pt;}
.y122{bottom:278.733333pt;}
.y20{bottom:280.600000pt;}
.yad{bottom:281.133333pt;}
.y2f{bottom:282.746667pt;}
.y14f{bottom:288.333333pt;}
.ye6{bottom:288.600000pt;}
.y120{bottom:290.466667pt;}
.y73{bottom:296.333333pt;}
.y2e{bottom:297.946667pt;}
.y1f{bottom:298.466667pt;}
.y11f{bottom:305.933333pt;}
.y14e{bottom:306.200000pt;}
.y1e{bottom:310.773333pt;}
.y72{bottom:312.093333pt;}
.y2d{bottom:313.680000pt;}
.ye4{bottom:317.173333pt;}
.yac{bottom:318.226667pt;}
.y11d{bottom:321.706667pt;}
.ye5{bottom:321.973333pt;}
.y71{bottom:327.293333pt;}
.y11e{bottom:327.840000pt;}
.yab{bottom:330.226667pt;}
.ye3{bottom:332.626667pt;}
.y14d{bottom:337.173333pt;}
.y11b{bottom:340.106667pt;}
.yaa{bottom:345.426667pt;}
.y11c{bottom:346.240000pt;}
.ye2{bottom:348.093333pt;}
.y14c{bottom:352.373333pt;}
.y6f{bottom:353.693333pt;}
.y11a{bottom:357.973333pt;}
.y70{bottom:359.840000pt;}
.ya9{bottom:360.106667pt;}
.ye1{bottom:363.293333pt;}
.y2c{bottom:366.226667pt;}
.y14b{bottom:369.706667pt;}
.y6e{bottom:371.840000pt;}
.ya7{bottom:373.440000pt;}
.ye0{bottom:378.773333pt;}
.ya8{bottom:379.560000pt;}
.y6d{bottom:387.040000pt;}
.y14a{bottom:387.293333pt;}
.y119{bottom:388.626667pt;}
.ya5{bottom:391.840000pt;}
.ydf{bottom:393.973333pt;}
.ya6{bottom:397.960000pt;}
.y149{bottom:403.040000pt;}
.y118{bottom:404.106667pt;}
.yde{bottom:409.440000pt;}
.ya4{bottom:409.960000pt;}
.y6b{bottom:413.440000pt;}
.y117{bottom:419.306667pt;}
.y6c{bottom:419.560000pt;}
.y148{bottom:420.360000pt;}
.ydd{bottom:424.626667pt;}
.ya3{bottom:425.173333pt;}
.y6a{bottom:431.560000pt;}
.y116{bottom:434.773333pt;}
.y147{bottom:437.960000pt;}
.ya2{bottom:440.626667pt;}
.y69{bottom:446.760000pt;}
.y115{bottom:449.960000pt;}
.ydb{bottom:450.506667pt;}
.ydc{bottom:455.306667pt;}
.ya1{bottom:455.840000pt;}
.y114{bottom:465.466667pt;}
.yda{bottom:466.000000pt;}
.ya0{bottom:471.600000pt;}
.y146{bottom:471.866667pt;}
.y67{bottom:473.200000pt;}
.y68{bottom:479.333333pt;}
.y113{bottom:480.666667pt;}
.yd9{bottom:487.866667pt;}
.y9f{bottom:489.733333pt;}
.y66{bottom:491.333333pt;}
.y112{bottom:496.133333pt;}
.y145{bottom:503.066667pt;}
.yd8{bottom:503.333333pt;}
.y9d{bottom:504.933333pt;}
.y65{bottom:506.533333pt;}
.y9e{bottom:509.733333pt;}
.y111{bottom:511.333333pt;}
.y144{bottom:518.533333pt;}
.y64{bottom:522.000000pt;}
.y9c{bottom:526.800000pt;}
.yd7{bottom:529.200000pt;}
.y143{bottom:534.000000pt;}
.y63{bottom:537.200000pt;}
.y110{bottom:542.000000pt;}
.y9b{bottom:542.266667pt;}
.yd6{bottom:544.666667pt;}
.y142{bottom:549.200000pt;}
.y62{bottom:552.666667pt;}
.y10f{bottom:557.466667pt;}
.y9a{bottom:557.733333pt;}
.yd5{bottom:560.133333pt;}
.y61{bottom:567.866667pt;}
.y10e{bottom:572.666667pt;}
.y99{bottom:572.933333pt;}
.y141{bottom:575.066667pt;}
.yd3{bottom:575.866667pt;}
.yd4{bottom:582.000000pt;}
.y60{bottom:583.333333pt;}
.y10d{bottom:588.133333pt;}
.y140{bottom:590.533333pt;}
.yd2{bottom:593.733333pt;}
.y5f{bottom:598.533333pt;}
.y98{bottom:598.800000pt;}
.y10c{bottom:603.333333pt;}
.y13f{bottom:606.040000pt;}
.yd1{bottom:609.240000pt;}
.y5e{bottom:614.026667pt;}
.y97{bottom:614.306667pt;}
.y10b{bottom:618.840000pt;}
.y13e{bottom:621.240000pt;}
.yd0{bottom:624.440000pt;}
.y96{bottom:629.760000pt;}
.y10a{bottom:634.026667pt;}
.y13d{bottom:636.693333pt;}
.ycf{bottom:639.893333pt;}
.y5c{bottom:640.440000pt;}
.y95{bottom:644.426667pt;}
.y5d{bottom:646.573333pt;}
.y109{bottom:649.506667pt;}
.y13c{bottom:651.893333pt;}
.yce{bottom:655.093333pt;}
.y94{bottom:657.240000pt;}
.y5b{bottom:658.293333pt;}
.y108{bottom:664.706667pt;}
.y13b{bottom:667.373333pt;}
.ycd{bottom:670.573333pt;}
.y93{bottom:672.693333pt;}
.y5a{bottom:673.773333pt;}
.y106{bottom:680.426667pt;}
.y13a{bottom:683.106667pt;}
.y107{bottom:686.560000pt;}
.y92{bottom:687.893333pt;}
.ycc{bottom:696.173333pt;}
.y104{bottom:698.840000pt;}
.y59{bottom:699.373333pt;}
.y139{bottom:700.440000pt;}
.y91{bottom:702.560000pt;}
.y105{bottom:704.960000pt;}
.y1d{bottom:707.893333pt;}
.ycb{bottom:711.893333pt;}
.y138{bottom:713.226667pt;}
.y58{bottom:715.093333pt;}
.y90{bottom:715.626667pt;}
.y103{bottom:716.960000pt;}
.y1c{bottom:726.040000pt;}
.yca{bottom:727.093333pt;}
.y137{bottom:728.706667pt;}
.y102{bottom:732.173333pt;}
.y57{bottom:736.706667pt;}
.y8f{bottom:737.226667pt;}
.y1b{bottom:741.226667pt;}
.yc8{bottom:742.840000pt;}
.y136{bottom:743.893333pt;}
.y100{bottom:747.893333pt;}
.y169{bottom:748.440000pt;}
.yc9{bottom:748.960000pt;}
.y8e{bottom:751.106667pt;}
.y56{bottom:752.440000pt;}
.y101{bottom:754.040000pt;}
.y1a{bottom:759.400000pt;}
.y8d{bottom:760.466667pt;}
.yc7{bottom:761.000000pt;}
.yff{bottom:766.066667pt;}
.y168{bottom:766.333333pt;}
.y55{bottom:767.666667pt;}
.y135{bottom:774.600000pt;}
.yc6{bottom:776.200000pt;}
.y19{bottom:777.000000pt;}
.yfe{bottom:781.266667pt;}
.y167{bottom:781.800000pt;}
.y8c{bottom:782.333333pt;}
.y54{bottom:783.133333pt;}
.y134{bottom:790.066667pt;}
.y18{bottom:793.266667pt;}
.yfc{bottom:797.000000pt;}
.y8b{bottom:797.800000pt;}
.y53{bottom:798.333333pt;}
.yc5{bottom:802.066667pt;}
.yfd{bottom:803.133333pt;}
.y133{bottom:805.266667pt;}
.y166{bottom:812.466667pt;}
.y8a{bottom:813.266667pt;}
.y17{bottom:814.866667pt;}
.yfb{bottom:815.133333pt;}
.yc3{bottom:818.066667pt;}
.y132{bottom:820.733333pt;}
.yc4{bottom:824.200000pt;}
.y51{bottom:824.733333pt;}
.y16{bottom:825.533333pt;}
.y165{bottom:827.666667pt;}
.yfa{bottom:830.333333pt;}
.y52{bottom:830.866667pt;}
.yc2{bottom:835.933333pt;}
.y89{bottom:839.666667pt;}
.y50{bottom:842.866667pt;}
.y164{bottom:843.133333pt;}
.y15{bottom:845.800000pt;}
.yc1{bottom:851.400000pt;}
.y88{bottom:857.533333pt;}
.y4f{bottom:858.066667pt;}
.y163{bottom:858.333333pt;}
.y14{bottom:861.000000pt;}
.yc0{bottom:866.600000pt;}
.y13{bottom:871.666667pt;}
.y87{bottom:873.000000pt;}
.y162{bottom:873.800000pt;}
.yf9{bottom:876.466667pt;}
.ybf{bottom:882.066667pt;}
.y130{bottom:882.333333pt;}
.y4d{bottom:884.466667pt;}
.y12{bottom:887.400000pt;}
.y86{bottom:888.200000pt;}
.y131{bottom:888.466667pt;}
.y161{bottom:889.000000pt;}
.y4e{bottom:890.600000pt;}
.yf8{bottom:891.666667pt;}
.ybe{bottom:897.266667pt;}
.y12f{bottom:900.466667pt;}
.y4c{bottom:902.600000pt;}
.y85{bottom:903.706667pt;}
.y160{bottom:904.506667pt;}
.y11{bottom:905.840000pt;}
.yf7{bottom:907.173333pt;}
.ybd{bottom:911.960000pt;}
.y12e{bottom:915.706667pt;}
.y4b{bottom:917.840000pt;}
.y84{bottom:918.893333pt;}
.y15f{bottom:919.706667pt;}
.y10{bottom:921.560000pt;}
.yf6{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y12d{bottom:931.173333pt;}
.ybc{bottom:931.440000pt;}
.y15e{bottom:935.173333pt;}
.y83{bottom:935.440000pt;}
.yf5{bottom:937.840000pt;}
.ybb{bottom:943.440000pt;}
.y49{bottom:944.226667pt;}
.yc{bottom:944.506667pt;}
.y12c{bottom:946.373333pt;}
.yb{bottom:949.560000pt;}
.y4a{bottom:950.373333pt;}
.yf4{bottom:953.040000pt;}
.y82{bottom:955.173333pt;}
.y12b{bottom:961.840000pt;}
.y48{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.yba{bottom:965.040000pt;}
.y15d{bottom:965.840000pt;}
.y81{bottom:968.226667pt;}
.yf3{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y46{bottom:978.106667pt;}
.yb9{bottom:980.773333pt;}
.y15c{bottom:981.040000pt;}
.y12a{bottom:983.440000pt;}
.y80{bottom:983.706667pt;}
.y47{bottom:984.226667pt;}
.y8{bottom:991.706667pt;}
.y45{bottom:995.960000pt;}
.y15b{bottom:996.506667pt;}
.y7f{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y44{bottom:1011.706667pt;}
.y15a{bottom:1012.773333pt;}
.y6{bottom:1014.373333pt;}
.y42{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.hb{height:11.171875pt;}
.h5{height:11.289062pt;}
.h17{height:18.619792pt;}
.ha{height:18.666667pt;}
.hd{height:24.578125pt;}
.h12{height:29.791667pt;}
.h7{height:30.104167pt;}
.h15{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hf{height:33.867188pt;}
.he{height:37.239583pt;}
.h4{height:37.630208pt;}
.h18{height:38.828125pt;}
.h16{height:39.562500pt;}
.hc{height:43.778125pt;}
.h11{height:43.958333pt;}
.h6{height:45.156250pt;}
.h14{height:46.218750pt;}
.h19{height:46.593750pt;}
.h10{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h13{height:328.600000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:216.866667pt;}
.w5{width:429.733333pt;}
.w7{width:646.066667pt;}
.w8{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xe{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.x59{left:78.699988pt;}
.x58{left:85.633322pt;}
.x57{left:89.366655pt;}
.x55{left:92.299988pt;}
.xc{left:95.506667pt;}
.x56{left:96.833322pt;}
.x54{left:98.966655pt;}
.x53{left:102.699988pt;}
.x52{left:105.633322pt;}
.x48{left:106.699976pt;}
.x51{left:109.366655pt;}
.x45{left:112.299976pt;}
.x17{left:120.033322pt;}
.x49{left:122.699988pt;}
.x8{left:136.559988pt;}
.x21{left:139.226655pt;}
.x50{left:144.026655pt;}
.x22{left:156.026643pt;}
.x23{left:160.599988pt;}
.x12{left:165.133310pt;}
.x13{left:170.999988pt;}
.x46{left:178.733310pt;}
.x14{left:180.599988pt;}
.x3e{left:185.666643pt;}
.x1d{left:194.999976pt;}
.x47{left:197.666655pt;}
.x3f{left:204.599988pt;}
.x1e{left:209.133322pt;}
.xa{left:214.726667pt;}
.x24{left:254.466643pt;}
.x36{left:261.133310pt;}
.x25{left:262.773322pt;}
.x1a{left:267.293310pt;}
.x37{left:271.839988pt;}
.x1b{left:275.559988pt;}
.x4e{left:294.506643pt;}
.x4f{left:319.306655pt;}
.x15{left:332.106643pt;}
.x1c{left:333.959976pt;}
.x16{left:340.373322pt;}
.x5{left:345.173322pt;}
.x28{left:367.306643pt;}
.x30{left:374.799976pt;}
.x29{left:381.466655pt;}
.x31{left:391.333322pt;}
.x2a{left:395.066643pt;}
.x4c{left:403.066643pt;}
.x2b{left:408.666655pt;}
.x38{left:409.999976pt;}
.x39{left:421.466655pt;}
.x40{left:423.866655pt;}
.x4d{left:424.933322pt;}
.x2e{left:433.199976pt;}
.x2f{left:446.799988pt;}
.x32{left:453.466643pt;}
.x33{left:472.933322pt;}
.x26{left:478.306643pt;}
.x2c{left:479.893310pt;}
.xf{left:486.026655pt;}
.x27{left:487.639988pt;}
.x2d{left:490.559988pt;}
.xb{left:503.360000pt;}
.x34{left:519.906643pt;}
.x35{left:533.506655pt;}
.x18{left:569.773310pt;}
.x19{left:575.093322pt;}
.x3a{left:580.173310pt;}
.x3b{left:594.066655pt;}
.x3c{left:595.933310pt;}
.x10{left:599.133310pt;}
.x11{left:602.066655pt;}
.x3d{left:612.199988pt;}
.x6{left:618.333322pt;}
.x41{left:637.799976pt;}
.x1f{left:653.533310pt;}
.x42{left:656.733322pt;}
.x20{left:660.466655pt;}
.x4a{left:684.199976pt;}
.x43{left:687.959976pt;}
.x4b{left:703.173322pt;}
.x44{left:709.839988pt;}
.xd{left:720.226655pt;}
.x9{left:722.106655pt;}
}




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