
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b33638b3b8a8ee980684d62c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_fc1586bfb732181aa57bf6f3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_774ba50e811c4fecabd453e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_58b762cda3844bd2767b37d1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_e252a3258e3819f5bc19bd53.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f4186e008ed938a0be52600d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_4fc178fb181b9d2122e1b555.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.ls10{letter-spacing:-0.048960px;}
.ls11{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.116400px;}
.ls13{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.wsa{word-spacing:-13.177440px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-4.208280px;}
._2{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.221444px;}
._5{width:2.765400px;}
._3{width:4.689600px;}
._7{width:5.771400px;}
._8{width:7.154156px;}
._9{width:8.536800px;}
._a{width:9.740045px;}
._6{width:10.941600px;}
._d{width:12.103080px;}
._14{width:14.336400px;}
._f{width:15.631200px;}
._10{width:16.773480px;}
._e{width:17.795520px;}
._4{width:18.937800px;}
._18{width:20.621160px;}
._1d{width:21.643200px;}
._11{width:22.965840px;}
._b{width:25.009800px;}
._19{width:26.092080px;}
._15{width:27.655200px;}
._1a{width:29.486640px;}
._12{width:30.721320px;}
._13{width:31.891440px;}
._1c{width:33.791880px;}
._1e{width:43.767360px;}
._21{width:58.677120px;}
._22{width:59.879520px;}
._1b{width:67.214160px;}
._23{width:72.805320px;}
._16{width:86.332320px;}
._25{width:104.969520px;}
._1f{width:120.720960px;}
._28{width:142.123680px;}
._20{width:149.521680px;}
._26{width:212.343840px;}
._27{width:213.726600px;}
._17{width:219.137400px;}
._24{width:403.044480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y93{bottom:7.830000px;}
.y90{bottom:7.920000px;}
.ye3{bottom:25.380000px;}
.y8f{bottom:25.470000px;}
.y128{bottom:43.020000px;}
.y127{bottom:60.570000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y159{bottom:114.150000px;}
.yb7{bottom:115.050000px;}
.y141{bottom:115.500000px;}
.yfa{bottom:124.050000px;}
.y8c{bottom:125.580000px;}
.y177{bottom:126.120000px;}
.ydd{bottom:126.390000px;}
.y28{bottom:129.630000px;}
.y158{bottom:131.700000px;}
.yb6{bottom:132.600000px;}
.y140{bottom:133.050000px;}
.y11d{bottom:134.580000px;}
.y5b{bottom:139.170000px;}
.yf9{bottom:141.600000px;}
.y8b{bottom:143.130000px;}
.y176{bottom:143.670000px;}
.ydc{bottom:143.940000px;}
.y27{bottom:147.270000px;}
.y157{bottom:149.340000px;}
.yb5{bottom:150.240000px;}
.y13f{bottom:150.600000px;}
.y11c{bottom:152.130000px;}
.y5a{bottom:156.720000px;}
.yf8{bottom:159.240000px;}
.y8a{bottom:160.680000px;}
.y175{bottom:161.310000px;}
.ydb{bottom:161.580000px;}
.y26{bottom:164.820000px;}
.yb4{bottom:167.790000px;}
.y13e{bottom:168.240000px;}
.y11b{bottom:169.680000px;}
.y190{bottom:170.310000px;}
.y59{bottom:174.270000px;}
.yf7{bottom:176.790000px;}
.y89{bottom:178.320000px;}
.yda{bottom:179.130000px;}
.y25{bottom:182.370000px;}
.y156{bottom:184.890000px;}
.yb3{bottom:185.430000px;}
.y13d{bottom:185.790000px;}
.y11a{bottom:187.320000px;}
.y18f{bottom:187.860000px;}
.y58{bottom:191.910000px;}
.y88{bottom:195.870000px;}
.yd9{bottom:196.680000px;}
.y174{bottom:196.860000px;}
.y24{bottom:200.010000px;}
.y155{bottom:202.530000px;}
.y13c{bottom:203.430000px;}
.y119{bottom:204.870000px;}
.y18e{bottom:205.500000px;}
.y57{bottom:209.460000px;}
.yf6{bottom:212.430000px;}
.yd8{bottom:214.320000px;}
.y173{bottom:214.500000px;}
.y23{bottom:217.560000px;}
.y154{bottom:220.080000px;}
.yb2{bottom:220.980000px;}
.y118{bottom:222.510000px;}
.y56{bottom:227.100000px;}
.yf5{bottom:229.980000px;}
.y87{bottom:231.510000px;}
.yd7{bottom:231.870000px;}
.y172{bottom:232.050000px;}
.y22{bottom:235.200000px;}
.y153{bottom:237.630000px;}
.yb1{bottom:238.530000px;}
.y13b{bottom:238.980000px;}
.y117{bottom:240.060000px;}
.yf4{bottom:247.530000px;}
.y86{bottom:249.060000px;}
.yd6{bottom:249.510000px;}
.y171{bottom:249.600000px;}
.y152{bottom:255.270000px;}
.yb0{bottom:256.170000px;}
.y13a{bottom:256.530000px;}
.y55{bottom:262.650000px;}
.yf3{bottom:265.170000px;}
.y85{bottom:266.610000px;}
.y170{bottom:267.240000px;}
.y21{bottom:270.750000px;}
.y151{bottom:272.820000px;}
.yaf{bottom:273.720000px;}
.y139{bottom:274.170000px;}
.y116{bottom:275.610000px;}
.yd5{bottom:276.060000px;}
.y54{bottom:280.200000px;}
.yf2{bottom:282.720000px;}
.y84{bottom:284.250000px;}
.y16f{bottom:284.790000px;}
.y20{bottom:288.300000px;}
.y150{bottom:290.370000px;}
.yae{bottom:291.360000px;}
.y138{bottom:291.720000px;}
.y115{bottom:293.250000px;}
.y18d{bottom:293.790000px;}
.y53{bottom:297.840000px;}
.yf1{bottom:300.360000px;}
.y83{bottom:301.800000px;}
.y1f{bottom:305.940000px;}
.yad{bottom:308.910000px;}
.y137{bottom:309.360000px;}
.y114{bottom:310.800000px;}
.y18c{bottom:311.430000px;}
.yd4{bottom:311.610000px;}
.y16e{bottom:311.700000px;}
.y52{bottom:315.390000px;}
.yf0{bottom:317.910000px;}
.y14f{bottom:323.400000px;}
.y1e{bottom:323.490000px;}
.yac{bottom:326.460000px;}
.y136{bottom:326.910000px;}
.y82{bottom:328.440000px;}
.y18b{bottom:328.980000px;}
.yd3{bottom:329.250000px;}
.y51{bottom:332.940000px;}
.yef{bottom:335.460000px;}
.y1d{bottom:341.130000px;}
.y135{bottom:344.460000px;}
.y113{bottom:345.990000px;}
.yd2{bottom:346.800000px;}
.y50{bottom:350.580000px;}
.y14e{bottom:350.760000px;}
.yab{bottom:353.100000px;}
.y18a{bottom:355.530000px;}
.y1c{bottom:358.680000px;}
.y16d{bottom:359.940000px;}
.y112{bottom:363.540000px;}
.y81{bottom:363.990000px;}
.yd1{bottom:364.440000px;}
.y4f{bottom:368.130000px;}
.yee{bottom:371.100000px;}
.y189{bottom:373.170000px;}
.y1b{bottom:376.230000px;}
.y16c{bottom:377.580000px;}
.y14d{bottom:378.030000px;}
.y111{bottom:381.180000px;}
.y80{bottom:381.540000px;}
.yd0{bottom:381.990000px;}
.yaa{bottom:388.650000px;}
.y188{bottom:390.720000px;}
.y16b{bottom:395.130000px;}
.y7f{bottom:399.180000px;}
.ycf{bottom:399.540000px;}
.y4e{bottom:403.770000px;}
.y14c{bottom:405.390000px;}
.ya9{bottom:406.290000px;}
.y134{bottom:406.650000px;}
.y1a{bottom:411.870000px;}
.y16a{bottom:412.770000px;}
.y7e{bottom:416.730000px;}
.yce{bottom:417.180000px;}
.y187{bottom:417.630000px;}
.y4d{bottom:421.320000px;}
.ya8{bottom:423.840000px;}
.y133{bottom:424.290000px;}
.y19{bottom:429.420000px;}
.y169{bottom:430.320000px;}
.y14b{bottom:432.750000px;}
.y7d{bottom:434.370000px;}
.ycd{bottom:434.730000px;}
.y4c{bottom:438.870000px;}
.ya7{bottom:441.390000px;}
.y132{bottom:441.840000px;}
.y18{bottom:447.060000px;}
.y168{bottom:447.870000px;}
.y7c{bottom:451.920000px;}
.ycc{bottom:452.370000px;}
.y4b{bottom:456.510000px;}
.ya6{bottom:459.030000px;}
.y131{bottom:459.390000px;}
.y14a{bottom:460.020000px;}
.y17{bottom:464.610000px;}
.y167{bottom:465.510000px;}
.y186{bottom:465.870000px;}
.y7b{bottom:469.470000px;}
.y4a{bottom:474.090000px;}
.ya5{bottom:476.610000px;}
.y130{bottom:477.060000px;}
.y16{bottom:482.190000px;}
.y185{bottom:483.540000px;}
.y7a{bottom:487.140000px;}
.y149{bottom:487.410000px;}
.ycb{bottom:487.950000px;}
.y49{bottom:491.730000px;}
.ya4{bottom:494.160000px;}
.y12f{bottom:494.610000px;}
.y166{bottom:501.090000px;}
.y110{bottom:504.690000px;}
.yca{bottom:505.500000px;}
.y15{bottom:509.100000px;}
.ya3{bottom:511.800000px;}
.y148{bottom:514.770000px;}
.y48{bottom:518.280000px;}
.y165{bottom:518.730000px;}
.y12e{bottom:521.520000px;}
.y79{bottom:522.690000px;}
.yc9{bottom:523.140000px;}
.ya2{bottom:529.350000px;}
.yed{bottom:529.800000px;}
.y10f{bottom:531.330000px;}
.y164{bottom:536.280000px;}
.y78{bottom:540.330000px;}
.yc8{bottom:540.690000px;}
.y147{bottom:542.130000px;}
.ya1{bottom:546.990000px;}
.yec{bottom:547.350000px;}
.y47{bottom:553.830000px;}
.y14{bottom:557.700000px;}
.y77{bottom:557.880000px;}
.yc7{bottom:558.330000px;}
.yeb{bottom:564.990000px;}
.y10e{bottom:566.880000px;}
.y12d{bottom:567.150000px;}
.y146{bottom:569.400000px;}
.y46{bottom:571.470000px;}
.y76{bottom:575.430000px;}
.yc6{bottom:575.880000px;}
.ya0{bottom:582.540000px;}
.y10d{bottom:584.430000px;}
.y45{bottom:589.020000px;}
.y75{bottom:593.070000px;}
.yc5{bottom:593.430000px;}
.y13{bottom:594.780000px;}
.y145{bottom:596.760000px;}
.y9f{bottom:600.090000px;}
.y10c{bottom:602.070000px;}
.y44{bottom:606.660000px;}
.y74{bottom:610.620000px;}
.yc4{bottom:611.070000px;}
.y12c{bottom:612.060000px;}
.y12{bottom:612.330000px;}
.y9e{bottom:617.730000px;}
.y10b{bottom:619.620000px;}
.y144{bottom:624.120000px;}
.y43{bottom:624.210000px;}
.y11{bottom:629.880000px;}
.y184{bottom:633.570000px;}
.y9d{bottom:635.280000px;}
.y10a{bottom:637.260000px;}
.yc3{bottom:637.620000px;}
.y12b{bottom:639.420000px;}
.y42{bottom:641.760000px;}
.y163{bottom:642.210000px;}
.yea{bottom:644.280000px;}
.y73{bottom:646.260000px;}
.y10{bottom:647.520000px;}
.y9c{bottom:652.920000px;}
.y109{bottom:654.810000px;}
.y41{bottom:659.400000px;}
.y162{bottom:659.760000px;}
.y72{bottom:663.810000px;}
.yf{bottom:665.070000px;}
.y9b{bottom:670.470000px;}
.y143{bottom:672.810000px;}
.yc2{bottom:673.260000px;}
.y40{bottom:676.950000px;}
.y161{bottom:677.400000px;}
.ye9{bottom:680.190000px;}
.y71{bottom:681.360000px;}
.y183{bottom:681.810000px;}
.ye{bottom:682.710000px;}
.y12a{bottom:684.330000px;}
.y9a{bottom:688.020000px;}
.y108{bottom:690.360000px;}
.yc1{bottom:690.810000px;}
.y160{bottom:694.950000px;}
.y70{bottom:699.000000px;}
.y182{bottom:699.360000px;}
.yd{bottom:700.260000px;}
.y99{bottom:705.660000px;}
.y107{bottom:708.000000px;}
.yc0{bottom:708.360000px;}
.y129{bottom:711.690000px;}
.y3f{bottom:712.590000px;}
.y6f{bottom:716.550000px;}
.y181{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y106{bottom:725.550000px;}
.ye8{bottom:725.910000px;}
.ybf{bottom:726.000000px;}
.y3e{bottom:730.140000px;}
.y98{bottom:732.210000px;}
.y6e{bottom:734.190000px;}
.y180{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y126{bottom:739.050000px;}
.y105{bottom:743.190000px;}
.ybe{bottom:743.550000px;}
.y3d{bottom:747.690000px;}
.y17f{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.ye7{bottom:753.180000px;}
.y6d{bottom:760.740000px;}
.ybd{bottom:761.190000px;}
.y3c{bottom:765.330000px;}
.y97{bottom:768.120000px;}
.y17e{bottom:769.740000px;}
.y104{bottom:778.290000px;}
.ybc{bottom:778.740000px;}
.y9{bottom:779.910000px;}
.ye6{bottom:780.540000px;}
.y3b{bottom:782.880000px;}
.y15f{bottom:783.330000px;}
.y17d{bottom:787.290000px;}
.y103{bottom:795.930000px;}
.y6c{bottom:796.290000px;}
.y3a{bottom:800.520000px;}
.y15e{bottom:800.880000px;}
.y17c{bottom:804.930000px;}
.y102{bottom:813.480000px;}
.y96{bottom:813.750000px;}
.y6b{bottom:813.930000px;}
.y15d{bottom:818.520000px;}
.ye5{bottom:825.450000px;}
.y8{bottom:828.240000px;}
.y6a{bottom:831.480000px;}
.y39{bottom:836.070000px;}
.y125{bottom:840.480000px;}
.y95{bottom:841.110000px;}
.y69{bottom:849.030000px;}
.ye4{bottom:852.810000px;}
.y38{bottom:853.620000px;}
.y142{bottom:858.030000px;}
.y7{bottom:863.790000px;}
.y68{bottom:866.670000px;}
.ybb{bottom:867.030000px;}
.y94{bottom:868.470000px;}
.y37{bottom:871.260000px;}
.y17b{bottom:875.670000px;}
.y124{bottom:876.030000px;}
.ye2{bottom:880.170000px;}
.y67{bottom:884.220000px;}
.yba{bottom:884.670000px;}
.y36{bottom:888.810000px;}
.y17a{bottom:893.220000px;}
.y123{bottom:893.670000px;}
.y92{bottom:895.830000px;}
.y15c{bottom:898.170000px;}
.y6{bottom:899.610000px;}
.y66{bottom:901.860000px;}
.yb9{bottom:902.220000px;}
.y35{bottom:906.450000px;}
.y179{bottom:910.860000px;}
.y122{bottom:911.220000px;}
.y101{bottom:919.410000px;}
.yb8{bottom:919.860000px;}
.y91{bottom:923.100000px;}
.y34{bottom:924.000000px;}
.y178{bottom:928.410000px;}
.y121{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.y100{bottom:936.960000px;}
.y65{bottom:937.410000px;}
.ye1{bottom:946.410000px;}
.y8e{bottom:950.460000px;}
.y33{bottom:950.550000px;}
.yff{bottom:954.600000px;}
.y64{bottom:954.960000px;}
.y120{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y63{bottom:972.600000px;}
.y11f{bottom:981.600000px;}
.ye0{bottom:981.960000px;}
.y32{bottom:986.460000px;}
.y62{bottom:990.150000px;}
.y11e{bottom:999.150000px;}
.ydf{bottom:999.600000px;}
.y61{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y8d{bottom:1016.820000px;}
.yde{bottom:1017.180000px;}
.yfe{bottom:1025.370000px;}
.y15b{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yfd{bottom:1042.920000px;}
.y60{bottom:1043.370000px;}
.y15a{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.yfc{bottom:1060.560000px;}
.y5f{bottom:1060.920000px;}
.y2f{bottom:1069.920000px;}
.y5e{bottom:1078.560000px;}
.yfb{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y5d{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y5c{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hb{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.ha{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.hd{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:79.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:84.870000px;}
.w8{width:97.140000px;}
.w3{width:104.250000px;}
.w4{width:112.320000px;}
.we{width:112.350000px;}
.w10{width:121.530000px;}
.w11{width:138.330000px;}
.wf{width:140.040000px;}
.w9{width:148.050000px;}
.wb{width:148.770000px;}
.w12{width:154.890000px;}
.w6{width:160.860000px;}
.wc{width:165.600000px;}
.w13{width:184.230000px;}
.w7{width:186.030000px;}
.w5{width:189.360000px;}
.wa{width:193.170000px;}
.w14{width:302.160000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:111.239987px;}
.xd{left:154.350000px;}
.x9{left:166.710000px;}
.x5{left:173.730000px;}
.x12{left:203.070000px;}
.x2{left:211.079987px;}
.xe{left:267.510000px;}
.x6{left:286.770000px;}
.xa{left:315.480000px;}
.x13{left:388.020000px;}
.xf{left:408.270000px;}
.x7{left:476.850000px;}
.xb{left:509.370000px;}
.x10{left:530.520000px;}
.x8{left:638.430000px;}
.xc{left:658.860000px;}
.x11{left:669.570000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls10{letter-spacing:-0.043520pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.103467pt;}
.ls13{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.wsa{word-spacing:-11.713280pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.740693pt;}
._2{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.085728pt;}
._5{width:2.458133pt;}
._3{width:4.168534pt;}
._7{width:5.130133pt;}
._8{width:6.359250pt;}
._9{width:7.588266pt;}
._a{width:8.657817pt;}
._6{width:9.725866pt;}
._d{width:10.758293pt;}
._14{width:12.743467pt;}
._f{width:13.894400pt;}
._10{width:14.909760pt;}
._e{width:15.818240pt;}
._4{width:16.833600pt;}
._18{width:18.329920pt;}
._1d{width:19.238400pt;}
._11{width:20.414080pt;}
._b{width:22.230933pt;}
._19{width:23.192960pt;}
._15{width:24.582400pt;}
._1a{width:26.210347pt;}
._12{width:27.307840pt;}
._13{width:28.347947pt;}
._1c{width:30.037227pt;}
._1e{width:38.904320pt;}
._21{width:52.157440pt;}
._22{width:53.226240pt;}
._1b{width:59.745920pt;}
._23{width:64.715840pt;}
._16{width:76.739840pt;}
._25{width:93.306240pt;}
._1f{width:107.307520pt;}
._28{width:126.332160pt;}
._20{width:132.908160pt;}
._26{width:188.750080pt;}
._27{width:189.979200pt;}
._17{width:194.788800pt;}
._24{width:358.261760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:6.960000pt;}
.y90{bottom:7.040000pt;}
.ye3{bottom:22.560000pt;}
.y8f{bottom:22.640000pt;}
.y128{bottom:38.240000pt;}
.y127{bottom:53.840000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y159{bottom:101.466667pt;}
.yb7{bottom:102.266667pt;}
.y141{bottom:102.666667pt;}
.yfa{bottom:110.266667pt;}
.y8c{bottom:111.626667pt;}
.y177{bottom:112.106667pt;}
.ydd{bottom:112.346667pt;}
.y28{bottom:115.226667pt;}
.y158{bottom:117.066667pt;}
.yb6{bottom:117.866667pt;}
.y140{bottom:118.266667pt;}
.y11d{bottom:119.626667pt;}
.y5b{bottom:123.706667pt;}
.yf9{bottom:125.866667pt;}
.y8b{bottom:127.226667pt;}
.y176{bottom:127.706667pt;}
.ydc{bottom:127.946667pt;}
.y27{bottom:130.906667pt;}
.y157{bottom:132.746667pt;}
.yb5{bottom:133.546667pt;}
.y13f{bottom:133.866667pt;}
.y11c{bottom:135.226667pt;}
.y5a{bottom:139.306667pt;}
.yf8{bottom:141.546667pt;}
.y8a{bottom:142.826667pt;}
.y175{bottom:143.386667pt;}
.ydb{bottom:143.626667pt;}
.y26{bottom:146.506667pt;}
.yb4{bottom:149.146667pt;}
.y13e{bottom:149.546667pt;}
.y11b{bottom:150.826667pt;}
.y190{bottom:151.386667pt;}
.y59{bottom:154.906667pt;}
.yf7{bottom:157.146667pt;}
.y89{bottom:158.506667pt;}
.yda{bottom:159.226667pt;}
.y25{bottom:162.106667pt;}
.y156{bottom:164.346667pt;}
.yb3{bottom:164.826667pt;}
.y13d{bottom:165.146667pt;}
.y11a{bottom:166.506667pt;}
.y18f{bottom:166.986667pt;}
.y58{bottom:170.586667pt;}
.y88{bottom:174.106667pt;}
.yd9{bottom:174.826667pt;}
.y174{bottom:174.986667pt;}
.y24{bottom:177.786667pt;}
.y155{bottom:180.026667pt;}
.y13c{bottom:180.826667pt;}
.y119{bottom:182.106667pt;}
.y18e{bottom:182.666667pt;}
.y57{bottom:186.186667pt;}
.yf6{bottom:188.826667pt;}
.yd8{bottom:190.506667pt;}
.y173{bottom:190.666667pt;}
.y23{bottom:193.386667pt;}
.y154{bottom:195.626667pt;}
.yb2{bottom:196.426667pt;}
.y118{bottom:197.786667pt;}
.y56{bottom:201.866667pt;}
.yf5{bottom:204.426667pt;}
.y87{bottom:205.786667pt;}
.yd7{bottom:206.106667pt;}
.y172{bottom:206.266667pt;}
.y22{bottom:209.066667pt;}
.y153{bottom:211.226667pt;}
.yb1{bottom:212.026667pt;}
.y13b{bottom:212.426667pt;}
.y117{bottom:213.386667pt;}
.yf4{bottom:220.026667pt;}
.y86{bottom:221.386667pt;}
.yd6{bottom:221.786667pt;}
.y171{bottom:221.866667pt;}
.y152{bottom:226.906667pt;}
.yb0{bottom:227.706667pt;}
.y13a{bottom:228.026667pt;}
.y55{bottom:233.466667pt;}
.yf3{bottom:235.706667pt;}
.y85{bottom:236.986667pt;}
.y170{bottom:237.546667pt;}
.y21{bottom:240.666667pt;}
.y151{bottom:242.506667pt;}
.yaf{bottom:243.306667pt;}
.y139{bottom:243.706667pt;}
.y116{bottom:244.986667pt;}
.yd5{bottom:245.386667pt;}
.y54{bottom:249.066667pt;}
.yf2{bottom:251.306667pt;}
.y84{bottom:252.666667pt;}
.y16f{bottom:253.146667pt;}
.y20{bottom:256.266667pt;}
.y150{bottom:258.106667pt;}
.yae{bottom:258.986667pt;}
.y138{bottom:259.306667pt;}
.y115{bottom:260.666667pt;}
.y18d{bottom:261.146667pt;}
.y53{bottom:264.746667pt;}
.yf1{bottom:266.986667pt;}
.y83{bottom:268.266667pt;}
.y1f{bottom:271.946667pt;}
.yad{bottom:274.586667pt;}
.y137{bottom:274.986667pt;}
.y114{bottom:276.266667pt;}
.y18c{bottom:276.826667pt;}
.yd4{bottom:276.986667pt;}
.y16e{bottom:277.066667pt;}
.y52{bottom:280.346667pt;}
.yf0{bottom:282.586667pt;}
.y14f{bottom:287.466667pt;}
.y1e{bottom:287.546667pt;}
.yac{bottom:290.186667pt;}
.y136{bottom:290.586667pt;}
.y82{bottom:291.946667pt;}
.y18b{bottom:292.426667pt;}
.yd3{bottom:292.666667pt;}
.y51{bottom:295.946667pt;}
.yef{bottom:298.186667pt;}
.y1d{bottom:303.226667pt;}
.y135{bottom:306.186667pt;}
.y113{bottom:307.546667pt;}
.yd2{bottom:308.266667pt;}
.y50{bottom:311.626667pt;}
.y14e{bottom:311.786667pt;}
.yab{bottom:313.866667pt;}
.y18a{bottom:316.026667pt;}
.y1c{bottom:318.826667pt;}
.y16d{bottom:319.946667pt;}
.y112{bottom:323.146667pt;}
.y81{bottom:323.546667pt;}
.yd1{bottom:323.946667pt;}
.y4f{bottom:327.226667pt;}
.yee{bottom:329.866667pt;}
.y189{bottom:331.706667pt;}
.y1b{bottom:334.426667pt;}
.y16c{bottom:335.626667pt;}
.y14d{bottom:336.026667pt;}
.y111{bottom:338.826667pt;}
.y80{bottom:339.146667pt;}
.yd0{bottom:339.546667pt;}
.yaa{bottom:345.466667pt;}
.y188{bottom:347.306667pt;}
.y16b{bottom:351.226667pt;}
.y7f{bottom:354.826667pt;}
.ycf{bottom:355.146667pt;}
.y4e{bottom:358.906667pt;}
.y14c{bottom:360.346667pt;}
.ya9{bottom:361.146667pt;}
.y134{bottom:361.466667pt;}
.y1a{bottom:366.106667pt;}
.y16a{bottom:366.906667pt;}
.y7e{bottom:370.426667pt;}
.yce{bottom:370.826667pt;}
.y187{bottom:371.226667pt;}
.y4d{bottom:374.506667pt;}
.ya8{bottom:376.746667pt;}
.y133{bottom:377.146667pt;}
.y19{bottom:381.706667pt;}
.y169{bottom:382.506667pt;}
.y14b{bottom:384.666667pt;}
.y7d{bottom:386.106667pt;}
.ycd{bottom:386.426667pt;}
.y4c{bottom:390.106667pt;}
.ya7{bottom:392.346667pt;}
.y132{bottom:392.746667pt;}
.y18{bottom:397.386667pt;}
.y168{bottom:398.106667pt;}
.y7c{bottom:401.706667pt;}
.ycc{bottom:402.106667pt;}
.y4b{bottom:405.786667pt;}
.ya6{bottom:408.026667pt;}
.y131{bottom:408.346667pt;}
.y14a{bottom:408.906667pt;}
.y17{bottom:412.986667pt;}
.y167{bottom:413.786667pt;}
.y186{bottom:414.106667pt;}
.y7b{bottom:417.306667pt;}
.y4a{bottom:421.413333pt;}
.ya5{bottom:423.653333pt;}
.y130{bottom:424.053333pt;}
.y16{bottom:428.613333pt;}
.y185{bottom:429.813333pt;}
.y7a{bottom:433.013333pt;}
.y149{bottom:433.253333pt;}
.ycb{bottom:433.733333pt;}
.y49{bottom:437.093333pt;}
.ya4{bottom:439.253333pt;}
.y12f{bottom:439.653333pt;}
.y166{bottom:445.413333pt;}
.y110{bottom:448.613333pt;}
.yca{bottom:449.333333pt;}
.y15{bottom:452.533333pt;}
.ya3{bottom:454.933333pt;}
.y148{bottom:457.573333pt;}
.y48{bottom:460.693333pt;}
.y165{bottom:461.093333pt;}
.y12e{bottom:463.573333pt;}
.y79{bottom:464.613333pt;}
.yc9{bottom:465.013333pt;}
.ya2{bottom:470.533333pt;}
.yed{bottom:470.933333pt;}
.y10f{bottom:472.293333pt;}
.y164{bottom:476.693333pt;}
.y78{bottom:480.293333pt;}
.yc8{bottom:480.613333pt;}
.y147{bottom:481.893333pt;}
.ya1{bottom:486.213333pt;}
.yec{bottom:486.533333pt;}
.y47{bottom:492.293333pt;}
.y14{bottom:495.733333pt;}
.y77{bottom:495.893333pt;}
.yc7{bottom:496.293333pt;}
.yeb{bottom:502.213333pt;}
.y10e{bottom:503.893333pt;}
.y12d{bottom:504.133333pt;}
.y146{bottom:506.133333pt;}
.y46{bottom:507.973333pt;}
.y76{bottom:511.493333pt;}
.yc6{bottom:511.893333pt;}
.ya0{bottom:517.813333pt;}
.y10d{bottom:519.493333pt;}
.y45{bottom:523.573333pt;}
.y75{bottom:527.173333pt;}
.yc5{bottom:527.493333pt;}
.y13{bottom:528.693333pt;}
.y145{bottom:530.453333pt;}
.y9f{bottom:533.413333pt;}
.y10c{bottom:535.173333pt;}
.y44{bottom:539.253333pt;}
.y74{bottom:542.773333pt;}
.yc4{bottom:543.173333pt;}
.y12c{bottom:544.053333pt;}
.y12{bottom:544.293333pt;}
.y9e{bottom:549.093333pt;}
.y10b{bottom:550.773333pt;}
.y144{bottom:554.773333pt;}
.y43{bottom:554.853333pt;}
.y11{bottom:559.893333pt;}
.y184{bottom:563.173333pt;}
.y9d{bottom:564.693333pt;}
.y10a{bottom:566.453333pt;}
.yc3{bottom:566.773333pt;}
.y12b{bottom:568.373333pt;}
.y42{bottom:570.453333pt;}
.y163{bottom:570.853333pt;}
.yea{bottom:572.693333pt;}
.y73{bottom:574.453333pt;}
.y10{bottom:575.573333pt;}
.y9c{bottom:580.373333pt;}
.y109{bottom:582.053333pt;}
.y41{bottom:586.133333pt;}
.y162{bottom:586.453333pt;}
.y72{bottom:590.053333pt;}
.yf{bottom:591.173333pt;}
.y9b{bottom:595.973333pt;}
.y143{bottom:598.053333pt;}
.yc2{bottom:598.453333pt;}
.y40{bottom:601.733333pt;}
.y161{bottom:602.133333pt;}
.ye9{bottom:604.613333pt;}
.y71{bottom:605.653333pt;}
.y183{bottom:606.053333pt;}
.ye{bottom:606.853333pt;}
.y12a{bottom:608.293333pt;}
.y9a{bottom:611.573333pt;}
.y108{bottom:613.653333pt;}
.yc1{bottom:614.053333pt;}
.y160{bottom:617.733333pt;}
.y70{bottom:621.333333pt;}
.y182{bottom:621.653333pt;}
.yd{bottom:622.453333pt;}
.y99{bottom:627.253333pt;}
.y107{bottom:629.333333pt;}
.yc0{bottom:629.653333pt;}
.y129{bottom:632.613333pt;}
.y3f{bottom:633.413333pt;}
.y6f{bottom:636.933333pt;}
.y181{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y106{bottom:644.933333pt;}
.ye8{bottom:645.253333pt;}
.ybf{bottom:645.333333pt;}
.y3e{bottom:649.013333pt;}
.y98{bottom:650.853333pt;}
.y6e{bottom:652.613333pt;}
.y180{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y126{bottom:656.933333pt;}
.y105{bottom:660.613333pt;}
.ybe{bottom:660.933333pt;}
.y3d{bottom:664.613333pt;}
.y17f{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.ye7{bottom:669.493333pt;}
.y6d{bottom:676.213333pt;}
.ybd{bottom:676.613333pt;}
.y3c{bottom:680.293333pt;}
.y97{bottom:682.773333pt;}
.y17e{bottom:684.213333pt;}
.y104{bottom:691.813333pt;}
.ybc{bottom:692.213333pt;}
.y9{bottom:693.253333pt;}
.ye6{bottom:693.813333pt;}
.y3b{bottom:695.893333pt;}
.y15f{bottom:696.293333pt;}
.y17d{bottom:699.813333pt;}
.y103{bottom:707.493333pt;}
.y6c{bottom:707.813333pt;}
.y3a{bottom:711.573333pt;}
.y15e{bottom:711.893333pt;}
.y17c{bottom:715.493333pt;}
.y102{bottom:723.093333pt;}
.y96{bottom:723.333333pt;}
.y6b{bottom:723.493333pt;}
.y15d{bottom:727.573333pt;}
.ye5{bottom:733.733333pt;}
.y8{bottom:736.213333pt;}
.y6a{bottom:739.093333pt;}
.y39{bottom:743.173333pt;}
.y125{bottom:747.093333pt;}
.y95{bottom:747.653333pt;}
.y69{bottom:754.693333pt;}
.ye4{bottom:758.053333pt;}
.y38{bottom:758.773333pt;}
.y142{bottom:762.693333pt;}
.y7{bottom:767.813333pt;}
.y68{bottom:770.373333pt;}
.ybb{bottom:770.693333pt;}
.y94{bottom:771.973333pt;}
.y37{bottom:774.453333pt;}
.y17b{bottom:778.373333pt;}
.y124{bottom:778.693333pt;}
.ye2{bottom:782.373333pt;}
.y67{bottom:785.973333pt;}
.yba{bottom:786.373333pt;}
.y36{bottom:790.053333pt;}
.y17a{bottom:793.973333pt;}
.y123{bottom:794.373333pt;}
.y92{bottom:796.293333pt;}
.y15c{bottom:798.373333pt;}
.y6{bottom:799.653333pt;}
.y66{bottom:801.653333pt;}
.yb9{bottom:801.973333pt;}
.y35{bottom:805.733333pt;}
.y179{bottom:809.653333pt;}
.y122{bottom:809.973333pt;}
.y101{bottom:817.253333pt;}
.yb8{bottom:817.653333pt;}
.y91{bottom:820.533333pt;}
.y34{bottom:821.333333pt;}
.y178{bottom:825.253333pt;}
.y121{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.y100{bottom:832.853333pt;}
.y65{bottom:833.253333pt;}
.ye1{bottom:841.253333pt;}
.y8e{bottom:844.853333pt;}
.y33{bottom:844.933333pt;}
.yff{bottom:848.533333pt;}
.y64{bottom:848.853333pt;}
.y120{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y63{bottom:864.533333pt;}
.y11f{bottom:872.533333pt;}
.ye0{bottom:872.853333pt;}
.y32{bottom:876.853333pt;}
.y62{bottom:880.133333pt;}
.y11e{bottom:888.133333pt;}
.ydf{bottom:888.533333pt;}
.y61{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y8d{bottom:903.840000pt;}
.yde{bottom:904.160000pt;}
.yfe{bottom:911.440000pt;}
.y15b{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yfd{bottom:927.040000pt;}
.y60{bottom:927.440000pt;}
.y15a{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.yfc{bottom:942.720000pt;}
.y5f{bottom:943.040000pt;}
.y2f{bottom:951.040000pt;}
.y5e{bottom:958.720000pt;}
.yfb{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y5d{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y5c{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hb{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.ha{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.hd{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:70.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:75.440000pt;}
.w8{width:86.346667pt;}
.w3{width:92.666667pt;}
.w4{width:99.840000pt;}
.we{width:99.866667pt;}
.w10{width:108.026667pt;}
.w11{width:122.960000pt;}
.wf{width:124.480000pt;}
.w9{width:131.600000pt;}
.wb{width:132.240000pt;}
.w12{width:137.680000pt;}
.w6{width:142.986667pt;}
.wc{width:147.200000pt;}
.w13{width:163.760000pt;}
.w7{width:165.360000pt;}
.w5{width:168.320000pt;}
.wa{width:171.706667pt;}
.w14{width:268.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:98.879988pt;}
.xd{left:137.200000pt;}
.x9{left:148.186667pt;}
.x5{left:154.426667pt;}
.x12{left:180.506667pt;}
.x2{left:187.626655pt;}
.xe{left:237.786667pt;}
.x6{left:254.906667pt;}
.xa{left:280.426667pt;}
.x13{left:344.906667pt;}
.xf{left:362.906667pt;}
.x7{left:423.866667pt;}
.xb{left:452.773333pt;}
.x10{left:471.573333pt;}
.x8{left:567.493333pt;}
.xc{left:585.653333pt;}
.x11{left:595.173333pt;}
.x3{left:711.413322pt;}
}




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