
    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_650c88c0e50923afb4fa4e1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_41ea7f1df7aa8b4728fa444f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_84f6c3d0b98e218f1ad8df8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7705763b0fa8de8d5bec3535.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41f9848ef96b885036c94995.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_cf4cc07bc9a3b06052f6f51e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_1ea80143dc6f0bc12ba4c7c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108720px;}
.ls0{letter-spacing:5.148720px;}
.ls7{letter-spacing:6.785280px;}
.ls5{letter-spacing:15.840000px;}
.ls2{letter-spacing:28.920000px;}
.lsb{letter-spacing:28.944000px;}
.ls6{letter-spacing:39.905280px;}
.lsa{letter-spacing:40.085280px;}
.ls9{letter-spacing:54.864000px;}
.ls8{letter-spacing:59.345280px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws4{word-spacing:-66.240000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.328000px;}
.ws6{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.769280px;}
._9{margin-left:-3.643200px;}
._7{margin-left:-2.517120px;}
._0{margin-left:-1.457280px;}
._3{width:1.787520px;}
._8{width:3.510720px;}
._2{width:5.166720px;}
._1{width:6.624000px;}
._a{width:8.214720px;}
._e{width:10.002240px;}
._4{width:11.214720px;}
._6{width:12.254400px;}
._15{width:13.584960px;}
._13{width:14.967360px;}
._5{width:17.752320px;}
._d{width:19.143360px;}
._14{width:21.130560px;}
._11{width:22.786560px;}
._12{width:23.926080px;}
._10{width:25.237440px;}
._f{width:26.297280px;}
._b{width:27.953280px;}
._c{width:29.211840px;}
.fc4{color:rgb(15,17,21);}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(36,36,36);}
.fs3{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y102{bottom:3.600000px;}
.y86{bottom:3.780000px;}
.y7b{bottom:12.420000px;}
.yd3{bottom:12.600000px;}
.y125{bottom:22.500000px;}
.y85{bottom:22.680000px;}
.y10a{bottom:22.710000px;}
.y11f{bottom:32.760000px;}
.ye1{bottom:36.540000px;}
.y101{bottom:41.580000px;}
.y84{bottom:41.760000px;}
.y109{bottom:41.790000px;}
.yee{bottom:42.840000px;}
.y11e{bottom:51.840000px;}
.ye0{bottom:56.700000px;}
.y124{bottom:60.480000px;}
.y83{bottom:60.660000px;}
.y108{bottom:60.690000px;}
.yed{bottom:61.920000px;}
.y105{bottom:70.020000px;}
.y11d{bottom:70.740000px;}
.ydf{bottom:76.860000px;}
.yfe{bottom:79.560000px;}
.y107{bottom:79.590000px;}
.y82{bottom:79.740000px;}
.yec{bottom:80.820000px;}
.y123{bottom:81.000000px;}
.y104{bottom:89.100000px;}
.y11c{bottom:89.640000px;}
.yfd{bottom:98.460000px;}
.y81{bottom:98.640000px;}
.y10b{bottom:98.670000px;}
.y115{bottom:98.685000px;}
.y122{bottom:99.900000px;}
.yeb{bottom:100.980000px;}
.y11b{bottom:108.720000px;}
.y38{bottom:111.096000px;}
.yfb{bottom:113.436000px;}
.y14e{bottom:114.876000px;}
.y80{bottom:117.540000px;}
.y114{bottom:117.585000px;}
.y121{bottom:118.980000px;}
.yea{bottom:121.140000px;}
.y118{bottom:127.476000px;}
.y142{bottom:128.016000px;}
.y6d{bottom:128.376000px;}
.y37{bottom:129.276000px;}
.yfa{bottom:132.336000px;}
.y14d{bottom:133.776000px;}
.y36{bottom:134.496000px;}
.y89{bottom:135.000000px;}
.y100{bottom:136.440000px;}
.y7f{bottom:136.620000px;}
.y113{bottom:136.665000px;}
.yde{bottom:137.700000px;}
.y120{bottom:137.880000px;}
.ye9{bottom:140.040000px;}
.y117{bottom:146.556000px;}
.y141{bottom:147.096000px;}
.y6c{bottom:148.536000px;}
.y88{bottom:149.400000px;}
.ya3{bottom:149.436000px;}
.yf9{bottom:151.230000px;}
.y14c{bottom:152.850000px;}
.ya2{bottom:154.650000px;}
.y7e{bottom:155.520000px;}
.y112{bottom:155.565000px;}
.ydd{bottom:156.810000px;}
.ye8{bottom:160.230000px;}
.y35{bottom:164.010000px;}
.yc2{bottom:165.450000px;}
.y140{bottom:165.990000px;}
.y6b{bottom:166.710000px;}
.yf8{bottom:170.310000px;}
.y87{bottom:171.000000px;}
.y14b{bottom:171.750000px;}
.y6a{bottom:171.930000px;}
.yff{bottom:174.420000px;}
.y7d{bottom:174.600000px;}
.ydc{bottom:175.710000px;}
.ye7{bottom:179.130000px;}
.y34{bottom:184.170000px;}
.yc1{bottom:184.350000px;}
.y116{bottom:184.530000px;}
.y13f{bottom:185.070000px;}
.yf7{bottom:189.210000px;}
.y14a{bottom:190.830000px;}
.ydb{bottom:195.870000px;}
.ye6{bottom:199.470000px;}
.y33{bottom:201.450000px;}
.yc0{bottom:203.430000px;}
.y13e{bottom:203.970000px;}
.ya1{bottom:205.230000px;}
.yf6{bottom:208.290000px;}
.y149{bottom:209.730000px;}
.ya0{bottom:210.450000px;}
.yda{bottom:216.030000px;}
.ye5{bottom:218.370000px;}
.y32{bottom:218.550000px;}
.y111{bottom:219.810000px;}
.ybf{bottom:222.330000px;}
.y13d{bottom:222.870000px;}
.y69{bottom:223.410000px;}
.yf5{bottom:227.190000px;}
.y148{bottom:228.630000px;}
.yd9{bottom:236.190000px;}
.y31{bottom:236.730000px;}
.ye4{bottom:237.270000px;}
.y9f{bottom:239.970000px;}
.ybe{bottom:241.410000px;}
.y30{bottom:241.950000px;}
.yf4{bottom:246.090000px;}
.y68{bottom:246.270000px;}
.y147{bottom:247.710000px;}
.y2f{bottom:255.990000px;}
.yd8{bottom:256.350000px;}
.ye3{bottom:257.430000px;}
.ybd{bottom:260.310000px;}
.y13c{bottom:260.850000px;}
.y9e{bottom:261.030000px;}
.y67{bottom:265.170000px;}
.y9d{bottom:266.250000px;}
.y146{bottom:266.610000px;}
.yd7{bottom:276.510000px;}
.ye2{bottom:277.770000px;}
.ybc{bottom:279.210000px;}
.y13b{bottom:279.930000px;}
.y9c{bottom:280.290000px;}
.y66{bottom:284.070000px;}
.y145{bottom:285.690000px;}
.y2d{bottom:296.490000px;}
.yd6{bottom:296.670000px;}
.y13a{bottom:298.830000px;}
.ybb{bottom:299.730000px;}
.y2e{bottom:302.430000px;}
.y65{bottom:303.150000px;}
.y144{bottom:304.590000px;}
.yd5{bottom:315.570000px;}
.y2b{bottom:315.615000px;}
.y139{bottom:317.775000px;}
.yba{bottom:320.295000px;}
.y2c{bottom:321.555000px;}
.y64{bottom:322.095000px;}
.y9b{bottom:322.455000px;}
.y143{bottom:323.535000px;}
.y2a{bottom:334.515000px;}
.y138{bottom:336.855000px;}
.yb9{bottom:339.195000px;}
.yf3{bottom:340.995000px;}
.y63{bottom:342.615000px;}
.y9a{bottom:342.975000px;}
.y29{bottom:353.595000px;}
.y137{bottom:355.755000px;}
.yb8{bottom:358.275000px;}
.yf2{bottom:360.075000px;}
.y62{bottom:361.515000px;}
.y99{bottom:362.055000px;}
.y28{bottom:372.495000px;}
.y136{bottom:374.835000px;}
.yb7{bottom:377.175000px;}
.yf1{bottom:378.975000px;}
.y61{bottom:380.595000px;}
.y98{bottom:380.955000px;}
.y27{bottom:391.395000px;}
.y135{bottom:393.735000px;}
.yb6{bottom:396.255000px;}
.yf0{bottom:398.055000px;}
.y5f{bottom:399.495000px;}
.y97{bottom:400.035000px;}
.y60{bottom:405.435000px;}
.y26{bottom:410.475000px;}
.y134{bottom:412.635000px;}
.yb5{bottom:415.155000px;}
.yef{bottom:416.955000px;}
.y5e{bottom:418.575000px;}
.y96{bottom:418.935000px;}
.y25{bottom:429.375000px;}
.y133{bottom:431.715000px;}
.yd4{bottom:433.695000px;}
.yb4{bottom:434.055000px;}
.y5d{bottom:437.475000px;}
.y95{bottom:437.835000px;}
.y24{bottom:448.455000px;}
.y132{bottom:450.615000px;}
.yb3{bottom:453.135000px;}
.y5c{bottom:456.375000px;}
.y94{bottom:456.915000px;}
.y23{bottom:467.355000px;}
.y110{bottom:468.075000px;}
.y131{bottom:469.695000px;}
.yb2{bottom:472.035000px;}
.y5b{bottom:475.455000px;}
.y93{bottom:475.815000px;}
.y22{bottom:486.435000px;}
.y130{bottom:488.595000px;}
.yb1{bottom:491.115000px;}
.y5a{bottom:494.355000px;}
.y92{bottom:494.895000px;}
.y21{bottom:505.335000px;}
.y12f{bottom:507.495000px;}
.y10f{bottom:509.835000px;}
.yb0{bottom:510.015000px;}
.y59{bottom:513.435000px;}
.y91{bottom:513.795000px;}
.y20{bottom:524.235000px;}
.y12e{bottom:526.575000px;}
.y10e{bottom:528.735000px;}
.yaf{bottom:528.915000px;}
.y58{bottom:532.335000px;}
.y90{bottom:532.695000px;}
.y1f{bottom:543.315000px;}
.y12d{bottom:545.475000px;}
.y10d{bottom:547.815000px;}
.yae{bottom:547.995000px;}
.y15a{bottom:548.355000px;}
.y57{bottom:551.235000px;}
.y8f{bottom:551.775000px;}
.y1e{bottom:562.215000px;}
.y12c{bottom:564.555000px;}
.y10c{bottom:566.715000px;}
.yad{bottom:566.895000px;}
.y159{bottom:567.255000px;}
.y56{bottom:570.315000px;}
.y8e{bottom:570.675000px;}
.y1d{bottom:581.295000px;}
.y106{bottom:583.095000px;}
.y12b{bottom:583.455000px;}
.yac{bottom:585.975000px;}
.y158{bottom:586.335000px;}
.y55{bottom:589.245000px;}
.y8d{bottom:589.785000px;}
.y1c{bottom:601.665000px;}
.y12a{bottom:602.565000px;}
.yab{bottom:604.905000px;}
.y157{bottom:605.265000px;}
.y54{bottom:608.325000px;}
.y129{bottom:621.465000px;}
.y1b{bottom:622.185000px;}
.y8c{bottom:623.445000px;}
.yaa{bottom:623.805000px;}
.y156{bottom:624.165000px;}
.y53{bottom:627.225000px;}
.y128{bottom:637.845000px;}
.y1a{bottom:642.525000px;}
.y8b{bottom:642.705000px;}
.ya9{bottom:642.885000px;}
.y155{bottom:643.245000px;}
.y52{bottom:646.125000px;}
.y8a{bottom:661.605000px;}
.ya8{bottom:661.785000px;}
.y154{bottom:662.145000px;}
.y19{bottom:664.485000px;}
.y51{bottom:665.205000px;}
.y7c{bottom:677.985000px;}
.ya7{bottom:680.865000px;}
.y153{bottom:681.225000px;}
.y50{bottom:684.105000px;}
.y18{bottom:685.185000px;}
.y103{bottom:697.785000px;}
.ya6{bottom:699.765000px;}
.y152{bottom:700.125000px;}
.y4f{bottom:703.185000px;}
.y17{bottom:704.085000px;}
.ya5{bottom:718.665000px;}
.y151{bottom:719.025000px;}
.y4e{bottom:722.085000px;}
.y16{bottom:722.985000px;}
.ya4{bottom:733.965000px;}
.y150{bottom:738.105000px;}
.y4d{bottom:740.985000px;}
.y15{bottom:742.065000px;}
.y14f{bottom:758.445000px;}
.y4c{bottom:760.065000px;}
.y14{bottom:760.965000px;}
.yd2{bottom:767.265000px;}
.y4b{bottom:778.965000px;}
.y13{bottom:780.045000px;}
.y4a{bottom:798.045000px;}
.y12{bottom:798.945000px;}
.y127{bottom:809.385000px;}
.yd1{bottom:810.825000px;}
.y49{bottom:816.945000px;}
.y11{bottom:817.845000px;}
.yd0{bottom:831.525000px;}
.y48{bottom:835.845000px;}
.y10{bottom:836.925000px;}
.ycf{bottom:850.425000px;}
.y47{bottom:854.925000px;}
.yf{bottom:855.825000px;}
.y126{bottom:867.030000px;}
.y7a{bottom:868.650000px;}
.yce{bottom:869.370000px;}
.y46{bottom:873.870000px;}
.ye{bottom:874.950000px;}
.ycd{bottom:888.450000px;}
.y45{bottom:892.950000px;}
.yd{bottom:893.850000px;}
.ycc{bottom:907.350000px;}
.y79{bottom:910.410000px;}
.y44{bottom:911.850000px;}
.yc{bottom:912.750000px;}
.ycb{bottom:926.430000px;}
.y78{bottom:929.310000px;}
.y43{bottom:930.930000px;}
.yb{bottom:931.830000px;}
.yca{bottom:945.330000px;}
.y77{bottom:948.390000px;}
.y42{bottom:949.830000px;}
.ya{bottom:950.730000px;}
.y11a{bottom:962.790000px;}
.yc9{bottom:964.230000px;}
.y76{bottom:967.290000px;}
.y41{bottom:968.730000px;}
.y9{bottom:969.810000px;}
.yc8{bottom:983.310000px;}
.y75{bottom:986.190000px;}
.y40{bottom:987.810000px;}
.y8{bottom:988.710000px;}
.yc7{bottom:1002.210000px;}
.y74{bottom:1005.270000px;}
.y3f{bottom:1006.710000px;}
.y7{bottom:1007.790000px;}
.yc6{bottom:1022.730000px;}
.y73{bottom:1024.170000px;}
.y3e{bottom:1025.790000px;}
.y6{bottom:1026.690000px;}
.yc5{bottom:1041.630000px;}
.y72{bottom:1043.250000px;}
.y3d{bottom:1044.690000px;}
.y5{bottom:1045.590000px;}
.yfc{bottom:1059.810000px;}
.yc4{bottom:1060.530000px;}
.y71{bottom:1062.150000px;}
.y3c{bottom:1063.590000px;}
.y4{bottom:1064.670000px;}
.y70{bottom:1081.050000px;}
.y3b{bottom:1082.670000px;}
.y3{bottom:1098.330000px;}
.y6f{bottom:1100.130000px;}
.y3a{bottom:1101.570000px;}
.y119{bottom:1116.690000px;}
.y6e{bottom:1119.030000px;}
.y2{bottom:1120.470000px;}
.y39{bottom:1120.650000px;}
.yc3{bottom:1137.960000px;}
.y1{bottom:1139.580000px;}
.h6{height:31.201172px;}
.h8{height:36.900000px;}
.hb{height:37.080000px;}
.h11{height:37.116000px;}
.h5{height:37.437188px;}
.h2{height:47.965781px;}
.h7{height:53.573906px;}
.h14{height:56.916000px;}
.ha{height:59.383118px;}
.h4{height:59.383125px;}
.h3{height:62.402344px;}
.h10{height:75.960000px;}
.h13{height:94.860000px;}
.hf{height:113.976000px;}
.h12{height:153.180000px;}
.h15{height:170.820000px;}
.he{height:170.850000px;}
.hd{height:189.720000px;}
.h9{height:189.930000px;}
.hc{height:332.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:130.176000px;}
.wb{width:130.320000px;}
.wd{width:133.560000px;}
.w9{width:135.540000px;}
.w8{width:333.795000px;}
.w7{width:339.510000px;}
.wa{width:542.625000px;}
.we{width:545.145000px;}
.wc{width:547.845000px;}
.w5{width:569.235000px;}
.w4{width:700.125000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x37{left:9.720000px;}
.x39{left:12.060000px;}
.x26{left:14.580000px;}
.x29{left:19.440000px;}
.x38{left:22.140000px;}
.x30{left:23.940000px;}
.x36{left:25.560000px;}
.x3b{left:27.540000px;}
.x31{left:31.500000px;}
.x2a{left:32.580000px;}
.x12{left:34.380000px;}
.x3a{left:37.620000px;}
.x16{left:40.005000px;}
.x28{left:41.574000px;}
.x2b{left:42.834000px;}
.x2d{left:43.914000px;}
.x34{left:45.534000px;}
.x24{left:46.614000px;}
.x15{left:59.265000px;}
.x22{left:61.374000px;}
.x14{left:78.885000px;}
.x21{left:103.170000px;}
.x4{left:108.035987px;}
.x10{left:109.116000px;}
.xa{left:112.895987px;}
.x1f{left:117.354000px;}
.x32{left:119.915987px;}
.xe{left:135.035987px;}
.x23{left:151.949987px;}
.xb{left:161.129987px;}
.x1b{left:174.449973px;}
.x1c{left:182.729987px;}
.x35{left:184.545000px;}
.x2f{left:185.985000px;}
.x1e{left:203.609987px;}
.x2c{left:216.929987px;}
.xf{left:235.649987px;}
.x2{left:238.889987px;}
.x2e{left:240.150000px;}
.x7{left:243.029973px;}
.x25{left:245.370000px;}
.x8{left:248.249987px;}
.x3{left:255.449987px;}
.x1d{left:261.209987px;}
.x9{left:324.074987px;}
.x11{left:325.659000px;}
.x33{left:381.134987px;}
.xc{left:434.774973px;}
.xd{left:439.994987px;}
.x1{left:446.474987px;}
.x20{left:450.435000px;}
.x13{left:679.065000px;}
.x17{left:682.529973px;}
.x18{left:690.809987px;}
.x5{left:693.689973px;}
.x6{left:698.909987px;}
.x19{left:776.849973px;}
.x1a{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096640pt;}
.ls0{letter-spacing:4.576640pt;}
.ls7{letter-spacing:6.031360pt;}
.ls5{letter-spacing:14.080000pt;}
.ls2{letter-spacing:25.706667pt;}
.lsb{letter-spacing:25.728000pt;}
.ls6{letter-spacing:35.471360pt;}
.lsa{letter-spacing:35.631360pt;}
.ls9{letter-spacing:48.768000pt;}
.ls8{letter-spacing:52.751360pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-58.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.736000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.239360pt;}
._9{margin-left:-3.238400pt;}
._7{margin-left:-2.237440pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.588907pt;}
._8{width:3.120640pt;}
._2{width:4.592640pt;}
._1{width:5.888000pt;}
._a{width:7.301973pt;}
._e{width:8.890880pt;}
._4{width:9.968640pt;}
._6{width:10.892800pt;}
._15{width:12.075520pt;}
._13{width:13.304320pt;}
._5{width:15.779840pt;}
._d{width:17.016320pt;}
._14{width:18.782720pt;}
._11{width:20.254720pt;}
._12{width:21.267627pt;}
._10{width:22.433280pt;}
._f{width:23.375360pt;}
._b{width:24.847360pt;}
._c{width:25.966080pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:3.200000pt;}
.y86{bottom:3.360000pt;}
.y7b{bottom:11.040000pt;}
.yd3{bottom:11.200000pt;}
.y125{bottom:20.000000pt;}
.y85{bottom:20.160000pt;}
.y10a{bottom:20.186667pt;}
.y11f{bottom:29.120000pt;}
.ye1{bottom:32.480000pt;}
.y101{bottom:36.960000pt;}
.y84{bottom:37.120000pt;}
.y109{bottom:37.146667pt;}
.yee{bottom:38.080000pt;}
.y11e{bottom:46.080000pt;}
.ye0{bottom:50.400000pt;}
.y124{bottom:53.760000pt;}
.y83{bottom:53.920000pt;}
.y108{bottom:53.946667pt;}
.yed{bottom:55.040000pt;}
.y105{bottom:62.240000pt;}
.y11d{bottom:62.880000pt;}
.ydf{bottom:68.320000pt;}
.yfe{bottom:70.720000pt;}
.y107{bottom:70.746667pt;}
.y82{bottom:70.880000pt;}
.yec{bottom:71.840000pt;}
.y123{bottom:72.000000pt;}
.y104{bottom:79.200000pt;}
.y11c{bottom:79.680000pt;}
.yfd{bottom:87.520000pt;}
.y81{bottom:87.680000pt;}
.y10b{bottom:87.706667pt;}
.y115{bottom:87.720000pt;}
.y122{bottom:88.800000pt;}
.yeb{bottom:89.760000pt;}
.y11b{bottom:96.640000pt;}
.y38{bottom:98.752000pt;}
.yfb{bottom:100.832000pt;}
.y14e{bottom:102.112000pt;}
.y80{bottom:104.480000pt;}
.y114{bottom:104.520000pt;}
.y121{bottom:105.760000pt;}
.yea{bottom:107.680000pt;}
.y118{bottom:113.312000pt;}
.y142{bottom:113.792000pt;}
.y6d{bottom:114.112000pt;}
.y37{bottom:114.912000pt;}
.yfa{bottom:117.632000pt;}
.y14d{bottom:118.912000pt;}
.y36{bottom:119.552000pt;}
.y89{bottom:120.000000pt;}
.y100{bottom:121.280000pt;}
.y7f{bottom:121.440000pt;}
.y113{bottom:121.480000pt;}
.yde{bottom:122.400000pt;}
.y120{bottom:122.560000pt;}
.ye9{bottom:124.480000pt;}
.y117{bottom:130.272000pt;}
.y141{bottom:130.752000pt;}
.y6c{bottom:132.032000pt;}
.y88{bottom:132.800000pt;}
.ya3{bottom:132.832000pt;}
.yf9{bottom:134.426667pt;}
.y14c{bottom:135.866667pt;}
.ya2{bottom:137.466667pt;}
.y7e{bottom:138.240000pt;}
.y112{bottom:138.280000pt;}
.ydd{bottom:139.386667pt;}
.ye8{bottom:142.426667pt;}
.y35{bottom:145.786667pt;}
.yc2{bottom:147.066667pt;}
.y140{bottom:147.546667pt;}
.y6b{bottom:148.186667pt;}
.yf8{bottom:151.386667pt;}
.y87{bottom:152.000000pt;}
.y14b{bottom:152.666667pt;}
.y6a{bottom:152.826667pt;}
.yff{bottom:155.040000pt;}
.y7d{bottom:155.200000pt;}
.ydc{bottom:156.186667pt;}
.ye7{bottom:159.226667pt;}
.y34{bottom:163.706667pt;}
.yc1{bottom:163.866667pt;}
.y116{bottom:164.026667pt;}
.y13f{bottom:164.506667pt;}
.yf7{bottom:168.186667pt;}
.y14a{bottom:169.626667pt;}
.ydb{bottom:174.106667pt;}
.ye6{bottom:177.306667pt;}
.y33{bottom:179.066667pt;}
.yc0{bottom:180.826667pt;}
.y13e{bottom:181.306667pt;}
.ya1{bottom:182.426667pt;}
.yf6{bottom:185.146667pt;}
.y149{bottom:186.426667pt;}
.ya0{bottom:187.066667pt;}
.yda{bottom:192.026667pt;}
.ye5{bottom:194.106667pt;}
.y32{bottom:194.266667pt;}
.y111{bottom:195.386667pt;}
.ybf{bottom:197.626667pt;}
.y13d{bottom:198.106667pt;}
.y69{bottom:198.586667pt;}
.yf5{bottom:201.946667pt;}
.y148{bottom:203.226667pt;}
.yd9{bottom:209.946667pt;}
.y31{bottom:210.426667pt;}
.ye4{bottom:210.906667pt;}
.y9f{bottom:213.306667pt;}
.ybe{bottom:214.586667pt;}
.y30{bottom:215.066667pt;}
.yf4{bottom:218.746667pt;}
.y68{bottom:218.906667pt;}
.y147{bottom:220.186667pt;}
.y2f{bottom:227.546667pt;}
.yd8{bottom:227.866667pt;}
.ye3{bottom:228.826667pt;}
.ybd{bottom:231.386667pt;}
.y13c{bottom:231.866667pt;}
.y9e{bottom:232.026667pt;}
.y67{bottom:235.706667pt;}
.y9d{bottom:236.666667pt;}
.y146{bottom:236.986667pt;}
.yd7{bottom:245.786667pt;}
.ye2{bottom:246.906667pt;}
.ybc{bottom:248.186667pt;}
.y13b{bottom:248.826667pt;}
.y9c{bottom:249.146667pt;}
.y66{bottom:252.506667pt;}
.y145{bottom:253.946667pt;}
.y2d{bottom:263.546667pt;}
.yd6{bottom:263.706667pt;}
.y13a{bottom:265.626667pt;}
.ybb{bottom:266.426667pt;}
.y2e{bottom:268.826667pt;}
.y65{bottom:269.466667pt;}
.y144{bottom:270.746667pt;}
.yd5{bottom:280.506667pt;}
.y2b{bottom:280.546667pt;}
.y139{bottom:282.466667pt;}
.yba{bottom:284.706667pt;}
.y2c{bottom:285.826667pt;}
.y64{bottom:286.306667pt;}
.y9b{bottom:286.626667pt;}
.y143{bottom:287.586667pt;}
.y2a{bottom:297.346667pt;}
.y138{bottom:299.426667pt;}
.yb9{bottom:301.506667pt;}
.yf3{bottom:303.106667pt;}
.y63{bottom:304.546667pt;}
.y9a{bottom:304.866667pt;}
.y29{bottom:314.306667pt;}
.y137{bottom:316.226667pt;}
.yb8{bottom:318.466667pt;}
.yf2{bottom:320.066667pt;}
.y62{bottom:321.346667pt;}
.y99{bottom:321.826667pt;}
.y28{bottom:331.106667pt;}
.y136{bottom:333.186667pt;}
.yb7{bottom:335.266667pt;}
.yf1{bottom:336.866667pt;}
.y61{bottom:338.306667pt;}
.y98{bottom:338.626667pt;}
.y27{bottom:347.906667pt;}
.y135{bottom:349.986667pt;}
.yb6{bottom:352.226667pt;}
.yf0{bottom:353.826667pt;}
.y5f{bottom:355.106667pt;}
.y97{bottom:355.586667pt;}
.y60{bottom:360.386667pt;}
.y26{bottom:364.866667pt;}
.y134{bottom:366.786667pt;}
.yb5{bottom:369.026667pt;}
.yef{bottom:370.626667pt;}
.y5e{bottom:372.066667pt;}
.y96{bottom:372.386667pt;}
.y25{bottom:381.666667pt;}
.y133{bottom:383.746667pt;}
.yd4{bottom:385.506667pt;}
.yb4{bottom:385.826667pt;}
.y5d{bottom:388.866667pt;}
.y95{bottom:389.186667pt;}
.y24{bottom:398.626667pt;}
.y132{bottom:400.546667pt;}
.yb3{bottom:402.786667pt;}
.y5c{bottom:405.666667pt;}
.y94{bottom:406.146667pt;}
.y23{bottom:415.426667pt;}
.y110{bottom:416.066667pt;}
.y131{bottom:417.506667pt;}
.yb2{bottom:419.586667pt;}
.y5b{bottom:422.626667pt;}
.y93{bottom:422.946667pt;}
.y22{bottom:432.386667pt;}
.y130{bottom:434.306667pt;}
.yb1{bottom:436.546667pt;}
.y5a{bottom:439.426667pt;}
.y92{bottom:439.906667pt;}
.y21{bottom:449.186667pt;}
.y12f{bottom:451.106667pt;}
.y10f{bottom:453.186667pt;}
.yb0{bottom:453.346667pt;}
.y59{bottom:456.386667pt;}
.y91{bottom:456.706667pt;}
.y20{bottom:465.986667pt;}
.y12e{bottom:468.066667pt;}
.y10e{bottom:469.986667pt;}
.yaf{bottom:470.146667pt;}
.y58{bottom:473.186667pt;}
.y90{bottom:473.506667pt;}
.y1f{bottom:482.946667pt;}
.y12d{bottom:484.866667pt;}
.y10d{bottom:486.946667pt;}
.yae{bottom:487.106667pt;}
.y15a{bottom:487.426667pt;}
.y57{bottom:489.986667pt;}
.y8f{bottom:490.466667pt;}
.y1e{bottom:499.746667pt;}
.y12c{bottom:501.826667pt;}
.y10c{bottom:503.746667pt;}
.yad{bottom:503.906667pt;}
.y159{bottom:504.226667pt;}
.y56{bottom:506.946667pt;}
.y8e{bottom:507.266667pt;}
.y1d{bottom:516.706667pt;}
.y106{bottom:518.306667pt;}
.y12b{bottom:518.626667pt;}
.yac{bottom:520.866667pt;}
.y158{bottom:521.186667pt;}
.y55{bottom:523.773333pt;}
.y8d{bottom:524.253333pt;}
.y1c{bottom:534.813333pt;}
.y12a{bottom:535.613333pt;}
.yab{bottom:537.693333pt;}
.y157{bottom:538.013333pt;}
.y54{bottom:540.733333pt;}
.y129{bottom:552.413333pt;}
.y1b{bottom:553.053333pt;}
.y8c{bottom:554.173333pt;}
.yaa{bottom:554.493333pt;}
.y156{bottom:554.813333pt;}
.y53{bottom:557.533333pt;}
.y128{bottom:566.973333pt;}
.y1a{bottom:571.133333pt;}
.y8b{bottom:571.293333pt;}
.ya9{bottom:571.453333pt;}
.y155{bottom:571.773333pt;}
.y52{bottom:574.333333pt;}
.y8a{bottom:588.093333pt;}
.ya8{bottom:588.253333pt;}
.y154{bottom:588.573333pt;}
.y19{bottom:590.653333pt;}
.y51{bottom:591.293333pt;}
.y7c{bottom:602.653333pt;}
.ya7{bottom:605.213333pt;}
.y153{bottom:605.533333pt;}
.y50{bottom:608.093333pt;}
.y18{bottom:609.053333pt;}
.y103{bottom:620.253333pt;}
.ya6{bottom:622.013333pt;}
.y152{bottom:622.333333pt;}
.y4f{bottom:625.053333pt;}
.y17{bottom:625.853333pt;}
.ya5{bottom:638.813333pt;}
.y151{bottom:639.133333pt;}
.y4e{bottom:641.853333pt;}
.y16{bottom:642.653333pt;}
.ya4{bottom:652.413333pt;}
.y150{bottom:656.093333pt;}
.y4d{bottom:658.653333pt;}
.y15{bottom:659.613333pt;}
.y14f{bottom:674.173333pt;}
.y4c{bottom:675.613333pt;}
.y14{bottom:676.413333pt;}
.yd2{bottom:682.013333pt;}
.y4b{bottom:692.413333pt;}
.y13{bottom:693.373333pt;}
.y4a{bottom:709.373333pt;}
.y12{bottom:710.173333pt;}
.y127{bottom:719.453333pt;}
.yd1{bottom:720.733333pt;}
.y49{bottom:726.173333pt;}
.y11{bottom:726.973333pt;}
.yd0{bottom:739.133333pt;}
.y48{bottom:742.973333pt;}
.y10{bottom:743.933333pt;}
.ycf{bottom:755.933333pt;}
.y47{bottom:759.933333pt;}
.yf{bottom:760.733333pt;}
.y126{bottom:770.693333pt;}
.y7a{bottom:772.133333pt;}
.yce{bottom:772.773333pt;}
.y46{bottom:776.773333pt;}
.ye{bottom:777.733333pt;}
.ycd{bottom:789.733333pt;}
.y45{bottom:793.733333pt;}
.yd{bottom:794.533333pt;}
.ycc{bottom:806.533333pt;}
.y79{bottom:809.253333pt;}
.y44{bottom:810.533333pt;}
.yc{bottom:811.333333pt;}
.ycb{bottom:823.493333pt;}
.y78{bottom:826.053333pt;}
.y43{bottom:827.493333pt;}
.yb{bottom:828.293333pt;}
.yca{bottom:840.293333pt;}
.y77{bottom:843.013333pt;}
.y42{bottom:844.293333pt;}
.ya{bottom:845.093333pt;}
.y11a{bottom:855.813333pt;}
.yc9{bottom:857.093333pt;}
.y76{bottom:859.813333pt;}
.y41{bottom:861.093333pt;}
.y9{bottom:862.053333pt;}
.yc8{bottom:874.053333pt;}
.y75{bottom:876.613333pt;}
.y40{bottom:878.053333pt;}
.y8{bottom:878.853333pt;}
.yc7{bottom:890.853333pt;}
.y74{bottom:893.573333pt;}
.y3f{bottom:894.853333pt;}
.y7{bottom:895.813333pt;}
.yc6{bottom:909.093333pt;}
.y73{bottom:910.373333pt;}
.y3e{bottom:911.813333pt;}
.y6{bottom:912.613333pt;}
.yc5{bottom:925.893333pt;}
.y72{bottom:927.333333pt;}
.y3d{bottom:928.613333pt;}
.y5{bottom:929.413333pt;}
.yfc{bottom:942.053333pt;}
.yc4{bottom:942.693333pt;}
.y71{bottom:944.133333pt;}
.y3c{bottom:945.413333pt;}
.y4{bottom:946.373333pt;}
.y70{bottom:960.933333pt;}
.y3b{bottom:962.373333pt;}
.y3{bottom:976.293333pt;}
.y6f{bottom:977.893333pt;}
.y3a{bottom:979.173333pt;}
.y119{bottom:992.613333pt;}
.y6e{bottom:994.693333pt;}
.y2{bottom:995.973333pt;}
.y39{bottom:996.133333pt;}
.yc3{bottom:1011.520000pt;}
.y1{bottom:1012.960000pt;}
.h6{height:27.734375pt;}
.h8{height:32.800000pt;}
.hb{height:32.960000pt;}
.h11{height:32.992000pt;}
.h5{height:33.277500pt;}
.h2{height:42.636250pt;}
.h7{height:47.621250pt;}
.h14{height:50.592000pt;}
.ha{height:52.784994pt;}
.h4{height:52.785000pt;}
.h3{height:55.468750pt;}
.h10{height:67.520000pt;}
.h13{height:84.320000pt;}
.hf{height:101.312000pt;}
.h12{height:136.160000pt;}
.h15{height:151.840000pt;}
.he{height:151.866667pt;}
.hd{height:168.640000pt;}
.h9{height:168.826667pt;}
.hc{height:295.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:115.712000pt;}
.wb{width:115.840000pt;}
.wd{width:118.720000pt;}
.w9{width:120.480000pt;}
.w8{width:296.706667pt;}
.w7{width:301.786667pt;}
.wa{width:482.333333pt;}
.we{width:484.573333pt;}
.wc{width:486.973333pt;}
.w5{width:505.986667pt;}
.w4{width:622.333333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x37{left:8.640000pt;}
.x39{left:10.720000pt;}
.x26{left:12.960000pt;}
.x29{left:17.280000pt;}
.x38{left:19.680000pt;}
.x30{left:21.280000pt;}
.x36{left:22.720000pt;}
.x3b{left:24.480000pt;}
.x31{left:28.000000pt;}
.x2a{left:28.960000pt;}
.x12{left:30.560000pt;}
.x3a{left:33.440000pt;}
.x16{left:35.560000pt;}
.x28{left:36.954667pt;}
.x2b{left:38.074667pt;}
.x2d{left:39.034667pt;}
.x34{left:40.474667pt;}
.x24{left:41.434667pt;}
.x15{left:52.680000pt;}
.x22{left:54.554667pt;}
.x14{left:70.120000pt;}
.x21{left:91.706667pt;}
.x4{left:96.031988pt;}
.x10{left:96.992000pt;}
.xa{left:100.351988pt;}
.x1f{left:104.314667pt;}
.x32{left:106.591988pt;}
.xe{left:120.031988pt;}
.x23{left:135.066655pt;}
.xb{left:143.226655pt;}
.x1b{left:155.066643pt;}
.x1c{left:162.426655pt;}
.x35{left:164.040000pt;}
.x2f{left:165.320000pt;}
.x1e{left:180.986655pt;}
.x2c{left:192.826655pt;}
.xf{left:209.466655pt;}
.x2{left:212.346655pt;}
.x2e{left:213.466667pt;}
.x7{left:216.026643pt;}
.x25{left:218.106667pt;}
.x8{left:220.666655pt;}
.x3{left:227.066655pt;}
.x1d{left:232.186655pt;}
.x9{left:288.066655pt;}
.x11{left:289.474667pt;}
.x33{left:338.786655pt;}
.xc{left:386.466643pt;}
.xd{left:391.106655pt;}
.x1{left:396.866655pt;}
.x20{left:400.386667pt;}
.x13{left:603.613333pt;}
.x17{left:606.693310pt;}
.x18{left:614.053322pt;}
.x5{left:616.613310pt;}
.x6{left:621.253322pt;}
.x19{left:690.533310pt;}
.x1a{left:697.893322pt;}
}




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