
    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_ca6d338c014bfb9cd6ca44cf.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_345f7568789cc1602373116e.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_fbf14210135f3b118d7dd27d.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_f7186e21af034189ccc80a9b.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_0feb264512c177bb8cce5930.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_c876f9acbc3de2249c6ac48b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_b88ad8f611d4ddc3733c94db.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e3eff38f94500e1cf29657b7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d12888f5de2a6093d7d63e95.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);}
.vf{vertical-align:-23.040000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-13.680000px;}
.v9{vertical-align:-12.240000px;}
.vc{vertical-align:-9.720000px;}
.v12{vertical-align:-8.640000px;}
.v7{vertical-align:-3.240000px;}
.vd{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.440000px;}
.v4{vertical-align:3.240000px;}
.v13{vertical-align:8.640000px;}
.v10{vertical-align:12.240000px;}
.v8{vertical-align:13.680000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:16.920000px;}
.v15{vertical-align:21.960000px;}
.ve{vertical-align:30.240000px;}
.v11{vertical-align:35.280000px;}
.v14{vertical-align:40.320000px;}
.va{vertical-align:47.520000px;}
.ls38{letter-spacing:-0.266400px;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.037800px;}
.ls3e{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.019800px;}
.ls24{letter-spacing:0.035280px;}
.ls26{letter-spacing:0.038520px;}
.lsc{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls2c{letter-spacing:0.082080px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3c{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.108600px;}
.ls5{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.160200px;}
.lse{letter-spacing:0.173400px;}
.ls3a{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.199200px;}
.ls2f{letter-spacing:0.250200px;}
.ls19{letter-spacing:0.266400px;}
.ls3d{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:1.236600px;}
.ls34{letter-spacing:1.452600px;}
.ls37{letter-spacing:1.557000px;}
.ls27{letter-spacing:1.692000px;}
.ls36{letter-spacing:1.727280px;}
.ls10{letter-spacing:2.256000px;}
.ls35{letter-spacing:2.336040px;}
.ls21{letter-spacing:2.613600px;}
.ls30{letter-spacing:2.982600px;}
.ls33{letter-spacing:3.427200px;}
.ls2a{letter-spacing:3.491640px;}
.ls1c{letter-spacing:3.677400px;}
.ls2d{letter-spacing:3.787200px;}
.ls2b{letter-spacing:3.851640px;}
.ls20{letter-spacing:3.935880px;}
.ls1a{letter-spacing:4.152600px;}
.ls16{letter-spacing:4.512600px;}
.ls11{letter-spacing:8.040000px;}
.ls32{letter-spacing:12.850200px;}
.ls31{letter-spacing:15.296040px;}
.ls22{letter-spacing:16.090200px;}
.ls1e{letter-spacing:16.290360px;}
.ls23{letter-spacing:16.650360px;}
.ls1d{letter-spacing:16.810200px;}
.ls18{letter-spacing:18.107640px;}
.ls17{letter-spacing:18.379800px;}
.ls2e{letter-spacing:19.987200px;}
.ls29{letter-spacing:20.411640px;}
.ls28{letter-spacing:21.365280px;}
.ls3b{letter-spacing:47.726640px;}
.ls39{letter-spacing:80.846640px;}
.ls1f{letter-spacing:81.214920px;}
.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;}
}
.wsf{word-spacing:-65.880000px;}
.ws10{word-spacing:-60.228600px;}
.ws11{word-spacing:-60.120000px;}
.ws19{word-spacing:-50.124600px;}
.ws1d{word-spacing:-47.069640px;}
.ws18{word-spacing:-46.885680px;}
.ws1f{word-spacing:-46.833840px;}
.ws1e{word-spacing:-46.709640px;}
.ws1b{word-spacing:-43.469640px;}
.ws14{word-spacing:-42.155280px;}
.ws15{word-spacing:-42.120000px;}
.ws16{word-spacing:-36.000000px;}
.ws20{word-spacing:-26.427480px;}
.ws1c{word-spacing:-26.187480px;}
.ws1a{word-spacing:-24.876000px;}
.ws12{word-spacing:-18.627480px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws21{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws22{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.188600px;}
.wse{word-spacing:-13.162800px;}
.wsa{word-spacing:-13.101000px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:-9.266400px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws17{word-spacing:45.180000px;}
._10{margin-left:-7.238880px;}
._11{margin-left:-5.992872px;}
._e{margin-left:-3.549840px;}
._9{margin-left:-2.494440px;}
._0{margin-left:-1.110000px;}
._2{width:1.285152px;}
._4{width:2.503176px;}
._5{width:3.669407px;}
._b{width:4.955029px;}
._1{width:5.955564px;}
._3{width:7.028388px;}
._7{width:8.651998px;}
._6{width:9.859800px;}
._8{width:11.242200px;}
._a{width:14.849400px;}
._12{width:16.279727px;}
._c{width:17.374800px;}
._d{width:18.847319px;}
._f{width:20.440800px;}
._13{width:21.553321px;}
._16{width:22.765800px;}
._14{width:24.528960px;}
._15{width:26.415600px;}
._18{width:46.352520px;}
._17{width:47.374560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.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;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb1{bottom:125.490000px;}
.y5f{bottom:131.340000px;}
.y9b{bottom:132.150000px;}
.y77{bottom:136.830000px;}
.y29{bottom:139.080000px;}
.y113{bottom:143.130000px;}
.y28{bottom:156.630000px;}
.y112{bottom:160.680000px;}
.yb0{bottom:161.040000px;}
.y5e{bottom:166.980000px;}
.y9a{bottom:167.790000px;}
.yeb{bottom:172.290000px;}
.y76{bottom:172.380000px;}
.ybf{bottom:176.250000px;}
.y111{bottom:178.320000px;}
.yaf{bottom:178.680000px;}
.y27{bottom:183.540000px;}
.y5d{bottom:184.530000px;}
.y99{bottom:185.340000px;}
.yea{bottom:189.840000px;}
.y75{bottom:190.020000px;}
.ybe{bottom:193.800000px;}
.yae{bottom:196.230000px;}
.y5c{bottom:202.170000px;}
.y98{bottom:202.890000px;}
.y110{bottom:204.870000px;}
.ybd{bottom:211.440000px;}
.yad{bottom:213.870000px;}
.ye9{bottom:216.480000px;}
.y5b{bottom:219.720000px;}
.y97{bottom:220.530000px;}
.y10f{bottom:222.510000px;}
.ybc{bottom:228.990000px;}
.y74{bottom:230.790000px;}
.yac{bottom:231.420000px;}
.y26{bottom:231.780000px;}
.ye8{bottom:234.030000px;}
.y5a{bottom:237.270000px;}
.y96{bottom:238.080000px;}
.ybb{bottom:246.630000px;}
.y10e{bottom:249.060000px;}
.y25{bottom:249.690000px;}
.ye7{bottom:251.580000px;}
.y59{bottom:254.910000px;}
.y95{bottom:255.720000px;}
.yab{bottom:258.330000px;}
.y10d{bottom:266.610000px;}
.y58{bottom:272.460000px;}
.ye6{bottom:278.220000px;}
.yba{bottom:282.180000px;}
.y94{bottom:282.270000px;}
.y10c{bottom:284.250000px;}
.y24{bottom:286.770000px;}
.y57{bottom:290.100000px;}
.ye5{bottom:295.770000px;}
.yb9{bottom:299.730000px;}
.y23{bottom:304.320000px;}
.yaa{bottom:306.570000px;}
.y56{bottom:307.650000px;}
.y10b{bottom:310.800000px;}
.yb8{bottom:317.370000px;}
.y93{bottom:317.820000px;}
.y22{bottom:321.870000px;}
.ye4{bottom:322.410000px;}
.ya9{bottom:324.210000px;}
.y55{bottom:325.200000px;}
.y10a{bottom:328.440000px;}
.yb7{bottom:334.920000px;}
.y21{bottom:339.510000px;}
.ye3{bottom:339.960000px;}
.ya8{bottom:341.760000px;}
.y54{bottom:342.840000px;}
.y92{bottom:352.560000px;}
.y109{bottom:354.990000px;}
.y20{bottom:357.060000px;}
.ye2{bottom:357.510000px;}
.ya7{bottom:359.310000px;}
.y91{bottom:360.120000px;}
.y108{bottom:372.540000px;}
.y1f{bottom:374.700000px;}
.y53{bottom:378.390000px;}
.ye1{bottom:384.150000px;}
.yb6{bottom:388.110000px;}
.y107{bottom:390.180000px;}
.y90{bottom:390.900000px;}
.y1e{bottom:392.250000px;}
.ya6{bottom:394.950000px;}
.y52{bottom:395.940000px;}
.ye0{bottom:401.700000px;}
.y1d{bottom:409.800000px;}
.y51{bottom:413.580000px;}
.yb5{bottom:414.660000px;}
.y106{bottom:416.730000px;}
.ydf{bottom:419.340000px;}
.ya5{bottom:421.500000px;}
.y8f{bottom:426.450000px;}
.y1c{bottom:427.440000px;}
.y50{bottom:431.130000px;}
.y105{bottom:434.370000px;}
.y8e{bottom:444.090000px;}
.y1b{bottom:444.990000px;}
.yde{bottom:445.890000px;}
.y4f{bottom:448.770000px;}
.y104{bottom:451.920000px;}
.yb4{bottom:454.530000px;}
.ya4{bottom:457.140000px;}
.y8d{bottom:461.640000px;}
.y1a{bottom:462.630000px;}
.ydd{bottom:463.440000px;}
.y4e{bottom:466.320000px;}
.ya3{bottom:474.720000px;}
.y103{bottom:478.500000px;}
.y19{bottom:480.210000px;}
.ydc{bottom:481.110000px;}
.y4d{bottom:483.900000px;}
.y8c{bottom:488.220000px;}
.y102{bottom:496.140000px;}
.y18{bottom:497.760000px;}
.ydb{bottom:498.660000px;}
.y101{bottom:513.690000px;}
.y17{bottom:515.400000px;}
.yda{bottom:516.300000px;}
.ya2{bottom:519.000000px;}
.y4c{bottom:519.540000px;}
.y8b{bottom:523.860000px;}
.y16{bottom:532.950000px;}
.y4b{bottom:537.090000px;}
.y100{bottom:540.330000px;}
.y8a{bottom:541.410000px;}
.yd9{bottom:542.850000px;}
.y15{bottom:550.590000px;}
.y4a{bottom:554.730000px;}
.yff{bottom:557.880000px;}
.yd8{bottom:560.400000px;}
.y14{bottom:568.140000px;}
.y49{bottom:572.280000px;}
.yfe{bottom:575.430000px;}
.y87{bottom:577.140000px;}
.yd7{bottom:578.040000px;}
.y88{bottom:582.900000px;}
.y13{bottom:585.690000px;}
.y48{bottom:589.830000px;}
.yd6{bottom:595.590000px;}
.y86{bottom:595.770000px;}
.yfd{bottom:602.070000px;}
.y12{bottom:603.330000px;}
.y47{bottom:607.470000px;}
.y89{bottom:609.540000px;}
.yfc{bottom:619.620000px;}
.y11{bottom:620.880000px;}
.yd5{bottom:622.230000px;}
.y46{bottom:625.020000px;}
.yfb{bottom:637.260000px;}
.yd4{bottom:639.780000px;}
.y45{bottom:642.660000px;}
.y10{bottom:647.790000px;}
.yd3{bottom:657.330000px;}
.y44{bottom:660.210000px;}
.yfa{bottom:663.810000px;}
.y85{bottom:674.250000px;}
.y83{bottom:677.850000px;}
.yf9{bottom:681.360000px;}
.y84{bottom:683.790000px;}
.yd2{bottom:683.970000px;}
.y43{bottom:687.120000px;}
.y73{bottom:693.240000px;}
.yf{bottom:696.030000px;}
.yd1{bottom:701.520000px;}
.y82{bottom:705.750000px;}
.yf8{bottom:708.000000px;}
.y72{bottom:710.790000px;}
.yd0{bottom:719.160000px;}
.yf7{bottom:725.550000px;}
.yb3{bottom:727.890000px;}
.y71{bottom:728.340000px;}
.ye{bottom:731.850000px;}
.y42{bottom:735.360000px;}
.y81{bottom:742.740000px;}
.yf6{bottom:743.190000px;}
.ycf{bottom:745.710000px;}
.y70{bottom:745.980000px;}
.y41{bottom:753.000000px;}
.yce{bottom:763.260000px;}
.y6f{bottom:763.530000px;}
.yd{bottom:767.850000px;}
.yf5{bottom:769.740000px;}
.y40{bottom:770.550000px;}
.y80{bottom:778.290000px;}
.y6e{bottom:781.170000px;}
.yf4{bottom:787.290000px;}
.y3f{bottom:788.190000px;}
.ycd{bottom:789.900000px;}
.y7f{bottom:795.930000px;}
.y6d{bottom:798.720000px;}
.yf3{bottom:804.930000px;}
.y3e{bottom:805.740000px;}
.ycc{bottom:807.450000px;}
.yc{bottom:807.630000px;}
.yb2{bottom:807.810000px;}
.y7e{bottom:813.480000px;}
.y115{bottom:822.480000px;}
.y3d{bottom:823.290000px;}
.ycb{bottom:825.090000px;}
.yb{bottom:825.630000px;}
.y7d{bottom:831.030000px;}
.yf2{bottom:831.480000px;}
.ya1{bottom:839.670000px;}
.y3c{bottom:840.930000px;}
.ya{bottom:843.630000px;}
.y6c{bottom:844.980000px;}
.y7c{bottom:848.670000px;}
.yf1{bottom:849.030000px;}
.yca{bottom:851.910000px;}
.ya0{bottom:857.220000px;}
.y3b{bottom:858.480000px;}
.y9{bottom:861.630000px;}
.y7b{bottom:866.220000px;}
.yf0{bottom:866.670000px;}
.y9f{bottom:874.860000px;}
.y3a{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.y9e{bottom:892.410000px;}
.y7a{bottom:892.860000px;}
.y6b{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.yc9{bottom:900.240000px;}
.y6a{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.yc8{bottom:927.150000px;}
.y9d{bottom:927.960000px;}
.y69{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y9c{bottom:945.600000px;}
.y68{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yef{bottom:954.960000px;}
.y67{bottom:963.600000px;}
.y36{bottom:964.410000px;}
.yc7{bottom:964.500000px;}
.yee{bottom:972.600000px;}
.y66{bottom:981.150000px;}
.y35{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y79{bottom:990.150000px;}
.y34{bottom:999.600000px;}
.y65{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yc6{bottom:1012.770000px;}
.yed{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y78{bottom:1025.820000px;}
.yc5{bottom:1030.320000px;}
.yec{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y64{bottom:1043.370000px;}
.yc4{bottom:1047.960000px;}
.y114{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y63{bottom:1060.920000px;}
.yc3{bottom:1065.510000px;}
.y30{bottom:1069.920000px;}
.y62{bottom:1078.560000px;}
.yc2{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y61{bottom:1096.110000px;}
.yc1{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y60{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.yc0{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.he{height:35.497617px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h12{height:50.667539px;}
.h7{height:50.902383px;}
.hd{height:53.187539px;}
.h5{height:55.779258px;}
.h15{height:57.457617px;}
.hc{height:58.761914px;}
.hb{height:59.973223px;}
.h8{height:60.960938px;}
.h16{height:61.793886px;}
.ha{height:62.585859px;}
.hf{height:67.587539px;}
.h9{height:68.582109px;}
.h13{height:70.777617px;}
.h4{height:71.019492px;}
.h10{height:72.217617px;}
.h11{height:80.907539px;}
.h14{height:81.142383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x12{left:69.209987px;}
.x5{left:89.189987px;}
.x19{left:111.239987px;}
.x2{left:192.719987px;}
.x18{left:194.159987px;}
.x17{left:249.059987px;}
.xa{left:258.239987px;}
.x6{left:263.999987px;}
.x7{left:299.909987px;}
.x8{left:310.889987px;}
.xc{left:328.439987px;}
.xd{left:336.269987px;}
.x15{left:349.499987px;}
.x10{left:362.459987px;}
.x9{left:395.309987px;}
.xb{left:400.889987px;}
.x13{left:423.479987px;}
.xf{left:427.349987px;}
.xe{left:537.539987px;}
.x11{left:671.639987px;}
.x14{left:691.889987px;}
.x4{left:699.809987px;}
.x16{left:786.389987px;}
.x3{left:800.339987px;}
@media print{
.vf{vertical-align:-20.480000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-12.160000pt;}
.v9{vertical-align:-10.880000pt;}
.vc{vertical-align:-8.640000pt;}
.v12{vertical-align:-7.680000pt;}
.v7{vertical-align:-2.880000pt;}
.vd{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.280000pt;}
.v4{vertical-align:2.880000pt;}
.v13{vertical-align:7.680000pt;}
.v10{vertical-align:10.880000pt;}
.v8{vertical-align:12.160000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:15.040000pt;}
.v15{vertical-align:19.520000pt;}
.ve{vertical-align:26.880000pt;}
.v11{vertical-align:31.360000pt;}
.v14{vertical-align:35.840000pt;}
.va{vertical-align:42.240000pt;}
.ls38{letter-spacing:-0.236800pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.033600pt;}
.ls3e{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.017600pt;}
.ls24{letter-spacing:0.031360pt;}
.ls26{letter-spacing:0.034240pt;}
.lsc{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2c{letter-spacing:0.072960pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3c{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.096533pt;}
.ls5{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.142400pt;}
.lse{letter-spacing:0.154133pt;}
.ls3a{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.177067pt;}
.ls2f{letter-spacing:0.222400pt;}
.ls19{letter-spacing:0.236800pt;}
.ls3d{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:1.099200pt;}
.ls34{letter-spacing:1.291200pt;}
.ls37{letter-spacing:1.384000pt;}
.ls27{letter-spacing:1.504000pt;}
.ls36{letter-spacing:1.535360pt;}
.ls10{letter-spacing:2.005333pt;}
.ls35{letter-spacing:2.076480pt;}
.ls21{letter-spacing:2.323200pt;}
.ls30{letter-spacing:2.651200pt;}
.ls33{letter-spacing:3.046400pt;}
.ls2a{letter-spacing:3.103680pt;}
.ls1c{letter-spacing:3.268800pt;}
.ls2d{letter-spacing:3.366400pt;}
.ls2b{letter-spacing:3.423680pt;}
.ls20{letter-spacing:3.498560pt;}
.ls1a{letter-spacing:3.691200pt;}
.ls16{letter-spacing:4.011200pt;}
.ls11{letter-spacing:7.146667pt;}
.ls32{letter-spacing:11.422400pt;}
.ls31{letter-spacing:13.596480pt;}
.ls22{letter-spacing:14.302400pt;}
.ls1e{letter-spacing:14.480320pt;}
.ls23{letter-spacing:14.800320pt;}
.ls1d{letter-spacing:14.942400pt;}
.ls18{letter-spacing:16.095680pt;}
.ls17{letter-spacing:16.337600pt;}
.ls2e{letter-spacing:17.766400pt;}
.ls29{letter-spacing:18.143680pt;}
.ls28{letter-spacing:18.991360pt;}
.ls3b{letter-spacing:42.423680pt;}
.ls39{letter-spacing:71.863680pt;}
.ls1f{letter-spacing:72.191040pt;}
.wsf{word-spacing:-58.560000pt;}
.ws10{word-spacing:-53.536533pt;}
.ws11{word-spacing:-53.440000pt;}
.ws19{word-spacing:-44.555200pt;}
.ws1d{word-spacing:-41.839680pt;}
.ws18{word-spacing:-41.676160pt;}
.ws1f{word-spacing:-41.630080pt;}
.ws1e{word-spacing:-41.519680pt;}
.ws1b{word-spacing:-38.639680pt;}
.ws14{word-spacing:-37.471360pt;}
.ws15{word-spacing:-37.440000pt;}
.ws16{word-spacing:-32.000000pt;}
.ws20{word-spacing:-23.491093pt;}
.ws1c{word-spacing:-23.277760pt;}
.ws1a{word-spacing:-22.112000pt;}
.ws12{word-spacing:-16.557760pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws21{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws22{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.723200pt;}
.wse{word-spacing:-11.700267pt;}
.wsa{word-spacing:-11.645333pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:-8.236800pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws17{word-spacing:40.160000pt;}
._10{margin-left:-6.434560pt;}
._11{margin-left:-5.326998pt;}
._e{margin-left:-3.155413pt;}
._9{margin-left:-2.217280pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.142358pt;}
._4{width:2.225046pt;}
._5{width:3.261695pt;}
._b{width:4.404471pt;}
._1{width:5.293835pt;}
._3{width:6.247456pt;}
._7{width:7.690665pt;}
._6{width:8.764267pt;}
._8{width:9.993066pt;}
._a{width:13.199466pt;}
._12{width:14.470868pt;}
._c{width:15.444267pt;}
._d{width:16.753172pt;}
._f{width:18.169600pt;}
._13{width:19.158508pt;}
._16{width:20.236267pt;}
._14{width:21.803520pt;}
._15{width:23.480533pt;}
._18{width:41.202240pt;}
._17{width:42.110720pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.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;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb1{bottom:111.546667pt;}
.y5f{bottom:116.746667pt;}
.y9b{bottom:117.466667pt;}
.y77{bottom:121.626667pt;}
.y29{bottom:123.626667pt;}
.y113{bottom:127.226667pt;}
.y28{bottom:139.226667pt;}
.y112{bottom:142.826667pt;}
.yb0{bottom:143.146667pt;}
.y5e{bottom:148.426667pt;}
.y9a{bottom:149.146667pt;}
.yeb{bottom:153.146667pt;}
.y76{bottom:153.226667pt;}
.ybf{bottom:156.666667pt;}
.y111{bottom:158.506667pt;}
.yaf{bottom:158.826667pt;}
.y27{bottom:163.146667pt;}
.y5d{bottom:164.026667pt;}
.y99{bottom:164.746667pt;}
.yea{bottom:168.746667pt;}
.y75{bottom:168.906667pt;}
.ybe{bottom:172.266667pt;}
.yae{bottom:174.426667pt;}
.y5c{bottom:179.706667pt;}
.y98{bottom:180.346667pt;}
.y110{bottom:182.106667pt;}
.ybd{bottom:187.946667pt;}
.yad{bottom:190.106667pt;}
.ye9{bottom:192.426667pt;}
.y5b{bottom:195.306667pt;}
.y97{bottom:196.026667pt;}
.y10f{bottom:197.786667pt;}
.ybc{bottom:203.546667pt;}
.y74{bottom:205.146667pt;}
.yac{bottom:205.706667pt;}
.y26{bottom:206.026667pt;}
.ye8{bottom:208.026667pt;}
.y5a{bottom:210.906667pt;}
.y96{bottom:211.626667pt;}
.ybb{bottom:219.226667pt;}
.y10e{bottom:221.386667pt;}
.y25{bottom:221.946667pt;}
.ye7{bottom:223.626667pt;}
.y59{bottom:226.586667pt;}
.y95{bottom:227.306667pt;}
.yab{bottom:229.626667pt;}
.y10d{bottom:236.986667pt;}
.y58{bottom:242.186667pt;}
.ye6{bottom:247.306667pt;}
.yba{bottom:250.826667pt;}
.y94{bottom:250.906667pt;}
.y10c{bottom:252.666667pt;}
.y24{bottom:254.906667pt;}
.y57{bottom:257.866667pt;}
.ye5{bottom:262.906667pt;}
.yb9{bottom:266.426667pt;}
.y23{bottom:270.506667pt;}
.yaa{bottom:272.506667pt;}
.y56{bottom:273.466667pt;}
.y10b{bottom:276.266667pt;}
.yb8{bottom:282.106667pt;}
.y93{bottom:282.506667pt;}
.y22{bottom:286.106667pt;}
.ye4{bottom:286.586667pt;}
.ya9{bottom:288.186667pt;}
.y55{bottom:289.066667pt;}
.y10a{bottom:291.946667pt;}
.yb7{bottom:297.706667pt;}
.y21{bottom:301.786667pt;}
.ye3{bottom:302.186667pt;}
.ya8{bottom:303.786667pt;}
.y54{bottom:304.746667pt;}
.y92{bottom:313.386667pt;}
.y109{bottom:315.546667pt;}
.y20{bottom:317.386667pt;}
.ye2{bottom:317.786667pt;}
.ya7{bottom:319.386667pt;}
.y91{bottom:320.106667pt;}
.y108{bottom:331.146667pt;}
.y1f{bottom:333.066667pt;}
.y53{bottom:336.346667pt;}
.ye1{bottom:341.466667pt;}
.yb6{bottom:344.986667pt;}
.y107{bottom:346.826667pt;}
.y90{bottom:347.466667pt;}
.y1e{bottom:348.666667pt;}
.ya6{bottom:351.066667pt;}
.y52{bottom:351.946667pt;}
.ye0{bottom:357.066667pt;}
.y1d{bottom:364.266667pt;}
.y51{bottom:367.626667pt;}
.yb5{bottom:368.586667pt;}
.y106{bottom:370.426667pt;}
.ydf{bottom:372.746667pt;}
.ya5{bottom:374.666667pt;}
.y8f{bottom:379.066667pt;}
.y1c{bottom:379.946667pt;}
.y50{bottom:383.226667pt;}
.y105{bottom:386.106667pt;}
.y8e{bottom:394.746667pt;}
.y1b{bottom:395.546667pt;}
.yde{bottom:396.346667pt;}
.y4f{bottom:398.906667pt;}
.y104{bottom:401.706667pt;}
.yb4{bottom:404.026667pt;}
.ya4{bottom:406.346667pt;}
.y8d{bottom:410.346667pt;}
.y1a{bottom:411.226667pt;}
.ydd{bottom:411.946667pt;}
.y4e{bottom:414.506667pt;}
.ya3{bottom:421.973333pt;}
.y103{bottom:425.333333pt;}
.y19{bottom:426.853333pt;}
.ydc{bottom:427.653333pt;}
.y4d{bottom:430.133333pt;}
.y8c{bottom:433.973333pt;}
.y102{bottom:441.013333pt;}
.y18{bottom:442.453333pt;}
.ydb{bottom:443.253333pt;}
.y101{bottom:456.613333pt;}
.y17{bottom:458.133333pt;}
.yda{bottom:458.933333pt;}
.ya2{bottom:461.333333pt;}
.y4c{bottom:461.813333pt;}
.y8b{bottom:465.653333pt;}
.y16{bottom:473.733333pt;}
.y4b{bottom:477.413333pt;}
.y100{bottom:480.293333pt;}
.y8a{bottom:481.253333pt;}
.yd9{bottom:482.533333pt;}
.y15{bottom:489.413333pt;}
.y4a{bottom:493.093333pt;}
.yff{bottom:495.893333pt;}
.yd8{bottom:498.133333pt;}
.y14{bottom:505.013333pt;}
.y49{bottom:508.693333pt;}
.yfe{bottom:511.493333pt;}
.y87{bottom:513.013333pt;}
.yd7{bottom:513.813333pt;}
.y88{bottom:518.133333pt;}
.y13{bottom:520.613333pt;}
.y48{bottom:524.293333pt;}
.yd6{bottom:529.413333pt;}
.y86{bottom:529.573333pt;}
.yfd{bottom:535.173333pt;}
.y12{bottom:536.293333pt;}
.y47{bottom:539.973333pt;}
.y89{bottom:541.813333pt;}
.yfc{bottom:550.773333pt;}
.y11{bottom:551.893333pt;}
.yd5{bottom:553.093333pt;}
.y46{bottom:555.573333pt;}
.yfb{bottom:566.453333pt;}
.yd4{bottom:568.693333pt;}
.y45{bottom:571.253333pt;}
.y10{bottom:575.813333pt;}
.yd3{bottom:584.293333pt;}
.y44{bottom:586.853333pt;}
.yfa{bottom:590.053333pt;}
.y85{bottom:599.333333pt;}
.y83{bottom:602.533333pt;}
.yf9{bottom:605.653333pt;}
.y84{bottom:607.813333pt;}
.yd2{bottom:607.973333pt;}
.y43{bottom:610.773333pt;}
.y73{bottom:616.213333pt;}
.yf{bottom:618.693333pt;}
.yd1{bottom:623.573333pt;}
.y82{bottom:627.333333pt;}
.yf8{bottom:629.333333pt;}
.y72{bottom:631.813333pt;}
.yd0{bottom:639.253333pt;}
.yf7{bottom:644.933333pt;}
.yb3{bottom:647.013333pt;}
.y71{bottom:647.413333pt;}
.ye{bottom:650.533333pt;}
.y42{bottom:653.653333pt;}
.y81{bottom:660.213333pt;}
.yf6{bottom:660.613333pt;}
.ycf{bottom:662.853333pt;}
.y70{bottom:663.093333pt;}
.y41{bottom:669.333333pt;}
.yce{bottom:678.453333pt;}
.y6f{bottom:678.693333pt;}
.yd{bottom:682.533333pt;}
.yf5{bottom:684.213333pt;}
.y40{bottom:684.933333pt;}
.y80{bottom:691.813333pt;}
.y6e{bottom:694.373333pt;}
.yf4{bottom:699.813333pt;}
.y3f{bottom:700.613333pt;}
.ycd{bottom:702.133333pt;}
.y7f{bottom:707.493333pt;}
.y6d{bottom:709.973333pt;}
.yf3{bottom:715.493333pt;}
.y3e{bottom:716.213333pt;}
.ycc{bottom:717.733333pt;}
.yc{bottom:717.893333pt;}
.yb2{bottom:718.053333pt;}
.y7e{bottom:723.093333pt;}
.y115{bottom:731.093333pt;}
.y3d{bottom:731.813333pt;}
.ycb{bottom:733.413333pt;}
.yb{bottom:733.893333pt;}
.y7d{bottom:738.693333pt;}
.yf2{bottom:739.093333pt;}
.ya1{bottom:746.373333pt;}
.y3c{bottom:747.493333pt;}
.ya{bottom:749.893333pt;}
.y6c{bottom:751.093333pt;}
.y7c{bottom:754.373333pt;}
.yf1{bottom:754.693333pt;}
.yca{bottom:757.253333pt;}
.ya0{bottom:761.973333pt;}
.y3b{bottom:763.093333pt;}
.y9{bottom:765.893333pt;}
.y7b{bottom:769.973333pt;}
.yf0{bottom:770.373333pt;}
.y9f{bottom:777.653333pt;}
.y3a{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.y9e{bottom:793.253333pt;}
.y7a{bottom:793.653333pt;}
.y6b{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.yc9{bottom:800.213333pt;}
.y6a{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.yc8{bottom:824.133333pt;}
.y9d{bottom:824.853333pt;}
.y69{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y9c{bottom:840.533333pt;}
.y68{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yef{bottom:848.853333pt;}
.y67{bottom:856.533333pt;}
.y36{bottom:857.253333pt;}
.yc7{bottom:857.333333pt;}
.yee{bottom:864.533333pt;}
.y66{bottom:872.133333pt;}
.y35{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y79{bottom:880.133333pt;}
.y34{bottom:888.533333pt;}
.y65{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yc6{bottom:900.240000pt;}
.yed{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y78{bottom:911.840000pt;}
.yc5{bottom:915.840000pt;}
.yec{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y64{bottom:927.440000pt;}
.yc4{bottom:931.520000pt;}
.y114{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y63{bottom:943.040000pt;}
.yc3{bottom:947.120000pt;}
.y30{bottom:951.040000pt;}
.y62{bottom:958.720000pt;}
.yc2{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y61{bottom:974.320000pt;}
.yc1{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y60{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.yc0{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.he{height:31.553437pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h12{height:45.037812pt;}
.h7{height:45.246562pt;}
.hd{height:47.277813pt;}
.h5{height:49.581562pt;}
.h15{height:51.073437pt;}
.hc{height:52.232813pt;}
.hb{height:53.309531pt;}
.h8{height:54.187500pt;}
.h16{height:54.927899pt;}
.ha{height:55.631875pt;}
.hf{height:60.077813pt;}
.h9{height:60.961875pt;}
.h13{height:62.913437pt;}
.h4{height:63.128437pt;}
.h10{height:64.193438pt;}
.h11{height:71.917812pt;}
.h14{height:72.126563pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x12{left:61.519988pt;}
.x5{left:79.279988pt;}
.x19{left:98.879988pt;}
.x2{left:171.306655pt;}
.x18{left:172.586655pt;}
.x17{left:221.386655pt;}
.xa{left:229.546655pt;}
.x6{left:234.666655pt;}
.x7{left:266.586655pt;}
.x8{left:276.346655pt;}
.xc{left:291.946655pt;}
.xd{left:298.906655pt;}
.x15{left:310.666655pt;}
.x10{left:322.186655pt;}
.x9{left:351.386655pt;}
.xb{left:356.346655pt;}
.x13{left:376.426655pt;}
.xf{left:379.866655pt;}
.xe{left:477.813322pt;}
.x11{left:597.013322pt;}
.x14{left:615.013322pt;}
.x4{left:622.053322pt;}
.x16{left:699.013322pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  