
    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_8acbc511b1beff5c636eae0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_ba7f9b70e164b6ae2d531c8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_566062fbefe5847624511c11.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_976b4383e39d2bfcf13fc097.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_3162806db3ed5b34fdbbb614.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_af463d36cd1ac579bd64bd3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_fabe46161e86489c9574e525.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls5{letter-spacing:-1.422000px;}
.lsb{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.lsc{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls10{letter-spacing:42.077280px;}
.lsf{letter-spacing:75.197280px;}
.ls9{letter-spacing:81.250560px;}
.ls7{letter-spacing:82.690560px;}
.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;}
}
.wsa{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.627000px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.ws6{word-spacing:-14.633400px;}
.ws1{word-spacing:-13.698000px;}
.ws2{word-spacing:-13.182000px;}
.ws4{word-spacing:-12.600000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-5.040000px;}
._e{margin-left:-3.982080px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.423360px;}
._9{width:5.185920px;}
._a{width:7.030080px;}
._c{width:8.769600px;}
._b{width:9.792000px;}
._f{width:11.813760px;}
._13{width:12.948480px;}
._14{width:13.979520px;}
._d{width:16.511040px;}
._12{width:20.442240px;}
._11{width:21.487680px;}
._10{width:22.740480px;}
._16{width:24.071040px;}
._15{width:25.349760px;}
._18{width:26.378400px;}
._17{width:28.123200px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y39{bottom:3.240000px;}
.ya1{bottom:11.520000px;}
.ya4{bottom:11.880000px;}
.ya3{bottom:11.925000px;}
.yd4{bottom:17.280000px;}
.yd8{bottom:17.310000px;}
.ye0{bottom:17.325000px;}
.yd0{bottom:20.205000px;}
.y41{bottom:20.520000px;}
.y38{bottom:29.514000px;}
.ycf{bottom:37.485000px;}
.y40{bottom:37.800000px;}
.y9f{bottom:38.565000px;}
.ye{bottom:43.560000px;}
.y37{bottom:46.794000px;}
.y3f{bottom:54.720000px;}
.y36{bottom:64.119000px;}
.yc{bottom:68.400000px;}
.y35{bottom:81.399000px;}
.ya{bottom:94.716000px;}
.y34{bottom:98.319000px;}
.y33{bottom:115.599000px;}
.ycc{bottom:131.796000px;}
.y32{bottom:132.879000px;}
.y152{bottom:137.556000px;}
.y1c{bottom:138.636000px;}
.y102{bottom:140.076000px;}
.y9c{bottom:142.236000px;}
.y122{bottom:149.796000px;}
.y31{bottom:150.159000px;}
.ycb{bottom:151.590000px;}
.y6c{bottom:155.910000px;}
.y151{bottom:157.350000px;}
.y101{bottom:159.870000px;}
.y9b{bottom:162.390000px;}
.y30{bottom:167.439000px;}
.yca{bottom:171.390000px;}
.y6b{bottom:175.710000px;}
.y150{bottom:177.150000px;}
.y121{bottom:178.590000px;}
.y100{bottom:179.670000px;}
.y9a{bottom:182.190000px;}
.y2f{bottom:184.749000px;}
.yc9{bottom:191.190000px;}
.y6a{bottom:195.510000px;}
.y14f{bottom:196.950000px;}
.yff{bottom:199.515000px;}
.y2e{bottom:202.029000px;}
.y99{bottom:202.035000px;}
.y120{bottom:207.435000px;}
.yc8{bottom:211.035000px;}
.y69{bottom:215.355000px;}
.y14e{bottom:218.235000px;}
.y2d{bottom:219.309000px;}
.yfe{bottom:219.315000px;}
.y98{bottom:221.835000px;}
.y11f{bottom:227.235000px;}
.yc7{bottom:230.835000px;}
.y68{bottom:235.155000px;}
.y2c{bottom:236.589000px;}
.y14d{bottom:238.035000px;}
.yfd{bottom:239.115000px;}
.y97{bottom:241.635000px;}
.y11e{bottom:247.395000px;}
.yc6{bottom:250.635000px;}
.y67{bottom:254.955000px;}
.yfc{bottom:258.915000px;}
.y14c{bottom:259.275000px;}
.y96{bottom:261.435000px;}
.y2b{bottom:262.869000px;}
.y11d{bottom:267.195000px;}
.yc5{bottom:270.435000px;}
.y66{bottom:274.755000px;}
.yfb{bottom:278.715000px;}
.y14b{bottom:279.075000px;}
.y2a{bottom:280.149000px;}
.y95{bottom:281.235000px;}
.y11c{bottom:286.995000px;}
.yc4{bottom:290.235000px;}
.yfa{bottom:298.515000px;}
.y14a{bottom:298.875000px;}
.y65{bottom:299.235000px;}
.y94{bottom:301.035000px;}
.y29{bottom:306.069000px;}
.y11b{bottom:306.795000px;}
.yc3{bottom:310.395000px;}
.y149{bottom:320.115000px;}
.y93{bottom:320.835000px;}
.yf9{bottom:322.995000px;}
.y28{bottom:323.394000px;}
.y11a{bottom:326.625000px;}
.y64{bottom:328.065000px;}
.yc2{bottom:330.225000px;}
.y148{bottom:339.945000px;}
.y92{bottom:340.665000px;}
.y27{bottom:340.674000px;}
.y119{bottom:346.425000px;}
.y63{bottom:347.865000px;}
.yc1{bottom:350.025000px;}
.yf8{bottom:357.945000px;}
.y26{bottom:357.954000px;}
.y91{bottom:360.825000px;}
.y147{bottom:361.185000px;}
.y118{bottom:366.225000px;}
.y62{bottom:367.665000px;}
.yc0{bottom:369.825000px;}
.y25{bottom:375.234000px;}
.y146{bottom:380.985000px;}
.yf7{bottom:384.225000px;}
.y90{bottom:384.945000px;}
.y117{bottom:386.025000px;}
.ybf{bottom:389.625000px;}
.y61{bottom:391.785000px;}
.y24{bottom:392.514000px;}
.yf6{bottom:398.985000px;}
.y145{bottom:400.785000px;}
.y116{bottom:405.825000px;}
.ybe{bottom:409.425000px;}
.y23{bottom:409.794000px;}
.y8f{bottom:413.745000px;}
.yf5{bottom:416.985000px;}
.y60{bottom:420.945000px;}
.y144{bottom:422.025000px;}
.y115{bottom:425.625000px;}
.y22{bottom:427.074000px;}
.ybd{bottom:431.025000px;}
.y8e{bottom:433.545000px;}
.yf4{bottom:434.985000px;}
.y5f{bottom:440.385000px;}
.y143{bottom:441.825000px;}
.y21{bottom:444.384000px;}
.y114{bottom:445.785000px;}
.yf3{bottom:453.030000px;}
.y8d{bottom:453.390000px;}
.ybc{bottom:455.190000px;}
.y20{bottom:461.664000px;}
.y142{bottom:463.470000px;}
.y113{bottom:465.630000px;}
.y5e{bottom:469.590000px;}
.yf2{bottom:471.030000px;}
.y8c{bottom:473.190000px;}
.y1f{bottom:478.944000px;}
.ybb{bottom:481.470000px;}
.y141{bottom:483.270000px;}
.y112{bottom:485.430000px;}
.yf1{bottom:489.030000px;}
.y8b{bottom:493.350000px;}
.y1e{bottom:496.224000px;}
.y5d{bottom:498.390000px;}
.y140{bottom:504.510000px;}
.yf0{bottom:507.030000px;}
.yba{bottom:508.110000px;}
.y1d{bottom:513.144000px;}
.y8a{bottom:513.150000px;}
.y111{bottom:520.350000px;}
.y13f{bottom:524.310000px;}
.yef{bottom:525.030000px;}
.y5c{bottom:527.190000px;}
.y89{bottom:532.950000px;}
.yb9{bottom:534.750000px;}
.yee{bottom:543.030000px;}
.y13e{bottom:544.110000px;}
.y5b{bottom:546.990000px;}
.y110{bottom:549.150000px;}
.y88{bottom:552.750000px;}
.yed{bottom:561.030000px;}
.yb8{bottom:561.390000px;}
.y13d{bottom:565.350000px;}
.y5a{bottom:566.790000px;}
.y10f{bottom:568.950000px;}
.y87{bottom:572.550000px;}
.yec{bottom:579.060000px;}
.y13c{bottom:585.180000px;}
.y59{bottom:586.980000px;}
.yb7{bottom:588.060000px;}
.y10e{bottom:588.780000px;}
.y86{bottom:592.380000px;}
.yeb{bottom:597.060000px;}
.y13b{bottom:604.980000px;}
.y58{bottom:606.780000px;}
.y10d{bottom:608.580000px;}
.y85{bottom:612.180000px;}
.yb6{bottom:614.700000px;}
.yea{bottom:615.060000px;}
.y13a{bottom:624.780000px;}
.y57{bottom:626.580000px;}
.y10c{bottom:628.380000px;}
.y84{bottom:631.980000px;}
.ye9{bottom:633.060000px;}
.yb5{bottom:641.340000px;}
.y139{bottom:646.020000px;}
.y56{bottom:646.380000px;}
.y10b{bottom:648.180000px;}
.ye8{bottom:651.060000px;}
.y83{bottom:651.780000px;}
.y138{bottom:665.820000px;}
.y55{bottom:666.180000px;}
.yb4{bottom:667.980000px;}
.ye7{bottom:669.060000px;}
.y82{bottom:676.260000px;}
.y1b{bottom:680.580000px;}
.y137{bottom:685.620000px;}
.y54{bottom:685.980000px;}
.ye6{bottom:687.060000px;}
.y10a{bottom:687.780000px;}
.y1a{bottom:697.860000px;}
.yb3{bottom:700.380000px;}
.y81{bottom:705.090000px;}
.y53{bottom:705.810000px;}
.y136{bottom:706.890000px;}
.y109{bottom:707.610000px;}
.y19{bottom:714.450000px;}
.yb2{bottom:717.690000px;}
.ye5{bottom:723.090000px;}
.y52{bottom:725.610000px;}
.y135{bottom:726.690000px;}
.y108{bottom:727.770000px;}
.y18{bottom:728.130000px;}
.y80{bottom:733.890000px;}
.yb1{bottom:734.970000px;}
.ye4{bottom:741.090000px;}
.y17{bottom:741.810000px;}
.y51{bottom:745.410000px;}
.y134{bottom:746.490000px;}
.y107{bottom:747.570000px;}
.y7f{bottom:753.690000px;}
.yb0{bottom:754.770000px;}
.y16{bottom:755.850000px;}
.ye3{bottom:759.090000px;}
.y50{bottom:765.210000px;}
.y106{bottom:767.370000px;}
.y133{bottom:767.730000px;}
.yaf{bottom:774.570000px;}
.ye2{bottom:777.090000px;}
.y7e{bottom:778.170000px;}
.y15{bottom:779.250000px;}
.y4f{bottom:785.370000px;}
.y105{bottom:787.170000px;}
.y132{bottom:787.530000px;}
.yae{bottom:794.370000px;}
.ye1{bottom:795.090000px;}
.y14{bottom:796.530000px;}
.y4e{bottom:805.170000px;}
.y7d{bottom:806.970000px;}
.y131{bottom:809.130000px;}
.ydf{bottom:813.090000px;}
.y13{bottom:813.810000px;}
.yad{bottom:814.170000px;}
.y4d{bottom:824.970000px;}
.y7c{bottom:826.815000px;}
.y130{bottom:828.975000px;}
.yde{bottom:831.135000px;}
.y12{bottom:832.935000px;}
.yac{bottom:834.375000px;}
.y4c{bottom:844.815000px;}
.y7b{bottom:846.615000px;}
.ydd{bottom:849.135000px;}
.y12f{bottom:850.215000px;}
.yab{bottom:855.975000px;}
.y11{bottom:860.295000px;}
.y4b{bottom:864.615000px;}
.y104{bottom:866.415000px;}
.ydc{bottom:867.135000px;}
.y12e{bottom:870.015000px;}
.y7a{bottom:871.095000px;}
.yaa{bottom:879.735000px;}
.y4a{bottom:884.415000px;}
.ydb{bottom:885.135000px;}
.y10{bottom:888.015000px;}
.y12d{bottom:889.815000px;}
.y103{bottom:890.895000px;}
.y79{bottom:899.895000px;}
.yda{bottom:903.135000px;}
.y49{bottom:904.215000px;}
.ya9{bottom:906.375000px;}
.y12c{bottom:911.055000px;}
.yf{bottom:915.375000px;}
.y78{bottom:919.695000px;}
.yd9{bottom:921.135000px;}
.y48{bottom:924.015000px;}
.y12b{bottom:930.855000px;}
.ya8{bottom:933.015000px;}
.yd7{bottom:939.135000px;}
.y77{bottom:939.495000px;}
.y9{bottom:941.295000px;}
.y47{bottom:943.815000px;}
.y12a{bottom:950.655000px;}
.yd6{bottom:957.165000px;}
.y8{bottom:958.605000px;}
.y76{bottom:959.325000px;}
.ya7{bottom:959.685000px;}
.y46{bottom:963.645000px;}
.y129{bottom:971.925000px;}
.y7{bottom:972.645000px;}
.yd5{bottom:975.165000px;}
.y75{bottom:979.125000px;}
.y45{bottom:983.805000px;}
.ya6{bottom:986.325000px;}
.y128{bottom:991.725000px;}
.yd3{bottom:993.165000px;}
.y74{bottom:998.925000px;}
.y44{bottom:1003.605000px;}
.yd2{bottom:1011.165000px;}
.y127{bottom:1011.525000px;}
.ya5{bottom:1012.965000px;}
.y73{bottom:1018.725000px;}
.y6{bottom:1027.365000px;}
.yd1{bottom:1029.165000px;}
.y126{bottom:1031.325000px;}
.y43{bottom:1032.405000px;}
.y72{bottom:1038.885000px;}
.y9e{bottom:1039.605000px;}
.y5{bottom:1052.205000px;}
.y125{bottom:1052.565000px;}
.y71{bottom:1058.685000px;}
.y42{bottom:1060.485000px;}
.yce{bottom:1064.445000px;}
.ya2{bottom:1066.245000px;}
.y124{bottom:1072.365000px;}
.y4{bottom:1073.085000px;}
.y70{bottom:1078.530000px;}
.y3e{bottom:1085.370000px;}
.y123{bottom:1092.210000px;}
.ya0{bottom:1092.930000px;}
.y3{bottom:1094.010000px;}
.y6f{bottom:1098.330000px;}
.y2{bottom:1114.890000px;}
.y6e{bottom:1118.130000px;}
.ycd{bottom:1122.450000px;}
.y9d{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y6d{bottom:1142.610000px;}
.y3d{bottom:1166.370000px;}
.y3c{bottom:1180.410000px;}
.y3b{bottom:1201.290000px;}
.y3a{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h16{height:17.280000px;}
.h17{height:17.316000px;}
.hf{height:25.560000px;}
.h11{height:25.920000px;}
.h10{height:25.956000px;}
.h15{height:34.200000px;}
.h5{height:39.997969px;}
.hb{height:41.696016px;}
.h12{height:42.347813px;}
.h13{height:44.208281px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h14{height:51.516000px;}
.h4{height:53.067656px;}
.ha{height:53.298281px;}
.h3{height:53.367188px;}
.h18{height:58.121719px;}
.h19{height:65.884219px;}
.hd{height:68.760000px;}
.h9{height:71.512031px;}
.he{height:78.876000px;}
.hc{height:536.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:51.480000px;}
.w1c{width:52.956000px;}
.w1a{width:53.280000px;}
.w19{width:53.316000px;}
.w1b{width:53.676000px;}
.w18{width:57.636000px;}
.wd{width:105.876000px;}
.we{width:106.632000px;}
.w16{width:106.956000px;}
.w14{width:107.316000px;}
.w15{width:107.712000px;}
.w13{width:109.836000px;}
.wc{width:132.156000px;}
.w12{width:136.512000px;}
.w11{width:155.235000px;}
.w10{width:155.595000px;}
.wb{width:213.225000px;}
.w8{width:225.825000px;}
.wa{width:238.755000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.wf{width:366.990000px;}
.w9{width:452.700000px;}
.w1e{width:625.575000px;}
.w1d{width:679.245000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3f{left:7.560000px;}
.x9{left:8.640000px;}
.x35{left:11.205000px;}
.x17{left:12.960000px;}
.x2f{left:14.040000px;}
.x32{left:15.840000px;}
.x2c{left:18.000000px;}
.x18{left:19.485000px;}
.x37{left:21.600000px;}
.x3b{left:22.725000px;}
.x2e{left:23.760000px;}
.x33{left:24.870000px;}
.x15{left:32.400000px;}
.x1f{left:34.230000px;}
.x1b{left:38.190000px;}
.x30{left:39.960000px;}
.x1e{left:42.870000px;}
.x23{left:43.950000px;}
.x20{left:45.765000px;}
.x1c{left:49.365000px;}
.x1a{left:58.320000px;}
.x1d{left:62.280000px;}
.x14{left:63.765000px;}
.x25{left:67.350000px;}
.x28{left:70.230000px;}
.x26{left:73.830000px;}
.x12{left:81.750000px;}
.x7{left:106.235987px;}
.x29{left:109.830000px;}
.x48{left:117.035987px;}
.xb{left:119.555987px;}
.x27{left:127.155000px;}
.x49{left:159.554987px;}
.xd{left:180.794987px;}
.x11{left:187.620000px;}
.x2a{left:216.074987px;}
.x2b{left:244.185000px;}
.x21{left:252.464987px;}
.x2{left:254.264987px;}
.x45{left:268.314000px;}
.xf{left:272.264987px;}
.x6{left:274.064987px;}
.x47{left:278.394000px;}
.x41{left:286.314000px;}
.x40{left:290.664000px;}
.x42{left:294.624000px;}
.x38{left:296.385000px;}
.x46{left:301.104000px;}
.x44{left:303.264000px;}
.xa{left:304.350000px;}
.x43{left:305.424000px;}
.x3e{left:311.184000px;}
.x10{left:333.510000px;}
.xc{left:344.669987px;}
.x2d{left:354.750000px;}
.x5{left:357.629987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x39{left:408.780000px;}
.x8{left:446.579987px;}
.xe{left:447.660000px;}
.x31{left:462.780000px;}
.x16{left:466.380000px;}
.x22{left:474.660000px;}
.x3a{left:516.810000px;}
.x34{left:570.810000px;}
.x13{left:572.970000px;}
.x3c{left:624.855000px;}
.x24{left:630.975000px;}
.x36{left:679.245000px;}
.x19{left:680.325000px;}
.x3d{left:733.245000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls5{letter-spacing:-1.264000pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.lsc{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls10{letter-spacing:37.402027pt;}
.lsf{letter-spacing:66.842027pt;}
.ls9{letter-spacing:72.222720pt;}
.ls7{letter-spacing:73.502720pt;}
.wsa{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.890667pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.ws6{word-spacing:-13.007467pt;}
.ws1{word-spacing:-12.176000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws4{word-spacing:-11.200000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-4.480000pt;}
._e{margin-left:-3.539627pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.042987pt;}
._9{width:4.609707pt;}
._a{width:6.248960pt;}
._c{width:7.795200pt;}
._b{width:8.704000pt;}
._f{width:10.501120pt;}
._13{width:11.509760pt;}
._14{width:12.426240pt;}
._d{width:14.676480pt;}
._12{width:18.170880pt;}
._11{width:19.100160pt;}
._10{width:20.213760pt;}
._16{width:21.396480pt;}
._15{width:22.533120pt;}
._18{width:23.447467pt;}
._17{width:24.998400pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y39{bottom:2.880000pt;}
.ya1{bottom:10.240000pt;}
.ya4{bottom:10.560000pt;}
.ya3{bottom:10.600000pt;}
.yd4{bottom:15.360000pt;}
.yd8{bottom:15.386667pt;}
.ye0{bottom:15.400000pt;}
.yd0{bottom:17.960000pt;}
.y41{bottom:18.240000pt;}
.y38{bottom:26.234667pt;}
.ycf{bottom:33.320000pt;}
.y40{bottom:33.600000pt;}
.y9f{bottom:34.280000pt;}
.ye{bottom:38.720000pt;}
.y37{bottom:41.594667pt;}
.y3f{bottom:48.640000pt;}
.y36{bottom:56.994667pt;}
.yc{bottom:60.800000pt;}
.y35{bottom:72.354667pt;}
.ya{bottom:84.192000pt;}
.y34{bottom:87.394667pt;}
.y33{bottom:102.754667pt;}
.ycc{bottom:117.152000pt;}
.y32{bottom:118.114667pt;}
.y152{bottom:122.272000pt;}
.y1c{bottom:123.232000pt;}
.y102{bottom:124.512000pt;}
.y9c{bottom:126.432000pt;}
.y122{bottom:133.152000pt;}
.y31{bottom:133.474667pt;}
.ycb{bottom:134.746667pt;}
.y6c{bottom:138.586667pt;}
.y151{bottom:139.866667pt;}
.y101{bottom:142.106667pt;}
.y9b{bottom:144.346667pt;}
.y30{bottom:148.834667pt;}
.yca{bottom:152.346667pt;}
.y6b{bottom:156.186667pt;}
.y150{bottom:157.466667pt;}
.y121{bottom:158.746667pt;}
.y100{bottom:159.706667pt;}
.y9a{bottom:161.946667pt;}
.y2f{bottom:164.221333pt;}
.yc9{bottom:169.946667pt;}
.y6a{bottom:173.786667pt;}
.y14f{bottom:175.066667pt;}
.yff{bottom:177.346667pt;}
.y2e{bottom:179.581333pt;}
.y99{bottom:179.586667pt;}
.y120{bottom:184.386667pt;}
.yc8{bottom:187.586667pt;}
.y69{bottom:191.426667pt;}
.y14e{bottom:193.986667pt;}
.y2d{bottom:194.941333pt;}
.yfe{bottom:194.946667pt;}
.y98{bottom:197.186667pt;}
.y11f{bottom:201.986667pt;}
.yc7{bottom:205.186667pt;}
.y68{bottom:209.026667pt;}
.y2c{bottom:210.301333pt;}
.y14d{bottom:211.586667pt;}
.yfd{bottom:212.546667pt;}
.y97{bottom:214.786667pt;}
.y11e{bottom:219.906667pt;}
.yc6{bottom:222.786667pt;}
.y67{bottom:226.626667pt;}
.yfc{bottom:230.146667pt;}
.y14c{bottom:230.466667pt;}
.y96{bottom:232.386667pt;}
.y2b{bottom:233.661333pt;}
.y11d{bottom:237.506667pt;}
.yc5{bottom:240.386667pt;}
.y66{bottom:244.226667pt;}
.yfb{bottom:247.746667pt;}
.y14b{bottom:248.066667pt;}
.y2a{bottom:249.021333pt;}
.y95{bottom:249.986667pt;}
.y11c{bottom:255.106667pt;}
.yc4{bottom:257.986667pt;}
.yfa{bottom:265.346667pt;}
.y14a{bottom:265.666667pt;}
.y65{bottom:265.986667pt;}
.y94{bottom:267.586667pt;}
.y29{bottom:272.061333pt;}
.y11b{bottom:272.706667pt;}
.yc3{bottom:275.906667pt;}
.y149{bottom:284.546667pt;}
.y93{bottom:285.186667pt;}
.yf9{bottom:287.106667pt;}
.y28{bottom:287.461333pt;}
.y11a{bottom:290.333333pt;}
.y64{bottom:291.613333pt;}
.yc2{bottom:293.533333pt;}
.y148{bottom:302.173333pt;}
.y92{bottom:302.813333pt;}
.y27{bottom:302.821333pt;}
.y119{bottom:307.933333pt;}
.y63{bottom:309.213333pt;}
.yc1{bottom:311.133333pt;}
.yf8{bottom:318.173333pt;}
.y26{bottom:318.181333pt;}
.y91{bottom:320.733333pt;}
.y147{bottom:321.053333pt;}
.y118{bottom:325.533333pt;}
.y62{bottom:326.813333pt;}
.yc0{bottom:328.733333pt;}
.y25{bottom:333.541333pt;}
.y146{bottom:338.653333pt;}
.yf7{bottom:341.533333pt;}
.y90{bottom:342.173333pt;}
.y117{bottom:343.133333pt;}
.ybf{bottom:346.333333pt;}
.y61{bottom:348.253333pt;}
.y24{bottom:348.901333pt;}
.yf6{bottom:354.653333pt;}
.y145{bottom:356.253333pt;}
.y116{bottom:360.733333pt;}
.ybe{bottom:363.933333pt;}
.y23{bottom:364.261333pt;}
.y8f{bottom:367.773333pt;}
.yf5{bottom:370.653333pt;}
.y60{bottom:374.173333pt;}
.y144{bottom:375.133333pt;}
.y115{bottom:378.333333pt;}
.y22{bottom:379.621333pt;}
.ybd{bottom:383.133333pt;}
.y8e{bottom:385.373333pt;}
.yf4{bottom:386.653333pt;}
.y5f{bottom:391.453333pt;}
.y143{bottom:392.733333pt;}
.y21{bottom:395.008000pt;}
.y114{bottom:396.253333pt;}
.yf3{bottom:402.693333pt;}
.y8d{bottom:403.013333pt;}
.ybc{bottom:404.613333pt;}
.y20{bottom:410.368000pt;}
.y142{bottom:411.973333pt;}
.y113{bottom:413.893333pt;}
.y5e{bottom:417.413333pt;}
.yf2{bottom:418.693333pt;}
.y8c{bottom:420.613333pt;}
.y1f{bottom:425.728000pt;}
.ybb{bottom:427.973333pt;}
.y141{bottom:429.573333pt;}
.y112{bottom:431.493333pt;}
.yf1{bottom:434.693333pt;}
.y8b{bottom:438.533333pt;}
.y1e{bottom:441.088000pt;}
.y5d{bottom:443.013333pt;}
.y140{bottom:448.453333pt;}
.yf0{bottom:450.693333pt;}
.yba{bottom:451.653333pt;}
.y1d{bottom:456.128000pt;}
.y8a{bottom:456.133333pt;}
.y111{bottom:462.533333pt;}
.y13f{bottom:466.053333pt;}
.yef{bottom:466.693333pt;}
.y5c{bottom:468.613333pt;}
.y89{bottom:473.733333pt;}
.yb9{bottom:475.333333pt;}
.yee{bottom:482.693333pt;}
.y13e{bottom:483.653333pt;}
.y5b{bottom:486.213333pt;}
.y110{bottom:488.133333pt;}
.y88{bottom:491.333333pt;}
.yed{bottom:498.693333pt;}
.yb8{bottom:499.013333pt;}
.y13d{bottom:502.533333pt;}
.y5a{bottom:503.813333pt;}
.y10f{bottom:505.733333pt;}
.y87{bottom:508.933333pt;}
.yec{bottom:514.720000pt;}
.y13c{bottom:520.160000pt;}
.y59{bottom:521.760000pt;}
.yb7{bottom:522.720000pt;}
.y10e{bottom:523.360000pt;}
.y86{bottom:526.560000pt;}
.yeb{bottom:530.720000pt;}
.y13b{bottom:537.760000pt;}
.y58{bottom:539.360000pt;}
.y10d{bottom:540.960000pt;}
.y85{bottom:544.160000pt;}
.yb6{bottom:546.400000pt;}
.yea{bottom:546.720000pt;}
.y13a{bottom:555.360000pt;}
.y57{bottom:556.960000pt;}
.y10c{bottom:558.560000pt;}
.y84{bottom:561.760000pt;}
.ye9{bottom:562.720000pt;}
.yb5{bottom:570.080000pt;}
.y139{bottom:574.240000pt;}
.y56{bottom:574.560000pt;}
.y10b{bottom:576.160000pt;}
.ye8{bottom:578.720000pt;}
.y83{bottom:579.360000pt;}
.y138{bottom:591.840000pt;}
.y55{bottom:592.160000pt;}
.yb4{bottom:593.760000pt;}
.ye7{bottom:594.720000pt;}
.y82{bottom:601.120000pt;}
.y1b{bottom:604.960000pt;}
.y137{bottom:609.440000pt;}
.y54{bottom:609.760000pt;}
.ye6{bottom:610.720000pt;}
.y10a{bottom:611.360000pt;}
.y1a{bottom:620.320000pt;}
.yb3{bottom:622.560000pt;}
.y81{bottom:626.746667pt;}
.y53{bottom:627.386667pt;}
.y136{bottom:628.346667pt;}
.y109{bottom:628.986667pt;}
.y19{bottom:635.066667pt;}
.yb2{bottom:637.946667pt;}
.ye5{bottom:642.746667pt;}
.y52{bottom:644.986667pt;}
.y135{bottom:645.946667pt;}
.y108{bottom:646.906667pt;}
.y18{bottom:647.226667pt;}
.y80{bottom:652.346667pt;}
.yb1{bottom:653.306667pt;}
.ye4{bottom:658.746667pt;}
.y17{bottom:659.386667pt;}
.y51{bottom:662.586667pt;}
.y134{bottom:663.546667pt;}
.y107{bottom:664.506667pt;}
.y7f{bottom:669.946667pt;}
.yb0{bottom:670.906667pt;}
.y16{bottom:671.866667pt;}
.ye3{bottom:674.746667pt;}
.y50{bottom:680.186667pt;}
.y106{bottom:682.106667pt;}
.y133{bottom:682.426667pt;}
.yaf{bottom:688.506667pt;}
.ye2{bottom:690.746667pt;}
.y7e{bottom:691.706667pt;}
.y15{bottom:692.666667pt;}
.y4f{bottom:698.106667pt;}
.y105{bottom:699.706667pt;}
.y132{bottom:700.026667pt;}
.yae{bottom:706.106667pt;}
.ye1{bottom:706.746667pt;}
.y14{bottom:708.026667pt;}
.y4e{bottom:715.706667pt;}
.y7d{bottom:717.306667pt;}
.y131{bottom:719.226667pt;}
.ydf{bottom:722.746667pt;}
.y13{bottom:723.386667pt;}
.yad{bottom:723.706667pt;}
.y4d{bottom:733.306667pt;}
.y7c{bottom:734.946667pt;}
.y130{bottom:736.866667pt;}
.yde{bottom:738.786667pt;}
.y12{bottom:740.386667pt;}
.yac{bottom:741.666667pt;}
.y4c{bottom:750.946667pt;}
.y7b{bottom:752.546667pt;}
.ydd{bottom:754.786667pt;}
.y12f{bottom:755.746667pt;}
.yab{bottom:760.866667pt;}
.y11{bottom:764.706667pt;}
.y4b{bottom:768.546667pt;}
.y104{bottom:770.146667pt;}
.ydc{bottom:770.786667pt;}
.y12e{bottom:773.346667pt;}
.y7a{bottom:774.306667pt;}
.yaa{bottom:781.986667pt;}
.y4a{bottom:786.146667pt;}
.ydb{bottom:786.786667pt;}
.y10{bottom:789.346667pt;}
.y12d{bottom:790.946667pt;}
.y103{bottom:791.906667pt;}
.y79{bottom:799.906667pt;}
.yda{bottom:802.786667pt;}
.y49{bottom:803.746667pt;}
.ya9{bottom:805.666667pt;}
.y12c{bottom:809.826667pt;}
.yf{bottom:813.666667pt;}
.y78{bottom:817.506667pt;}
.yd9{bottom:818.786667pt;}
.y48{bottom:821.346667pt;}
.y12b{bottom:827.426667pt;}
.ya8{bottom:829.346667pt;}
.yd7{bottom:834.786667pt;}
.y77{bottom:835.106667pt;}
.y9{bottom:836.706667pt;}
.y47{bottom:838.946667pt;}
.y12a{bottom:845.026667pt;}
.yd6{bottom:850.813333pt;}
.y8{bottom:852.093333pt;}
.y76{bottom:852.733333pt;}
.ya7{bottom:853.053333pt;}
.y46{bottom:856.573333pt;}
.y129{bottom:863.933333pt;}
.y7{bottom:864.573333pt;}
.yd5{bottom:866.813333pt;}
.y75{bottom:870.333333pt;}
.y45{bottom:874.493333pt;}
.ya6{bottom:876.733333pt;}
.y128{bottom:881.533333pt;}
.yd3{bottom:882.813333pt;}
.y74{bottom:887.933333pt;}
.y44{bottom:892.093333pt;}
.yd2{bottom:898.813333pt;}
.y127{bottom:899.133333pt;}
.ya5{bottom:900.413333pt;}
.y73{bottom:905.533333pt;}
.y6{bottom:913.213333pt;}
.yd1{bottom:914.813333pt;}
.y126{bottom:916.733333pt;}
.y43{bottom:917.693333pt;}
.y72{bottom:923.453333pt;}
.y9e{bottom:924.093333pt;}
.y5{bottom:935.293333pt;}
.y125{bottom:935.613333pt;}
.y71{bottom:941.053333pt;}
.y42{bottom:942.653333pt;}
.yce{bottom:946.173333pt;}
.ya2{bottom:947.773333pt;}
.y124{bottom:953.213333pt;}
.y4{bottom:953.853333pt;}
.y70{bottom:958.693333pt;}
.y3e{bottom:964.773333pt;}
.y123{bottom:970.853333pt;}
.ya0{bottom:971.493333pt;}
.y3{bottom:972.453333pt;}
.y6f{bottom:976.293333pt;}
.y2{bottom:991.013333pt;}
.y6e{bottom:993.893333pt;}
.ycd{bottom:997.733333pt;}
.y9d{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y6d{bottom:1015.653333pt;}
.y3d{bottom:1036.773333pt;}
.y3c{bottom:1049.253333pt;}
.y3b{bottom:1067.813333pt;}
.y3a{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h16{height:15.360000pt;}
.h17{height:15.392000pt;}
.hf{height:22.720000pt;}
.h11{height:23.040000pt;}
.h10{height:23.072000pt;}
.h15{height:30.400000pt;}
.h5{height:35.553750pt;}
.hb{height:37.063125pt;}
.h12{height:37.642500pt;}
.h13{height:39.296250pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h14{height:45.792000pt;}
.h4{height:47.171250pt;}
.ha{height:47.376250pt;}
.h3{height:47.437500pt;}
.h18{height:51.663750pt;}
.h19{height:58.563750pt;}
.hd{height:61.120000pt;}
.h9{height:63.566250pt;}
.he{height:70.112000pt;}
.hc{height:476.613333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:45.760000pt;}
.w1c{width:47.072000pt;}
.w1a{width:47.360000pt;}
.w19{width:47.392000pt;}
.w1b{width:47.712000pt;}
.w18{width:51.232000pt;}
.wd{width:94.112000pt;}
.we{width:94.784000pt;}
.w16{width:95.072000pt;}
.w14{width:95.392000pt;}
.w15{width:95.744000pt;}
.w13{width:97.632000pt;}
.wc{width:117.472000pt;}
.w12{width:121.344000pt;}
.w11{width:137.986667pt;}
.w10{width:138.306667pt;}
.wb{width:189.533333pt;}
.w8{width:200.733333pt;}
.wa{width:212.226667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.wf{width:326.213333pt;}
.w9{width:402.400000pt;}
.w1e{width:556.066667pt;}
.w1d{width:603.773333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3f{left:6.720000pt;}
.x9{left:7.680000pt;}
.x35{left:9.960000pt;}
.x17{left:11.520000pt;}
.x2f{left:12.480000pt;}
.x32{left:14.080000pt;}
.x2c{left:16.000000pt;}
.x18{left:17.320000pt;}
.x37{left:19.200000pt;}
.x3b{left:20.200000pt;}
.x2e{left:21.120000pt;}
.x33{left:22.106667pt;}
.x15{left:28.800000pt;}
.x1f{left:30.426667pt;}
.x1b{left:33.946667pt;}
.x30{left:35.520000pt;}
.x1e{left:38.106667pt;}
.x23{left:39.066667pt;}
.x20{left:40.680000pt;}
.x1c{left:43.880000pt;}
.x1a{left:51.840000pt;}
.x1d{left:55.360000pt;}
.x14{left:56.680000pt;}
.x25{left:59.866667pt;}
.x28{left:62.426667pt;}
.x26{left:65.626667pt;}
.x12{left:72.666667pt;}
.x7{left:94.431988pt;}
.x29{left:97.626667pt;}
.x48{left:104.031988pt;}
.xb{left:106.271988pt;}
.x27{left:113.026667pt;}
.x49{left:141.826655pt;}
.xd{left:160.706655pt;}
.x11{left:166.773333pt;}
.x2a{left:192.066655pt;}
.x2b{left:217.053333pt;}
.x21{left:224.413322pt;}
.x2{left:226.013322pt;}
.x45{left:238.501333pt;}
.xf{left:242.013322pt;}
.x6{left:243.613322pt;}
.x47{left:247.461333pt;}
.x41{left:254.501333pt;}
.x40{left:258.368000pt;}
.x42{left:261.888000pt;}
.x38{left:263.453333pt;}
.x46{left:267.648000pt;}
.x44{left:269.568000pt;}
.xa{left:270.533333pt;}
.x43{left:271.488000pt;}
.x3e{left:276.608000pt;}
.x10{left:296.453333pt;}
.xc{left:306.373322pt;}
.x2d{left:315.333333pt;}
.x5{left:317.893322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x39{left:363.360000pt;}
.x8{left:396.959988pt;}
.xe{left:397.920000pt;}
.x31{left:411.360000pt;}
.x16{left:414.560000pt;}
.x22{left:421.920000pt;}
.x3a{left:459.386667pt;}
.x34{left:507.386667pt;}
.x13{left:509.306667pt;}
.x3c{left:555.426667pt;}
.x24{left:560.866667pt;}
.x36{left:603.773333pt;}
.x19{left:604.733333pt;}
.x3d{left:651.773333pt;}
.x1{left:699.493322pt;}
}




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