
    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_7557b81d7441baabbb19bfb2.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_a8ae4fb6bf91e7f221ef32f1.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_2aac38883c74d64ad3b02146.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_53c0e20e339c53f5a46d1b04.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_b7e3e6b35f0848dfb1c0b54b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82748409facdbaee4071350a.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_94c32e5d049da064fa5af8e9.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_75152b2d99915b99fbc83a66.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-2.706000px;}
.ls27{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.266000px;}
.ls23{letter-spacing:-0.876000px;}
.ls22{letter-spacing:-0.726000px;}
.ls16{letter-spacing:-0.522000px;}
.ls13{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls26{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls24{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls2c{letter-spacing:-0.078000px;}
.ls9{letter-spacing:-0.063600px;}
.lsb{letter-spacing:-0.031800px;}
.ls1c{letter-spacing:-0.014760px;}
.ls1f{letter-spacing:-0.013320px;}
.ls20{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.064800px;}
.ls12{letter-spacing:0.072000px;}
.lse{letter-spacing:0.074160px;}
.ls28{letter-spacing:0.074400px;}
.ls1e{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.105600px;}
.ls21{letter-spacing:0.116400px;}
.ls25{letter-spacing:0.119160px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls2b{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:3.333600px;}
.ls2a{letter-spacing:47.726640px;}
.ls1b{letter-spacing:55.406640px;}
.ls1a{letter-spacing:63.566640px;}
.ls29{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;}
}
.wsb{word-spacing:-15.912000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws1c{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws16{word-spacing:-13.342800px;}
.ws5{word-spacing:-13.332000px;}
.ws1b{word-spacing:-13.300800px;}
.ws11{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.220280px;}
.ws14{word-spacing:-13.213080px;}
.ws12{word-spacing:-13.211640px;}
.ws1d{word-spacing:-13.148400px;}
.ws19{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.072800px;}
.ws1a{word-spacing:-13.047600px;}
.ws9{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.wsf{word-spacing:-12.704400px;}
.ws17{word-spacing:-12.500400px;}
.ws18{word-spacing:-12.350400px;}
.ws10{word-spacing:-11.960400px;}
.wse{word-spacing:-10.520400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
.ws6{word-spacing:18.704880px;}
._14{margin-left:-5.020080px;}
._11{margin-left:-3.942000px;}
._8{margin-left:-2.853480px;}
._1{margin-left:-1.114320px;}
._0{width:1.120080px;}
._3{width:2.705400px;}
._4{width:3.813240px;}
._2{width:5.651400px;}
._5{width:6.767760px;}
._10{width:7.906923px;}
._7{width:8.961239px;}
._6{width:10.160400px;}
._9{width:12.024000px;}
._d{width:14.537880px;}
._1c{width:16.063200px;}
._15{width:17.295600px;}
._13{width:19.178280px;}
._16{width:20.440800px;}
._19{width:21.972240px;}
._e{width:23.177880px;}
._1e{width:26.031960px;}
._1f{width:27.779520px;}
._20{width:33.306480px;}
._c{width:37.154160px;}
._1a{width:38.372040px;}
._17{width:39.395280px;}
._18{width:40.795680px;}
._f{width:47.567880px;}
._22{width:56.184240px;}
._a{width:57.414600px;}
._b{width:58.468800px;}
._1d{width:59.523840px;}
._21{width:80.320320px;}
._1b{width:93.802080px;}
._12{width:207.534240px;}
.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;}
.y31{bottom:7.830000px;}
.y36{bottom:7.920000px;}
.y3f{bottom:11.610000px;}
.y44{bottom:11.700000px;}
.y34{bottom:13.050000px;}
.y60{bottom:21.690000px;}
.yae{bottom:25.380000px;}
.y56{bottom:25.470000px;}
.y54{bottom:25.500000px;}
.y6b{bottom:26.190000px;}
.y38{bottom:27.090000px;}
.y62{bottom:29.250000px;}
.y39{bottom:29.970000px;}
.y33{bottom:35.190000px;}
.ybd{bottom:43.020000px;}
.ybb{bottom:43.110000px;}
.yac{bottom:47.520000px;}
.yb5{bottom:47.610000px;}
.yd6{bottom:60.570000px;}
.yc2{bottom:60.660000px;}
.yb9{bottom:65.070000px;}
.yd0{bottom:65.160000px;}
.yb4{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.yd4{bottom:78.210000px;}
.yb8{bottom:82.710000px;}
.yb3{bottom:87.210000px;}
.ydd{bottom:95.760000px;}
.yd3{bottom:95.850000px;}
.yb7{bottom:100.260000px;}
.yc7{bottom:100.350000px;}
.ycf{bottom:100.380000px;}
.y1{bottom:101.640000px;}
.ydc{bottom:113.310000px;}
.yd2{bottom:113.400000px;}
.yf8{bottom:114.510000px;}
.y8d{bottom:115.410000px;}
.yc1{bottom:117.900000px;}
.yce{bottom:122.430000px;}
.y14f{bottom:124.680000px;}
.y26{bottom:126.300000px;}
.ydb{bottom:130.950000px;}
.yf7{bottom:132.150000px;}
.y8c{bottom:132.960000px;}
.yc0{bottom:135.450000px;}
.ycd{bottom:139.980000px;}
.y14e{bottom:142.320000px;}
.y25{bottom:143.940000px;}
.yd5{bottom:144.030000px;}
.y122{bottom:145.650000px;}
.yda{bottom:148.500000px;}
.y8b{bottom:150.510000px;}
.yc6{bottom:153.090000px;}
.ybf{bottom:153.120000px;}
.ycc{bottom:157.620000px;}
.yb6{bottom:157.890000px;}
.yf6{bottom:159.060000px;}
.y121{bottom:163.200000px;}
.y8a{bottom:168.150000px;}
.y14d{bottom:168.870000px;}
.yc5{bottom:170.640000px;}
.y24{bottom:170.850000px;}
.y4f{bottom:173.010000px;}
.ycb{bottom:175.170000px;}
.y9c{bottom:183.540000px;}
.y89{bottom:185.700000px;}
.y14c{bottom:186.510000px;}
.y120{bottom:189.840000px;}
.yca{bottom:192.810000px;}
.yf5{bottom:196.410000px;}
.y88{bottom:203.340000px;}
.y11f{bottom:207.390000px;}
.yc9{bottom:210.360000px;}
.y14b{bottom:213.060000px;}
.y4e{bottom:214.410000px;}
.y23{bottom:219.090000px;}
.y87{bottom:220.890000px;}
.y14a{bottom:230.610000px;}
.y11e{bottom:233.940000px;}
.y22{bottom:236.640000px;}
.y86{bottom:238.440000px;}
.yd1{bottom:241.680000px;}
.yf4{bottom:244.650000px;}
.y6c{bottom:251.310000px;}
.y11d{bottom:251.580000px;}
.y21{bottom:254.280000px;}
.y9b{bottom:254.730000px;}
.y4d{bottom:255.810000px;}
.y85{bottom:256.080000px;}
.y149{bottom:257.250000px;}
.yf3{bottom:262.200000px;}
.y11c{bottom:269.130000px;}
.y20{bottom:271.830000px;}
.y4c{bottom:273.360000px;}
.y84{bottom:273.630000px;}
.y148{bottom:274.800000px;}
.yb2{bottom:277.590000px;}
.yf2{bottom:279.840000px;}
.y9a{bottom:286.950000px;}
.y1f{bottom:289.380000px;}
.y83{bottom:291.270000px;}
.y147{bottom:292.440000px;}
.y11b{bottom:295.770000px;}
.y6a{bottom:296.220000px;}
.yf1{bottom:297.390000px;}
.y4b{bottom:300.720000px;}
.y1e{bottom:307.020000px;}
.y82{bottom:308.820000px;}
.y11a{bottom:313.320000px;}
.yf0{bottom:314.940000px;}
.y146{bottom:318.990000px;}
.y1d{bottom:324.570000px;}
.y81{bottom:326.370000px;}
.y4a{bottom:328.080000px;}
.y145{bottom:336.540000px;}
.y119{bottom:339.870000px;}
.yef{bottom:341.850000px;}
.y1c{bottom:342.210000px;}
.y80{bottom:343.920000px;}
.y69{bottom:345.630000px;}
.y144{bottom:354.180000px;}
.y118{bottom:357.510000px;}
.y49{bottom:359.130000px;}
.y1b{bottom:359.760000px;}
.y7f{bottom:362.370000px;}
.yc8{bottom:374.520000px;}
.y68{bottom:376.770000px;}
.y1a{bottom:377.310000px;}
.y7e{bottom:380.010000px;}
.y143{bottom:380.730000px;}
.y117{bottom:384.060000px;}
.yb1{bottom:384.330000px;}
.y48{bottom:386.490000px;}
.yee{bottom:390.180000px;}
.y7d{bottom:397.560000px;}
.y142{bottom:398.370000px;}
.y116{bottom:401.700000px;}
.y19{bottom:404.220000px;}
.yed{bottom:407.730000px;}
.y67{bottom:407.820000px;}
.y7c{bottom:416.010000px;}
.y47{bottom:417.540000px;}
.y115{bottom:419.250000px;}
.y141{bottom:424.920000px;}
.yb0{bottom:433.020000px;}
.y7b{bottom:433.560000px;}
.y66{bottom:438.870000px;}
.y140{bottom:442.470000px;}
.yec{bottom:443.370000px;}
.y114{bottom:445.800000px;}
.y46{bottom:448.680000px;}
.y7a{bottom:451.110000px;}
.y18{bottom:452.820000px;}
.yeb{bottom:460.920000px;}
.yaf{bottom:468.570000px;}
.y79{bottom:468.750000px;}
.y13f{bottom:469.110000px;}
.y65{bottom:470.040000px;}
.y113{bottom:472.470000px;}
.yea{bottom:478.500000px;}
.y45{bottom:479.760000px;}
.yad{bottom:483.630000px;}
.y78{bottom:486.330000px;}
.y13e{bottom:486.690000px;}
.y17{bottom:489.930000px;}
.ye9{bottom:496.140000px;}
.y112{bottom:499.020000px;}
.y64{bottom:501.090000px;}
.y77{bottom:503.970000px;}
.y16{bottom:507.480000px;}
.y43{bottom:510.810000px;}
.y13d{bottom:513.330000px;}
.y111{bottom:516.660000px;}
.y76{bottom:521.520000px;}
.y15{bottom:525.120000px;}
.yab{bottom:528.540000px;}
.y13c{bottom:530.880000px;}
.ye8{bottom:531.690000px;}
.y75{bottom:539.070000px;}
.y42{bottom:541.950000px;}
.y14{bottom:542.670000px;}
.y110{bottom:543.210000px;}
.y63{bottom:546.000000px;}
.ye7{bottom:549.330000px;}
.y74{bottom:556.710000px;}
.y13b{bottom:557.430000px;}
.ye6{bottom:566.880000px;}
.y10f{bottom:569.760000px;}
.y41{bottom:573.000000px;}
.y73{bottom:574.260000px;}
.y13a{bottom:575.070000px;}
.y13{bottom:578.220000px;}
.ye5{bottom:584.430000px;}
.y99{bottom:585.060000px;}
.y61{bottom:590.910000px;}
.y72{bottom:592.620000px;}
.yaa{bottom:595.500000px;}
.y12{bottom:595.860000px;}
.y10e{bottom:596.400000px;}
.y139{bottom:601.620000px;}
.ye4{bottom:601.980000px;}
.y40{bottom:604.140000px;}
.yc4{bottom:604.320000px;}
.y71{bottom:611.070000px;}
.y11{bottom:613.410000px;}
.y138{bottom:619.260000px;}
.ya9{bottom:622.860000px;}
.y10d{bottom:622.950000px;}
.y98{bottom:625.830000px;}
.y70{bottom:629.520000px;}
.y10{bottom:630.960000px;}
.y3e{bottom:635.190000px;}
.ye3{bottom:638.430000px;}
.y5f{bottom:639.600000px;}
.y137{bottom:645.810000px;}
.y10c{bottom:649.590000px;}
.ya8{bottom:650.220000px;}
.ye2{bottom:656.070000px;}
.y6f{bottom:656.970000px;}
.y136{bottom:663.360000px;}
.y3d{bottom:666.240000px;}
.yf{bottom:666.600000px;}
.y10b{bottom:667.140000px;}
.ye1{bottom:673.620000px;}
.ye{bottom:684.150000px;}
.y5e{bottom:684.510000px;}
.y135{bottom:690.000000px;}
.ye0{bottom:691.260000px;}
.y6e{bottom:692.520000px;}
.y10a{bottom:693.690000px;}
.ya7{bottom:695.130000px;}
.yd{bottom:701.790000px;}
.y134{bottom:707.550000px;}
.y3c{bottom:715.020000px;}
.ydf{bottom:718.080000px;}
.yc{bottom:719.340000px;}
.y109{bottom:720.330000px;}
.ya6{bottom:722.490000px;}
.y6d{bottom:724.740000px;}
.y5d{bottom:733.200000px;}
.y133{bottom:734.190000px;}
.yb{bottom:736.890000px;}
.y108{bottom:737.880000px;}
.ya5{bottom:749.760000px;}
.y3b{bottom:750.570000px;}
.y132{bottom:751.740000px;}
.ya{bottom:754.530000px;}
.yde{bottom:763.800000px;}
.y107{bottom:764.520000px;}
.y5c{bottom:768.840000px;}
.y3a{bottom:774.510000px;}
.y131{bottom:778.290000px;}
.y9{bottom:781.440000px;}
.y106{bottom:791.070000px;}
.y5b{bottom:792.780000px;}
.yc3{bottom:794.490000px;}
.ya4{bottom:794.670000px;}
.y130{bottom:795.930000px;}
.y105{bottom:817.620000px;}
.y5a{bottom:820.140000px;}
.y12f{bottom:822.480000px;}
.y37{bottom:823.920000px;}
.y8{bottom:828.240000px;}
.y104{bottom:835.260000px;}
.ya3{bottom:839.670000px;}
.y12e{bottom:840.030000px;}
.yd9{bottom:843.900000px;}
.y59{bottom:847.500000px;}
.ybe{bottom:856.950000px;}
.y103{bottom:861.810000px;}
.y7{bottom:863.790000px;}
.y12d{bottom:866.670000px;}
.ya2{bottom:866.940000px;}
.y32{bottom:873.420000px;}
.y58{bottom:874.770000px;}
.y12c{bottom:884.220000px;}
.y97{bottom:887.640000px;}
.y102{bottom:888.450000px;}
.ya1{bottom:894.300000px;}
.y6{bottom:899.610000px;}
.y35{bottom:900.690000px;}
.y57{bottom:902.130000px;}
.y12b{bottom:910.860000px;}
.y96{bottom:914.910000px;}
.y101{bottom:915.000000px;}
.y30{bottom:928.050000px;}
.y12a{bottom:928.410000px;}
.y100{bottom:932.550000px;}
.y5{bottom:935.610000px;}
.ya0{bottom:939.210000px;}
.y95{bottom:942.270000px;}
.y156{bottom:945.960000px;}
.y55{bottom:947.040000px;}
.y129{bottom:954.960000px;}
.yff{bottom:959.190000px;}
.y155{bottom:963.600000px;}
.y4{bottom:971.700000px;}
.y128{bottom:972.600000px;}
.y94{bottom:973.410000px;}
.y2f{bottom:976.740000px;}
.y9f{bottom:984.120000px;}
.yfe{bottom:985.740000px;}
.y127{bottom:990.150000px;}
.y53{bottom:991.950000px;}
.y93{bottom:1000.770000px;}
.yfd{bottom:1003.290000px;}
.y154{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.yd8{bottom:1011.960000px;}
.y2e{bottom:1012.320000px;}
.y126{bottom:1016.820000px;}
.y153{bottom:1025.370000px;}
.y9e{bottom:1029.060000px;}
.ybc{bottom:1029.510000px;}
.y2d{bottom:1029.960000px;}
.y92{bottom:1031.400000px;}
.y125{bottom:1034.370000px;}
.y52{bottom:1036.890000px;}
.y91{bottom:1049.850000px;}
.y152{bottom:1051.920000px;}
.yfc{bottom:1056.510000px;}
.y2c{bottom:1056.870000px;}
.y124{bottom:1060.920000px;}
.y51{bottom:1064.250000px;}
.y90{bottom:1067.400000px;}
.y151{bottom:1069.560000px;}
.y9d{bottom:1073.970000px;}
.yfb{bottom:1074.150000px;}
.yd7{bottom:1074.420000px;}
.y123{bottom:1078.560000px;}
.y8f{bottom:1085.850000px;}
.y50{bottom:1091.610000px;}
.yba{bottom:1091.970000px;}
.y150{bottom:1096.110000px;}
.yfa{bottom:1100.700000px;}
.y8e{bottom:1104.300000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.yf9{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h8{height:26.550000px;}
.h17{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.hd{height:30.330000px;}
.h10{height:30.360000px;}
.hf{height:30.420000px;}
.h3{height:38.100586px;}
.h19{height:44.100000px;}
.h13{height:44.190000px;}
.h12{height:44.220000px;}
.h14{height:47.970000px;}
.hb{height:48.690000px;}
.h6{height:50.902383px;}
.h9{height:53.910000px;}
.h5{height:55.779258px;}
.hc{height:60.960938px;}
.h1d{height:61.740000px;}
.h16{height:61.793886px;}
.h1c{height:61.830000px;}
.h15{height:62.585859px;}
.he{height:66.022383px;}
.h18{height:66.240000px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:74.004654px;}
.h25{height:79.290000px;}
.h23{height:79.380000px;}
.h22{height:96.930000px;}
.h1a{height:105.930000px;}
.h1b{height:118.980000px;}
.h21{height:132.120000px;}
.h24{height:167.250000px;}
.h1e{height:171.840000px;}
.h1f{height:189.360000px;}
.h20{height:229.080000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:41.310000px;}
.w16{width:41.760000px;}
.w3{width:48.960000px;}
.w10{width:59.580000px;}
.w7{width:63.090000px;}
.w13{width:78.120000px;}
.w5{width:108.540000px;}
.w14{width:122.310000px;}
.w12{width:124.950000px;}
.w11{width:152.040000px;}
.w17{width:154.020000px;}
.wd{width:186.150000px;}
.wb{width:190.110000px;}
.wf{width:212.340000px;}
.w8{width:243.720000px;}
.w9{width:249.510000px;}
.w4{width:258.330000px;}
.w6{width:322.050000px;}
.w15{width:378.390000px;}
.wc{width:522.840000px;}
.we{width:526.710000px;}
.w18{width:558.390000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.870000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:76.590000px;}
.x12{left:95.039987px;}
.xd{left:110.790000px;}
.x1a{left:118.440000px;}
.x14{left:122.039987px;}
.x6{left:126.270000px;}
.x16{left:129.060000px;}
.x13{left:149.039987px;}
.x9{left:167.700000px;}
.x15{left:176.069987px;}
.x2{left:202.799987px;}
.xb{left:231.510000px;}
.x1b{left:244.200000px;}
.x1e{left:266.070000px;}
.xf{left:297.750000px;}
.xe{left:301.620000px;}
.x1c{left:323.040000px;}
.x11{left:342.209987px;}
.x18{left:350.669987px;}
.x7{left:385.320000px;}
.x1d{left:446.070000px;}
.xc{left:476.040000px;}
.x8{left:494.580000px;}
.x10{left:590.639987px;}
.x17{left:625.739987px;}
.x19{left:635.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-2.405333pt;}
.ls27{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.125333pt;}
.ls23{letter-spacing:-0.778667pt;}
.ls22{letter-spacing:-0.645333pt;}
.ls16{letter-spacing:-0.464000pt;}
.ls13{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls26{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls24{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls2c{letter-spacing:-0.069333pt;}
.ls9{letter-spacing:-0.056533pt;}
.lsb{letter-spacing:-0.028267pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls20{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.057600pt;}
.ls12{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.065920pt;}
.ls28{letter-spacing:0.066133pt;}
.ls1e{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.093867pt;}
.ls21{letter-spacing:0.103467pt;}
.ls25{letter-spacing:0.105920pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:2.963200pt;}
.ls2a{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:49.250347pt;}
.ls1a{letter-spacing:56.503680pt;}
.ls29{letter-spacing:71.863680pt;}
.wsb{word-spacing:-14.144000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws1c{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws16{word-spacing:-11.860267pt;}
.ws5{word-spacing:-11.850667pt;}
.ws1b{word-spacing:-11.822933pt;}
.ws11{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.751360pt;}
.ws14{word-spacing:-11.744960pt;}
.ws12{word-spacing:-11.743680pt;}
.ws1d{word-spacing:-11.687467pt;}
.ws19{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.620267pt;}
.ws1a{word-spacing:-11.597867pt;}
.ws9{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.wsf{word-spacing:-11.292800pt;}
.ws17{word-spacing:-11.111467pt;}
.ws18{word-spacing:-10.978133pt;}
.ws10{word-spacing:-10.631467pt;}
.wse{word-spacing:-9.351467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
.ws6{word-spacing:16.626560pt;}
._14{margin-left:-4.462293pt;}
._11{margin-left:-3.504000pt;}
._8{margin-left:-2.536426pt;}
._1{margin-left:-0.990507pt;}
._0{width:0.995627pt;}
._3{width:2.404800pt;}
._4{width:3.389547pt;}
._2{width:5.023467pt;}
._5{width:6.015786pt;}
._10{width:7.028376pt;}
._7{width:7.965546pt;}
._6{width:9.031467pt;}
._9{width:10.688000pt;}
._d{width:12.922560pt;}
._1c{width:14.278400pt;}
._15{width:15.373867pt;}
._13{width:17.047360pt;}
._16{width:18.169600pt;}
._19{width:19.530880pt;}
._e{width:20.602560pt;}
._1e{width:23.139520pt;}
._1f{width:24.692907pt;}
._20{width:29.605760pt;}
._c{width:33.025920pt;}
._1a{width:34.108480pt;}
._17{width:35.018027pt;}
._18{width:36.262827pt;}
._f{width:42.282560pt;}
._22{width:49.941547pt;}
._a{width:51.035200pt;}
._b{width:51.972267pt;}
._1d{width:52.910080pt;}
._21{width:71.395840pt;}
._1b{width:83.379627pt;}
._12{width:184.474880pt;}
.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;}
.y31{bottom:6.960000pt;}
.y36{bottom:7.040000pt;}
.y3f{bottom:10.320000pt;}
.y44{bottom:10.400000pt;}
.y34{bottom:11.600000pt;}
.y60{bottom:19.280000pt;}
.yae{bottom:22.560000pt;}
.y56{bottom:22.640000pt;}
.y54{bottom:22.666667pt;}
.y6b{bottom:23.280000pt;}
.y38{bottom:24.080000pt;}
.y62{bottom:26.000000pt;}
.y39{bottom:26.640000pt;}
.y33{bottom:31.280000pt;}
.ybd{bottom:38.240000pt;}
.ybb{bottom:38.320000pt;}
.yac{bottom:42.240000pt;}
.yb5{bottom:42.320000pt;}
.yd6{bottom:53.840000pt;}
.yc2{bottom:53.920000pt;}
.yb9{bottom:57.840000pt;}
.yd0{bottom:57.920000pt;}
.yb4{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.yd4{bottom:69.520000pt;}
.yb8{bottom:73.520000pt;}
.yb3{bottom:77.520000pt;}
.ydd{bottom:85.120000pt;}
.yd3{bottom:85.200000pt;}
.yb7{bottom:89.120000pt;}
.yc7{bottom:89.200000pt;}
.ycf{bottom:89.226667pt;}
.y1{bottom:90.346667pt;}
.ydc{bottom:100.720000pt;}
.yd2{bottom:100.800000pt;}
.yf8{bottom:101.786667pt;}
.y8d{bottom:102.586667pt;}
.yc1{bottom:104.800000pt;}
.yce{bottom:108.826667pt;}
.y14f{bottom:110.826667pt;}
.y26{bottom:112.266667pt;}
.ydb{bottom:116.400000pt;}
.yf7{bottom:117.466667pt;}
.y8c{bottom:118.186667pt;}
.yc0{bottom:120.400000pt;}
.ycd{bottom:124.426667pt;}
.y14e{bottom:126.506667pt;}
.y25{bottom:127.946667pt;}
.yd5{bottom:128.026667pt;}
.y122{bottom:129.466667pt;}
.yda{bottom:132.000000pt;}
.y8b{bottom:133.786667pt;}
.yc6{bottom:136.080000pt;}
.ybf{bottom:136.106667pt;}
.ycc{bottom:140.106667pt;}
.yb6{bottom:140.346667pt;}
.yf6{bottom:141.386667pt;}
.y121{bottom:145.066667pt;}
.y8a{bottom:149.466667pt;}
.y14d{bottom:150.106667pt;}
.yc5{bottom:151.680000pt;}
.y24{bottom:151.866667pt;}
.y4f{bottom:153.786667pt;}
.ycb{bottom:155.706667pt;}
.y9c{bottom:163.146667pt;}
.y89{bottom:165.066667pt;}
.y14c{bottom:165.786667pt;}
.y120{bottom:168.746667pt;}
.yca{bottom:171.386667pt;}
.yf5{bottom:174.586667pt;}
.y88{bottom:180.746667pt;}
.y11f{bottom:184.346667pt;}
.yc9{bottom:186.986667pt;}
.y14b{bottom:189.386667pt;}
.y4e{bottom:190.586667pt;}
.y23{bottom:194.746667pt;}
.y87{bottom:196.346667pt;}
.y14a{bottom:204.986667pt;}
.y11e{bottom:207.946667pt;}
.y22{bottom:210.346667pt;}
.y86{bottom:211.946667pt;}
.yd1{bottom:214.826667pt;}
.yf4{bottom:217.466667pt;}
.y6c{bottom:223.386667pt;}
.y11d{bottom:223.626667pt;}
.y21{bottom:226.026667pt;}
.y9b{bottom:226.426667pt;}
.y4d{bottom:227.386667pt;}
.y85{bottom:227.626667pt;}
.y149{bottom:228.666667pt;}
.yf3{bottom:233.066667pt;}
.y11c{bottom:239.226667pt;}
.y20{bottom:241.626667pt;}
.y4c{bottom:242.986667pt;}
.y84{bottom:243.226667pt;}
.y148{bottom:244.266667pt;}
.yb2{bottom:246.746667pt;}
.yf2{bottom:248.746667pt;}
.y9a{bottom:255.066667pt;}
.y1f{bottom:257.226667pt;}
.y83{bottom:258.906667pt;}
.y147{bottom:259.946667pt;}
.y11b{bottom:262.906667pt;}
.y6a{bottom:263.306667pt;}
.yf1{bottom:264.346667pt;}
.y4b{bottom:267.306667pt;}
.y1e{bottom:272.906667pt;}
.y82{bottom:274.506667pt;}
.y11a{bottom:278.506667pt;}
.yf0{bottom:279.946667pt;}
.y146{bottom:283.546667pt;}
.y1d{bottom:288.506667pt;}
.y81{bottom:290.106667pt;}
.y4a{bottom:291.626667pt;}
.y145{bottom:299.146667pt;}
.y119{bottom:302.106667pt;}
.yef{bottom:303.866667pt;}
.y1c{bottom:304.186667pt;}
.y80{bottom:305.706667pt;}
.y69{bottom:307.226667pt;}
.y144{bottom:314.826667pt;}
.y118{bottom:317.786667pt;}
.y49{bottom:319.226667pt;}
.y1b{bottom:319.786667pt;}
.y7f{bottom:322.106667pt;}
.yc8{bottom:332.906667pt;}
.y68{bottom:334.906667pt;}
.y1a{bottom:335.386667pt;}
.y7e{bottom:337.786667pt;}
.y143{bottom:338.426667pt;}
.y117{bottom:341.386667pt;}
.yb1{bottom:341.626667pt;}
.y48{bottom:343.546667pt;}
.yee{bottom:346.826667pt;}
.y7d{bottom:353.386667pt;}
.y142{bottom:354.106667pt;}
.y116{bottom:357.066667pt;}
.y19{bottom:359.306667pt;}
.yed{bottom:362.426667pt;}
.y67{bottom:362.506667pt;}
.y7c{bottom:369.786667pt;}
.y47{bottom:371.146667pt;}
.y115{bottom:372.666667pt;}
.y141{bottom:377.706667pt;}
.yb0{bottom:384.906667pt;}
.y7b{bottom:385.386667pt;}
.y66{bottom:390.106667pt;}
.y140{bottom:393.306667pt;}
.yec{bottom:394.106667pt;}
.y114{bottom:396.266667pt;}
.y46{bottom:398.826667pt;}
.y7a{bottom:400.986667pt;}
.y18{bottom:402.506667pt;}
.yeb{bottom:409.706667pt;}
.yaf{bottom:416.506667pt;}
.y79{bottom:416.666667pt;}
.y13f{bottom:416.986667pt;}
.y65{bottom:417.813333pt;}
.y113{bottom:419.973333pt;}
.yea{bottom:425.333333pt;}
.y45{bottom:426.453333pt;}
.yad{bottom:429.893333pt;}
.y78{bottom:432.293333pt;}
.y13e{bottom:432.613333pt;}
.y17{bottom:435.493333pt;}
.ye9{bottom:441.013333pt;}
.y112{bottom:443.573333pt;}
.y64{bottom:445.413333pt;}
.y77{bottom:447.973333pt;}
.y16{bottom:451.093333pt;}
.y43{bottom:454.053333pt;}
.y13d{bottom:456.293333pt;}
.y111{bottom:459.253333pt;}
.y76{bottom:463.573333pt;}
.y15{bottom:466.773333pt;}
.yab{bottom:469.813333pt;}
.y13c{bottom:471.893333pt;}
.ye8{bottom:472.613333pt;}
.y75{bottom:479.173333pt;}
.y42{bottom:481.733333pt;}
.y14{bottom:482.373333pt;}
.y110{bottom:482.853333pt;}
.y63{bottom:485.333333pt;}
.ye7{bottom:488.293333pt;}
.y74{bottom:494.853333pt;}
.y13b{bottom:495.493333pt;}
.ye6{bottom:503.893333pt;}
.y10f{bottom:506.453333pt;}
.y41{bottom:509.333333pt;}
.y73{bottom:510.453333pt;}
.y13a{bottom:511.173333pt;}
.y13{bottom:513.973333pt;}
.ye5{bottom:519.493333pt;}
.y99{bottom:520.053333pt;}
.y61{bottom:525.253333pt;}
.y72{bottom:526.773333pt;}
.yaa{bottom:529.333333pt;}
.y12{bottom:529.653333pt;}
.y10e{bottom:530.133333pt;}
.y139{bottom:534.773333pt;}
.ye4{bottom:535.093333pt;}
.y40{bottom:537.013333pt;}
.yc4{bottom:537.173333pt;}
.y71{bottom:543.173333pt;}
.y11{bottom:545.253333pt;}
.y138{bottom:550.453333pt;}
.ya9{bottom:553.653333pt;}
.y10d{bottom:553.733333pt;}
.y98{bottom:556.293333pt;}
.y70{bottom:559.573333pt;}
.y10{bottom:560.853333pt;}
.y3e{bottom:564.613333pt;}
.ye3{bottom:567.493333pt;}
.y5f{bottom:568.533333pt;}
.y137{bottom:574.053333pt;}
.y10c{bottom:577.413333pt;}
.ya8{bottom:577.973333pt;}
.ye2{bottom:583.173333pt;}
.y6f{bottom:583.973333pt;}
.y136{bottom:589.653333pt;}
.y3d{bottom:592.213333pt;}
.yf{bottom:592.533333pt;}
.y10b{bottom:593.013333pt;}
.ye1{bottom:598.773333pt;}
.ye{bottom:608.133333pt;}
.y5e{bottom:608.453333pt;}
.y135{bottom:613.333333pt;}
.ye0{bottom:614.453333pt;}
.y6e{bottom:615.573333pt;}
.y10a{bottom:616.613333pt;}
.ya7{bottom:617.893333pt;}
.yd{bottom:623.813333pt;}
.y134{bottom:628.933333pt;}
.y3c{bottom:635.573333pt;}
.ydf{bottom:638.293333pt;}
.yc{bottom:639.413333pt;}
.y109{bottom:640.293333pt;}
.ya6{bottom:642.213333pt;}
.y6d{bottom:644.213333pt;}
.y5d{bottom:651.733333pt;}
.y133{bottom:652.613333pt;}
.yb{bottom:655.013333pt;}
.y108{bottom:655.893333pt;}
.ya5{bottom:666.453333pt;}
.y3b{bottom:667.173333pt;}
.y132{bottom:668.213333pt;}
.ya{bottom:670.693333pt;}
.yde{bottom:678.933333pt;}
.y107{bottom:679.573333pt;}
.y5c{bottom:683.413333pt;}
.y3a{bottom:688.453333pt;}
.y131{bottom:691.813333pt;}
.y9{bottom:694.613333pt;}
.y106{bottom:703.173333pt;}
.y5b{bottom:704.693333pt;}
.yc3{bottom:706.213333pt;}
.ya4{bottom:706.373333pt;}
.y130{bottom:707.493333pt;}
.y105{bottom:726.773333pt;}
.y5a{bottom:729.013333pt;}
.y12f{bottom:731.093333pt;}
.y37{bottom:732.373333pt;}
.y8{bottom:736.213333pt;}
.y104{bottom:742.453333pt;}
.ya3{bottom:746.373333pt;}
.y12e{bottom:746.693333pt;}
.yd9{bottom:750.133333pt;}
.y59{bottom:753.333333pt;}
.ybe{bottom:761.733333pt;}
.y103{bottom:766.053333pt;}
.y7{bottom:767.813333pt;}
.y12d{bottom:770.373333pt;}
.ya2{bottom:770.613333pt;}
.y32{bottom:776.373333pt;}
.y58{bottom:777.573333pt;}
.y12c{bottom:785.973333pt;}
.y97{bottom:789.013333pt;}
.y102{bottom:789.733333pt;}
.ya1{bottom:794.933333pt;}
.y6{bottom:799.653333pt;}
.y35{bottom:800.613333pt;}
.y57{bottom:801.893333pt;}
.y12b{bottom:809.653333pt;}
.y96{bottom:813.253333pt;}
.y101{bottom:813.333333pt;}
.y30{bottom:824.933333pt;}
.y12a{bottom:825.253333pt;}
.y100{bottom:828.933333pt;}
.y5{bottom:831.653333pt;}
.ya0{bottom:834.853333pt;}
.y95{bottom:837.573333pt;}
.y156{bottom:840.853333pt;}
.y55{bottom:841.813333pt;}
.y129{bottom:848.853333pt;}
.yff{bottom:852.613333pt;}
.y155{bottom:856.533333pt;}
.y4{bottom:863.733333pt;}
.y128{bottom:864.533333pt;}
.y94{bottom:865.253333pt;}
.y2f{bottom:868.213333pt;}
.y9f{bottom:874.773333pt;}
.yfe{bottom:876.213333pt;}
.y127{bottom:880.133333pt;}
.y53{bottom:881.733333pt;}
.y93{bottom:889.573333pt;}
.yfd{bottom:891.813333pt;}
.y154{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.yd8{bottom:899.520000pt;}
.y2e{bottom:899.840000pt;}
.y126{bottom:903.840000pt;}
.y153{bottom:911.440000pt;}
.y9e{bottom:914.720000pt;}
.ybc{bottom:915.120000pt;}
.y2d{bottom:915.520000pt;}
.y92{bottom:916.800000pt;}
.y125{bottom:919.440000pt;}
.y52{bottom:921.680000pt;}
.y91{bottom:933.200000pt;}
.y152{bottom:935.040000pt;}
.yfc{bottom:939.120000pt;}
.y2c{bottom:939.440000pt;}
.y124{bottom:943.040000pt;}
.y51{bottom:946.000000pt;}
.y90{bottom:948.800000pt;}
.y151{bottom:950.720000pt;}
.y9d{bottom:954.640000pt;}
.yfb{bottom:954.800000pt;}
.yd7{bottom:955.040000pt;}
.y123{bottom:958.720000pt;}
.y8f{bottom:965.200000pt;}
.y50{bottom:970.320000pt;}
.yba{bottom:970.640000pt;}
.y150{bottom:974.320000pt;}
.yfa{bottom:978.400000pt;}
.y8e{bottom:981.600000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.yf9{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.h17{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.hd{height:26.960000pt;}
.h10{height:26.986667pt;}
.hf{height:27.040000pt;}
.h3{height:33.867188pt;}
.h19{height:39.200000pt;}
.h13{height:39.280000pt;}
.h12{height:39.306667pt;}
.h14{height:42.640000pt;}
.hb{height:43.280000pt;}
.h6{height:45.246562pt;}
.h9{height:47.920000pt;}
.h5{height:49.581562pt;}
.hc{height:54.187500pt;}
.h1d{height:54.880000pt;}
.h16{height:54.927899pt;}
.h1c{height:54.960000pt;}
.h15{height:55.631875pt;}
.he{height:58.686562pt;}
.h18{height:58.880000pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:65.781915pt;}
.h25{height:70.480000pt;}
.h23{height:70.560000pt;}
.h22{height:86.160000pt;}
.h1a{height:94.160000pt;}
.h1b{height:105.760000pt;}
.h21{height:117.440000pt;}
.h24{height:148.666667pt;}
.h1e{height:152.746667pt;}
.h1f{height:168.320000pt;}
.h20{height:203.626667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:36.720000pt;}
.w16{width:37.120000pt;}
.w3{width:43.520000pt;}
.w10{width:52.960000pt;}
.w7{width:56.080000pt;}
.w13{width:69.440000pt;}
.w5{width:96.480000pt;}
.w14{width:108.720000pt;}
.w12{width:111.066667pt;}
.w11{width:135.146667pt;}
.w17{width:136.906667pt;}
.wd{width:165.466667pt;}
.wb{width:168.986667pt;}
.wf{width:188.746667pt;}
.w8{width:216.640000pt;}
.w9{width:221.786667pt;}
.w4{width:229.626667pt;}
.w6{width:286.266667pt;}
.w15{width:336.346667pt;}
.wc{width:464.746667pt;}
.we{width:468.186667pt;}
.w18{width:496.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.440000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:68.080000pt;}
.x12{left:84.479988pt;}
.xd{left:98.480000pt;}
.x1a{left:105.280000pt;}
.x14{left:108.479988pt;}
.x6{left:112.240000pt;}
.x16{left:114.720000pt;}
.x13{left:132.479988pt;}
.x9{left:149.066667pt;}
.x15{left:156.506655pt;}
.x2{left:180.266655pt;}
.xb{left:205.786667pt;}
.x1b{left:217.066667pt;}
.x1e{left:236.506667pt;}
.xf{left:264.666667pt;}
.xe{left:268.106667pt;}
.x1c{left:287.146667pt;}
.x11{left:304.186655pt;}
.x18{left:311.706655pt;}
.x7{left:342.506667pt;}
.x1d{left:396.506667pt;}
.xc{left:423.146667pt;}
.x8{left:439.626667pt;}
.x10{left:525.013322pt;}
.x17{left:556.213322pt;}
.x19{left:565.013322pt;}
.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; }
  