
    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_10b31f5de8e1eeb7fc0fe17a.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_ecedef27c30be929678937b4.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_bf8f370c2988a2b1b9b4fd2a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_3ff6aae24ce979d388194120.woff')format("woff");}.ff5{font-family:ff5;line-height:1.057129;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_462d1eea4d3f5ebc58662b03.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_27ebff48d8af1a3a09301582.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_b3621180b75cfaa1a28eb6b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eefebfdbd15b06fc78f3e7cf.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7976c582d4bdb32b97e661ed.woff')format("woff");}.ffa{font-family:ffa;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;}
.lsa{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.160800px;}
.ls11{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008760px;}
.ls3{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.041760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.116400px;}
.ls16{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.181200px;}
.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;}
}
.ws6{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.407600px;}
.wsa{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.369800px;}
.wsb{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.072800px;}
.ws11{word-spacing:-13.065600px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:0.264000px;}
.ws9{word-spacing:0.372000px;}
.ws4{word-spacing:4.304880px;}
._1a{margin-left:-4.330074px;}
._2{margin-left:-3.307201px;}
._1{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._9{width:1.000801px;}
._6{width:2.026916px;}
._3{width:3.306600px;}
._8{width:5.268482px;}
._7{width:6.372600px;}
._16{width:7.635360px;}
._13{width:9.138240px;}
._12{width:10.938121px;}
._b{width:12.144000px;}
._a{width:14.548800px;}
._f{width:16.292400px;}
._11{width:17.315402px;}
._e{width:18.997800px;}
._5{width:20.649601px;}
._4{width:21.763200px;}
._10{width:22.961400px;}
._d{width:24.048000px;}
._c{width:25.767360px;}
._1f{width:28.677240px;}
._17{width:31.675680px;}
._14{width:33.005880px;}
._15{width:34.202280px;}
._18{width:40.340520px;}
._19{width:41.436840px;}
._21{width:43.947720px;}
._1b{width:52.184160px;}
._20{width:56.873520px;}
._1e{width:95.831280px;}
._1c{width:114.708960px;}
._22{width:119.037600px;}
._24{width:120.508320px;}
._1d{width:127.995480px;}
._23{width:161.001360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yec{bottom:7.830000px;}
.yee{bottom:7.920000px;}
.y12e{bottom:25.380000px;}
.yeb{bottom:25.470000px;}
.yea{bottom:43.020000px;}
.y129{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:112.980000px;}
.yc2{bottom:121.800000px;}
.y10d{bottom:123.690000px;}
.y14e{bottom:125.670000px;}
.ye6{bottom:126.390000px;}
.y5c{bottom:130.530000px;}
.ya4{bottom:134.940000px;}
.yc1{bottom:139.440000px;}
.y26{bottom:140.250000px;}
.y10c{bottom:141.330000px;}
.y14d{bottom:143.220000px;}
.ye5{bottom:143.940000px;}
.y72{bottom:145.740000px;}
.y5b{bottom:148.170000px;}
.ya3{bottom:152.580000px;}
.yc0{bottom:156.990000px;}
.y25{bottom:157.800000px;}
.y10b{bottom:158.880000px;}
.y14c{bottom:160.770000px;}
.ye4{bottom:161.580000px;}
.y71{bottom:163.380000px;}
.y5a{bottom:165.720000px;}
.ya2{bottom:170.130000px;}
.ybf{bottom:174.630000px;}
.y24{bottom:175.350000px;}
.y10a{bottom:176.430000px;}
.y127{bottom:179.130000px;}
.y70{bottom:180.930000px;}
.y59{bottom:183.270000px;}
.ya1{bottom:187.680000px;}
.ybe{bottom:192.180000px;}
.y23{bottom:192.990000px;}
.y109{bottom:194.070000px;}
.y14b{bottom:196.410000px;}
.y126{bottom:196.680000px;}
.ye3{bottom:197.130000px;}
.y6f{bottom:198.480000px;}
.ya0{bottom:205.320000px;}
.ybd{bottom:209.730000px;}
.y58{bottom:209.910000px;}
.y22{bottom:210.540000px;}
.y108{bottom:211.620000px;}
.y14a{bottom:213.960000px;}
.y125{bottom:214.320000px;}
.ye2{bottom:214.680000px;}
.y6e{bottom:216.120000px;}
.y9f{bottom:222.870000px;}
.ybc{bottom:227.370000px;}
.y21{bottom:228.090000px;}
.y149{bottom:231.600000px;}
.y124{bottom:231.870000px;}
.ye1{bottom:232.320000px;}
.y6d{bottom:233.670000px;}
.y9e{bottom:240.510000px;}
.y17e{bottom:240.600000px;}
.y57{bottom:245.460000px;}
.y20{bottom:245.730000px;}
.y107{bottom:247.260000px;}
.y148{bottom:249.150000px;}
.y123{bottom:249.510000px;}
.ye0{bottom:249.870000px;}
.y6c{bottom:251.310000px;}
.y17d{bottom:258.240000px;}
.ybb{bottom:262.920000px;}
.y56{bottom:263.100000px;}
.y106{bottom:264.810000px;}
.y147{bottom:266.700000px;}
.y122{bottom:267.060000px;}
.ydf{bottom:267.510000px;}
.y6b{bottom:268.860000px;}
.y17c{bottom:275.790000px;}
.y9d{bottom:276.060000px;}
.yba{bottom:280.560000px;}
.y55{bottom:280.650000px;}
.y1f{bottom:281.280000px;}
.y105{bottom:282.360000px;}
.y146{bottom:284.340000px;}
.y121{bottom:284.610000px;}
.yde{bottom:285.060000px;}
.y6a{bottom:286.410000px;}
.y9c{bottom:293.610000px;}
.yb9{bottom:298.110000px;}
.y54{bottom:298.200000px;}
.y1e{bottom:298.920000px;}
.y104{bottom:300.000000px;}
.y145{bottom:301.890000px;}
.y120{bottom:302.250000px;}
.y17b{bottom:302.430000px;}
.ydd{bottom:302.610000px;}
.y69{bottom:304.050000px;}
.y9b{bottom:311.250000px;}
.yb8{bottom:315.660000px;}
.y53{bottom:315.840000px;}
.y1d{bottom:316.470000px;}
.y103{bottom:317.550000px;}
.y144{bottom:319.440000px;}
.ydc{bottom:320.250000px;}
.y68{bottom:321.600000px;}
.y9a{bottom:328.800000px;}
.y17a{bottom:328.980000px;}
.yb7{bottom:333.300000px;}
.y52{bottom:333.390000px;}
.y1c{bottom:334.020000px;}
.y102{bottom:335.190000px;}
.y11f{bottom:337.800000px;}
.y67{bottom:339.240000px;}
.y99{bottom:346.440000px;}
.y179{bottom:346.530000px;}
.yb6{bottom:350.850000px;}
.y51{bottom:350.940000px;}
.y1b{bottom:351.660000px;}
.y101{bottom:352.740000px;}
.y143{bottom:355.080000px;}
.y11e{bottom:355.440000px;}
.ydb{bottom:355.800000px;}
.y66{bottom:366.060000px;}
.yb5{bottom:368.490000px;}
.y50{bottom:368.580000px;}
.y1a{bottom:369.210000px;}
.y142{bottom:372.630000px;}
.y11d{bottom:372.990000px;}
.y178{bottom:373.170000px;}
.yda{bottom:373.440000px;}
.y100{bottom:379.290000px;}
.y98{bottom:381.990000px;}
.y19{bottom:386.850000px;}
.y141{bottom:390.270000px;}
.y11c{bottom:390.540000px;}
.y177{bottom:390.720000px;}
.yd9{bottom:390.990000px;}
.yb4{bottom:395.040000px;}
.y97{bottom:399.540000px;}
.y4f{bottom:404.130000px;}
.y140{bottom:407.820000px;}
.y11b{bottom:408.180000px;}
.yd8{bottom:408.540000px;}
.y18{bottom:413.760000px;}
.y65{bottom:414.390000px;}
.yff{bottom:414.930000px;}
.y96{bottom:417.180000px;}
.y176{bottom:417.360000px;}
.y4e{bottom:421.770000px;}
.y13f{bottom:425.370000px;}
.y11a{bottom:425.730000px;}
.yd7{bottom:426.180000px;}
.yb3{bottom:430.590000px;}
.yfe{bottom:432.480000px;}
.y95{bottom:434.730000px;}
.y175{bottom:434.910000px;}
.y4d{bottom:439.320000px;}
.y13e{bottom:443.010000px;}
.y119{bottom:443.370000px;}
.yd6{bottom:443.730000px;}
.y64{bottom:446.610000px;}
.yb2{bottom:448.230000px;}
.yfd{bottom:450.120000px;}
.y94{bottom:452.370000px;}
.y4c{bottom:456.870000px;}
.y13d{bottom:460.560000px;}
.yd5{bottom:461.370000px;}
.y174{bottom:461.460000px;}
.y17{bottom:462.000000px;}
.yb1{bottom:465.780000px;}
.yfc{bottom:467.670000px;}
.y93{bottom:469.950000px;}
.y4b{bottom:474.540000px;}
.y13c{bottom:478.230000px;}
.yd4{bottom:478.950000px;}
.y173{bottom:479.130000px;}
.y16{bottom:479.940000px;}
.yb0{bottom:483.450000px;}
.yfb{bottom:485.250000px;}
.y4a{bottom:492.090000px;}
.yd3{bottom:496.500000px;}
.yaf{bottom:501.000000px;}
.yfa{bottom:502.890000px;}
.y13b{bottom:504.780000px;}
.y92{bottom:505.500000px;}
.y172{bottom:505.680000px;}
.y49{bottom:509.730000px;}
.y118{bottom:514.140000px;}
.y153{bottom:514.500000px;}
.y15{bottom:516.930000px;}
.yae{bottom:518.550000px;}
.yf9{bottom:520.440000px;}
.y91{bottom:523.140000px;}
.y171{bottom:523.230000px;}
.y48{bottom:527.280000px;}
.y117{bottom:531.690000px;}
.yd2{bottom:532.140000px;}
.y14{bottom:534.570000px;}
.yad{bottom:536.190000px;}
.yf8{bottom:538.080000px;}
.y13a{bottom:540.330000px;}
.y90{bottom:540.690000px;}
.y170{bottom:540.870000px;}
.y47{bottom:544.830000px;}
.y116{bottom:549.330000px;}
.yd1{bottom:549.690000px;}
.y13{bottom:552.120000px;}
.yac{bottom:553.740000px;}
.yf7{bottom:555.630000px;}
.y139{bottom:557.970000px;}
.y8f{bottom:558.330000px;}
.y16f{bottom:558.420000px;}
.y46{bottom:562.470000px;}
.y115{bottom:566.880000px;}
.yd0{bottom:567.330000px;}
.y12{bottom:569.670000px;}
.yab{bottom:571.290000px;}
.yf6{bottom:573.180000px;}
.y138{bottom:575.520000px;}
.y8e{bottom:575.880000px;}
.y45{bottom:580.020000px;}
.y114{bottom:584.430000px;}
.ycf{bottom:584.880000px;}
.y16e{bottom:585.060000px;}
.y11{bottom:587.310000px;}
.yaa{bottom:588.930000px;}
.yf5{bottom:590.820000px;}
.y137{bottom:593.160000px;}
.y8d{bottom:593.430000px;}
.y44{bottom:597.660000px;}
.y113{bottom:602.070000px;}
.yce{bottom:602.430000px;}
.y16d{bottom:602.610000px;}
.y10{bottom:604.860000px;}
.ya9{bottom:606.480000px;}
.y136{bottom:610.710000px;}
.yf4{bottom:617.730000px;}
.y8c{bottom:620.070000px;}
.yf{bottom:622.500000px;}
.ya8{bottom:624.120000px;}
.y43{bottom:624.210000px;}
.y135{bottom:628.260000px;}
.y16c{bottom:629.160000px;}
.ycd{bottom:637.620000px;}
.ye{bottom:640.050000px;}
.y134{bottom:645.900000px;}
.y16b{bottom:646.800000px;}
.ya7{bottom:651.030000px;}
.ycc{bottom:655.260000px;}
.y8b{bottom:655.620000px;}
.yd{bottom:657.600000px;}
.y42{bottom:659.760000px;}
.yf3{bottom:663.360000px;}
.y133{bottom:663.450000px;}
.y112{bottom:672.810000px;}
.y8a{bottom:673.260000px;}
.y16a{bottom:673.350000px;}
.yc{bottom:675.240000px;}
.y41{bottom:677.400000px;}
.y132{bottom:681.090000px;}
.ycb{bottom:681.810000px;}
.y111{bottom:690.360000px;}
.y89{bottom:690.810000px;}
.y169{bottom:690.990000px;}
.yb{bottom:692.790000px;}
.y40{bottom:694.950000px;}
.y131{bottom:698.640000px;}
.ya6{bottom:699.270000px;}
.y110{bottom:708.000000px;}
.yf2{bottom:708.270000px;}
.y88{bottom:708.360000px;}
.ya{bottom:710.430000px;}
.y3f{bottom:712.590000px;}
.y130{bottom:716.190000px;}
.yca{bottom:717.360000px;}
.y168{bottom:717.540000px;}
.y10f{bottom:725.550000px;}
.y87{bottom:726.000000px;}
.y9{bottom:727.980000px;}
.y3e{bottom:730.140000px;}
.ya5{bottom:731.490000px;}
.yc9{bottom:735.000000px;}
.y167{bottom:735.090000px;}
.yf1{bottom:735.630000px;}
.y12f{bottom:743.100000px;}
.y86{bottom:743.550000px;}
.y3d{bottom:747.690000px;}
.y10e{bottom:752.190000px;}
.yc8{bottom:752.550000px;}
.y8{bottom:754.890000px;}
.y85{bottom:761.190000px;}
.y166{bottom:761.730000px;}
.y3c{bottom:765.330000px;}
.yc7{bottom:770.190000px;}
.y84{bottom:778.740000px;}
.y165{bottom:779.280000px;}
.yf0{bottom:780.540000px;}
.y3b{bottom:782.880000px;}
.yc6{bottom:787.740000px;}
.y12d{bottom:788.820000px;}
.y152{bottom:796.290000px;}
.y7{bottom:803.130000px;}
.yc5{bottom:805.290000px;}
.y164{bottom:806.190000px;}
.y3a{bottom:809.790000px;}
.y151{bottom:813.930000px;}
.y83{bottom:814.290000px;}
.yc4{bottom:822.930000px;}
.yef{bottom:825.450000px;}
.y82{bottom:831.930000px;}
.y6{bottom:838.950000px;}
.yc3{bottom:840.480000px;}
.y81{bottom:849.480000px;}
.y12c{bottom:851.280000px;}
.y163{bottom:854.520000px;}
.y39{bottom:858.030000px;}
.y80{bottom:867.030000px;}
.yed{bottom:870.360000px;}
.y162{bottom:872.070000px;}
.y5{bottom:874.950000px;}
.y38{bottom:875.670000px;}
.y150{bottom:876.030000px;}
.y7f{bottom:884.670000px;}
.y161{bottom:889.620000px;}
.y37{bottom:893.220000px;}
.y14f{bottom:893.670000px;}
.y12b{bottom:896.190000px;}
.y7e{bottom:902.220000px;}
.y160{bottom:907.260000px;}
.y36{bottom:910.860000px;}
.y4{bottom:910.950000px;}
.y63{bottom:911.220000px;}
.y7d{bottom:919.860000px;}
.y15f{bottom:924.810000px;}
.y35{bottom:928.410000px;}
.y62{bottom:928.860000px;}
.ye9{bottom:932.910000px;}
.y7c{bottom:937.410000px;}
.y15e{bottom:942.450000px;}
.y34{bottom:945.960000px;}
.y61{bottom:946.410000px;}
.y3{bottom:948.561000px;}
.y12a{bottom:958.740000px;}
.y15d{bottom:960.000000px;}
.y60{bottom:963.960000px;}
.y7b{bottom:972.960000px;}
.y15c{bottom:977.550000px;}
.y33{bottom:981.600000px;}
.y28{bottom:986.640000px;}
.y7a{bottom:990.600000px;}
.y15b{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.y79{bottom:1008.150000px;}
.y15a{bottom:1012.770000px;}
.y27{bottom:1015.440000px;}
.y31{bottom:1016.820000px;}
.y128{bottom:1021.230000px;}
.y78{bottom:1025.820000px;}
.y159{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y77{bottom:1043.370000px;}
.y158{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.ye8{bottom:1052.370000px;}
.y76{bottom:1060.920000px;}
.y157{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.ye7{bottom:1069.920000px;}
.y75{bottom:1078.560000px;}
.y156{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y5f{bottom:1087.560000px;}
.y74{bottom:1096.110000px;}
.y155{bottom:1100.700000px;}
.y5e{bottom:1105.110000px;}
.y73{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y154{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.190000px;}
.h5{height:50.667539px;}
.h6{height:50.902383px;}
.h4{height:55.779258px;}
.hb{height:61.740000px;}
.hf{height:61.770000px;}
.h10{height:61.793886px;}
.ha{height:62.585859px;}
.h8{height:68.352000px;}
.h9{height:68.582109px;}
.h7{height:74.004654px;}
.he{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:85.500000px;}
.we{width:90.630000px;}
.wd{width:95.310000px;}
.w7{width:95.850000px;}
.w5{width:107.460000px;}
.w4{width:109.260000px;}
.w9{width:119.640000px;}
.wc{width:122.250000px;}
.wa{width:130.410000px;}
.w6{width:132.330000px;}
.w8{width:152.010000px;}
.w3{width:155.190000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.960000px;}
.x1{left:68.040000px;}
.x2{left:71.367000px;}
.x15{left:111.239987px;}
.xf{left:189.120000px;}
.x3{left:202.799987px;}
.xa{left:224.670000px;}
.x8{left:270.209987px;}
.x6{left:283.529987px;}
.x10{left:320.250000px;}
.xb{left:334.650000px;}
.x11{left:406.560000px;}
.xc{left:442.830000px;}
.x12{left:529.530000px;}
.xd{left:575.880000px;}
.x13{left:625.560000px;}
.xe{left:672.450000px;}
.x5{left:702.059987px;}
.x7{left:715.559987px;}
.x14{left:717.000000px;}
.x4{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.142933pt;}
.ls11{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007787pt;}
.ls3{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.037120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.103467pt;}
.ls16{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.917867pt;}
.wsa{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.884267pt;}
.wsb{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.620267pt;}
.ws11{word-spacing:-11.613867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:0.234667pt;}
.ws9{word-spacing:0.330667pt;}
.ws4{word-spacing:3.826560pt;}
._1a{margin-left:-3.848955pt;}
._2{margin-left:-2.939734pt;}
._1{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._9{width:0.889601pt;}
._6{width:1.801703pt;}
._3{width:2.939200pt;}
._8{width:4.683095pt;}
._7{width:5.664533pt;}
._16{width:6.786987pt;}
._13{width:8.122880pt;}
._12{width:9.722775pt;}
._b{width:10.794666pt;}
._a{width:12.932266pt;}
._f{width:14.482133pt;}
._11{width:15.391468pt;}
._e{width:16.886933pt;}
._5{width:18.355201pt;}
._4{width:19.345066pt;}
._10{width:20.410133pt;}
._d{width:21.376000pt;}
._c{width:22.904320pt;}
._1f{width:25.490880pt;}
._17{width:28.156160pt;}
._14{width:29.338560pt;}
._15{width:30.402027pt;}
._18{width:35.858240pt;}
._19{width:36.832747pt;}
._21{width:39.064640pt;}
._1b{width:46.385920pt;}
._20{width:50.554240pt;}
._1e{width:85.183360pt;}
._1c{width:101.963520pt;}
._22{width:105.811200pt;}
._24{width:107.118507pt;}
._1d{width:113.773760pt;}
._23{width:143.112320pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:6.960000pt;}
.yee{bottom:7.040000pt;}
.y12e{bottom:22.560000pt;}
.yeb{bottom:22.640000pt;}
.yea{bottom:38.240000pt;}
.y129{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:100.426667pt;}
.yc2{bottom:108.266667pt;}
.y10d{bottom:109.946667pt;}
.y14e{bottom:111.706667pt;}
.ye6{bottom:112.346667pt;}
.y5c{bottom:116.026667pt;}
.ya4{bottom:119.946667pt;}
.yc1{bottom:123.946667pt;}
.y26{bottom:124.666667pt;}
.y10c{bottom:125.626667pt;}
.y14d{bottom:127.306667pt;}
.ye5{bottom:127.946667pt;}
.y72{bottom:129.546667pt;}
.y5b{bottom:131.706667pt;}
.ya3{bottom:135.626667pt;}
.yc0{bottom:139.546667pt;}
.y25{bottom:140.266667pt;}
.y10b{bottom:141.226667pt;}
.y14c{bottom:142.906667pt;}
.ye4{bottom:143.626667pt;}
.y71{bottom:145.226667pt;}
.y5a{bottom:147.306667pt;}
.ya2{bottom:151.226667pt;}
.ybf{bottom:155.226667pt;}
.y24{bottom:155.866667pt;}
.y10a{bottom:156.826667pt;}
.y127{bottom:159.226667pt;}
.y70{bottom:160.826667pt;}
.y59{bottom:162.906667pt;}
.ya1{bottom:166.826667pt;}
.ybe{bottom:170.826667pt;}
.y23{bottom:171.546667pt;}
.y109{bottom:172.506667pt;}
.y14b{bottom:174.586667pt;}
.y126{bottom:174.826667pt;}
.ye3{bottom:175.226667pt;}
.y6f{bottom:176.426667pt;}
.ya0{bottom:182.506667pt;}
.ybd{bottom:186.426667pt;}
.y58{bottom:186.586667pt;}
.y22{bottom:187.146667pt;}
.y108{bottom:188.106667pt;}
.y14a{bottom:190.186667pt;}
.y125{bottom:190.506667pt;}
.ye2{bottom:190.826667pt;}
.y6e{bottom:192.106667pt;}
.y9f{bottom:198.106667pt;}
.ybc{bottom:202.106667pt;}
.y21{bottom:202.746667pt;}
.y149{bottom:205.866667pt;}
.y124{bottom:206.106667pt;}
.ye1{bottom:206.506667pt;}
.y6d{bottom:207.706667pt;}
.y9e{bottom:213.786667pt;}
.y17e{bottom:213.866667pt;}
.y57{bottom:218.186667pt;}
.y20{bottom:218.426667pt;}
.y107{bottom:219.786667pt;}
.y148{bottom:221.466667pt;}
.y123{bottom:221.786667pt;}
.ye0{bottom:222.106667pt;}
.y6c{bottom:223.386667pt;}
.y17d{bottom:229.546667pt;}
.ybb{bottom:233.706667pt;}
.y56{bottom:233.866667pt;}
.y106{bottom:235.386667pt;}
.y147{bottom:237.066667pt;}
.y122{bottom:237.386667pt;}
.ydf{bottom:237.786667pt;}
.y6b{bottom:238.986667pt;}
.y17c{bottom:245.146667pt;}
.y9d{bottom:245.386667pt;}
.yba{bottom:249.386667pt;}
.y55{bottom:249.466667pt;}
.y1f{bottom:250.026667pt;}
.y105{bottom:250.986667pt;}
.y146{bottom:252.746667pt;}
.y121{bottom:252.986667pt;}
.yde{bottom:253.386667pt;}
.y6a{bottom:254.586667pt;}
.y9c{bottom:260.986667pt;}
.yb9{bottom:264.986667pt;}
.y54{bottom:265.066667pt;}
.y1e{bottom:265.706667pt;}
.y104{bottom:266.666667pt;}
.y145{bottom:268.346667pt;}
.y120{bottom:268.666667pt;}
.y17b{bottom:268.826667pt;}
.ydd{bottom:268.986667pt;}
.y69{bottom:270.266667pt;}
.y9b{bottom:276.666667pt;}
.yb8{bottom:280.586667pt;}
.y53{bottom:280.746667pt;}
.y1d{bottom:281.306667pt;}
.y103{bottom:282.266667pt;}
.y144{bottom:283.946667pt;}
.ydc{bottom:284.666667pt;}
.y68{bottom:285.866667pt;}
.y9a{bottom:292.266667pt;}
.y17a{bottom:292.426667pt;}
.yb7{bottom:296.266667pt;}
.y52{bottom:296.346667pt;}
.y1c{bottom:296.906667pt;}
.y102{bottom:297.946667pt;}
.y11f{bottom:300.266667pt;}
.y67{bottom:301.546667pt;}
.y99{bottom:307.946667pt;}
.y179{bottom:308.026667pt;}
.yb6{bottom:311.866667pt;}
.y51{bottom:311.946667pt;}
.y1b{bottom:312.586667pt;}
.y101{bottom:313.546667pt;}
.y143{bottom:315.626667pt;}
.y11e{bottom:315.946667pt;}
.ydb{bottom:316.266667pt;}
.y66{bottom:325.386667pt;}
.yb5{bottom:327.546667pt;}
.y50{bottom:327.626667pt;}
.y1a{bottom:328.186667pt;}
.y142{bottom:331.226667pt;}
.y11d{bottom:331.546667pt;}
.y178{bottom:331.706667pt;}
.yda{bottom:331.946667pt;}
.y100{bottom:337.146667pt;}
.y98{bottom:339.546667pt;}
.y19{bottom:343.866667pt;}
.y141{bottom:346.906667pt;}
.y11c{bottom:347.146667pt;}
.y177{bottom:347.306667pt;}
.yd9{bottom:347.546667pt;}
.yb4{bottom:351.146667pt;}
.y97{bottom:355.146667pt;}
.y4f{bottom:359.226667pt;}
.y140{bottom:362.506667pt;}
.y11b{bottom:362.826667pt;}
.yd8{bottom:363.146667pt;}
.y18{bottom:367.786667pt;}
.y65{bottom:368.346667pt;}
.yff{bottom:368.826667pt;}
.y96{bottom:370.826667pt;}
.y176{bottom:370.986667pt;}
.y4e{bottom:374.906667pt;}
.y13f{bottom:378.106667pt;}
.y11a{bottom:378.426667pt;}
.yd7{bottom:378.826667pt;}
.yb3{bottom:382.746667pt;}
.yfe{bottom:384.426667pt;}
.y95{bottom:386.426667pt;}
.y175{bottom:386.586667pt;}
.y4d{bottom:390.506667pt;}
.y13e{bottom:393.786667pt;}
.y119{bottom:394.106667pt;}
.yd6{bottom:394.426667pt;}
.y64{bottom:396.986667pt;}
.yb2{bottom:398.426667pt;}
.yfd{bottom:400.106667pt;}
.y94{bottom:402.106667pt;}
.y4c{bottom:406.106667pt;}
.y13d{bottom:409.386667pt;}
.yd5{bottom:410.106667pt;}
.y174{bottom:410.186667pt;}
.y17{bottom:410.666667pt;}
.yb1{bottom:414.026667pt;}
.yfc{bottom:415.706667pt;}
.y93{bottom:417.733333pt;}
.y4b{bottom:421.813333pt;}
.y13c{bottom:425.093333pt;}
.yd4{bottom:425.733333pt;}
.y173{bottom:425.893333pt;}
.y16{bottom:426.613333pt;}
.yb0{bottom:429.733333pt;}
.yfb{bottom:431.333333pt;}
.y4a{bottom:437.413333pt;}
.yd3{bottom:441.333333pt;}
.yaf{bottom:445.333333pt;}
.yfa{bottom:447.013333pt;}
.y13b{bottom:448.693333pt;}
.y92{bottom:449.333333pt;}
.y172{bottom:449.493333pt;}
.y49{bottom:453.093333pt;}
.y118{bottom:457.013333pt;}
.y153{bottom:457.333333pt;}
.y15{bottom:459.493333pt;}
.yae{bottom:460.933333pt;}
.yf9{bottom:462.613333pt;}
.y91{bottom:465.013333pt;}
.y171{bottom:465.093333pt;}
.y48{bottom:468.693333pt;}
.y117{bottom:472.613333pt;}
.yd2{bottom:473.013333pt;}
.y14{bottom:475.173333pt;}
.yad{bottom:476.613333pt;}
.yf8{bottom:478.293333pt;}
.y13a{bottom:480.293333pt;}
.y90{bottom:480.613333pt;}
.y170{bottom:480.773333pt;}
.y47{bottom:484.293333pt;}
.y116{bottom:488.293333pt;}
.yd1{bottom:488.613333pt;}
.y13{bottom:490.773333pt;}
.yac{bottom:492.213333pt;}
.yf7{bottom:493.893333pt;}
.y139{bottom:495.973333pt;}
.y8f{bottom:496.293333pt;}
.y16f{bottom:496.373333pt;}
.y46{bottom:499.973333pt;}
.y115{bottom:503.893333pt;}
.yd0{bottom:504.293333pt;}
.y12{bottom:506.373333pt;}
.yab{bottom:507.813333pt;}
.yf6{bottom:509.493333pt;}
.y138{bottom:511.573333pt;}
.y8e{bottom:511.893333pt;}
.y45{bottom:515.573333pt;}
.y114{bottom:519.493333pt;}
.ycf{bottom:519.893333pt;}
.y16e{bottom:520.053333pt;}
.y11{bottom:522.053333pt;}
.yaa{bottom:523.493333pt;}
.yf5{bottom:525.173333pt;}
.y137{bottom:527.253333pt;}
.y8d{bottom:527.493333pt;}
.y44{bottom:531.253333pt;}
.y113{bottom:535.173333pt;}
.yce{bottom:535.493333pt;}
.y16d{bottom:535.653333pt;}
.y10{bottom:537.653333pt;}
.ya9{bottom:539.093333pt;}
.y136{bottom:542.853333pt;}
.yf4{bottom:549.093333pt;}
.y8c{bottom:551.173333pt;}
.yf{bottom:553.333333pt;}
.ya8{bottom:554.773333pt;}
.y43{bottom:554.853333pt;}
.y135{bottom:558.453333pt;}
.y16c{bottom:559.253333pt;}
.ycd{bottom:566.773333pt;}
.ye{bottom:568.933333pt;}
.y134{bottom:574.133333pt;}
.y16b{bottom:574.933333pt;}
.ya7{bottom:578.693333pt;}
.ycc{bottom:582.453333pt;}
.y8b{bottom:582.773333pt;}
.yd{bottom:584.533333pt;}
.y42{bottom:586.453333pt;}
.yf3{bottom:589.653333pt;}
.y133{bottom:589.733333pt;}
.y112{bottom:598.053333pt;}
.y8a{bottom:598.453333pt;}
.y16a{bottom:598.533333pt;}
.yc{bottom:600.213333pt;}
.y41{bottom:602.133333pt;}
.y132{bottom:605.413333pt;}
.ycb{bottom:606.053333pt;}
.y111{bottom:613.653333pt;}
.y89{bottom:614.053333pt;}
.y169{bottom:614.213333pt;}
.yb{bottom:615.813333pt;}
.y40{bottom:617.733333pt;}
.y131{bottom:621.013333pt;}
.ya6{bottom:621.573333pt;}
.y110{bottom:629.333333pt;}
.yf2{bottom:629.573333pt;}
.y88{bottom:629.653333pt;}
.ya{bottom:631.493333pt;}
.y3f{bottom:633.413333pt;}
.y130{bottom:636.613333pt;}
.yca{bottom:637.653333pt;}
.y168{bottom:637.813333pt;}
.y10f{bottom:644.933333pt;}
.y87{bottom:645.333333pt;}
.y9{bottom:647.093333pt;}
.y3e{bottom:649.013333pt;}
.ya5{bottom:650.213333pt;}
.yc9{bottom:653.333333pt;}
.y167{bottom:653.413333pt;}
.yf1{bottom:653.893333pt;}
.y12f{bottom:660.533333pt;}
.y86{bottom:660.933333pt;}
.y3d{bottom:664.613333pt;}
.y10e{bottom:668.613333pt;}
.yc8{bottom:668.933333pt;}
.y8{bottom:671.013333pt;}
.y85{bottom:676.613333pt;}
.y166{bottom:677.093333pt;}
.y3c{bottom:680.293333pt;}
.yc7{bottom:684.613333pt;}
.y84{bottom:692.213333pt;}
.y165{bottom:692.693333pt;}
.yf0{bottom:693.813333pt;}
.y3b{bottom:695.893333pt;}
.yc6{bottom:700.213333pt;}
.y12d{bottom:701.173333pt;}
.y152{bottom:707.813333pt;}
.y7{bottom:713.893333pt;}
.yc5{bottom:715.813333pt;}
.y164{bottom:716.613333pt;}
.y3a{bottom:719.813333pt;}
.y151{bottom:723.493333pt;}
.y83{bottom:723.813333pt;}
.yc4{bottom:731.493333pt;}
.yef{bottom:733.733333pt;}
.y82{bottom:739.493333pt;}
.y6{bottom:745.733333pt;}
.yc3{bottom:747.093333pt;}
.y81{bottom:755.093333pt;}
.y12c{bottom:756.693333pt;}
.y163{bottom:759.573333pt;}
.y39{bottom:762.693333pt;}
.y80{bottom:770.693333pt;}
.yed{bottom:773.653333pt;}
.y162{bottom:775.173333pt;}
.y5{bottom:777.733333pt;}
.y38{bottom:778.373333pt;}
.y150{bottom:778.693333pt;}
.y7f{bottom:786.373333pt;}
.y161{bottom:790.773333pt;}
.y37{bottom:793.973333pt;}
.y14f{bottom:794.373333pt;}
.y12b{bottom:796.613333pt;}
.y7e{bottom:801.973333pt;}
.y160{bottom:806.453333pt;}
.y36{bottom:809.653333pt;}
.y4{bottom:809.733333pt;}
.y63{bottom:809.973333pt;}
.y7d{bottom:817.653333pt;}
.y15f{bottom:822.053333pt;}
.y35{bottom:825.253333pt;}
.y62{bottom:825.653333pt;}
.ye9{bottom:829.253333pt;}
.y7c{bottom:833.253333pt;}
.y15e{bottom:837.733333pt;}
.y34{bottom:840.853333pt;}
.y61{bottom:841.253333pt;}
.y3{bottom:843.165333pt;}
.y12a{bottom:852.213333pt;}
.y15d{bottom:853.333333pt;}
.y60{bottom:856.853333pt;}
.y7b{bottom:864.853333pt;}
.y15c{bottom:868.933333pt;}
.y33{bottom:872.533333pt;}
.y28{bottom:877.013333pt;}
.y7a{bottom:880.533333pt;}
.y15b{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.y79{bottom:896.133333pt;}
.y15a{bottom:900.240000pt;}
.y27{bottom:902.613333pt;}
.y31{bottom:903.840000pt;}
.y128{bottom:907.760000pt;}
.y78{bottom:911.840000pt;}
.y159{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y77{bottom:927.440000pt;}
.y158{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.ye8{bottom:935.440000pt;}
.y76{bottom:943.040000pt;}
.y157{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.ye7{bottom:951.040000pt;}
.y75{bottom:958.720000pt;}
.y156{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y5f{bottom:966.720000pt;}
.y74{bottom:974.320000pt;}
.y155{bottom:978.400000pt;}
.y5e{bottom:982.320000pt;}
.y73{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y154{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.280000pt;}
.h5{height:45.037812pt;}
.h6{height:45.246562pt;}
.h4{height:49.581562pt;}
.hb{height:54.880000pt;}
.hf{height:54.906667pt;}
.h10{height:54.927899pt;}
.ha{height:55.631875pt;}
.h8{height:60.757333pt;}
.h9{height:60.961875pt;}
.h7{height:65.781915pt;}
.he{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:76.000000pt;}
.we{width:80.560000pt;}
.wd{width:84.720000pt;}
.w7{width:85.200000pt;}
.w5{width:95.520000pt;}
.w4{width:97.120000pt;}
.w9{width:106.346667pt;}
.wc{width:108.666667pt;}
.wa{width:115.920000pt;}
.w6{width:117.626667pt;}
.w8{width:135.120000pt;}
.w3{width:137.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.520000pt;}
.x1{left:60.480000pt;}
.x2{left:63.437333pt;}
.x15{left:98.879988pt;}
.xf{left:168.106667pt;}
.x3{left:180.266655pt;}
.xa{left:199.706667pt;}
.x8{left:240.186655pt;}
.x6{left:252.026655pt;}
.x10{left:284.666667pt;}
.xb{left:297.466667pt;}
.x11{left:361.386667pt;}
.xc{left:393.626667pt;}
.x12{left:470.693333pt;}
.xd{left:511.893333pt;}
.x13{left:556.053333pt;}
.xe{left:597.733333pt;}
.x5{left:624.053322pt;}
.x7{left:636.053322pt;}
.x14{left:637.333333pt;}
.x4{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; }
  