
    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_8a6432e7ca8abd792f72822b.woff')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_f9fc7b5505a2a3f570b90fcb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6f87b494b15ee4aeb6bb34ee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_2119b419c670b48a016b90bf.woff')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_312dc85fbd3e66077b718a50.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')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_ac311679ae8e260e61d955a5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v1{vertical-align:24.480000px;}
.lsa{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.180000px;}
.lse{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls1{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.954000px;}
.lsd{letter-spacing:76.798560px;}
.lsb{letter-spacing:79.678560px;}
.ls8{letter-spacing:81.250560px;}
.ls7{letter-spacing:82.690560px;}
.ls10{letter-spacing:97.212000px;}
.lsf{letter-spacing:126.156000px;}
.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;}
}
.ws8{word-spacing:-16.074000px;}
.ws7{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws6{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.182000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-5.325600px;}
._11{margin-left:-3.927840px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.460320px;}
._8{width:4.536000px;}
._d{width:5.928480px;}
._13{width:7.071840px;}
._12{width:8.112960px;}
._14{width:9.434880px;}
._b{width:10.825920px;}
._c{width:12.337920px;}
._10{width:13.789440px;}
._9{width:16.934400px;}
._a{width:18.325440px;}
._e{width:20.148480px;}
._f{width:21.228480px;}
._17{width:23.405760px;}
._16{width:25.099200px;}
._15{width:52.560000px;}
._1a{width:97.387680px;}
._19{width:126.135840px;}
._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);}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y36{bottom:3.240000px;}
.ydb{bottom:4.680000px;}
.yd1{bottom:16.560000px;}
.y10c{bottom:16.590000px;}
.y35{bottom:20.520000px;}
.yf9{bottom:26.280000px;}
.yda{bottom:28.440000px;}
.ye0{bottom:28.800000px;}
.y10f{bottom:31.320000px;}
.y10e{bottom:34.920000px;}
.yfc{bottom:35.280000px;}
.y108{bottom:35.310000px;}
.y34{bottom:37.845000px;}
.ye{bottom:43.560000px;}
.yf8{bottom:45.000000px;}
.y112{bottom:50.040000px;}
.yd9{bottom:52.560000px;}
.ye4{bottom:52.590000px;}
.ydf{bottom:52.920000px;}
.y111{bottom:54.000000px;}
.y107{bottom:54.030000px;}
.y33{bottom:55.125000px;}
.y115{bottom:55.440000px;}
.y104{bottom:57.600000px;}
.yfa{bottom:59.760000px;}
.yf7{bottom:63.720000px;}
.yc{bottom:68.400000px;}
.y109{bottom:68.790000px;}
.y116{bottom:70.200000px;}
.y32{bottom:72.405000px;}
.y106{bottom:72.750000px;}
.y114{bottom:74.160000px;}
.y103{bottom:74.925000px;}
.yea{bottom:76.680000px;}
.yd8{bottom:76.710000px;}
.yde{bottom:76.725000px;}
.y10d{bottom:87.510000px;}
.y31{bottom:89.685000px;}
.y10b{bottom:91.110000px;}
.y102{bottom:92.205000px;}
.ya{bottom:94.716000px;}
.yd7{bottom:100.470000px;}
.ye9{bottom:100.800000px;}
.ye3{bottom:100.830000px;}
.ydd{bottom:100.845000px;}
.ye5{bottom:105.870000px;}
.ye1{bottom:106.245000px;}
.y101{bottom:109.485000px;}
.y30{bottom:115.605000px;}
.yd6{bottom:124.590000px;}
.ye8{bottom:124.950000px;}
.y100{bottom:126.765000px;}
.y6c{bottom:130.356000px;}
.y2f{bottom:132.885000px;}
.y37{bottom:135.756000px;}
.y14c{bottom:141.876000px;}
.y9d{bottom:142.236000px;}
.y6b{bottom:147.636000px;}
.yd5{bottom:148.710000px;}
.yf2{bottom:149.796000px;}
.y13c{bottom:150.150000px;}
.y2e{bottom:150.165000px;}
.yff{bottom:150.525000px;}
.y6a{bottom:153.030000px;}
.ycf{bottom:156.630000px;}
.y1b1{bottom:159.150000px;}
.y18{bottom:160.590000px;}
.y14b{bottom:161.670000px;}
.y9c{bottom:162.030000px;}
.y11e{bottom:163.470000px;}
.y17c{bottom:167.070000px;}
.y2d{bottom:167.475000px;}
.yf1{bottom:169.590000px;}
.y13b{bottom:169.950000px;}
.yd4{bottom:172.470000px;}
.ye7{bottom:172.830000px;}
.yfe{bottom:172.845000px;}
.y69{bottom:173.910000px;}
.y1b0{bottom:176.430000px;}
.yed{bottom:177.870000px;}
.yeb{bottom:178.230000px;}
.y14a{bottom:181.470000px;}
.y9b{bottom:181.830000px;}
.y11d{bottom:183.630000px;}
.y17b{bottom:184.350000px;}
.y2c{bottom:184.755000px;}
.yf0{bottom:189.390000px;}
.y13a{bottom:189.750000px;}
.yce{bottom:191.190000px;}
.y1af{bottom:193.710000px;}
.ycd{bottom:196.590000px;}
.yd3{bottom:196.635000px;}
.y9a{bottom:201.675000px;}
.y2b{bottom:202.035000px;}
.y11c{bottom:203.475000px;}
.y68{bottom:205.275000px;}
.yef{bottom:209.595000px;}
.y1ae{bottom:211.035000px;}
.ycc{bottom:217.515000px;}
.y17a{bottom:218.595000px;}
.y2a{bottom:219.315000px;}
.y99{bottom:221.475000px;}
.y11b{bottom:223.275000px;}
.y67{bottom:225.075000px;}
.y1ad{bottom:228.315000px;}
.y139{bottom:229.755000px;}
.yee{bottom:231.195000px;}
.ycb{bottom:234.795000px;}
.y179{bottom:235.875000px;}
.y29{bottom:236.595000px;}
.y98{bottom:241.275000px;}
.y66{bottom:244.875000px;}
.y1ac{bottom:245.235000px;}
.y138{bottom:249.555000px;}
.yca{bottom:252.075000px;}
.y178{bottom:253.155000px;}
.y28{bottom:253.875000px;}
.yc9{bottom:257.475000px;}
.y97{bottom:261.075000px;}
.y1ab{bottom:262.515000px;}
.yec{bottom:263.955000px;}
.y65{bottom:264.675000px;}
.y137{bottom:269.355000px;}
.y177{bottom:270.435000px;}
.y27{bottom:271.155000px;}
.yc8{bottom:278.355000px;}
.y1aa{bottom:279.795000px;}
.y96{bottom:280.875000px;}
.y11a{bottom:282.675000px;}
.y64{bottom:284.835000px;}
.y176{bottom:287.715000px;}
.y136{bottom:289.155000px;}
.y1a9{bottom:297.075000px;}
.y26{bottom:297.120000px;}
.y95{bottom:300.675000px;}
.y119{bottom:302.475000px;}
.y63{bottom:304.635000px;}
.y175{bottom:304.995000px;}
.yc7{bottom:307.155000px;}
.y135{bottom:308.955000px;}
.y1a8{bottom:314.355000px;}
.y149{bottom:320.475000px;}
.y94{bottom:320.835000px;}
.y118{bottom:322.275000px;}
.y25{bottom:323.400000px;}
.y62{bottom:324.465000px;}
.yc6{bottom:326.985000px;}
.y134{bottom:328.785000px;}
.y1a7{bottom:331.665000px;}
.y174{bottom:339.585000px;}
.y93{bottom:340.665000px;}
.y24{bottom:340.680000px;}
.y117{bottom:341.025000px;}
.y61{bottom:344.265000px;}
.yc5{bottom:346.785000px;}
.y133{bottom:348.585000px;}
.y1a6{bottom:348.945000px;}
.y148{bottom:355.425000px;}
.y173{bottom:356.865000px;}
.y23{bottom:357.960000px;}
.y92{bottom:360.465000px;}
.y113{bottom:361.545000px;}
.y60{bottom:364.065000px;}
.y1a5{bottom:366.225000px;}
.yc4{bottom:366.945000px;}
.y132{bottom:370.545000px;}
.y172{bottom:374.145000px;}
.y22{bottom:375.240000px;}
.y91{bottom:380.265000px;}
.y1a4{bottom:383.505000px;}
.y5f{bottom:383.865000px;}
.y147{bottom:384.225000px;}
.yc3{bottom:386.745000px;}
.y171{bottom:391.425000px;}
.y21{bottom:392.520000px;}
.y90{bottom:400.065000px;}
.y1a3{bottom:400.785000px;}
.y5e{bottom:403.665000px;}
.y146{bottom:404.025000px;}
.yc2{bottom:406.545000px;}
.y131{bottom:408.345000px;}
.y170{bottom:408.705000px;}
.y1a2{bottom:418.065000px;}
.y20{bottom:418.830000px;}
.y8f{bottom:419.865000px;}
.y5d{bottom:423.465000px;}
.y145{bottom:423.825000px;}
.y16f{bottom:425.625000px;}
.yc1{bottom:426.345000px;}
.y130{bottom:428.145000px;}
.y1a1{bottom:434.985000px;}
.y1f{bottom:436.110000px;}
.y8e{bottom:439.665000px;}
.y16e{bottom:442.905000px;}
.y5c{bottom:443.265000px;}
.y144{bottom:443.625000px;}
.yc0{bottom:446.145000px;}
.y12f{bottom:447.945000px;}
.y110{bottom:450.510000px;}
.y1a0{bottom:452.310000px;}
.y1e{bottom:453.390000px;}
.ye6{bottom:456.630000px;}
.y8d{bottom:459.510000px;}
.y16d{bottom:460.230000px;}
.y5b{bottom:463.110000px;}
.y143{bottom:463.830000px;}
.ybf{bottom:465.990000px;}
.y12e{bottom:467.790000px;}
.y19f{bottom:469.590000px;}
.y1d{bottom:470.670000px;}
.y16c{bottom:477.510000px;}
.y8c{bottom:479.310000px;}
.y5a{bottom:483.270000px;}
.ybe{bottom:485.790000px;}
.y19e{bottom:486.870000px;}
.y12d{bottom:487.590000px;}
.y1c{bottom:487.950000px;}
.y16b{bottom:494.790000px;}
.y142{bottom:498.390000px;}
.y8b{bottom:499.110000px;}
.y19d{bottom:504.150000px;}
.y59{bottom:504.870000px;}
.y1b{bottom:505.230000px;}
.ybd{bottom:505.590000px;}
.y12c{bottom:507.390000px;}
.y16a{bottom:512.070000px;}
.y8a{bottom:519.270000px;}
.y19c{bottom:521.430000px;}
.y1a{bottom:522.510000px;}
.ybc{bottom:525.390000px;}
.y12b{bottom:527.190000px;}
.y169{bottom:529.350000px;}
.y58{bottom:531.150000px;}
.y19b{bottom:538.710000px;}
.y89{bottom:539.070000px;}
.y19{bottom:539.430000px;}
.ybb{bottom:545.190000px;}
.y168{bottom:546.630000px;}
.y12a{bottom:546.990000px;}
.y141{bottom:547.350000px;}
.y57{bottom:550.950000px;}
.y19a{bottom:555.990000px;}
.y88{bottom:558.870000px;}
.y167{bottom:563.910000px;}
.yba{bottom:565.350000px;}
.y129{bottom:566.790000px;}
.y140{bottom:567.150000px;}
.y10a{bottom:568.950000px;}
.y56{bottom:570.750000px;}
.y199{bottom:573.270000px;}
.y87{bottom:578.700000px;}
.y166{bottom:581.220000px;}
.yb9{bottom:585.180000px;}
.y128{bottom:586.980000px;}
.y55{bottom:590.580000px;}
.y86{bottom:598.500000px;}
.yb8{bottom:604.980000px;}
.y127{bottom:606.780000px;}
.y198{bottom:607.860000px;}
.y54{bottom:610.380000px;}
.y165{bottom:615.420000px;}
.y85{bottom:618.300000px;}
.yb7{bottom:624.780000px;}
.y197{bottom:625.140000px;}
.y126{bottom:626.580000px;}
.y53{bottom:630.180000px;}
.y164{bottom:632.700000px;}
.y84{bottom:638.100000px;}
.y196{bottom:642.060000px;}
.yb6{bottom:644.580000px;}
.y125{bottom:646.380000px;}
.ye2{bottom:649.620000px;}
.y163{bottom:649.980000px;}
.y52{bottom:650.340000px;}
.y83{bottom:655.380000px;}
.y195{bottom:659.340000px;}
.yb5{bottom:664.380000px;}
.y124{bottom:666.180000px;}
.y162{bottom:667.260000px;}
.y105{bottom:674.820000px;}
.y194{bottom:676.620000px;}
.y82{bottom:677.340000px;}
.yb4{bottom:684.180000px;}
.y161{bottom:684.540000px;}
.y51{bottom:684.900000px;}
.y123{bottom:685.980000px;}
.y193{bottom:693.900000px;}
.yb3{bottom:704.010000px;}
.y13f{bottom:705.810000px;}
.y81{bottom:706.170000px;}
.y122{bottom:707.610000px;}
.y192{bottom:711.210000px;}
.y160{bottom:713.370000px;}
.y50{bottom:713.730000px;}
.yb2{bottom:723.810000px;}
.y13e{bottom:725.610000px;}
.y80{bottom:725.970000px;}
.y191{bottom:728.490000px;}
.y17{bottom:728.850000px;}
.y15f{bottom:730.650000px;}
.y4f{bottom:733.890000px;}
.yb1{bottom:743.610000px;}
.y16{bottom:745.770000px;}
.y15e{bottom:750.450000px;}
.y4e{bottom:753.690000px;}
.yfd{bottom:762.330000px;}
.y15{bottom:762.690000px;}
.y190{bottom:763.050000px;}
.yb0{bottom:763.770000px;}
.y7f{bottom:765.570000px;}
.ydc{bottom:770.250000px;}
.y4d{bottom:773.490000px;}
.y18f{bottom:780.330000px;}
.yaf{bottom:783.570000px;}
.y7e{bottom:785.370000px;}
.y14{bottom:786.090000px;}
.y15d{bottom:790.050000px;}
.y4c{bottom:793.290000px;}
.y18e{bottom:797.610000px;}
.yae{bottom:803.370000px;}
.y1b2{bottom:803.730000px;}
.y13{bottom:805.170000px;}
.y15c{bottom:809.850000px;}
.y4b{bottom:813.090000px;}
.y18d{bottom:814.890000px;}
.yad{bottom:823.170000px;}
.y7d{bottom:824.970000px;}
.y15b{bottom:830.055000px;}
.y18c{bottom:831.855000px;}
.y12{bottom:832.575000px;}
.y4a{bottom:832.935000px;}
.yac{bottom:843.015000px;}
.y7c{bottom:844.815000px;}
.y18b{bottom:849.135000px;}
.y15a{bottom:849.855000px;}
.y49{bottom:852.735000px;}
.y11{bottom:860.295000px;}
.yab{bottom:862.815000px;}
.y7b{bottom:864.615000px;}
.y18a{bottom:866.415000px;}
.y159{bottom:869.655000px;}
.y48{bottom:872.535000px;}
.yaa{bottom:882.615000px;}
.y189{bottom:883.695000px;}
.y7a{bottom:884.415000px;}
.y10{bottom:888.015000px;}
.y158{bottom:889.455000px;}
.yd2{bottom:891.255000px;}
.y47{bottom:892.335000px;}
.y188{bottom:900.975000px;}
.ya9{bottom:902.415000px;}
.yfb{bottom:903.855000px;}
.y121{bottom:904.215000px;}
.y79{bottom:904.575000px;}
.y157{bottom:909.255000px;}
.y46{bottom:912.135000px;}
.yf{bottom:915.375000px;}
.y187{bottom:918.255000px;}
.ya8{bottom:922.215000px;}
.y120{bottom:924.015000px;}
.y78{bottom:924.375000px;}
.y156{bottom:929.055000px;}
.y45{bottom:932.295000px;}
.y186{bottom:935.535000px;}
.y9{bottom:941.295000px;}
.ya7{bottom:942.015000px;}
.y77{bottom:944.175000px;}
.y155{bottom:948.855000px;}
.y44{bottom:952.095000px;}
.y185{bottom:952.845000px;}
.yf6{bottom:953.925000px;}
.y8{bottom:958.605000px;}
.ya6{bottom:962.205000px;}
.y76{bottom:964.005000px;}
.y13d{bottom:965.805000px;}
.y154{bottom:968.685000px;}
.y184{bottom:970.125000px;}
.y43{bottom:971.925000px;}
.y7{bottom:972.645000px;}
.ya5{bottom:982.005000px;}
.y75{bottom:983.805000px;}
.y11f{bottom:985.605000px;}
.y183{bottom:987.405000px;}
.y153{bottom:988.485000px;}
.y42{bottom:991.725000px;}
.ya4{bottom:1001.805000px;}
.y74{bottom:1003.605000px;}
.y182{bottom:1004.685000px;}
.y152{bottom:1008.285000px;}
.y41{bottom:1011.525000px;}
.ya3{bottom:1021.605000px;}
.y73{bottom:1023.405000px;}
.y6{bottom:1027.365000px;}
.y151{bottom:1028.445000px;}
.y40{bottom:1031.325000px;}
.yf5{bottom:1032.405000px;}
.y181{bottom:1038.885000px;}
.ya2{bottom:1041.405000px;}
.y72{bottom:1043.205000px;}
.y150{bottom:1048.245000px;}
.y3f{bottom:1051.125000px;}
.y5{bottom:1052.205000px;}
.y180{bottom:1056.165000px;}
.yf4{bottom:1059.045000px;}
.ya1{bottom:1061.205000px;}
.y71{bottom:1063.005000px;}
.y14f{bottom:1068.045000px;}
.y3e{bottom:1070.925000px;}
.y4{bottom:1072.725000px;}
.y17f{bottom:1073.445000px;}
.yf3{bottom:1077.405000px;}
.ya0{bottom:1081.050000px;}
.y70{bottom:1082.850000px;}
.y14e{bottom:1087.890000px;}
.y17e{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y9f{bottom:1100.850000px;}
.y6f{bottom:1103.010000px;}
.y3d{bottom:1105.890000px;}
.y14d{bottom:1107.690000px;}
.yd0{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y9e{bottom:1120.650000px;}
.y6e{bottom:1122.810000px;}
.y17d{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y3c{bottom:1133.970000px;}
.y6d{bottom:1142.610000px;}
.y3b{bottom:1166.370000px;}
.y3a{bottom:1180.410000px;}
.y39{bottom:1201.290000px;}
.y38{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h16{height:22.320000px;}
.h10{height:30.600000px;}
.he{height:34.855313px;}
.hb{height:42.600937px;}
.h2{height:44.828437px;}
.h5{height:48.147188px;}
.h1d{height:48.960000px;}
.h7{height:49.055625px;}
.h18{height:49.356000px;}
.ha{height:53.298281px;}
.h3{height:53.367188px;}
.h4{height:54.219375px;}
.hd{height:64.546875px;}
.h1e{height:68.040000px;}
.h9{height:71.512031px;}
.hf{height:74.874375px;}
.h17{height:77.760000px;}
.h1b{height:86.796000px;}
.h1f{height:88.236000px;}
.h1c{height:105.156000px;}
.h13{height:119.916000px;}
.h12{height:120.276000px;}
.h1a{height:140.796000px;}
.h19{height:190.875000px;}
.h15{height:191.955000px;}
.h14{height:192.270000px;}
.h11{height:216.075000px;}
.hc{height:562.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:201.315000px;}
.wb{width:213.225000px;}
.w9{width:225.105000px;}
.wa{width:239.475000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.wc{width:477.570000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w8{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x24{left:15.480000px;}
.x1f{left:21.645000px;}
.x1b{left:36.396000px;}
.x27{left:39.600000px;}
.x1d{left:42.840000px;}
.x21{left:77.805000px;}
.x25{left:88.230000px;}
.x20{left:94.395000px;}
.x26{left:100.830000px;}
.x7{left:106.235987px;}
.xe{left:109.475987px;}
.x15{left:111.275987px;}
.xc{left:154.874987px;}
.x22{left:158.469000px;}
.x28{left:159.554987px;}
.x10{left:180.794987px;}
.x1a{left:184.394987px;}
.xb{left:200.954987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xd{left:310.829987px;}
.x12{left:313.709973px;}
.x13{left:321.269987px;}
.x14{left:322.349987px;}
.x1c{left:332.790000px;}
.xf{left:339.984000px;}
.x5{left:362.669987px;}
.x4{left:379.949987px;}
.x18{left:388.949973px;}
.x19{left:396.539987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x11{left:447.660000px;}
.x16{left:473.579973px;}
.x17{left:481.139987px;}
.x1e{left:572.970000px;}
.x23{left:585.255000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v1{vertical-align:21.760000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls1{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.848000pt;}
.lsd{letter-spacing:68.265387pt;}
.lsb{letter-spacing:70.825387pt;}
.ls8{letter-spacing:72.222720pt;}
.ls7{letter-spacing:73.502720pt;}
.ls10{letter-spacing:86.410667pt;}
.lsf{letter-spacing:112.138667pt;}
.ws8{word-spacing:-14.288000pt;}
.ws7{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws6{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-4.733867pt;}
._11{margin-left:-3.491413pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.075840pt;}
._8{width:4.032000pt;}
._d{width:5.269760pt;}
._13{width:6.286080pt;}
._12{width:7.211520pt;}
._14{width:8.386560pt;}
._b{width:9.623040pt;}
._c{width:10.967040pt;}
._10{width:12.257280pt;}
._9{width:15.052800pt;}
._a{width:16.289280pt;}
._e{width:17.909760pt;}
._f{width:18.869760pt;}
._17{width:20.805120pt;}
._16{width:22.310400pt;}
._15{width:46.720000pt;}
._1a{width:86.566827pt;}
._19{width:112.120747pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y36{bottom:2.880000pt;}
.ydb{bottom:4.160000pt;}
.yd1{bottom:14.720000pt;}
.y10c{bottom:14.746667pt;}
.y35{bottom:18.240000pt;}
.yf9{bottom:23.360000pt;}
.yda{bottom:25.280000pt;}
.ye0{bottom:25.600000pt;}
.y10f{bottom:27.840000pt;}
.y10e{bottom:31.040000pt;}
.yfc{bottom:31.360000pt;}
.y108{bottom:31.386667pt;}
.y34{bottom:33.640000pt;}
.ye{bottom:38.720000pt;}
.yf8{bottom:40.000000pt;}
.y112{bottom:44.480000pt;}
.yd9{bottom:46.720000pt;}
.ye4{bottom:46.746667pt;}
.ydf{bottom:47.040000pt;}
.y111{bottom:48.000000pt;}
.y107{bottom:48.026667pt;}
.y33{bottom:49.000000pt;}
.y115{bottom:49.280000pt;}
.y104{bottom:51.200000pt;}
.yfa{bottom:53.120000pt;}
.yf7{bottom:56.640000pt;}
.yc{bottom:60.800000pt;}
.y109{bottom:61.146667pt;}
.y116{bottom:62.400000pt;}
.y32{bottom:64.360000pt;}
.y106{bottom:64.666667pt;}
.y114{bottom:65.920000pt;}
.y103{bottom:66.600000pt;}
.yea{bottom:68.160000pt;}
.yd8{bottom:68.186667pt;}
.yde{bottom:68.200000pt;}
.y10d{bottom:77.786667pt;}
.y31{bottom:79.720000pt;}
.y10b{bottom:80.986667pt;}
.y102{bottom:81.960000pt;}
.ya{bottom:84.192000pt;}
.yd7{bottom:89.306667pt;}
.ye9{bottom:89.600000pt;}
.ye3{bottom:89.626667pt;}
.ydd{bottom:89.640000pt;}
.ye5{bottom:94.106667pt;}
.ye1{bottom:94.440000pt;}
.y101{bottom:97.320000pt;}
.y30{bottom:102.760000pt;}
.yd6{bottom:110.746667pt;}
.ye8{bottom:111.066667pt;}
.y100{bottom:112.680000pt;}
.y6c{bottom:115.872000pt;}
.y2f{bottom:118.120000pt;}
.y37{bottom:120.672000pt;}
.y14c{bottom:126.112000pt;}
.y9d{bottom:126.432000pt;}
.y6b{bottom:131.232000pt;}
.yd5{bottom:132.186667pt;}
.yf2{bottom:133.152000pt;}
.y13c{bottom:133.466667pt;}
.y2e{bottom:133.480000pt;}
.yff{bottom:133.800000pt;}
.y6a{bottom:136.026667pt;}
.ycf{bottom:139.226667pt;}
.y1b1{bottom:141.466667pt;}
.y18{bottom:142.746667pt;}
.y14b{bottom:143.706667pt;}
.y9c{bottom:144.026667pt;}
.y11e{bottom:145.306667pt;}
.y17c{bottom:148.506667pt;}
.y2d{bottom:148.866667pt;}
.yf1{bottom:150.746667pt;}
.y13b{bottom:151.066667pt;}
.yd4{bottom:153.306667pt;}
.ye7{bottom:153.626667pt;}
.yfe{bottom:153.640000pt;}
.y69{bottom:154.586667pt;}
.y1b0{bottom:156.826667pt;}
.yed{bottom:158.106667pt;}
.yeb{bottom:158.426667pt;}
.y14a{bottom:161.306667pt;}
.y9b{bottom:161.626667pt;}
.y11d{bottom:163.226667pt;}
.y17b{bottom:163.866667pt;}
.y2c{bottom:164.226667pt;}
.yf0{bottom:168.346667pt;}
.y13a{bottom:168.666667pt;}
.yce{bottom:169.946667pt;}
.y1af{bottom:172.186667pt;}
.ycd{bottom:174.746667pt;}
.yd3{bottom:174.786667pt;}
.y9a{bottom:179.266667pt;}
.y2b{bottom:179.586667pt;}
.y11c{bottom:180.866667pt;}
.y68{bottom:182.466667pt;}
.yef{bottom:186.306667pt;}
.y1ae{bottom:187.586667pt;}
.ycc{bottom:193.346667pt;}
.y17a{bottom:194.306667pt;}
.y2a{bottom:194.946667pt;}
.y99{bottom:196.866667pt;}
.y11b{bottom:198.466667pt;}
.y67{bottom:200.066667pt;}
.y1ad{bottom:202.946667pt;}
.y139{bottom:204.226667pt;}
.yee{bottom:205.506667pt;}
.ycb{bottom:208.706667pt;}
.y179{bottom:209.666667pt;}
.y29{bottom:210.306667pt;}
.y98{bottom:214.466667pt;}
.y66{bottom:217.666667pt;}
.y1ac{bottom:217.986667pt;}
.y138{bottom:221.826667pt;}
.yca{bottom:224.066667pt;}
.y178{bottom:225.026667pt;}
.y28{bottom:225.666667pt;}
.yc9{bottom:228.866667pt;}
.y97{bottom:232.066667pt;}
.y1ab{bottom:233.346667pt;}
.yec{bottom:234.626667pt;}
.y65{bottom:235.266667pt;}
.y137{bottom:239.426667pt;}
.y177{bottom:240.386667pt;}
.y27{bottom:241.026667pt;}
.yc8{bottom:247.426667pt;}
.y1aa{bottom:248.706667pt;}
.y96{bottom:249.666667pt;}
.y11a{bottom:251.266667pt;}
.y64{bottom:253.186667pt;}
.y176{bottom:255.746667pt;}
.y136{bottom:257.026667pt;}
.y1a9{bottom:264.066667pt;}
.y26{bottom:264.106667pt;}
.y95{bottom:267.266667pt;}
.y119{bottom:268.866667pt;}
.y63{bottom:270.786667pt;}
.y175{bottom:271.106667pt;}
.yc7{bottom:273.026667pt;}
.y135{bottom:274.626667pt;}
.y1a8{bottom:279.426667pt;}
.y149{bottom:284.866667pt;}
.y94{bottom:285.186667pt;}
.y118{bottom:286.466667pt;}
.y25{bottom:287.466667pt;}
.y62{bottom:288.413333pt;}
.yc6{bottom:290.653333pt;}
.y134{bottom:292.253333pt;}
.y1a7{bottom:294.813333pt;}
.y174{bottom:301.853333pt;}
.y93{bottom:302.813333pt;}
.y24{bottom:302.826667pt;}
.y117{bottom:303.133333pt;}
.y61{bottom:306.013333pt;}
.yc5{bottom:308.253333pt;}
.y133{bottom:309.853333pt;}
.y1a6{bottom:310.173333pt;}
.y148{bottom:315.933333pt;}
.y173{bottom:317.213333pt;}
.y23{bottom:318.186667pt;}
.y92{bottom:320.413333pt;}
.y113{bottom:321.373333pt;}
.y60{bottom:323.613333pt;}
.y1a5{bottom:325.533333pt;}
.yc4{bottom:326.173333pt;}
.y132{bottom:329.373333pt;}
.y172{bottom:332.573333pt;}
.y22{bottom:333.546667pt;}
.y91{bottom:338.013333pt;}
.y1a4{bottom:340.893333pt;}
.y5f{bottom:341.213333pt;}
.y147{bottom:341.533333pt;}
.yc3{bottom:343.773333pt;}
.y171{bottom:347.933333pt;}
.y21{bottom:348.906667pt;}
.y90{bottom:355.613333pt;}
.y1a3{bottom:356.253333pt;}
.y5e{bottom:358.813333pt;}
.y146{bottom:359.133333pt;}
.yc2{bottom:361.373333pt;}
.y131{bottom:362.973333pt;}
.y170{bottom:363.293333pt;}
.y1a2{bottom:371.613333pt;}
.y20{bottom:372.293333pt;}
.y8f{bottom:373.213333pt;}
.y5d{bottom:376.413333pt;}
.y145{bottom:376.733333pt;}
.y16f{bottom:378.333333pt;}
.yc1{bottom:378.973333pt;}
.y130{bottom:380.573333pt;}
.y1a1{bottom:386.653333pt;}
.y1f{bottom:387.653333pt;}
.y8e{bottom:390.813333pt;}
.y16e{bottom:393.693333pt;}
.y5c{bottom:394.013333pt;}
.y144{bottom:394.333333pt;}
.yc0{bottom:396.573333pt;}
.y12f{bottom:398.173333pt;}
.y110{bottom:400.453333pt;}
.y1a0{bottom:402.053333pt;}
.y1e{bottom:403.013333pt;}
.ye6{bottom:405.893333pt;}
.y8d{bottom:408.453333pt;}
.y16d{bottom:409.093333pt;}
.y5b{bottom:411.653333pt;}
.y143{bottom:412.293333pt;}
.ybf{bottom:414.213333pt;}
.y12e{bottom:415.813333pt;}
.y19f{bottom:417.413333pt;}
.y1d{bottom:418.373333pt;}
.y16c{bottom:424.453333pt;}
.y8c{bottom:426.053333pt;}
.y5a{bottom:429.573333pt;}
.ybe{bottom:431.813333pt;}
.y19e{bottom:432.773333pt;}
.y12d{bottom:433.413333pt;}
.y1c{bottom:433.733333pt;}
.y16b{bottom:439.813333pt;}
.y142{bottom:443.013333pt;}
.y8b{bottom:443.653333pt;}
.y19d{bottom:448.133333pt;}
.y59{bottom:448.773333pt;}
.y1b{bottom:449.093333pt;}
.ybd{bottom:449.413333pt;}
.y12c{bottom:451.013333pt;}
.y16a{bottom:455.173333pt;}
.y8a{bottom:461.573333pt;}
.y19c{bottom:463.493333pt;}
.y1a{bottom:464.453333pt;}
.ybc{bottom:467.013333pt;}
.y12b{bottom:468.613333pt;}
.y169{bottom:470.533333pt;}
.y58{bottom:472.133333pt;}
.y19b{bottom:478.853333pt;}
.y89{bottom:479.173333pt;}
.y19{bottom:479.493333pt;}
.ybb{bottom:484.613333pt;}
.y168{bottom:485.893333pt;}
.y12a{bottom:486.213333pt;}
.y141{bottom:486.533333pt;}
.y57{bottom:489.733333pt;}
.y19a{bottom:494.213333pt;}
.y88{bottom:496.773333pt;}
.y167{bottom:501.253333pt;}
.yba{bottom:502.533333pt;}
.y129{bottom:503.813333pt;}
.y140{bottom:504.133333pt;}
.y10a{bottom:505.733333pt;}
.y56{bottom:507.333333pt;}
.y199{bottom:509.573333pt;}
.y87{bottom:514.400000pt;}
.y166{bottom:516.640000pt;}
.yb9{bottom:520.160000pt;}
.y128{bottom:521.760000pt;}
.y55{bottom:524.960000pt;}
.y86{bottom:532.000000pt;}
.yb8{bottom:537.760000pt;}
.y127{bottom:539.360000pt;}
.y198{bottom:540.320000pt;}
.y54{bottom:542.560000pt;}
.y165{bottom:547.040000pt;}
.y85{bottom:549.600000pt;}
.yb7{bottom:555.360000pt;}
.y197{bottom:555.680000pt;}
.y126{bottom:556.960000pt;}
.y53{bottom:560.160000pt;}
.y164{bottom:562.400000pt;}
.y84{bottom:567.200000pt;}
.y196{bottom:570.720000pt;}
.yb6{bottom:572.960000pt;}
.y125{bottom:574.560000pt;}
.ye2{bottom:577.440000pt;}
.y163{bottom:577.760000pt;}
.y52{bottom:578.080000pt;}
.y83{bottom:582.560000pt;}
.y195{bottom:586.080000pt;}
.yb5{bottom:590.560000pt;}
.y124{bottom:592.160000pt;}
.y162{bottom:593.120000pt;}
.y105{bottom:599.840000pt;}
.y194{bottom:601.440000pt;}
.y82{bottom:602.080000pt;}
.yb4{bottom:608.160000pt;}
.y161{bottom:608.480000pt;}
.y51{bottom:608.800000pt;}
.y123{bottom:609.760000pt;}
.y193{bottom:616.800000pt;}
.yb3{bottom:625.786667pt;}
.y13f{bottom:627.386667pt;}
.y81{bottom:627.706667pt;}
.y122{bottom:628.986667pt;}
.y192{bottom:632.186667pt;}
.y160{bottom:634.106667pt;}
.y50{bottom:634.426667pt;}
.yb2{bottom:643.386667pt;}
.y13e{bottom:644.986667pt;}
.y80{bottom:645.306667pt;}
.y191{bottom:647.546667pt;}
.y17{bottom:647.866667pt;}
.y15f{bottom:649.466667pt;}
.y4f{bottom:652.346667pt;}
.yb1{bottom:660.986667pt;}
.y16{bottom:662.906667pt;}
.y15e{bottom:667.066667pt;}
.y4e{bottom:669.946667pt;}
.yfd{bottom:677.626667pt;}
.y15{bottom:677.946667pt;}
.y190{bottom:678.266667pt;}
.yb0{bottom:678.906667pt;}
.y7f{bottom:680.506667pt;}
.ydc{bottom:684.666667pt;}
.y4d{bottom:687.546667pt;}
.y18f{bottom:693.626667pt;}
.yaf{bottom:696.506667pt;}
.y7e{bottom:698.106667pt;}
.y14{bottom:698.746667pt;}
.y15d{bottom:702.266667pt;}
.y4c{bottom:705.146667pt;}
.y18e{bottom:708.986667pt;}
.yae{bottom:714.106667pt;}
.y1b2{bottom:714.426667pt;}
.y13{bottom:715.706667pt;}
.y15c{bottom:719.866667pt;}
.y4b{bottom:722.746667pt;}
.y18d{bottom:724.346667pt;}
.yad{bottom:731.706667pt;}
.y7d{bottom:733.306667pt;}
.y15b{bottom:737.826667pt;}
.y18c{bottom:739.426667pt;}
.y12{bottom:740.066667pt;}
.y4a{bottom:740.386667pt;}
.yac{bottom:749.346667pt;}
.y7c{bottom:750.946667pt;}
.y18b{bottom:754.786667pt;}
.y15a{bottom:755.426667pt;}
.y49{bottom:757.986667pt;}
.y11{bottom:764.706667pt;}
.yab{bottom:766.946667pt;}
.y7b{bottom:768.546667pt;}
.y18a{bottom:770.146667pt;}
.y159{bottom:773.026667pt;}
.y48{bottom:775.586667pt;}
.yaa{bottom:784.546667pt;}
.y189{bottom:785.506667pt;}
.y7a{bottom:786.146667pt;}
.y10{bottom:789.346667pt;}
.y158{bottom:790.626667pt;}
.yd2{bottom:792.226667pt;}
.y47{bottom:793.186667pt;}
.y188{bottom:800.866667pt;}
.ya9{bottom:802.146667pt;}
.yfb{bottom:803.426667pt;}
.y121{bottom:803.746667pt;}
.y79{bottom:804.066667pt;}
.y157{bottom:808.226667pt;}
.y46{bottom:810.786667pt;}
.yf{bottom:813.666667pt;}
.y187{bottom:816.226667pt;}
.ya8{bottom:819.746667pt;}
.y120{bottom:821.346667pt;}
.y78{bottom:821.666667pt;}
.y156{bottom:825.826667pt;}
.y45{bottom:828.706667pt;}
.y186{bottom:831.586667pt;}
.y9{bottom:836.706667pt;}
.ya7{bottom:837.346667pt;}
.y77{bottom:839.266667pt;}
.y155{bottom:843.426667pt;}
.y44{bottom:846.306667pt;}
.y185{bottom:846.973333pt;}
.yf6{bottom:847.933333pt;}
.y8{bottom:852.093333pt;}
.ya6{bottom:855.293333pt;}
.y76{bottom:856.893333pt;}
.y13d{bottom:858.493333pt;}
.y154{bottom:861.053333pt;}
.y184{bottom:862.333333pt;}
.y43{bottom:863.933333pt;}
.y7{bottom:864.573333pt;}
.ya5{bottom:872.893333pt;}
.y75{bottom:874.493333pt;}
.y11f{bottom:876.093333pt;}
.y183{bottom:877.693333pt;}
.y153{bottom:878.653333pt;}
.y42{bottom:881.533333pt;}
.ya4{bottom:890.493333pt;}
.y74{bottom:892.093333pt;}
.y182{bottom:893.053333pt;}
.y152{bottom:896.253333pt;}
.y41{bottom:899.133333pt;}
.ya3{bottom:908.093333pt;}
.y73{bottom:909.693333pt;}
.y6{bottom:913.213333pt;}
.y151{bottom:914.173333pt;}
.y40{bottom:916.733333pt;}
.yf5{bottom:917.693333pt;}
.y181{bottom:923.453333pt;}
.ya2{bottom:925.693333pt;}
.y72{bottom:927.293333pt;}
.y150{bottom:931.773333pt;}
.y3f{bottom:934.333333pt;}
.y5{bottom:935.293333pt;}
.y180{bottom:938.813333pt;}
.yf4{bottom:941.373333pt;}
.ya1{bottom:943.293333pt;}
.y71{bottom:944.893333pt;}
.y14f{bottom:949.373333pt;}
.y3e{bottom:951.933333pt;}
.y4{bottom:953.533333pt;}
.y17f{bottom:954.173333pt;}
.yf3{bottom:957.693333pt;}
.ya0{bottom:960.933333pt;}
.y70{bottom:962.533333pt;}
.y14e{bottom:967.013333pt;}
.y17e{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y9f{bottom:978.533333pt;}
.y6f{bottom:980.453333pt;}
.y3d{bottom:983.013333pt;}
.y14d{bottom:984.613333pt;}
.yd0{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y9e{bottom:996.133333pt;}
.y6e{bottom:998.053333pt;}
.y17d{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y3c{bottom:1007.973333pt;}
.y6d{bottom:1015.653333pt;}
.y3b{bottom:1036.773333pt;}
.y3a{bottom:1049.253333pt;}
.y39{bottom:1067.813333pt;}
.y38{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h16{height:19.840000pt;}
.h10{height:27.200000pt;}
.he{height:30.982500pt;}
.hb{height:37.867500pt;}
.h2{height:39.847500pt;}
.h5{height:42.797500pt;}
.h1d{height:43.520000pt;}
.h7{height:43.605000pt;}
.h18{height:43.872000pt;}
.ha{height:47.376250pt;}
.h3{height:47.437500pt;}
.h4{height:48.195000pt;}
.hd{height:57.375000pt;}
.h1e{height:60.480000pt;}
.h9{height:63.566250pt;}
.hf{height:66.555000pt;}
.h17{height:69.120000pt;}
.h1b{height:77.152000pt;}
.h1f{height:78.432000pt;}
.h1c{height:93.472000pt;}
.h13{height:106.592000pt;}
.h12{height:106.912000pt;}
.h1a{height:125.152000pt;}
.h19{height:169.666667pt;}
.h15{height:170.626667pt;}
.h14{height:170.906667pt;}
.h11{height:192.066667pt;}
.hc{height:500.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:178.946667pt;}
.wb{width:189.533333pt;}
.w9{width:200.093333pt;}
.wa{width:212.866667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.wc{width:424.506667pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w8{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x24{left:13.760000pt;}
.x1f{left:19.240000pt;}
.x1b{left:32.352000pt;}
.x27{left:35.200000pt;}
.x1d{left:38.080000pt;}
.x21{left:69.160000pt;}
.x25{left:78.426667pt;}
.x20{left:83.906667pt;}
.x26{left:89.626667pt;}
.x7{left:94.431988pt;}
.xe{left:97.311988pt;}
.x15{left:98.911988pt;}
.xc{left:137.666655pt;}
.x22{left:140.861333pt;}
.x28{left:141.826655pt;}
.x10{left:160.706655pt;}
.x1a{left:163.906655pt;}
.xb{left:178.626655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xd{left:276.293322pt;}
.x12{left:278.853310pt;}
.x13{left:285.573322pt;}
.x14{left:286.533322pt;}
.x1c{left:295.813333pt;}
.xf{left:302.208000pt;}
.x5{left:322.373322pt;}
.x4{left:337.733322pt;}
.x18{left:345.733310pt;}
.x19{left:352.479988pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x11{left:397.920000pt;}
.x16{left:420.959976pt;}
.x17{left:427.679988pt;}
.x1e{left:509.306667pt;}
.x23{left:520.226667pt;}
.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; }
  