
    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_9a3faa1583f27c90a4681675.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b3141f57845be9c29233609d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_f1138ec75c661c9633f9e3fd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_c74bea566579b97e5147048c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_7b86fc8c6fa663e83db5b634.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dcd12bf495f7812696dda299.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_fe460e2af11fa857acf5e206.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_41cd9fdb3d409d15b82cae53.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.vb{vertical-align:-61.200000px;}
.ve{vertical-align:-48.000000px;}
.v8{vertical-align:-23.760000px;}
.v4{vertical-align:-9.006000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.360000px;}
.v3{vertical-align:21.234000px;}
.v9{vertical-align:23.760000px;}
.v5{vertical-align:25.734000px;}
.v2{vertical-align:30.240000px;}
.vd{vertical-align:31.680000px;}
.v6{vertical-align:34.740000px;}
.v7{vertical-align:50.808000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.220800px;}
.ls19{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.027360px;}
.lsc{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.486000px;}
.ls22{letter-spacing:2.988000px;}
.ls7{letter-spacing:3.060000px;}
.ls5{letter-spacing:20.340000px;}
.ls2{letter-spacing:27.024000px;}
.ls21{letter-spacing:30.348000px;}
.ls8{letter-spacing:52.560000px;}
.lsa{letter-spacing:55.620000px;}
.ls1b{letter-spacing:59.220000px;}
.ls0{letter-spacing:154.980000px;}
.ls11{letter-spacing:839.700000px;}
.ls1d{letter-spacing:1059.900000px;}
.ls9{letter-spacing:1367.340000px;}
.ls20{letter-spacing:1412.700000px;}
.ls3{letter-spacing:1458.720000px;}
.ls1f{letter-spacing:1593.900000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.840000px;}
.ws6{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.ws3{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.626000px;}
.ws15{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.392000px;}
.ws13{word-spacing:-13.374000px;}
.ws12{word-spacing:-13.356000px;}
.ws14{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.996000px;}
.wsb{word-spacing:-12.960000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._8{width:2.586000px;}
._9{width:3.659040px;}
._5{width:5.050560px;}
._c{width:6.581520px;}
._d{width:7.585920px;}
._7{width:9.312000px;}
._4{width:10.606080px;}
._6{width:11.831520px;}
._a{width:20.033760px;}
._b{width:21.516240px;}
._3{width:39.060000px;}
._25{width:74.856000px;}
._1a{width:106.338000px;}
._23{width:107.826000px;}
._27{width:120.600000px;}
._28{width:149.400000px;}
._29{width:162.840000px;}
._11{width:167.100000px;}
._22{width:206.946000px;}
._24{width:221.724000px;}
._10{width:251.700000px;}
._12{width:289.500000px;}
._f{width:297.312000px;}
._13{width:308.700000px;}
._18{width:311.591760px;}
._1c{width:328.337760px;}
._26{width:342.660000px;}
._1e{width:492.960000px;}
._1d{width:506.280000px;}
._1f{width:519.960000px;}
._20{width:546.906000px;}
._21{width:569.394000px;}
._17{width:593.434800px;}
._16{width:720.990000px;}
._15{width:971.766000px;}
._19{width:1340.184000px;}
._1b{width:1346.364000px;}
._14{width:1381.164000px;}
._e{width:2720.280000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.450000px;}
.ye3{bottom:5.100000px;}
.y4b{bottom:6.000000px;}
.y42{bottom:7.050000px;}
.yc0{bottom:7.200000px;}
.y45{bottom:9.450000px;}
.ydb{bottom:9.600000px;}
.yc2{bottom:9.900000px;}
.ye0{bottom:10.200000px;}
.yc4{bottom:10.350000px;}
.ye6{bottom:10.500000px;}
.y48{bottom:11.100000px;}
.yd9{bottom:12.450000px;}
.ydd{bottom:15.450000px;}
.y9c{bottom:16.200000px;}
.ye9{bottom:17.100000px;}
.ycb{bottom:17.325000px;}
.yd6{bottom:18.300000px;}
.yaa{bottom:18.450000px;}
.yad{bottom:18.600000px;}
.yb0{bottom:18.750000px;}
.yb3{bottom:18.900000px;}
.y121{bottom:19.200000px;}
.y108{bottom:29.670000px;}
.y11d{bottom:36.450000px;}
.y10a{bottom:49.500000px;}
.yef{bottom:50.250000px;}
.y36{bottom:54.150000px;}
.y117{bottom:55.050000px;}
.y3{bottom:57.960000px;}
.y107{bottom:58.290000px;}
.yca{bottom:59.400000px;}
.ybe{bottom:60.000000px;}
.y9b{bottom:61.830000px;}
.yd4{bottom:65.400000px;}
.y77{bottom:73.605000px;}
.y106{bottom:73.800000px;}
.yc9{bottom:75.090000px;}
.y1{bottom:76.890000px;}
.y9a{bottom:77.160000px;}
.y105{bottom:89.460000px;}
.y99{bottom:89.940000px;}
.yc8{bottom:90.570000px;}
.y31{bottom:103.765500px;}
.y104{bottom:105.120000px;}
.yc7{bottom:106.050000px;}
.y13c{bottom:116.400000px;}
.y30{bottom:119.785500px;}
.y103{bottom:120.600000px;}
.y149{bottom:120.690000px;}
.y76{bottom:124.980000px;}
.y2f{bottom:132.205500px;}
.yc6{bottom:137.010000px;}
.y75{bottom:140.640000px;}
.y102{bottom:151.560000px;}
.yc5{bottom:152.850000px;}
.y74{bottom:155.760000px;}
.yc3{bottom:166.050000px;}
.y101{bottom:167.040000px;}
.y73{bottom:171.420000px;}
.y100{bottom:182.700000px;}
.y72{bottom:184.020000px;}
.yc1{bottom:196.800000px;}
.yff{bottom:198.720000px;}
.y13b{bottom:208.395000px;}
.y148{bottom:210.015000px;}
.yfe{bottom:214.200000px;}
.y2{bottom:216.480000px;}
.y13a{bottom:224.055000px;}
.y147{bottom:225.675000px;}
.ybf{bottom:226.350000px;}
.yfd{bottom:229.860000px;}
.y139{bottom:239.535000px;}
.y146{bottom:241.155000px;}
.yfc{bottom:245.520000px;}
.ybd{bottom:250.200000px;}
.y138{bottom:255.195000px;}
.y145{bottom:256.815000px;}
.y137{bottom:270.855000px;}
.y144{bottom:272.475000px;}
.yfb{bottom:276.300000px;}
.y136{bottom:286.335000px;}
.y143{bottom:287.955000px;}
.y71{bottom:290.940000px;}
.yfa{bottom:291.960000px;}
.y2e{bottom:298.105500px;}
.y135{bottom:301.995000px;}
.y142{bottom:303.660000px;}
.y70{bottom:306.420000px;}
.yf9{bottom:307.800000px;}
.y2d{bottom:313.765500px;}
.y98{bottom:315.540000px;}
.y134{bottom:317.655000px;}
.y141{bottom:319.320000px;}
.yf8{bottom:320.850000px;}
.y6f{bottom:321.900000px;}
.y2c{bottom:329.245500px;}
.y97{bottom:331.560000px;}
.y133{bottom:333.135000px;}
.y140{bottom:334.800000px;}
.y6e{bottom:337.560000px;}
.y96{bottom:344.025000px;}
.y2b{bottom:344.770500px;}
.y132{bottom:348.840000px;}
.y13f{bottom:350.460000px;}
.yf7{bottom:352.650000px;}
.y2a{bottom:360.250500px;}
.y131{bottom:364.500000px;}
.y13e{bottom:366.120000px;}
.y6d{bottom:368.385000px;}
.y130{bottom:379.980000px;}
.y6c{bottom:381.165000px;}
.y13d{bottom:381.600000px;}
.ybc{bottom:383.880000px;}
.yf6{bottom:384.600000px;}
.y29{bottom:391.210500px;}
.y12f{bottom:395.640000px;}
.ybb{bottom:415.020000px;}
.yf5{bottom:416.250000px;}
.y28{bottom:422.170500px;}
.y12e{bottom:429.030000px;}
.yba{bottom:430.500000px;}
.y27{bottom:440.350500px;}
.y12d{bottom:444.690000px;}
.y6b{bottom:445.065000px;}
.yb9{bottom:446.160000px;}
.yf4{bottom:448.050000px;}
.y12c{bottom:460.170000px;}
.y6a{bottom:460.545000px;}
.y26{bottom:469.330500px;}
.y12b{bottom:475.650000px;}
.y69{bottom:476.205000px;}
.yb8{bottom:476.940000px;}
.yf3{bottom:480.000000px;}
.y25{bottom:487.510500px;}
.y12a{bottom:491.310000px;}
.y68{bottom:491.865000px;}
.yb7{bottom:492.600000px;}
.y24{bottom:503.170500px;}
.yb6{bottom:505.950000px;}
.y129{bottom:506.790000px;}
.y67{bottom:506.985000px;}
.yf2{bottom:511.800000px;}
.y23{bottom:518.650500px;}
.y128{bottom:522.270000px;}
.y66{bottom:523.005000px;}
.y95{bottom:529.425000px;}
.y22{bottom:534.130500px;}
.yb5{bottom:537.750000px;}
.y65{bottom:538.485000px;}
.yf1{bottom:543.450000px;}
.y94{bottom:544.905000px;}
.y21{bottom:549.610500px;}
.y127{bottom:553.410000px;}
.y64{bottom:554.145000px;}
.y93{bottom:560.565000px;}
.y20{bottom:565.270500px;}
.y126{bottom:568.710000px;}
.y63{bottom:569.445000px;}
.yb4{bottom:569.550000px;}
.yee{bottom:575.400000px;}
.y1f{bottom:580.750500px;}
.y125{bottom:584.190000px;}
.y62{bottom:584.925000px;}
.y92{bottom:591.345000px;}
.y1e{bottom:596.230500px;}
.y124{bottom:599.850000px;}
.y61{bottom:600.945000px;}
.yb2{bottom:601.350000px;}
.y91{bottom:607.035000px;}
.y1d{bottom:611.920500px;}
.y120{bottom:613.200000px;}
.y60{bottom:616.455000px;}
.y123{bottom:620.550000px;}
.y90{bottom:622.695000px;}
.yf0{bottom:625.650000px;}
.y5f{bottom:631.935000px;}
.yaf{bottom:633.150000px;}
.y1c{bottom:634.060500px;}
.y8f{bottom:638.175000px;}
.yed{bottom:642.420000px;}
.y122{bottom:644.850000px;}
.y5e{bottom:647.595000px;}
.yb1{bottom:651.900000px;}
.yec{bottom:657.720000px;}
.y1b{bottom:660.880500px;}
.y11c{bottom:661.950000px;}
.y5d{bottom:663.075000px;}
.yac{bottom:665.100000px;}
.y8e{bottom:669.675000px;}
.yeb{bottom:673.200000px;}
.y11f{bottom:674.400000px;}
.y1a{bottom:676.360500px;}
.y5c{bottom:678.555000px;}
.yae{bottom:683.700000px;}
.y8d{bottom:685.335000px;}
.ye8{bottom:686.700000px;}
.y19{bottom:691.840500px;}
.y5b{bottom:694.215000px;}
.ya9{bottom:696.750000px;}
.y8c{bottom:700.635000px;}
.yea{bottom:703.800000px;}
.y5a{bottom:709.695000px;}
.y11b{bottom:711.000000px;}
.yab{bottom:715.200000px;}
.y8b{bottom:716.115000px;}
.y59{bottom:725.175000px;}
.y18{bottom:726.580500px;}
.y11e{bottom:728.250000px;}
.ye5{bottom:730.500000px;}
.ya8{bottom:732.060000px;}
.y8a{bottom:732.135000px;}
.y58{bottom:740.835000px;}
.ye7{bottom:741.000000px;}
.y116{bottom:745.200000px;}
.ya7{bottom:747.180000px;}
.y89{bottom:747.615000px;}
.y17{bottom:748.000500px;}
.y11a{bottom:752.550000px;}
.y57{bottom:756.495000px;}
.ye2{bottom:761.100000px;}
.ya6{bottom:763.200000px;}
.y88{bottom:763.275000px;}
.ye4{bottom:766.200000px;}
.y56{bottom:771.615000px;}
.y16{bottom:776.800500px;}
.y87{bottom:778.395000px;}
.ya5{bottom:778.680000px;}
.ydf{bottom:780.900000px;}
.y55{bottom:787.635000px;}
.ye1{bottom:791.100000px;}
.y86{bottom:794.055000px;}
.ya4{bottom:794.160000px;}
.y54{bottom:803.115000px;}
.y119{bottom:804.540000px;}
.ya3{bottom:809.820000px;}
.y85{bottom:810.075000px;}
.ydc{bottom:810.900000px;}
.y15{bottom:811.360500px;}
.y53{bottom:818.595000px;}
.y118{bottom:820.200000px;}
.ya2{bottom:825.480000px;}
.y84{bottom:825.555000px;}
.yde{bottom:826.350000px;}
.y52{bottom:834.255000px;}
.ya1{bottom:840.960000px;}
.y83{bottom:841.215000px;}
.y14{bottom:846.100500px;}
.y51{bottom:849.555000px;}
.yda{bottom:851.400000px;}
.ya0{bottom:856.260000px;}
.y82{bottom:856.875000px;}
.y50{bottom:865.035000px;}
.y115{bottom:868.965000px;}
.y9f{bottom:869.040000px;}
.y81{bottom:872.040000px;}
.yd8{bottom:880.350000px;}
.y4f{bottom:881.100000px;}
.y80{bottom:884.820000px;}
.y13{bottom:886.645500px;}
.y4d{bottom:894.000000px;}
.y4c{bottom:897.450000px;}
.y114{bottom:900.150000px;}
.y34{bottom:909.066000px;}
.y4a{bottom:910.350000px;}
.y113{bottom:913.050000px;}
.yd3{bottom:914.700000px;}
.y12{bottom:915.478500px;}
.y49{bottom:916.350000px;}
.y32{bottom:916.950000px;}
.y11{bottom:925.933500px;}
.y33{bottom:925.956000px;}
.y10{bottom:928.185000px;}
.y47{bottom:931.950000px;}
.y110{bottom:933.450000px;}
.y46{bottom:943.050000px;}
.y111{bottom:945.000000px;}
.yf{bottom:947.085000px;}
.yd7{bottom:961.950000px;}
.y44{bottom:963.750000px;}
.y112{bottom:963.900000px;}
.y10f{bottom:964.650000px;}
.y43{bottom:973.200000px;}
.y10d{bottom:976.800000px;}
.ye{bottom:986.325000px;}
.y7f{bottom:989.400000px;}
.y41{bottom:992.700000px;}
.y10e{bottom:995.550000px;}
.y40{bottom:999.750000px;}
.y7e{bottom:1004.880000px;}
.y109{bottom:1008.450000px;}
.yd5{bottom:1008.900000px;}
.yd{bottom:1016.070000px;}
.y7d{bottom:1020.180000px;}
.y10c{bottom:1027.050000px;}
.ya{bottom:1034.070000px;}
.yc{bottom:1039.290000px;}
.y3f{bottom:1043.640000px;}
.y7c{bottom:1051.680000px;}
.y9{bottom:1057.290000px;}
.y10b{bottom:1057.950000px;}
.y3e{bottom:1059.120000px;}
.y7b{bottom:1067.340000px;}
.yb{bottom:1071.330000px;}
.y3d{bottom:1074.780000px;}
.yd2{bottom:1074.900000px;}
.y7a{bottom:1083.000000px;}
.y8{bottom:1086.630000px;}
.y3c{bottom:1090.080000px;}
.yd1{bottom:1090.380000px;}
.y9e{bottom:1090.440000px;}
.y79{bottom:1098.120000px;}
.y3b{bottom:1105.560000px;}
.y7{bottom:1105.710000px;}
.y9d{bottom:1105.920000px;}
.yd0{bottom:1106.040000px;}
.y78{bottom:1110.900000px;}
.y3a{bottom:1121.580000px;}
.ycf{bottom:1121.700000px;}
.y6{bottom:1122.990000px;}
.y39{bottom:1136.880000px;}
.yce{bottom:1137.180000px;}
.y5{bottom:1140.300000px;}
.y38{bottom:1152.390000px;}
.ycd{bottom:1152.690000px;}
.y4{bottom:1158.300000px;}
.y37{bottom:1168.050000px;}
.ycc{bottom:1168.350000px;}
.y35{bottom:1193.700000px;}
.h1b{height:15.660000px;}
.h2c{height:19.080000px;}
.h1a{height:20.880000px;}
.h22{height:23.220000px;}
.h17{height:23.580000px;}
.h18{height:28.260000px;}
.h29{height:28.275000px;}
.h23{height:28.800000px;}
.h2b{height:29.160000px;}
.h2d{height:29.880000px;}
.h24{height:30.060000px;}
.h19{height:30.960000px;}
.h20{height:30.990000px;}
.h1f{height:31.035000px;}
.h1e{height:31.140000px;}
.h31{height:31.155000px;}
.h30{height:31.170000px;}
.h28{height:33.660000px;}
.he{height:35.314453px;}
.h1c{height:36.597656px;}
.h13{height:38.158594px;}
.h2a{height:39.780000px;}
.h2e{height:43.200000px;}
.h26{height:46.260000px;}
.h27{height:46.440000px;}
.h14{height:47.344922px;}
.h36{height:48.060000px;}
.h6{height:48.616875px;}
.h10{height:52.971680px;}
.h15{height:52.998047px;}
.h11{height:54.421875px;}
.h37{height:55.503491px;}
.h7{height:55.796836px;}
.h16{height:55.824609px;}
.h8{height:58.621992px;}
.hf{height:59.074453px;}
.h1d{height:59.092031px;}
.h3{height:60.226875px;}
.h32{height:62.100000px;}
.h12{height:62.153438px;}
.h2f{height:62.850000px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.hb{height:67.820250px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.hc{height:76.826250px;}
.h5{height:81.995625px;}
.h35{height:82.440000px;}
.h9{height:84.898125px;}
.h34{height:86.101875px;}
.hd{height:117.565500px;}
.h33{height:119.700000px;}
.h21{height:129.450000px;}
.h25{height:140.400000px;}
.h0{height:1263.000000px;}
.w5{width:70.185000px;}
.w16{width:80.625000px;}
.w2{width:95.070000px;}
.w17{width:99.015000px;}
.w1{width:119.355000px;}
.we{width:147.780000px;}
.w11{width:155.685000px;}
.w12{width:155.700000px;}
.w13{width:155.850000px;}
.w14{width:157.200000px;}
.w6{width:159.150000px;}
.w9{width:159.450000px;}
.wc{width:165.285000px;}
.wf{width:165.600000px;}
.w10{width:170.100000px;}
.w8{width:180.000000px;}
.wb{width:180.450000px;}
.w3{width:213.450000px;}
.w7{width:215.550000px;}
.wa{width:215.850000px;}
.w4{width:222.450000px;}
.w15{width:470.250000px;}
.wd{width:484.200000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x48{left:8.100000px;}
.x3b{left:16.005000px;}
.x30{left:19.350000px;}
.x66{left:22.350000px;}
.x20{left:25.800000px;}
.x63{left:27.450000px;}
.x5b{left:28.905000px;}
.x4{left:30.000000px;}
.x32{left:31.350000px;}
.x1c{left:33.900000px;}
.x55{left:35.100000px;}
.x4a{left:36.600000px;}
.x1f{left:39.600000px;}
.x57{left:40.650000px;}
.x1e{left:42.900000px;}
.x33{left:44.400000px;}
.x4b{left:45.450000px;}
.x10{left:46.965000px;}
.xb{left:47.985000px;}
.x12{left:50.205000px;}
.x58{left:59.325000px;}
.x4f{left:62.145000px;}
.x51{left:63.825000px;}
.x50{left:65.550000px;}
.x44{left:67.545000px;}
.x40{left:69.600000px;}
.x4d{left:72.195000px;}
.x41{left:73.950000px;}
.x3f{left:76.500000px;}
.x69{left:79.095000px;}
.x49{left:84.345000px;}
.x4c{left:87.495000px;}
.x36{left:88.650000px;}
.x6b{left:93.168000px;}
.x35{left:103.800000px;}
.x38{left:104.850000px;}
.x6a{left:105.945000px;}
.x37{left:108.300000px;}
.xa{left:120.435000px;}
.x43{left:128.205000px;}
.x5a{left:129.645000px;}
.x3a{left:139.545000px;}
.x45{left:181.650000px;}
.x2f{left:186.750000px;}
.x62{left:190.800000px;}
.x3c{left:210.600000px;}
.xc{left:231.703500px;}
.x7{left:244.170000px;}
.x5c{left:249.750000px;}
.x5{left:270.300000px;}
.x1a{left:282.195000px;}
.x5e{left:288.150000px;}
.x6{left:290.610000px;}
.x1d{left:294.750000px;}
.x53{left:296.250000px;}
.x31{left:306.750000px;}
.x2e{left:311.895000px;}
.x2d{left:314.235000px;}
.x61{left:315.420000px;}
.x28{left:329.520000px;}
.x64{left:332.790000px;}
.x2a{left:339.030000px;}
.x14{left:349.950000px;}
.x4e{left:352.650000px;}
.x19{left:355.650000px;}
.x26{left:359.055000px;}
.x39{left:366.885000px;}
.x18{left:368.700000px;}
.x3d{left:370.500000px;}
.x34{left:390.750000px;}
.x67{left:403.500000px;}
.x23{left:409.050000px;}
.x11{left:412.620000px;}
.x5d{left:418.650000px;}
.x59{left:423.540000px;}
.x2b{left:429.300000px;}
.x42{left:436.050000px;}
.x1{left:440.700000px;}
.x46{left:442.050000px;}
.x15{left:448.800000px;}
.x54{left:452.700000px;}
.x3{left:465.600000px;}
.xf{left:469.014000px;}
.x52{left:470.850000px;}
.x8{left:478.965000px;}
.x9{left:506.580000px;}
.x1b{left:517.050000px;}
.x65{left:527.400000px;}
.xd{left:536.776500px;}
.x13{left:572.850000px;}
.x3e{left:586.800000px;}
.x47{left:607.950000px;}
.x56{left:609.300000px;}
.x29{left:612.090000px;}
.x60{left:619.500000px;}
.x5f{left:628.050000px;}
.x24{left:635.850000px;}
.x25{left:645.975000px;}
.x27{left:652.920000px;}
.xe{left:672.504000px;}
.x21{left:697.185000px;}
.x2c{left:703.335000px;}
.x22{left:718.185000px;}
.x17{left:796.050000px;}
.x16{left:1035.150000px;}
.x68{left:1061.790000px;}
.x2{left:1137.450000px;}
@media print{
.va{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.vb{vertical-align:-54.400000pt;}
.ve{vertical-align:-42.666667pt;}
.v8{vertical-align:-21.120000pt;}
.v4{vertical-align:-8.005333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.320000pt;}
.v3{vertical-align:18.874667pt;}
.v9{vertical-align:21.120000pt;}
.v5{vertical-align:22.874667pt;}
.v2{vertical-align:26.880000pt;}
.vd{vertical-align:28.160000pt;}
.v6{vertical-align:30.880000pt;}
.v7{vertical-align:45.162667pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.196267pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.024320pt;}
.lsc{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.432000pt;}
.ls22{letter-spacing:2.656000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls5{letter-spacing:18.080000pt;}
.ls2{letter-spacing:24.021333pt;}
.ls21{letter-spacing:26.976000pt;}
.ls8{letter-spacing:46.720000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls1b{letter-spacing:52.640000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls11{letter-spacing:746.400000pt;}
.ls1d{letter-spacing:942.133333pt;}
.ls9{letter-spacing:1215.413333pt;}
.ls20{letter-spacing:1255.733333pt;}
.ls3{letter-spacing:1296.640000pt;}
.ls1f{letter-spacing:1416.800000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.ws3{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.112000pt;}
.ws15{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws13{word-spacing:-11.888000pt;}
.ws12{word-spacing:-11.872000pt;}
.ws14{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.552000pt;}
.wsb{word-spacing:-11.520000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._8{width:2.298667pt;}
._9{width:3.252480pt;}
._5{width:4.489387pt;}
._c{width:5.850240pt;}
._d{width:6.743040pt;}
._7{width:8.277333pt;}
._4{width:9.427627pt;}
._6{width:10.516907pt;}
._a{width:17.807787pt;}
._b{width:19.125547pt;}
._3{width:34.720000pt;}
._25{width:66.538667pt;}
._1a{width:94.522667pt;}
._23{width:95.845333pt;}
._27{width:107.200000pt;}
._28{width:132.800000pt;}
._29{width:144.746667pt;}
._11{width:148.533333pt;}
._22{width:183.952000pt;}
._24{width:197.088000pt;}
._10{width:223.733333pt;}
._12{width:257.333333pt;}
._f{width:264.277333pt;}
._13{width:274.400000pt;}
._18{width:276.970453pt;}
._1c{width:291.855787pt;}
._26{width:304.586667pt;}
._1e{width:438.186667pt;}
._1d{width:450.026667pt;}
._1f{width:462.186667pt;}
._20{width:486.138667pt;}
._21{width:506.128000pt;}
._17{width:527.497600pt;}
._16{width:640.880000pt;}
._15{width:863.792000pt;}
._19{width:1191.274667pt;}
._1b{width:1196.768000pt;}
._14{width:1227.701333pt;}
._e{width:2418.026667pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.066667pt;}
.ye3{bottom:4.533333pt;}
.y4b{bottom:5.333333pt;}
.y42{bottom:6.266667pt;}
.yc0{bottom:6.400000pt;}
.y45{bottom:8.400000pt;}
.ydb{bottom:8.533333pt;}
.yc2{bottom:8.800000pt;}
.ye0{bottom:9.066667pt;}
.yc4{bottom:9.200000pt;}
.ye6{bottom:9.333333pt;}
.y48{bottom:9.866667pt;}
.yd9{bottom:11.066667pt;}
.ydd{bottom:13.733333pt;}
.y9c{bottom:14.400000pt;}
.ye9{bottom:15.200000pt;}
.ycb{bottom:15.400000pt;}
.yd6{bottom:16.266667pt;}
.yaa{bottom:16.400000pt;}
.yad{bottom:16.533333pt;}
.yb0{bottom:16.666667pt;}
.yb3{bottom:16.800000pt;}
.y121{bottom:17.066667pt;}
.y108{bottom:26.373333pt;}
.y11d{bottom:32.400000pt;}
.y10a{bottom:44.000000pt;}
.yef{bottom:44.666667pt;}
.y36{bottom:48.133333pt;}
.y117{bottom:48.933333pt;}
.y3{bottom:51.520000pt;}
.y107{bottom:51.813333pt;}
.yca{bottom:52.800000pt;}
.ybe{bottom:53.333333pt;}
.y9b{bottom:54.960000pt;}
.yd4{bottom:58.133333pt;}
.y77{bottom:65.426667pt;}
.y106{bottom:65.600000pt;}
.yc9{bottom:66.746667pt;}
.y1{bottom:68.346667pt;}
.y9a{bottom:68.586667pt;}
.y105{bottom:79.520000pt;}
.y99{bottom:79.946667pt;}
.yc8{bottom:80.506667pt;}
.y31{bottom:92.236000pt;}
.y104{bottom:93.440000pt;}
.yc7{bottom:94.266667pt;}
.y13c{bottom:103.466667pt;}
.y30{bottom:106.476000pt;}
.y103{bottom:107.200000pt;}
.y149{bottom:107.280000pt;}
.y76{bottom:111.093333pt;}
.y2f{bottom:117.516000pt;}
.yc6{bottom:121.786667pt;}
.y75{bottom:125.013333pt;}
.y102{bottom:134.720000pt;}
.yc5{bottom:135.866667pt;}
.y74{bottom:138.453333pt;}
.yc3{bottom:147.600000pt;}
.y101{bottom:148.480000pt;}
.y73{bottom:152.373333pt;}
.y100{bottom:162.400000pt;}
.y72{bottom:163.573333pt;}
.yc1{bottom:174.933333pt;}
.yff{bottom:176.640000pt;}
.y13b{bottom:185.240000pt;}
.y148{bottom:186.680000pt;}
.yfe{bottom:190.400000pt;}
.y2{bottom:192.426667pt;}
.y13a{bottom:199.160000pt;}
.y147{bottom:200.600000pt;}
.ybf{bottom:201.200000pt;}
.yfd{bottom:204.320000pt;}
.y139{bottom:212.920000pt;}
.y146{bottom:214.360000pt;}
.yfc{bottom:218.240000pt;}
.ybd{bottom:222.400000pt;}
.y138{bottom:226.840000pt;}
.y145{bottom:228.280000pt;}
.y137{bottom:240.760000pt;}
.y144{bottom:242.200000pt;}
.yfb{bottom:245.600000pt;}
.y136{bottom:254.520000pt;}
.y143{bottom:255.960000pt;}
.y71{bottom:258.613333pt;}
.yfa{bottom:259.520000pt;}
.y2e{bottom:264.982667pt;}
.y135{bottom:268.440000pt;}
.y142{bottom:269.920000pt;}
.y70{bottom:272.373333pt;}
.yf9{bottom:273.600000pt;}
.y2d{bottom:278.902667pt;}
.y98{bottom:280.480000pt;}
.y134{bottom:282.360000pt;}
.y141{bottom:283.840000pt;}
.yf8{bottom:285.200000pt;}
.y6f{bottom:286.133333pt;}
.y2c{bottom:292.662667pt;}
.y97{bottom:294.720000pt;}
.y133{bottom:296.120000pt;}
.y140{bottom:297.600000pt;}
.y6e{bottom:300.053333pt;}
.y96{bottom:305.800000pt;}
.y2b{bottom:306.462667pt;}
.y132{bottom:310.080000pt;}
.y13f{bottom:311.520000pt;}
.yf7{bottom:313.466667pt;}
.y2a{bottom:320.222667pt;}
.y131{bottom:324.000000pt;}
.y13e{bottom:325.440000pt;}
.y6d{bottom:327.453333pt;}
.y130{bottom:337.760000pt;}
.y6c{bottom:338.813333pt;}
.y13d{bottom:339.200000pt;}
.ybc{bottom:341.226667pt;}
.yf6{bottom:341.866667pt;}
.y29{bottom:347.742667pt;}
.y12f{bottom:351.680000pt;}
.ybb{bottom:368.906667pt;}
.yf5{bottom:370.000000pt;}
.y28{bottom:375.262667pt;}
.y12e{bottom:381.360000pt;}
.yba{bottom:382.666667pt;}
.y27{bottom:391.422667pt;}
.y12d{bottom:395.280000pt;}
.y6b{bottom:395.613333pt;}
.yb9{bottom:396.586667pt;}
.yf4{bottom:398.266667pt;}
.y12c{bottom:409.040000pt;}
.y6a{bottom:409.373333pt;}
.y26{bottom:417.182667pt;}
.y12b{bottom:422.800000pt;}
.y69{bottom:423.293333pt;}
.yb8{bottom:423.946667pt;}
.yf3{bottom:426.666667pt;}
.y25{bottom:433.342667pt;}
.y12a{bottom:436.720000pt;}
.y68{bottom:437.213333pt;}
.yb7{bottom:437.866667pt;}
.y24{bottom:447.262667pt;}
.yb6{bottom:449.733333pt;}
.y129{bottom:450.480000pt;}
.y67{bottom:450.653333pt;}
.yf2{bottom:454.933333pt;}
.y23{bottom:461.022667pt;}
.y128{bottom:464.240000pt;}
.y66{bottom:464.893333pt;}
.y95{bottom:470.600000pt;}
.y22{bottom:474.782667pt;}
.yb5{bottom:478.000000pt;}
.y65{bottom:478.653333pt;}
.yf1{bottom:483.066667pt;}
.y94{bottom:484.360000pt;}
.y21{bottom:488.542667pt;}
.y127{bottom:491.920000pt;}
.y64{bottom:492.573333pt;}
.y93{bottom:498.280000pt;}
.y20{bottom:502.462667pt;}
.y126{bottom:505.520000pt;}
.y63{bottom:506.173333pt;}
.yb4{bottom:506.266667pt;}
.yee{bottom:511.466667pt;}
.y1f{bottom:516.222667pt;}
.y125{bottom:519.280000pt;}
.y62{bottom:519.933333pt;}
.y92{bottom:525.640000pt;}
.y1e{bottom:529.982667pt;}
.y124{bottom:533.200000pt;}
.y61{bottom:534.173333pt;}
.yb2{bottom:534.533333pt;}
.y91{bottom:539.586667pt;}
.y1d{bottom:543.929333pt;}
.y120{bottom:545.066667pt;}
.y60{bottom:547.960000pt;}
.y123{bottom:551.600000pt;}
.y90{bottom:553.506667pt;}
.yf0{bottom:556.133333pt;}
.y5f{bottom:561.720000pt;}
.yaf{bottom:562.800000pt;}
.y1c{bottom:563.609333pt;}
.y8f{bottom:567.266667pt;}
.yed{bottom:571.040000pt;}
.y122{bottom:573.200000pt;}
.y5e{bottom:575.640000pt;}
.yb1{bottom:579.466667pt;}
.yec{bottom:584.640000pt;}
.y1b{bottom:587.449333pt;}
.y11c{bottom:588.400000pt;}
.y5d{bottom:589.400000pt;}
.yac{bottom:591.200000pt;}
.y8e{bottom:595.266667pt;}
.yeb{bottom:598.400000pt;}
.y11f{bottom:599.466667pt;}
.y1a{bottom:601.209333pt;}
.y5c{bottom:603.160000pt;}
.yae{bottom:607.733333pt;}
.y8d{bottom:609.186667pt;}
.ye8{bottom:610.400000pt;}
.y19{bottom:614.969333pt;}
.y5b{bottom:617.080000pt;}
.ya9{bottom:619.333333pt;}
.y8c{bottom:622.786667pt;}
.yea{bottom:625.600000pt;}
.y5a{bottom:630.840000pt;}
.y11b{bottom:632.000000pt;}
.yab{bottom:635.733333pt;}
.y8b{bottom:636.546667pt;}
.y59{bottom:644.600000pt;}
.y18{bottom:645.849333pt;}
.y11e{bottom:647.333333pt;}
.ye5{bottom:649.333333pt;}
.ya8{bottom:650.720000pt;}
.y8a{bottom:650.786667pt;}
.y58{bottom:658.520000pt;}
.ye7{bottom:658.666667pt;}
.y116{bottom:662.400000pt;}
.ya7{bottom:664.160000pt;}
.y89{bottom:664.546667pt;}
.y17{bottom:664.889333pt;}
.y11a{bottom:668.933333pt;}
.y57{bottom:672.440000pt;}
.ye2{bottom:676.533333pt;}
.ya6{bottom:678.400000pt;}
.y88{bottom:678.466667pt;}
.ye4{bottom:681.066667pt;}
.y56{bottom:685.880000pt;}
.y16{bottom:690.489333pt;}
.y87{bottom:691.906667pt;}
.ya5{bottom:692.160000pt;}
.ydf{bottom:694.133333pt;}
.y55{bottom:700.120000pt;}
.ye1{bottom:703.200000pt;}
.y86{bottom:705.826667pt;}
.ya4{bottom:705.920000pt;}
.y54{bottom:713.880000pt;}
.y119{bottom:715.146667pt;}
.ya3{bottom:719.840000pt;}
.y85{bottom:720.066667pt;}
.ydc{bottom:720.800000pt;}
.y15{bottom:721.209333pt;}
.y53{bottom:727.640000pt;}
.y118{bottom:729.066667pt;}
.ya2{bottom:733.760000pt;}
.y84{bottom:733.826667pt;}
.yde{bottom:734.533333pt;}
.y52{bottom:741.560000pt;}
.ya1{bottom:747.520000pt;}
.y83{bottom:747.746667pt;}
.y14{bottom:752.089333pt;}
.y51{bottom:755.160000pt;}
.yda{bottom:756.800000pt;}
.ya0{bottom:761.120000pt;}
.y82{bottom:761.666667pt;}
.y50{bottom:768.920000pt;}
.y115{bottom:772.413333pt;}
.y9f{bottom:772.480000pt;}
.y81{bottom:775.146667pt;}
.yd8{bottom:782.533333pt;}
.y4f{bottom:783.200000pt;}
.y80{bottom:786.506667pt;}
.y13{bottom:788.129333pt;}
.y4d{bottom:794.666667pt;}
.y4c{bottom:797.733333pt;}
.y114{bottom:800.133333pt;}
.y34{bottom:808.058667pt;}
.y4a{bottom:809.200000pt;}
.y113{bottom:811.600000pt;}
.yd3{bottom:813.066667pt;}
.y12{bottom:813.758667pt;}
.y49{bottom:814.533333pt;}
.y32{bottom:815.066667pt;}
.y11{bottom:823.052000pt;}
.y33{bottom:823.072000pt;}
.y10{bottom:825.053333pt;}
.y47{bottom:828.400000pt;}
.y110{bottom:829.733333pt;}
.y46{bottom:838.266667pt;}
.y111{bottom:840.000000pt;}
.yf{bottom:841.853333pt;}
.yd7{bottom:855.066667pt;}
.y44{bottom:856.666667pt;}
.y112{bottom:856.800000pt;}
.y10f{bottom:857.466667pt;}
.y43{bottom:865.066667pt;}
.y10d{bottom:868.266667pt;}
.ye{bottom:876.733333pt;}
.y7f{bottom:879.466667pt;}
.y41{bottom:882.400000pt;}
.y10e{bottom:884.933333pt;}
.y40{bottom:888.666667pt;}
.y7e{bottom:893.226667pt;}
.y109{bottom:896.400000pt;}
.yd5{bottom:896.800000pt;}
.yd{bottom:903.173333pt;}
.y7d{bottom:906.826667pt;}
.y10c{bottom:912.933333pt;}
.ya{bottom:919.173333pt;}
.yc{bottom:923.813333pt;}
.y3f{bottom:927.680000pt;}
.y7c{bottom:934.826667pt;}
.y9{bottom:939.813333pt;}
.y10b{bottom:940.400000pt;}
.y3e{bottom:941.440000pt;}
.y7b{bottom:948.746667pt;}
.yb{bottom:952.293333pt;}
.y3d{bottom:955.360000pt;}
.yd2{bottom:955.466667pt;}
.y7a{bottom:962.666667pt;}
.y8{bottom:965.893333pt;}
.y3c{bottom:968.960000pt;}
.yd1{bottom:969.226667pt;}
.y9e{bottom:969.280000pt;}
.y79{bottom:976.106667pt;}
.y3b{bottom:982.720000pt;}
.y7{bottom:982.853333pt;}
.y9d{bottom:983.040000pt;}
.yd0{bottom:983.146667pt;}
.y78{bottom:987.466667pt;}
.y3a{bottom:996.960000pt;}
.ycf{bottom:997.066667pt;}
.y6{bottom:998.213333pt;}
.y39{bottom:1010.560000pt;}
.yce{bottom:1010.826667pt;}
.y5{bottom:1013.600000pt;}
.y38{bottom:1024.346667pt;}
.ycd{bottom:1024.613333pt;}
.y4{bottom:1029.600000pt;}
.y37{bottom:1038.266667pt;}
.ycc{bottom:1038.533333pt;}
.y35{bottom:1061.066667pt;}
.h1b{height:13.920000pt;}
.h2c{height:16.960000pt;}
.h1a{height:18.560000pt;}
.h22{height:20.640000pt;}
.h17{height:20.960000pt;}
.h18{height:25.120000pt;}
.h29{height:25.133333pt;}
.h23{height:25.600000pt;}
.h2b{height:25.920000pt;}
.h2d{height:26.560000pt;}
.h24{height:26.720000pt;}
.h19{height:27.520000pt;}
.h20{height:27.546667pt;}
.h1f{height:27.586667pt;}
.h1e{height:27.680000pt;}
.h31{height:27.693333pt;}
.h30{height:27.706667pt;}
.h28{height:29.920000pt;}
.he{height:31.390625pt;}
.h1c{height:32.531250pt;}
.h13{height:33.918750pt;}
.h2a{height:35.360000pt;}
.h2e{height:38.400000pt;}
.h26{height:41.120000pt;}
.h27{height:41.280000pt;}
.h14{height:42.084375pt;}
.h36{height:42.720000pt;}
.h6{height:43.215000pt;}
.h10{height:47.085938pt;}
.h15{height:47.109375pt;}
.h11{height:48.375000pt;}
.h37{height:49.336436pt;}
.h7{height:49.597187pt;}
.h16{height:49.621875pt;}
.h8{height:52.108438pt;}
.hf{height:52.510625pt;}
.h1d{height:52.526250pt;}
.h3{height:53.535000pt;}
.h32{height:55.200000pt;}
.h12{height:55.247500pt;}
.h2f{height:55.866667pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.hb{height:60.284667pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.hc{height:68.290000pt;}
.h5{height:72.885000pt;}
.h35{height:73.280000pt;}
.h9{height:75.465000pt;}
.h34{height:76.535000pt;}
.hd{height:104.502667pt;}
.h33{height:106.400000pt;}
.h21{height:115.066667pt;}
.h25{height:124.800000pt;}
.h0{height:1122.666667pt;}
.w5{width:62.386667pt;}
.w16{width:71.666667pt;}
.w2{width:84.506667pt;}
.w17{width:88.013333pt;}
.w1{width:106.093333pt;}
.we{width:131.360000pt;}
.w11{width:138.386667pt;}
.w12{width:138.400000pt;}
.w13{width:138.533333pt;}
.w14{width:139.733333pt;}
.w6{width:141.466667pt;}
.w9{width:141.733333pt;}
.wc{width:146.920000pt;}
.wf{width:147.200000pt;}
.w10{width:151.200000pt;}
.w8{width:160.000000pt;}
.wb{width:160.400000pt;}
.w3{width:189.733333pt;}
.w7{width:191.600000pt;}
.wa{width:191.866667pt;}
.w4{width:197.733333pt;}
.w15{width:418.000000pt;}
.wd{width:430.400000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x48{left:7.200000pt;}
.x3b{left:14.226667pt;}
.x30{left:17.200000pt;}
.x66{left:19.866667pt;}
.x20{left:22.933333pt;}
.x63{left:24.400000pt;}
.x5b{left:25.693333pt;}
.x4{left:26.666667pt;}
.x32{left:27.866667pt;}
.x1c{left:30.133333pt;}
.x55{left:31.200000pt;}
.x4a{left:32.533333pt;}
.x1f{left:35.200000pt;}
.x57{left:36.133333pt;}
.x1e{left:38.133333pt;}
.x33{left:39.466667pt;}
.x4b{left:40.400000pt;}
.x10{left:41.746667pt;}
.xb{left:42.653333pt;}
.x12{left:44.626667pt;}
.x58{left:52.733333pt;}
.x4f{left:55.240000pt;}
.x51{left:56.733333pt;}
.x50{left:58.266667pt;}
.x44{left:60.040000pt;}
.x40{left:61.866667pt;}
.x4d{left:64.173333pt;}
.x41{left:65.733333pt;}
.x3f{left:68.000000pt;}
.x69{left:70.306667pt;}
.x49{left:74.973333pt;}
.x4c{left:77.773333pt;}
.x36{left:78.800000pt;}
.x6b{left:82.816000pt;}
.x35{left:92.266667pt;}
.x38{left:93.200000pt;}
.x6a{left:94.173333pt;}
.x37{left:96.266667pt;}
.xa{left:107.053333pt;}
.x43{left:113.960000pt;}
.x5a{left:115.240000pt;}
.x3a{left:124.040000pt;}
.x45{left:161.466667pt;}
.x2f{left:166.000000pt;}
.x62{left:169.600000pt;}
.x3c{left:187.200000pt;}
.xc{left:205.958667pt;}
.x7{left:217.040000pt;}
.x5c{left:222.000000pt;}
.x5{left:240.266667pt;}
.x1a{left:250.840000pt;}
.x5e{left:256.133333pt;}
.x6{left:258.320000pt;}
.x1d{left:262.000000pt;}
.x53{left:263.333333pt;}
.x31{left:272.666667pt;}
.x2e{left:277.240000pt;}
.x2d{left:279.320000pt;}
.x61{left:280.373333pt;}
.x28{left:292.906667pt;}
.x64{left:295.813333pt;}
.x2a{left:301.360000pt;}
.x14{left:311.066667pt;}
.x4e{left:313.466667pt;}
.x19{left:316.133333pt;}
.x26{left:319.160000pt;}
.x39{left:326.120000pt;}
.x18{left:327.733333pt;}
.x3d{left:329.333333pt;}
.x34{left:347.333333pt;}
.x67{left:358.666667pt;}
.x23{left:363.600000pt;}
.x11{left:366.773333pt;}
.x5d{left:372.133333pt;}
.x59{left:376.480000pt;}
.x2b{left:381.600000pt;}
.x42{left:387.600000pt;}
.x1{left:391.733333pt;}
.x46{left:392.933333pt;}
.x15{left:398.933333pt;}
.x54{left:402.400000pt;}
.x3{left:413.866667pt;}
.xf{left:416.901333pt;}
.x52{left:418.533333pt;}
.x8{left:425.746667pt;}
.x9{left:450.293333pt;}
.x1b{left:459.600000pt;}
.x65{left:468.800000pt;}
.xd{left:477.134667pt;}
.x13{left:509.200000pt;}
.x3e{left:521.600000pt;}
.x47{left:540.400000pt;}
.x56{left:541.600000pt;}
.x29{left:544.080000pt;}
.x60{left:550.666667pt;}
.x5f{left:558.266667pt;}
.x24{left:565.200000pt;}
.x25{left:574.200000pt;}
.x27{left:580.373333pt;}
.xe{left:597.781333pt;}
.x21{left:619.720000pt;}
.x2c{left:625.186667pt;}
.x22{left:638.386667pt;}
.x17{left:707.600000pt;}
.x16{left:920.133333pt;}
.x68{left:943.813333pt;}
.x2{left:1011.066667pt;}
}




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