
    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_44ab2ef4ff2bc355e74aa6bc.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_941cb64596dfc4bd0a38d46a.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_a27c1601803c174befc8673c.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_4b859dd872c4489e0c801824.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_966238f1e0290029f4902f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_16fabf8257371d9313701913.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_71452da5cdacde6033229022.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls17{letter-spacing:-0.291600px;}
.lsf{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.160800px;}
.ls16{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.067200px;}
.ls1d{letter-spacing:-0.060600px;}
.ls15{letter-spacing:-0.018360px;}
.ls1a{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls19{letter-spacing:0.041760px;}
.lsb{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls1c{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;}
}
.ws3{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.ws13{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.353600px;}
.wsb{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.211640px;}
.wse{word-spacing:-13.208040px;}
.ws14{word-spacing:-13.159200px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.wsc{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.126000px;}
._12{margin-left:-2.110513px;}
._0{margin-left:-1.110000px;}
._1{width:1.099752px;}
._b{width:2.260056px;}
._5{width:3.454199px;}
._3{width:4.749600px;}
._2{width:6.673200px;}
._9{width:7.936201px;}
._8{width:9.499200px;}
._11{width:10.581120px;}
._e{width:11.718960px;}
._a{width:14.548800px;}
._d{width:15.572403px;}
._15{width:16.710715px;}
._c{width:18.637200px;}
._f{width:20.098560px;}
._21{width:21.101760px;}
._7{width:22.124520px;}
._6{width:23.302320px;}
._10{width:24.853800px;}
._1b{width:26.873640px;}
._17{width:28.917720px;}
._18{width:29.973913px;}
._1f{width:31.923720px;}
._1a{width:33.190680px;}
._19{width:34.656960px;}
._16{width:35.683200px;}
._13{width:36.913680px;}
._14{width:38.062273px;}
._36{width:39.859560px;}
._35{width:40.941720px;}
._22{width:43.947720px;}
._2d{width:51.699600px;}
._25{width:56.813400px;}
._1e{width:68.934600px;}
._20{width:86.572800px;}
._31{width:93.868800px;}
._27{width:98.476560px;}
._23{width:100.171080px;}
._32{width:101.504040px;}
._37{width:131.722920px;}
._34{width:137.674800px;}
._1d{width:145.911240px;}
._29{width:170.281320px;}
._2b{width:192.864960px;}
._1c{width:208.496160px;}
._2a{width:211.802760px;}
._2e{width:215.770680px;}
._33{width:224.007120px;}
._24{width:229.679880px;}
._26{width:231.910680px;}
._2c{width:257.193360px;}
._30{width:277.383960px;}
._2f{width:279.497880px;}
._28{width:286.892640px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:7.830000px;}
.y8f{bottom:7.920000px;}
.y8c{bottom:25.380000px;}
.y91{bottom:25.470000px;}
.ye8{bottom:43.020000px;}
.y130{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y17b{bottom:111.630000px;}
.y155{bottom:112.080000px;}
.ye3{bottom:112.980000px;}
.y104{bottom:125.220000px;}
.y19a{bottom:126.570000px;}
.y87{bottom:128.460000px;}
.y154{bottom:129.630000px;}
.ye2{bottom:130.530000px;}
.yb1{bottom:135.930000px;}
.y103{bottom:142.770000px;}
.y199{bottom:144.120000px;}
.y5a{bottom:146.100000px;}
.y153{bottom:147.180000px;}
.ye1{bottom:148.170000px;}
.y59{bottom:163.650000px;}
.y152{bottom:164.820000px;}
.y26{bottom:165.900000px;}
.y102{bottom:169.410000px;}
.y198{bottom:170.670000px;}
.yb0{bottom:171.480000px;}
.y12b{bottom:179.940000px;}
.y58{bottom:181.200000px;}
.y151{bottom:182.370000px;}
.y17a{bottom:182.820000px;}
.y25{bottom:183.540000px;}
.ye0{bottom:183.720000px;}
.y197{bottom:188.310000px;}
.yaf{bottom:189.120000px;}
.y12a{bottom:197.580000px;}
.y57{bottom:198.840000px;}
.y150{bottom:200.010000px;}
.y179{bottom:200.370000px;}
.y24{bottom:201.090000px;}
.ydf{bottom:201.270000px;}
.y101{bottom:204.960000px;}
.y196{bottom:205.860000px;}
.yae{bottom:206.670000px;}
.y129{bottom:215.130000px;}
.y56{bottom:216.390000px;}
.y14f{bottom:217.560000px;}
.y178{bottom:218.010000px;}
.y23{bottom:218.640000px;}
.yde{bottom:218.910000px;}
.y100{bottom:222.600000px;}
.y195{bottom:223.500000px;}
.yad{bottom:224.220000px;}
.y128{bottom:232.680000px;}
.y55{bottom:234.030000px;}
.y86{bottom:234.390000px;}
.y177{bottom:235.560000px;}
.y22{bottom:236.280000px;}
.ydd{bottom:236.460000px;}
.yff{bottom:240.150000px;}
.yac{bottom:241.860000px;}
.y14e{bottom:244.110000px;}
.y194{bottom:250.050000px;}
.y127{bottom:250.320000px;}
.y54{bottom:251.580000px;}
.y85{bottom:252.030000px;}
.y176{bottom:253.110000px;}
.y21{bottom:253.830000px;}
.ydc{bottom:254.100000px;}
.yfe{bottom:257.700000px;}
.yab{bottom:259.410000px;}
.y193{bottom:267.600000px;}
.y126{bottom:267.870000px;}
.y84{bottom:269.580000px;}
.y53{bottom:270.030000px;}
.y175{bottom:270.750000px;}
.ydb{bottom:271.650000px;}
.yfd{bottom:275.340000px;}
.yaa{bottom:277.050000px;}
.y14d{bottom:279.750000px;}
.y192{bottom:285.240000px;}
.y125{bottom:285.510000px;}
.y83{bottom:287.130000px;}
.y52{bottom:287.580000px;}
.y174{bottom:288.300000px;}
.y20{bottom:289.380000px;}
.yfc{bottom:292.890000px;}
.ya9{bottom:294.600000px;}
.y14c{bottom:297.300000px;}
.yda{bottom:298.200000px;}
.y124{bottom:303.060000px;}
.y82{bottom:304.770000px;}
.y51{bottom:305.130000px;}
.y173{bottom:305.940000px;}
.y1f{bottom:307.020000px;}
.yfb{bottom:310.440000px;}
.y191{bottom:311.790000px;}
.ya8{bottom:312.150000px;}
.y14b{bottom:314.940000px;}
.y123{bottom:320.610000px;}
.y172{bottom:323.490000px;}
.y50{bottom:323.580000px;}
.yfa{bottom:328.080000px;}
.y190{bottom:329.430000px;}
.ya7{bottom:329.790000px;}
.y81{bottom:331.320000px;}
.y14a{bottom:332.490000px;}
.yd9{bottom:333.840000px;}
.y122{bottom:338.250000px;}
.y171{bottom:341.040000px;}
.y4f{bottom:341.130000px;}
.y1e{bottom:342.570000px;}
.yf9{bottom:345.630000px;}
.y18f{bottom:346.980000px;}
.y149{bottom:350.040000px;}
.yd8{bottom:351.390000px;}
.y121{bottom:355.800000px;}
.y170{bottom:358.680000px;}
.y4e{bottom:358.770000px;}
.y1d{bottom:360.210000px;}
.yf8{bottom:363.270000px;}
.ya6{bottom:365.340000px;}
.y80{bottom:366.870000px;}
.y148{bottom:367.680000px;}
.yd7{bottom:368.940000px;}
.y120{bottom:373.440000px;}
.y18e{bottom:373.530000px;}
.y16f{bottom:376.230000px;}
.y4d{bottom:376.320000px;}
.y1c{bottom:377.760000px;}
.yf7{bottom:380.820000px;}
.ya5{bottom:382.980000px;}
.y7f{bottom:384.510000px;}
.y147{bottom:385.230000px;}
.yd6{bottom:386.580000px;}
.y18d{bottom:391.170000px;}
.y16e{bottom:393.870000px;}
.y1b{bottom:395.310000px;}
.yf6{bottom:398.370000px;}
.ya4{bottom:400.530000px;}
.y7e{bottom:402.060000px;}
.y146{bottom:402.870000px;}
.yd5{bottom:404.130000px;}
.y18c{bottom:408.720000px;}
.y11f{bottom:408.990000px;}
.y16d{bottom:411.420000px;}
.y4c{bottom:412.770000px;}
.y1a{bottom:412.950000px;}
.yf5{bottom:416.010000px;}
.ya3{bottom:418.080000px;}
.y7d{bottom:419.700000px;}
.y145{bottom:420.420000px;}
.yd4{bottom:421.770000px;}
.y11e{bottom:426.540000px;}
.y16c{bottom:428.970000px;}
.y19{bottom:430.500000px;}
.yf4{bottom:433.560000px;}
.y18b{bottom:435.360000px;}
.ya2{bottom:435.720000px;}
.y7c{bottom:437.250000px;}
.y144{bottom:437.970000px;}
.yd3{bottom:439.320000px;}
.y4b{bottom:439.680000px;}
.y11d{bottom:444.180000px;}
.y18{bottom:448.140000px;}
.y18a{bottom:452.910000px;}
.ya1{bottom:453.270000px;}
.y7b{bottom:454.800000px;}
.y143{bottom:455.610000px;}
.yd2{bottom:456.870000px;}
.y11c{bottom:461.730000px;}
.y16b{bottom:464.610000px;}
.y17{bottom:465.690000px;}
.yf3{bottom:469.200000px;}
.y189{bottom:470.490000px;}
.y7a{bottom:472.470000px;}
.y142{bottom:473.190000px;}
.yd1{bottom:474.540000px;}
.y11b{bottom:479.400000px;}
.ya0{bottom:479.940000px;}
.y16a{bottom:482.190000px;}
.yf2{bottom:486.780000px;}
.y4a{bottom:487.950000px;}
.y188{bottom:488.130000px;}
.yd0{bottom:492.090000px;}
.y16{bottom:492.630000px;}
.y11a{bottom:496.950000px;}
.y169{bottom:499.830000px;}
.yf1{bottom:504.330000px;}
.y49{bottom:505.500000px;}
.y79{bottom:508.020000px;}
.y141{bottom:508.830000px;}
.ycf{bottom:509.730000px;}
.y119{bottom:514.500000px;}
.y187{bottom:515.040000px;}
.y9f{bottom:515.850000px;}
.y168{bottom:517.380000px;}
.yf0{bottom:521.970000px;}
.y48{bottom:523.140000px;}
.y78{bottom:525.660000px;}
.y140{bottom:526.380000px;}
.yce{bottom:527.280000px;}
.y118{bottom:532.140000px;}
.y167{bottom:534.930000px;}
.yef{bottom:539.520000px;}
.y47{bottom:540.690000px;}
.y15{bottom:541.230000px;}
.y77{bottom:543.210000px;}
.y13f{bottom:543.930000px;}
.ycd{bottom:544.830000px;}
.y117{bottom:549.690000px;}
.y166{bottom:552.570000px;}
.yee{bottom:557.160000px;}
.y46{bottom:558.330000px;}
.y76{bottom:560.760000px;}
.y13e{bottom:561.570000px;}
.y186{bottom:563.280000px;}
.y9e{bottom:564.090000px;}
.y116{bottom:567.330000px;}
.y14{bottom:578.220000px;}
.y75{bottom:578.400000px;}
.y13d{bottom:579.120000px;}
.ycc{bottom:580.470000px;}
.y185{bottom:580.830000px;}
.y9d{bottom:581.640000px;}
.yed{bottom:583.710000px;}
.y115{bottom:584.880000px;}
.y45{bottom:593.880000px;}
.y13{bottom:595.860000px;}
.y74{bottom:595.950000px;}
.y13c{bottom:596.760000px;}
.ycb{bottom:598.020000px;}
.y184{bottom:598.470000px;}
.y9c{bottom:600.090000px;}
.y114{bottom:602.430000px;}
.y44{bottom:611.430000px;}
.y12{bottom:613.410000px;}
.y13b{bottom:614.310000px;}
.y165{bottom:614.760000px;}
.yca{bottom:615.660000px;}
.y183{bottom:616.020000px;}
.y9b{bottom:617.640000px;}
.yec{bottom:619.620000px;}
.y113{bottom:620.070000px;}
.y73{bottom:622.590000px;}
.y43{bottom:629.070000px;}
.y11{bottom:630.960000px;}
.y13a{bottom:631.860000px;}
.y164{bottom:632.310000px;}
.yc9{bottom:633.210000px;}
.y182{bottom:633.660000px;}
.y9a{bottom:636.090000px;}
.y42{bottom:646.620000px;}
.y10{bottom:648.600000px;}
.y139{bottom:649.500000px;}
.y163{bottom:649.860000px;}
.yc8{bottom:650.760000px;}
.y181{bottom:651.210000px;}
.y99{bottom:653.640000px;}
.y112{bottom:655.620000px;}
.y72{bottom:658.140000px;}
.y41{bottom:664.260000px;}
.yeb{bottom:665.250000px;}
.yf{bottom:666.150000px;}
.y162{bottom:667.500000px;}
.yc7{bottom:668.400000px;}
.y180{bottom:668.760000px;}
.y98{bottom:672.000000px;}
.y111{bottom:673.260000px;}
.y71{bottom:675.690000px;}
.y138{bottom:676.050000px;}
.y40{bottom:681.810000px;}
.ye{bottom:683.790000px;}
.y161{bottom:685.050000px;}
.yc6{bottom:685.950000px;}
.y97{bottom:690.450000px;}
.y110{bottom:690.810000px;}
.y70{bottom:693.330000px;}
.y17f{bottom:695.670000px;}
.y3f{bottom:699.360000px;}
.yd{bottom:701.340000px;}
.y160{bottom:702.690000px;}
.y96{bottom:708.000000px;}
.y10f{bottom:708.360000px;}
.y6f{bottom:710.880000px;}
.y137{bottom:711.690000px;}
.yc5{bottom:712.590000px;}
.yc{bottom:718.890000px;}
.y15f{bottom:720.240000px;}
.y10e{bottom:726.000000px;}
.yea{bottom:727.800000px;}
.y6e{bottom:728.520000px;}
.y136{bottom:729.240000px;}
.y3e{bottom:735.000000px;}
.yb{bottom:736.530000px;}
.y10d{bottom:743.550000px;}
.y17e{bottom:744.000000px;}
.y95{bottom:744.450000px;}
.y6d{bottom:746.070000px;}
.y135{bottom:746.790000px;}
.yc4{bottom:748.500000px;}
.y3d{bottom:752.550000px;}
.ya{bottom:754.080000px;}
.y15e{bottom:755.790000px;}
.y17d{bottom:761.550000px;}
.y6c{bottom:763.620000px;}
.y134{bottom:764.430000px;}
.y3c{bottom:770.190000px;}
.y94{bottom:771.090000px;}
.ye9{bottom:772.710000px;}
.y15d{bottom:773.430000px;}
.y17c{bottom:779.190000px;}
.y9{bottom:781.080000px;}
.y6b{bottom:781.260000px;}
.y133{bottom:781.980000px;}
.y3b{bottom:787.740000px;}
.y15c{bottom:790.980000px;}
.yc3{bottom:796.740000px;}
.y93{bottom:804.030000px;}
.y3a{bottom:805.290000px;}
.y10c{bottom:805.740000px;}
.y132{bottom:808.530000px;}
.yc2{bottom:814.290000px;}
.y6a{bottom:816.810000px;}
.ye7{bottom:817.620000px;}
.y39{bottom:822.930000px;}
.y10b{bottom:823.290000px;}
.y15b{bottom:826.170000px;}
.y8{bottom:827.790000px;}
.yc1{bottom:831.930000px;}
.y69{bottom:834.450000px;}
.y10a{bottom:840.930000px;}
.y131{bottom:841.560000px;}
.y15a{bottom:843.720000px;}
.y92{bottom:848.940000px;}
.yc0{bottom:849.480000px;}
.y68{bottom:852.000000px;}
.y38{bottom:858.480000px;}
.y159{bottom:861.360000px;}
.y7{bottom:863.610000px;}
.ybf{bottom:867.030000px;}
.y67{bottom:869.550000px;}
.y37{bottom:876.030000px;}
.y90{bottom:876.300000px;}
.ye6{bottom:880.170000px;}
.ybe{bottom:884.670000px;}
.y66{bottom:887.190000px;}
.y36{bottom:893.670000px;}
.y158{bottom:894.300000px;}
.y6{bottom:899.610000px;}
.ybd{bottom:902.220000px;}
.y12f{bottom:904.020000px;}
.y65{bottom:904.740000px;}
.y35{bottom:911.220000px;}
.ybc{bottom:919.860000px;}
.y8e{bottom:921.210000px;}
.y64{bottom:922.380000px;}
.y34{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.ybb{bottom:937.410000px;}
.y157{bottom:939.210000px;}
.y33{bottom:946.410000px;}
.y8d{bottom:948.570000px;}
.y63{bottom:948.930000px;}
.yba{bottom:954.960000px;}
.y32{bottom:963.960000px;}
.ye5{bottom:964.410000px;}
.y12e{bottom:966.570000px;}
.y4{bottom:971.700000px;}
.yb9{bottom:972.600000px;}
.y8b{bottom:975.930000px;}
.y109{bottom:981.600000px;}
.ye4{bottom:981.960000px;}
.y156{bottom:984.120000px;}
.y62{bottom:984.840000px;}
.yb8{bottom:990.150000px;}
.y108{bottom:999.150000px;}
.y31{bottom:999.600000px;}
.y3{bottom:1009.980000px;}
.y107{bottom:1016.820000px;}
.y30{bottom:1017.180000px;}
.y89{bottom:1020.870000px;}
.yb7{bottom:1025.820000px;}
.y12d{bottom:1029.060000px;}
.y61{bottom:1033.110000px;}
.y106{bottom:1034.370000px;}
.y2f{bottom:1034.820000px;}
.yb6{bottom:1043.370000px;}
.y60{bottom:1050.750000px;}
.y105{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.yb5{bottom:1060.920000px;}
.y5f{bottom:1068.300000px;}
.y88{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y12c{bottom:1073.970000px;}
.yb4{bottom:1078.560000px;}
.y5e{bottom:1085.850000px;}
.y2c{bottom:1087.560000px;}
.yb3{bottom:1096.110000px;}
.y5d{bottom:1103.400000px;}
.y2b{bottom:1105.110000px;}
.yb2{bottom:1113.750000px;}
.y5c{bottom:1121.850000px;}
.y2a{bottom:1122.750000px;}
.y5b{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.130000px;}
.he{height:44.190000px;}
.h12{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.740000px;}
.h10{height:61.770000px;}
.h9{height:61.793886px;}
.h11{height:61.830000px;}
.ha{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:141.600000px;}
.w5{width:148.890000px;}
.wc{width:149.790000px;}
.wb{width:159.840000px;}
.wa{width:182.910000px;}
.wf{width:188.010000px;}
.we{width:191.910000px;}
.wd{width:223.740000px;}
.w9{width:269.190000px;}
.w7{width:296.100000px;}
.w3{width:298.200000px;}
.w6{width:309.180000px;}
.w4{width:456.780000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.xf{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.xa{left:211.080000px;}
.x8{left:218.460000px;}
.x7{left:367.680000px;}
.xd{left:443.820000px;}
.xb{left:480.990000px;}
.x9{left:528.360000px;}
.xe{left:636.450000px;}
.xc{left:664.620000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.259200pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.059733pt;}
.ls1d{letter-spacing:-0.053867pt;}
.ls15{letter-spacing:-0.016320pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls19{letter-spacing:0.037120pt;}
.lsb{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws3{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.ws13{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.869867pt;}
.wsb{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.740480pt;}
.ws14{word-spacing:-11.697067pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.wsc{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-2.778666pt;}
._12{margin-left:-1.876011pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.977558pt;}
._b{width:2.008938pt;}
._5{width:3.070399pt;}
._3{width:4.221867pt;}
._2{width:5.931733pt;}
._9{width:7.054401pt;}
._8{width:8.443734pt;}
._11{width:9.405440pt;}
._e{width:10.416853pt;}
._a{width:12.932266pt;}
._d{width:13.842136pt;}
._15{width:14.853969pt;}
._c{width:16.566400pt;}
._f{width:17.865387pt;}
._21{width:18.757120pt;}
._7{width:19.666240pt;}
._6{width:20.713174pt;}
._10{width:22.092266pt;}
._1b{width:23.887680pt;}
._17{width:25.704640pt;}
._18{width:26.643478pt;}
._1f{width:28.376640pt;}
._1a{width:29.502827pt;}
._19{width:30.806187pt;}
._16{width:31.718400pt;}
._13{width:32.812160pt;}
._14{width:33.833131pt;}
._36{width:35.430720pt;}
._35{width:36.392640pt;}
._22{width:39.064640pt;}
._2d{width:45.955200pt;}
._25{width:50.500800pt;}
._1e{width:61.275200pt;}
._20{width:76.953600pt;}
._31{width:83.438933pt;}
._27{width:87.534720pt;}
._23{width:89.040960pt;}
._32{width:90.225813pt;}
._37{width:117.087040pt;}
._34{width:122.377600pt;}
._1d{width:129.698880pt;}
._29{width:151.361173pt;}
._2b{width:171.435520pt;}
._1c{width:185.329920pt;}
._2a{width:188.269120pt;}
._2e{width:191.796160pt;}
._33{width:199.117440pt;}
._24{width:204.159893pt;}
._26{width:206.142827pt;}
._2c{width:228.616320pt;}
._30{width:246.563520pt;}
._2f{width:248.442560pt;}
._28{width:255.015680pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:6.960000pt;}
.y8f{bottom:7.040000pt;}
.y8c{bottom:22.560000pt;}
.y91{bottom:22.640000pt;}
.ye8{bottom:38.240000pt;}
.y130{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y17b{bottom:99.226667pt;}
.y155{bottom:99.626667pt;}
.ye3{bottom:100.426667pt;}
.y104{bottom:111.306667pt;}
.y19a{bottom:112.506667pt;}
.y87{bottom:114.186667pt;}
.y154{bottom:115.226667pt;}
.ye2{bottom:116.026667pt;}
.yb1{bottom:120.826667pt;}
.y103{bottom:126.906667pt;}
.y199{bottom:128.106667pt;}
.y5a{bottom:129.866667pt;}
.y153{bottom:130.826667pt;}
.ye1{bottom:131.706667pt;}
.y59{bottom:145.466667pt;}
.y152{bottom:146.506667pt;}
.y26{bottom:147.466667pt;}
.y102{bottom:150.586667pt;}
.y198{bottom:151.706667pt;}
.yb0{bottom:152.426667pt;}
.y12b{bottom:159.946667pt;}
.y58{bottom:161.066667pt;}
.y151{bottom:162.106667pt;}
.y17a{bottom:162.506667pt;}
.y25{bottom:163.146667pt;}
.ye0{bottom:163.306667pt;}
.y197{bottom:167.386667pt;}
.yaf{bottom:168.106667pt;}
.y12a{bottom:175.626667pt;}
.y57{bottom:176.746667pt;}
.y150{bottom:177.786667pt;}
.y179{bottom:178.106667pt;}
.y24{bottom:178.746667pt;}
.ydf{bottom:178.906667pt;}
.y101{bottom:182.186667pt;}
.y196{bottom:182.986667pt;}
.yae{bottom:183.706667pt;}
.y129{bottom:191.226667pt;}
.y56{bottom:192.346667pt;}
.y14f{bottom:193.386667pt;}
.y178{bottom:193.786667pt;}
.y23{bottom:194.346667pt;}
.yde{bottom:194.586667pt;}
.y100{bottom:197.866667pt;}
.y195{bottom:198.666667pt;}
.yad{bottom:199.306667pt;}
.y128{bottom:206.826667pt;}
.y55{bottom:208.026667pt;}
.y86{bottom:208.346667pt;}
.y177{bottom:209.386667pt;}
.y22{bottom:210.026667pt;}
.ydd{bottom:210.186667pt;}
.yff{bottom:213.466667pt;}
.yac{bottom:214.986667pt;}
.y14e{bottom:216.986667pt;}
.y194{bottom:222.266667pt;}
.y127{bottom:222.506667pt;}
.y54{bottom:223.626667pt;}
.y85{bottom:224.026667pt;}
.y176{bottom:224.986667pt;}
.y21{bottom:225.626667pt;}
.ydc{bottom:225.866667pt;}
.yfe{bottom:229.066667pt;}
.yab{bottom:230.586667pt;}
.y193{bottom:237.866667pt;}
.y126{bottom:238.106667pt;}
.y84{bottom:239.626667pt;}
.y53{bottom:240.026667pt;}
.y175{bottom:240.666667pt;}
.ydb{bottom:241.466667pt;}
.yfd{bottom:244.746667pt;}
.yaa{bottom:246.266667pt;}
.y14d{bottom:248.666667pt;}
.y192{bottom:253.546667pt;}
.y125{bottom:253.786667pt;}
.y83{bottom:255.226667pt;}
.y52{bottom:255.626667pt;}
.y174{bottom:256.266667pt;}
.y20{bottom:257.226667pt;}
.yfc{bottom:260.346667pt;}
.ya9{bottom:261.866667pt;}
.y14c{bottom:264.266667pt;}
.yda{bottom:265.066667pt;}
.y124{bottom:269.386667pt;}
.y82{bottom:270.906667pt;}
.y51{bottom:271.226667pt;}
.y173{bottom:271.946667pt;}
.y1f{bottom:272.906667pt;}
.yfb{bottom:275.946667pt;}
.y191{bottom:277.146667pt;}
.ya8{bottom:277.466667pt;}
.y14b{bottom:279.946667pt;}
.y123{bottom:284.986667pt;}
.y172{bottom:287.546667pt;}
.y50{bottom:287.626667pt;}
.yfa{bottom:291.626667pt;}
.y190{bottom:292.826667pt;}
.ya7{bottom:293.146667pt;}
.y81{bottom:294.506667pt;}
.y14a{bottom:295.546667pt;}
.yd9{bottom:296.746667pt;}
.y122{bottom:300.666667pt;}
.y171{bottom:303.146667pt;}
.y4f{bottom:303.226667pt;}
.y1e{bottom:304.506667pt;}
.yf9{bottom:307.226667pt;}
.y18f{bottom:308.426667pt;}
.y149{bottom:311.146667pt;}
.yd8{bottom:312.346667pt;}
.y121{bottom:316.266667pt;}
.y170{bottom:318.826667pt;}
.y4e{bottom:318.906667pt;}
.y1d{bottom:320.186667pt;}
.yf8{bottom:322.906667pt;}
.ya6{bottom:324.746667pt;}
.y80{bottom:326.106667pt;}
.y148{bottom:326.826667pt;}
.yd7{bottom:327.946667pt;}
.y120{bottom:331.946667pt;}
.y18e{bottom:332.026667pt;}
.y16f{bottom:334.426667pt;}
.y4d{bottom:334.506667pt;}
.y1c{bottom:335.786667pt;}
.yf7{bottom:338.506667pt;}
.ya5{bottom:340.426667pt;}
.y7f{bottom:341.786667pt;}
.y147{bottom:342.426667pt;}
.yd6{bottom:343.626667pt;}
.y18d{bottom:347.706667pt;}
.y16e{bottom:350.106667pt;}
.y1b{bottom:351.386667pt;}
.yf6{bottom:354.106667pt;}
.ya4{bottom:356.026667pt;}
.y7e{bottom:357.386667pt;}
.y146{bottom:358.106667pt;}
.yd5{bottom:359.226667pt;}
.y18c{bottom:363.306667pt;}
.y11f{bottom:363.546667pt;}
.y16d{bottom:365.706667pt;}
.y4c{bottom:366.906667pt;}
.y1a{bottom:367.066667pt;}
.yf5{bottom:369.786667pt;}
.ya3{bottom:371.626667pt;}
.y7d{bottom:373.066667pt;}
.y145{bottom:373.706667pt;}
.yd4{bottom:374.906667pt;}
.y11e{bottom:379.146667pt;}
.y16c{bottom:381.306667pt;}
.y19{bottom:382.666667pt;}
.yf4{bottom:385.386667pt;}
.y18b{bottom:386.986667pt;}
.ya2{bottom:387.306667pt;}
.y7c{bottom:388.666667pt;}
.y144{bottom:389.306667pt;}
.yd3{bottom:390.506667pt;}
.y4b{bottom:390.826667pt;}
.y11d{bottom:394.826667pt;}
.y18{bottom:398.346667pt;}
.y18a{bottom:402.586667pt;}
.ya1{bottom:402.906667pt;}
.y7b{bottom:404.266667pt;}
.y143{bottom:404.986667pt;}
.yd2{bottom:406.106667pt;}
.y11c{bottom:410.426667pt;}
.y16b{bottom:412.986667pt;}
.y17{bottom:413.946667pt;}
.yf3{bottom:417.066667pt;}
.y189{bottom:418.213333pt;}
.y7a{bottom:419.973333pt;}
.y142{bottom:420.613333pt;}
.yd1{bottom:421.813333pt;}
.y11b{bottom:426.133333pt;}
.ya0{bottom:426.613333pt;}
.y16a{bottom:428.613333pt;}
.yf2{bottom:432.693333pt;}
.y4a{bottom:433.733333pt;}
.y188{bottom:433.893333pt;}
.yd0{bottom:437.413333pt;}
.y16{bottom:437.893333pt;}
.y11a{bottom:441.733333pt;}
.y169{bottom:444.293333pt;}
.yf1{bottom:448.293333pt;}
.y49{bottom:449.333333pt;}
.y79{bottom:451.573333pt;}
.y141{bottom:452.293333pt;}
.ycf{bottom:453.093333pt;}
.y119{bottom:457.333333pt;}
.y187{bottom:457.813333pt;}
.y9f{bottom:458.533333pt;}
.y168{bottom:459.893333pt;}
.yf0{bottom:463.973333pt;}
.y48{bottom:465.013333pt;}
.y78{bottom:467.253333pt;}
.y140{bottom:467.893333pt;}
.yce{bottom:468.693333pt;}
.y118{bottom:473.013333pt;}
.y167{bottom:475.493333pt;}
.yef{bottom:479.573333pt;}
.y47{bottom:480.613333pt;}
.y15{bottom:481.093333pt;}
.y77{bottom:482.853333pt;}
.y13f{bottom:483.493333pt;}
.ycd{bottom:484.293333pt;}
.y117{bottom:488.613333pt;}
.y166{bottom:491.173333pt;}
.yee{bottom:495.253333pt;}
.y46{bottom:496.293333pt;}
.y76{bottom:498.453333pt;}
.y13e{bottom:499.173333pt;}
.y186{bottom:500.693333pt;}
.y9e{bottom:501.413333pt;}
.y116{bottom:504.293333pt;}
.y14{bottom:513.973333pt;}
.y75{bottom:514.133333pt;}
.y13d{bottom:514.773333pt;}
.ycc{bottom:515.973333pt;}
.y185{bottom:516.293333pt;}
.y9d{bottom:517.013333pt;}
.yed{bottom:518.853333pt;}
.y115{bottom:519.893333pt;}
.y45{bottom:527.893333pt;}
.y13{bottom:529.653333pt;}
.y74{bottom:529.733333pt;}
.y13c{bottom:530.453333pt;}
.ycb{bottom:531.573333pt;}
.y184{bottom:531.973333pt;}
.y9c{bottom:533.413333pt;}
.y114{bottom:535.493333pt;}
.y44{bottom:543.493333pt;}
.y12{bottom:545.253333pt;}
.y13b{bottom:546.053333pt;}
.y165{bottom:546.453333pt;}
.yca{bottom:547.253333pt;}
.y183{bottom:547.573333pt;}
.y9b{bottom:549.013333pt;}
.yec{bottom:550.773333pt;}
.y113{bottom:551.173333pt;}
.y73{bottom:553.413333pt;}
.y43{bottom:559.173333pt;}
.y11{bottom:560.853333pt;}
.y13a{bottom:561.653333pt;}
.y164{bottom:562.053333pt;}
.yc9{bottom:562.853333pt;}
.y182{bottom:563.253333pt;}
.y9a{bottom:565.413333pt;}
.y42{bottom:574.773333pt;}
.y10{bottom:576.533333pt;}
.y139{bottom:577.333333pt;}
.y163{bottom:577.653333pt;}
.yc8{bottom:578.453333pt;}
.y181{bottom:578.853333pt;}
.y99{bottom:581.013333pt;}
.y112{bottom:582.773333pt;}
.y72{bottom:585.013333pt;}
.y41{bottom:590.453333pt;}
.yeb{bottom:591.333333pt;}
.yf{bottom:592.133333pt;}
.y162{bottom:593.333333pt;}
.yc7{bottom:594.133333pt;}
.y180{bottom:594.453333pt;}
.y98{bottom:597.333333pt;}
.y111{bottom:598.453333pt;}
.y71{bottom:600.613333pt;}
.y138{bottom:600.933333pt;}
.y40{bottom:606.053333pt;}
.ye{bottom:607.813333pt;}
.y161{bottom:608.933333pt;}
.yc6{bottom:609.733333pt;}
.y97{bottom:613.733333pt;}
.y110{bottom:614.053333pt;}
.y70{bottom:616.293333pt;}
.y17f{bottom:618.373333pt;}
.y3f{bottom:621.653333pt;}
.yd{bottom:623.413333pt;}
.y160{bottom:624.613333pt;}
.y96{bottom:629.333333pt;}
.y10f{bottom:629.653333pt;}
.y6f{bottom:631.893333pt;}
.y137{bottom:632.613333pt;}
.yc5{bottom:633.413333pt;}
.yc{bottom:639.013333pt;}
.y15f{bottom:640.213333pt;}
.y10e{bottom:645.333333pt;}
.yea{bottom:646.933333pt;}
.y6e{bottom:647.573333pt;}
.y136{bottom:648.213333pt;}
.y3e{bottom:653.333333pt;}
.yb{bottom:654.693333pt;}
.y10d{bottom:660.933333pt;}
.y17e{bottom:661.333333pt;}
.y95{bottom:661.733333pt;}
.y6d{bottom:663.173333pt;}
.y135{bottom:663.813333pt;}
.yc4{bottom:665.333333pt;}
.y3d{bottom:668.933333pt;}
.ya{bottom:670.293333pt;}
.y15e{bottom:671.813333pt;}
.y17d{bottom:676.933333pt;}
.y6c{bottom:678.773333pt;}
.y134{bottom:679.493333pt;}
.y3c{bottom:684.613333pt;}
.y94{bottom:685.413333pt;}
.ye9{bottom:686.853333pt;}
.y15d{bottom:687.493333pt;}
.y17c{bottom:692.613333pt;}
.y9{bottom:694.293333pt;}
.y6b{bottom:694.453333pt;}
.y133{bottom:695.093333pt;}
.y3b{bottom:700.213333pt;}
.y15c{bottom:703.093333pt;}
.yc3{bottom:708.213333pt;}
.y93{bottom:714.693333pt;}
.y3a{bottom:715.813333pt;}
.y10c{bottom:716.213333pt;}
.y132{bottom:718.693333pt;}
.yc2{bottom:723.813333pt;}
.y6a{bottom:726.053333pt;}
.ye7{bottom:726.773333pt;}
.y39{bottom:731.493333pt;}
.y10b{bottom:731.813333pt;}
.y15b{bottom:734.373333pt;}
.y8{bottom:735.813333pt;}
.yc1{bottom:739.493333pt;}
.y69{bottom:741.733333pt;}
.y10a{bottom:747.493333pt;}
.y131{bottom:748.053333pt;}
.y15a{bottom:749.973333pt;}
.y92{bottom:754.613333pt;}
.yc0{bottom:755.093333pt;}
.y68{bottom:757.333333pt;}
.y38{bottom:763.093333pt;}
.y159{bottom:765.653333pt;}
.y7{bottom:767.653333pt;}
.ybf{bottom:770.693333pt;}
.y67{bottom:772.933333pt;}
.y37{bottom:778.693333pt;}
.y90{bottom:778.933333pt;}
.ye6{bottom:782.373333pt;}
.ybe{bottom:786.373333pt;}
.y66{bottom:788.613333pt;}
.y36{bottom:794.373333pt;}
.y158{bottom:794.933333pt;}
.y6{bottom:799.653333pt;}
.ybd{bottom:801.973333pt;}
.y12f{bottom:803.573333pt;}
.y65{bottom:804.213333pt;}
.y35{bottom:809.973333pt;}
.ybc{bottom:817.653333pt;}
.y8e{bottom:818.853333pt;}
.y64{bottom:819.893333pt;}
.y34{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.ybb{bottom:833.253333pt;}
.y157{bottom:834.853333pt;}
.y33{bottom:841.253333pt;}
.y8d{bottom:843.173333pt;}
.y63{bottom:843.493333pt;}
.yba{bottom:848.853333pt;}
.y32{bottom:856.853333pt;}
.ye5{bottom:857.253333pt;}
.y12e{bottom:859.173333pt;}
.y4{bottom:863.733333pt;}
.yb9{bottom:864.533333pt;}
.y8b{bottom:867.493333pt;}
.y109{bottom:872.533333pt;}
.ye4{bottom:872.853333pt;}
.y156{bottom:874.773333pt;}
.y62{bottom:875.413333pt;}
.yb8{bottom:880.133333pt;}
.y108{bottom:888.133333pt;}
.y31{bottom:888.533333pt;}
.y3{bottom:897.760000pt;}
.y107{bottom:903.840000pt;}
.y30{bottom:904.160000pt;}
.y89{bottom:907.440000pt;}
.yb7{bottom:911.840000pt;}
.y12d{bottom:914.720000pt;}
.y61{bottom:918.320000pt;}
.y106{bottom:919.440000pt;}
.y2f{bottom:919.840000pt;}
.yb6{bottom:927.440000pt;}
.y60{bottom:934.000000pt;}
.y105{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.yb5{bottom:943.040000pt;}
.y5f{bottom:949.600000pt;}
.y88{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y12c{bottom:954.640000pt;}
.yb4{bottom:958.720000pt;}
.y5e{bottom:965.200000pt;}
.y2c{bottom:966.720000pt;}
.yb3{bottom:974.320000pt;}
.y5d{bottom:980.800000pt;}
.y2b{bottom:982.320000pt;}
.yb2{bottom:990.000000pt;}
.y5c{bottom:997.200000pt;}
.y2a{bottom:998.000000pt;}
.y5b{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.226667pt;}
.he{height:39.280000pt;}
.h12{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.880000pt;}
.h10{height:54.906667pt;}
.h9{height:54.927899pt;}
.h11{height:54.960000pt;}
.ha{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:125.866667pt;}
.w5{width:132.346667pt;}
.wc{width:133.146667pt;}
.wb{width:142.080000pt;}
.wa{width:162.586667pt;}
.wf{width:167.120000pt;}
.we{width:170.586667pt;}
.wd{width:198.880000pt;}
.w9{width:239.280000pt;}
.w7{width:263.200000pt;}
.w3{width:265.066667pt;}
.w6{width:274.826667pt;}
.w4{width:406.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.xf{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.xa{left:187.626667pt;}
.x8{left:194.186667pt;}
.x7{left:326.826667pt;}
.xd{left:394.506667pt;}
.xb{left:427.546667pt;}
.x9{left:469.653333pt;}
.xe{left:565.733333pt;}
.xc{left:590.773333pt;}
.x3{left:704.053322pt;}
}




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