
    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_2d3f7b28a7c7109b581e70fa.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_2e1ea032da24c4cf5ccddc7d.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_f27ea3ba16d5f1961dbe8dac.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_35dc2fc4307bc2522192e29a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f447ed0de627e9408b62bb7f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_50418079bf95dcd2508ff069.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_51d7697c73b3f292a1678398.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls12{letter-spacing:55.406640px;}
.ls11{letter-spacing:63.566640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws5{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._13{margin-left:-12.336000px;}
._e{margin-left:-3.731399px;}
._8{margin-left:-2.645400px;}
._0{margin-left:-1.110000px;}
._3{width:1.143421px;}
._4{width:3.086616px;}
._c{width:4.389000px;}
._2{width:6.153804px;}
._1{width:7.350960px;}
._f{width:8.454479px;}
._d{width:9.975600px;}
._9{width:11.122200px;}
._10{width:12.191040px;}
._7{width:14.308800px;}
._1f{width:15.383759px;}
._6{width:16.447321px;}
._5{width:17.515320px;}
._b{width:18.836760px;}
._a{width:20.007360px;}
._23{width:23.290200px;}
._24{width:24.304019px;}
._12{width:27.234360px;}
._18{width:28.256400px;}
._1e{width:33.426720px;}
._20{width:40.400640px;}
._1a{width:41.723280px;}
._19{width:45.330480px;}
._16{width:51.370320px;}
._14{width:52.725240px;}
._1b{width:58.136040px;}
._22{width:70.731000px;}
._11{width:77.073840px;}
._15{width:81.462600px;}
._26{width:83.206080px;}
._17{width:94.087800px;}
._1d{width:105.991560px;}
._1c{width:107.013600px;}
._21{width:113.686920px;}
._25{width:168.059160px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:4.500000px;}
.yf0{bottom:4.530000px;}
.yc0{bottom:7.830000px;}
.ybf{bottom:7.920000px;}
.yd0{bottom:7.950000px;}
.yc5{bottom:8.280000px;}
.yef{bottom:8.310000px;}
.yc9{bottom:10.980000px;}
.yed{bottom:11.070000px;}
.yda{bottom:11.520000px;}
.yd9{bottom:15.300000px;}
.ydd{bottom:18.360000px;}
.ye0{bottom:18.450000px;}
.y10e{bottom:21.600000px;}
.ye3{bottom:21.690000px;}
.yd1{bottom:21.720000px;}
.y10d{bottom:25.380000px;}
.yd7{bottom:25.470000px;}
.ycf{bottom:25.500000px;}
.yf6{bottom:28.260000px;}
.yc8{bottom:28.530000px;}
.yec{bottom:28.620000px;}
.y107{bottom:28.650000px;}
.ybd{bottom:35.190000px;}
.ydc{bottom:36.000000px;}
.yc3{bottom:41.670000px;}
.ye9{bottom:41.700000px;}
.yd6{bottom:43.020000px;}
.yfb{bottom:43.110000px;}
.yd3{bottom:45.720000px;}
.yf5{bottom:45.810000px;}
.yc7{bottom:46.170000px;}
.yeb{bottom:46.200000px;}
.y10b{bottom:58.860000px;}
.ycd{bottom:58.890000px;}
.yf4{bottom:63.360000px;}
.yd2{bottom:63.390000px;}
.yc2{bottom:63.720000px;}
.y105{bottom:63.750000px;}
.ye8{bottom:63.840000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y10a{bottom:80.910000px;}
.ycc{bottom:80.940000px;}
.yf2{bottom:81.000000px;}
.y1{bottom:101.640000px;}
.yb1{bottom:114.240000px;}
.y116{bottom:120.540000px;}
.y164{bottom:126.030000px;}
.y190{bottom:133.320000px;}
.y138{bottom:137.100000px;}
.y27{bottom:141.690000px;}
.y163{bottom:143.670000px;}
.yb0{bottom:149.880000px;}
.y18f{bottom:150.870000px;}
.y26{bottom:159.330000px;}
.y114{bottom:165.450000px;}
.y162{bottom:170.220000px;}
.y137{bottom:172.650000px;}
.y25{bottom:176.880000px;}
.y18e{bottom:177.510000px;}
.ye4{bottom:177.690000px;}
.y76{bottom:182.100000px;}
.yaf{bottom:184.710000px;}
.y161{bottom:187.770000px;}
.ye2{bottom:192.720000px;}
.y24{bottom:194.430000px;}
.y18d{bottom:195.060000px;}
.yae{bottom:196.140000px;}
.y136{bottom:199.290000px;}
.y75{bottom:199.830000px;}
.y115{bottom:200.280000px;}
.y56{bottom:200.460000px;}
.y23{bottom:212.070000px;}
.y160{bottom:214.410000px;}
.y74{bottom:217.380000px;}
.y55{bottom:218.100000px;}
.y18c{bottom:221.610000px;}
.y112{bottom:228.000000px;}
.y22{bottom:229.620000px;}
.y15f{bottom:231.960000px;}
.y135{bottom:234.840000px;}
.y54{bottom:235.650000px;}
.y73{bottom:235.830000px;}
.ydf{bottom:237.630000px;}
.y18b{bottom:239.250000px;}
.ya2{bottom:249.870000px;}
.y134{bottom:252.390000px;}
.y72{bottom:253.380000px;}
.y18a{bottom:256.800000px;}
.y15e{bottom:258.510000px;}
.y53{bottom:262.200000px;}
.y113{bottom:262.740000px;}
.y21{bottom:265.260000px;}
.ye1{bottom:265.350000px;}
.ya1{bottom:267.420000px;}
.y71{bottom:271.830000px;}
.y20{bottom:282.810000px;}
.y189{bottom:283.440000px;}
.ya0{bottom:284.970000px;}
.y15d{bottom:285.420000px;}
.y133{bottom:288.030000px;}
.y70{bottom:289.380000px;}
.y110{bottom:290.460000px;}
.ydb{bottom:293.160000px;}
.y52{bottom:297.840000px;}
.y1f{bottom:300.360000px;}
.y188{bottom:300.990000px;}
.y132{bottom:305.580000px;}
.y6f{bottom:307.020000px;}
.y51{bottom:315.390000px;}
.y1e{bottom:318.000000px;}
.y187{bottom:318.540000px;}
.y9f{bottom:320.610000px;}
.yde{bottom:320.880000px;}
.y6e{bottom:324.570000px;}
.y111{bottom:325.290000px;}
.y131{bottom:332.220000px;}
.y50{bottom:332.940000px;}
.y15c{bottom:333.660000px;}
.y1d{bottom:335.550000px;}
.y9e{bottom:338.160000px;}
.y6d{bottom:343.020000px;}
.y186{bottom:345.180000px;}
.yd5{bottom:348.600000px;}
.y4f{bottom:350.580000px;}
.y15b{bottom:351.300000px;}
.y109{bottom:353.010000px;}
.y1c{bottom:353.190000px;}
.y9d{bottom:355.800000px;}
.y6c{bottom:360.570000px;}
.y185{bottom:362.730000px;}
.y130{bottom:367.770000px;}
.y4e{bottom:368.130000px;}
.y15a{bottom:368.850000px;}
.y6b{bottom:378.120000px;}
.y1b{bottom:380.010000px;}
.y10f{bottom:380.730000px;}
.y9c{bottom:382.620000px;}
.yd8{bottom:383.340000px;}
.y4d{bottom:385.770000px;}
.y159{bottom:387.300000px;}
.y184{bottom:389.370000px;}
.y6a{bottom:396.570000px;}
.y4c{bottom:403.320000px;}
.y158{bottom:404.940000px;}
.y183{bottom:406.920000px;}
.y10c{bottom:408.540000px;}
.ycb{bottom:411.150000px;}
.y69{bottom:414.120000px;}
.y4b{bottom:420.870000px;}
.y12f{bottom:420.960000px;}
.y157{bottom:422.490000px;}
.y1a{bottom:428.340000px;}
.y9b{bottom:430.860000px;}
.y68{bottom:431.760000px;}
.y182{bottom:433.470000px;}
.yd4{bottom:438.870000px;}
.y156{bottom:440.040000px;}
.y19{bottom:446.250000px;}
.y4a{bottom:447.510000px;}
.y9a{bottom:448.500000px;}
.y67{bottom:449.310000px;}
.y104{bottom:453.450000px;}
.y181{bottom:460.110000px;}
.yad{bottom:462.720000px;}
.y99{bottom:466.140000px;}
.yce{bottom:466.590000px;}
.y66{bottom:466.860000px;}
.y155{bottom:476.520000px;}
.yac{bottom:480.390000px;}
.y108{bottom:481.200000px;}
.y49{bottom:483.090000px;}
.y12e{bottom:483.180000px;}
.y18{bottom:483.270000px;}
.y98{bottom:483.720000px;}
.y65{bottom:485.340000px;}
.y180{bottom:486.690000px;}
.y154{bottom:494.070000px;}
.y48{bottom:500.730000px;}
.y17{bottom:500.910000px;}
.y97{bottom:502.170000px;}
.y64{bottom:502.890000px;}
.y17f{bottom:504.330000px;}
.y106{bottom:508.920000px;}
.yc1{bottom:511.620000px;}
.y153{bottom:511.710000px;}
.yab{bottom:515.940000px;}
.y47{bottom:518.280000px;}
.y16{bottom:518.460000px;}
.y96{bottom:519.720000px;}
.y63{bottom:521.340000px;}
.y17e{bottom:530.880000px;}
.y46{bottom:535.830000px;}
.y15{bottom:536.010000px;}
.y12d{bottom:536.280000px;}
.y102{bottom:536.730000px;}
.y95{bottom:537.360000px;}
.y152{bottom:538.620000px;}
.y62{bottom:538.890000px;}
.yca{bottom:539.340000px;}
.y17d{bottom:548.430000px;}
.yaa{bottom:550.860000px;}
.y45{bottom:553.470000px;}
.y14{bottom:553.650000px;}
.y12c{bottom:553.920000px;}
.y94{bottom:554.910000px;}
.y61{bottom:556.440000px;}
.ya9{bottom:562.290000px;}
.y103{bottom:564.000000px;}
.yc4{bottom:567.060000px;}
.y44{bottom:571.020000px;}
.y13{bottom:571.200000px;}
.y93{bottom:572.460000px;}
.y60{bottom:574.890000px;}
.y17c{bottom:575.070000px;}
.y151{bottom:575.610000px;}
.y12b{bottom:580.470000px;}
.y43{bottom:588.660000px;}
.y12{bottom:588.840000px;}
.y92{bottom:590.100000px;}
.y5f{bottom:592.530000px;}
.y150{bottom:593.160000px;}
.ybc{bottom:594.870000px;}
.y17b{bottom:601.620000px;}
.y42{bottom:606.210000px;}
.y91{bottom:607.650000px;}
.y5e{bottom:610.080000px;}
.y14f{bottom:610.800000px;}
.y101{bottom:612.780000px;}
.y12a{bottom:616.110000px;}
.y17a{bottom:619.260000px;}
.ybe{bottom:622.140000px;}
.y41{bottom:623.760000px;}
.y11{bottom:624.390000px;}
.y90{bottom:625.290000px;}
.y5d{bottom:627.720000px;}
.y14e{bottom:628.350000px;}
.y129{bottom:633.660000px;}
.y10{bottom:641.940000px;}
.y8f{bottom:642.840000px;}
.y5c{bottom:645.270000px;}
.y179{bottom:645.810000px;}
.y14d{bottom:645.990000px;}
.y100{bottom:648.330000px;}
.y40{bottom:650.400000px;}
.yf{bottom:659.580000px;}
.y128{bottom:660.480000px;}
.y8e{bottom:661.200000px;}
.y178{bottom:663.360000px;}
.y14c{bottom:663.540000px;}
.y5b{bottom:663.720000px;}
.ybb{bottom:670.830000px;}
.yff{bottom:672.270000px;}
.ye{bottom:677.130000px;}
.y8d{bottom:678.840000px;}
.y14b{bottom:681.090000px;}
.y5a{bottom:681.270000px;}
.y3f{bottom:686.310000px;}
.y177{bottom:690.000000px;}
.yd{bottom:694.770000px;}
.y8c{bottom:696.390000px;}
.y59{bottom:698.820000px;}
.yfd{bottom:700.080000px;}
.yba{bottom:706.470000px;}
.y176{bottom:707.550000px;}
.y14a{bottom:708.000000px;}
.y127{bottom:708.720000px;}
.yc{bottom:712.320000px;}
.y8b{bottom:713.940000px;}
.yb9{bottom:724.020000px;}
.y126{bottom:726.450000px;}
.yfe{bottom:727.800000px;}
.yb{bottom:729.870000px;}
.y8a{bottom:732.390000px;}
.y175{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.y58{bottom:735.270000px;}
.y125{bottom:744.000000px;}
.y89{bottom:750.030000px;}
.yb8{bottom:750.930000px;}
.y174{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.yfa{bottom:755.520000px;}
.y149{bottom:756.330000px;}
.ya{bottom:756.870000px;}
.y124{bottom:761.550000px;}
.y57{bottom:767.490000px;}
.y88{bottom:767.580000px;}
.y3c{bottom:769.740000px;}
.y148{bottom:773.880000px;}
.y173{bottom:778.290000px;}
.y123{bottom:780.000000px;}
.y87{bottom:786.030000px;}
.yfc{bottom:790.350000px;}
.y147{bottom:791.520000px;}
.ya8{bottom:793.500000px;}
.y172{bottom:795.930000px;}
.y122{bottom:797.550000px;}
.yb7{bottom:799.170000px;}
.y9{bottom:803.580000px;}
.y3b{bottom:805.290000px;}
.y146{bottom:809.070000px;}
.ya7{bottom:811.140000px;}
.y121{bottom:815.100000px;}
.yb6{bottom:816.810000px;}
.yf8{bottom:818.070000px;}
.y86{bottom:821.130000px;}
.y171{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.y145{bottom:826.620000px;}
.y120{bottom:833.550000px;}
.y8{bottom:839.130000px;}
.y85{bottom:839.580000px;}
.y170{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.yb5{bottom:843.720000px;}
.y144{bottom:844.260000px;}
.ya6{bottom:847.590000px;}
.y11f{bottom:851.190000px;}
.yf9{bottom:852.810000px;}
.y84{bottom:857.130000px;}
.y16f{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.ya5{bottom:865.230000px;}
.y193{bottom:866.670000px;}
.y11e{bottom:868.740000px;}
.y7{bottom:874.950000px;}
.y37{bottom:875.670000px;}
.y143{bottom:879.810000px;}
.yf1{bottom:880.530000px;}
.y16e{bottom:884.220000px;}
.y11d{bottom:887.190000px;}
.yb4{bottom:891.960000px;}
.y36{bottom:893.220000px;}
.y83{bottom:893.580000px;}
.y142{bottom:897.450000px;}
.ya4{bottom:900.060000px;}
.y16d{bottom:901.860000px;}
.y11c{bottom:904.740000px;}
.yf7{bottom:908.340000px;}
.y6{bottom:910.950000px;}
.y82{bottom:911.130000px;}
.ya3{bottom:911.490000px;}
.y141{bottom:915.000000px;}
.y16c{bottom:919.410000px;}
.y11b{bottom:922.380000px;}
.yb3{bottom:926.880000px;}
.y192{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y140{bottom:932.550000px;}
.yf3{bottom:936.060000px;}
.y11a{bottom:939.930000px;}
.y81{bottom:940.650000px;}
.yb2{bottom:942.810000px;}
.y16b{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y13f{bottom:950.190000px;}
.y119{bottom:957.480000px;}
.y80{bottom:958.380000px;}
.y16a{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y13e{bottom:967.740000px;}
.y7f{bottom:975.930000px;}
.ye7{bottom:980.970000px;}
.y191{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y169{bottom:990.150000px;}
.y7e{bottom:993.480000px;}
.y13d{bottom:994.650000px;}
.y31{bottom:999.150000px;}
.y168{bottom:1007.790000px;}
.yee{bottom:1008.690000px;}
.y3{bottom:1010.070000px;}
.y7d{bottom:1011.060000px;}
.y118{bottom:1011.150000px;}
.y30{bottom:1016.820000px;}
.y167{bottom:1025.370000px;}
.y117{bottom:1028.700000px;}
.y7c{bottom:1029.510000px;}
.yea{bottom:1036.530000px;}
.y13c{bottom:1042.920000px;}
.y7b{bottom:1047.150000px;}
.y166{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y13b{bottom:1060.560000px;}
.ye5{bottom:1064.250000px;}
.y7a{bottom:1064.700000px;}
.y2e{bottom:1069.920000px;}
.y165{bottom:1078.560000px;}
.y79{bottom:1082.250000px;}
.y2d{bottom:1087.560000px;}
.ye6{bottom:1091.610000px;}
.y13a{bottom:1096.110000px;}
.y78{bottom:1099.800000px;}
.y2c{bottom:1105.110000px;}
.y139{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y77{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hc{height:26.640000px;}
.hf{height:27.000000px;}
.h17{height:27.030000px;}
.h2{height:30.022383px;}
.h13{height:34.020000px;}
.h3{height:38.100586px;}
.ha{height:40.539023px;}
.h1c{height:44.100000px;}
.h15{height:44.190000px;}
.h11{height:44.220000px;}
.h6{height:50.902383px;}
.hb{height:53.910000px;}
.h14{height:54.720000px;}
.h5{height:55.779258px;}
.h12{height:61.740000px;}
.h9{height:61.793886px;}
.h19{height:61.830000px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:82.440000px;}
.h1a{height:82.470000px;}
.h16{height:82.560000px;}
.h1b{height:99.630000px;}
.h10{height:99.660000px;}
.h18{height:99.720000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:17.040000px;}
.w18{width:17.130000px;}
.w9{width:18.810000px;}
.w8{width:18.840000px;}
.w13{width:30.600000px;}
.w12{width:30.690000px;}
.w11{width:30.780000px;}
.w3{width:33.300000px;}
.wa{width:34.020000px;}
.wb{width:34.110000px;}
.wc{width:35.550000px;}
.w14{width:41.850000px;}
.w4{width:90.840000px;}
.wd{width:94.980000px;}
.w6{width:142.770000px;}
.w16{width:142.860000px;}
.w7{width:167.040000px;}
.wf{width:175.140000px;}
.w17{width:179.010000px;}
.w15{width:287.640000px;}
.we{width:292.410000px;}
.w5{width:297.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:3.870000px;}
.x1e{left:26.370000px;}
.x1{left:68.040000px;}
.x27{left:72.000000px;}
.x1f{left:74.700000px;}
.x14{left:79.380000px;}
.xb{left:87.029987px;}
.x11{left:93.959987px;}
.x6{left:95.039987px;}
.x20{left:110.970000px;}
.x16{left:113.400000px;}
.x28{left:114.570000px;}
.x7{left:122.039987px;}
.x8{left:149.039987px;}
.xf{left:161.459987px;}
.x2{left:202.799987px;}
.x17{left:205.050000px;}
.x21{left:206.670000px;}
.x5{left:209.099987px;}
.x29{left:210.270000px;}
.x13{left:267.059987px;}
.xa{left:363.809987px;}
.xe{left:365.159987px;}
.xc{left:386.219987px;}
.x2a{left:498.630000px;}
.x22{left:499.890000px;}
.x18{left:503.310000px;}
.x2c{left:516.480000px;}
.x24{left:517.650000px;}
.x1a{left:522.870000px;}
.x1b{left:542.490000px;}
.x2d{left:547.980000px;}
.x25{left:549.150000px;}
.x12{left:564.809987px;}
.x1c{left:577.230000px;}
.x2e{left:579.390000px;}
.x26{left:580.560000px;}
.xd{left:597.389987px;}
.x2f{left:610.800000px;}
.x1d{left:612.060000px;}
.x2b{left:642.210000px;}
.x23{left:643.470000px;}
.x19{left:646.890000px;}
.x4{left:676.139987px;}
.x10{left:709.889987px;}
.x9{left:740.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls12{letter-spacing:49.250347pt;}
.ls11{letter-spacing:56.503680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws5{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._13{margin-left:-10.965333pt;}
._e{margin-left:-3.316799pt;}
._8{margin-left:-2.351467pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.016374pt;}
._4{width:2.743658pt;}
._c{width:3.901334pt;}
._2{width:5.470048pt;}
._1{width:6.534187pt;}
._f{width:7.515092pt;}
._d{width:8.867200pt;}
._9{width:9.886400pt;}
._10{width:10.836480pt;}
._7{width:12.718934pt;}
._1f{width:13.674452pt;}
._6{width:14.619841pt;}
._5{width:15.569173pt;}
._b{width:16.743786pt;}
._a{width:17.784320pt;}
._23{width:20.702400pt;}
._24{width:21.603573pt;}
._12{width:24.208320pt;}
._18{width:25.116800pt;}
._1e{width:29.712640pt;}
._20{width:35.911680pt;}
._1a{width:37.087360pt;}
._19{width:40.293760pt;}
._16{width:45.662507pt;}
._14{width:46.866880pt;}
._1b{width:51.676480pt;}
._22{width:62.872000pt;}
._11{width:68.510080pt;}
._15{width:72.411200pt;}
._26{width:73.960960pt;}
._17{width:83.633600pt;}
._1d{width:94.214720pt;}
._1c{width:95.123200pt;}
._21{width:101.055040pt;}
._25{width:149.385920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:4.000000pt;}
.yf0{bottom:4.026667pt;}
.yc0{bottom:6.960000pt;}
.ybf{bottom:7.040000pt;}
.yd0{bottom:7.066667pt;}
.yc5{bottom:7.360000pt;}
.yef{bottom:7.386667pt;}
.yc9{bottom:9.760000pt;}
.yed{bottom:9.840000pt;}
.yda{bottom:10.240000pt;}
.yd9{bottom:13.600000pt;}
.ydd{bottom:16.320000pt;}
.ye0{bottom:16.400000pt;}
.y10e{bottom:19.200000pt;}
.ye3{bottom:19.280000pt;}
.yd1{bottom:19.306667pt;}
.y10d{bottom:22.560000pt;}
.yd7{bottom:22.640000pt;}
.ycf{bottom:22.666667pt;}
.yf6{bottom:25.120000pt;}
.yc8{bottom:25.360000pt;}
.yec{bottom:25.440000pt;}
.y107{bottom:25.466667pt;}
.ybd{bottom:31.280000pt;}
.ydc{bottom:32.000000pt;}
.yc3{bottom:37.040000pt;}
.ye9{bottom:37.066667pt;}
.yd6{bottom:38.240000pt;}
.yfb{bottom:38.320000pt;}
.yd3{bottom:40.640000pt;}
.yf5{bottom:40.720000pt;}
.yc7{bottom:41.040000pt;}
.yeb{bottom:41.066667pt;}
.y10b{bottom:52.320000pt;}
.ycd{bottom:52.346667pt;}
.yf4{bottom:56.320000pt;}
.yd2{bottom:56.346667pt;}
.yc2{bottom:56.640000pt;}
.y105{bottom:56.666667pt;}
.ye8{bottom:56.746667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y10a{bottom:71.920000pt;}
.ycc{bottom:71.946667pt;}
.yf2{bottom:72.000000pt;}
.y1{bottom:90.346667pt;}
.yb1{bottom:101.546667pt;}
.y116{bottom:107.146667pt;}
.y164{bottom:112.026667pt;}
.y190{bottom:118.506667pt;}
.y138{bottom:121.866667pt;}
.y27{bottom:125.946667pt;}
.y163{bottom:127.706667pt;}
.yb0{bottom:133.226667pt;}
.y18f{bottom:134.106667pt;}
.y26{bottom:141.626667pt;}
.y114{bottom:147.066667pt;}
.y162{bottom:151.306667pt;}
.y137{bottom:153.466667pt;}
.y25{bottom:157.226667pt;}
.y18e{bottom:157.786667pt;}
.ye4{bottom:157.946667pt;}
.y76{bottom:161.866667pt;}
.yaf{bottom:164.186667pt;}
.y161{bottom:166.906667pt;}
.ye2{bottom:171.306667pt;}
.y24{bottom:172.826667pt;}
.y18d{bottom:173.386667pt;}
.yae{bottom:174.346667pt;}
.y136{bottom:177.146667pt;}
.y75{bottom:177.626667pt;}
.y115{bottom:178.026667pt;}
.y56{bottom:178.186667pt;}
.y23{bottom:188.506667pt;}
.y160{bottom:190.586667pt;}
.y74{bottom:193.226667pt;}
.y55{bottom:193.866667pt;}
.y18c{bottom:196.986667pt;}
.y112{bottom:202.666667pt;}
.y22{bottom:204.106667pt;}
.y15f{bottom:206.186667pt;}
.y135{bottom:208.746667pt;}
.y54{bottom:209.466667pt;}
.y73{bottom:209.626667pt;}
.ydf{bottom:211.226667pt;}
.y18b{bottom:212.666667pt;}
.ya2{bottom:222.106667pt;}
.y134{bottom:224.346667pt;}
.y72{bottom:225.226667pt;}
.y18a{bottom:228.266667pt;}
.y15e{bottom:229.786667pt;}
.y53{bottom:233.066667pt;}
.y113{bottom:233.546667pt;}
.y21{bottom:235.786667pt;}
.ye1{bottom:235.866667pt;}
.ya1{bottom:237.706667pt;}
.y71{bottom:241.626667pt;}
.y20{bottom:251.386667pt;}
.y189{bottom:251.946667pt;}
.ya0{bottom:253.306667pt;}
.y15d{bottom:253.706667pt;}
.y133{bottom:256.026667pt;}
.y70{bottom:257.226667pt;}
.y110{bottom:258.186667pt;}
.ydb{bottom:260.586667pt;}
.y52{bottom:264.746667pt;}
.y1f{bottom:266.986667pt;}
.y188{bottom:267.546667pt;}
.y132{bottom:271.626667pt;}
.y6f{bottom:272.906667pt;}
.y51{bottom:280.346667pt;}
.y1e{bottom:282.666667pt;}
.y187{bottom:283.146667pt;}
.y9f{bottom:284.986667pt;}
.yde{bottom:285.226667pt;}
.y6e{bottom:288.506667pt;}
.y111{bottom:289.146667pt;}
.y131{bottom:295.306667pt;}
.y50{bottom:295.946667pt;}
.y15c{bottom:296.586667pt;}
.y1d{bottom:298.266667pt;}
.y9e{bottom:300.586667pt;}
.y6d{bottom:304.906667pt;}
.y186{bottom:306.826667pt;}
.yd5{bottom:309.866667pt;}
.y4f{bottom:311.626667pt;}
.y15b{bottom:312.266667pt;}
.y109{bottom:313.786667pt;}
.y1c{bottom:313.946667pt;}
.y9d{bottom:316.266667pt;}
.y6c{bottom:320.506667pt;}
.y185{bottom:322.426667pt;}
.y130{bottom:326.906667pt;}
.y4e{bottom:327.226667pt;}
.y15a{bottom:327.866667pt;}
.y6b{bottom:336.106667pt;}
.y1b{bottom:337.786667pt;}
.y10f{bottom:338.426667pt;}
.y9c{bottom:340.106667pt;}
.yd8{bottom:340.746667pt;}
.y4d{bottom:342.906667pt;}
.y159{bottom:344.266667pt;}
.y184{bottom:346.106667pt;}
.y6a{bottom:352.506667pt;}
.y4c{bottom:358.506667pt;}
.y158{bottom:359.946667pt;}
.y183{bottom:361.706667pt;}
.y10c{bottom:363.146667pt;}
.ycb{bottom:365.466667pt;}
.y69{bottom:368.106667pt;}
.y4b{bottom:374.106667pt;}
.y12f{bottom:374.186667pt;}
.y157{bottom:375.546667pt;}
.y1a{bottom:380.746667pt;}
.y9b{bottom:382.986667pt;}
.y68{bottom:383.786667pt;}
.y182{bottom:385.306667pt;}
.yd4{bottom:390.106667pt;}
.y156{bottom:391.146667pt;}
.y19{bottom:396.666667pt;}
.y4a{bottom:397.786667pt;}
.y9a{bottom:398.666667pt;}
.y67{bottom:399.386667pt;}
.y104{bottom:403.066667pt;}
.y181{bottom:408.986667pt;}
.yad{bottom:411.306667pt;}
.y99{bottom:414.346667pt;}
.yce{bottom:414.746667pt;}
.y66{bottom:414.986667pt;}
.y155{bottom:423.573333pt;}
.yac{bottom:427.013333pt;}
.y108{bottom:427.733333pt;}
.y49{bottom:429.413333pt;}
.y12e{bottom:429.493333pt;}
.y18{bottom:429.573333pt;}
.y98{bottom:429.973333pt;}
.y65{bottom:431.413333pt;}
.y180{bottom:432.613333pt;}
.y154{bottom:439.173333pt;}
.y48{bottom:445.093333pt;}
.y17{bottom:445.253333pt;}
.y97{bottom:446.373333pt;}
.y64{bottom:447.013333pt;}
.y17f{bottom:448.293333pt;}
.y106{bottom:452.373333pt;}
.yc1{bottom:454.773333pt;}
.y153{bottom:454.853333pt;}
.yab{bottom:458.613333pt;}
.y47{bottom:460.693333pt;}
.y16{bottom:460.853333pt;}
.y96{bottom:461.973333pt;}
.y63{bottom:463.413333pt;}
.y17e{bottom:471.893333pt;}
.y46{bottom:476.293333pt;}
.y15{bottom:476.453333pt;}
.y12d{bottom:476.693333pt;}
.y102{bottom:477.093333pt;}
.y95{bottom:477.653333pt;}
.y152{bottom:478.773333pt;}
.y62{bottom:479.013333pt;}
.yca{bottom:479.413333pt;}
.y17d{bottom:487.493333pt;}
.yaa{bottom:489.653333pt;}
.y45{bottom:491.973333pt;}
.y14{bottom:492.133333pt;}
.y12c{bottom:492.373333pt;}
.y94{bottom:493.253333pt;}
.y61{bottom:494.613333pt;}
.ya9{bottom:499.813333pt;}
.y103{bottom:501.333333pt;}
.yc4{bottom:504.053333pt;}
.y44{bottom:507.573333pt;}
.y13{bottom:507.733333pt;}
.y93{bottom:508.853333pt;}
.y60{bottom:511.013333pt;}
.y17c{bottom:511.173333pt;}
.y151{bottom:511.653333pt;}
.y12b{bottom:515.973333pt;}
.y43{bottom:523.253333pt;}
.y12{bottom:523.413333pt;}
.y92{bottom:524.533333pt;}
.y5f{bottom:526.693333pt;}
.y150{bottom:527.253333pt;}
.ybc{bottom:528.773333pt;}
.y17b{bottom:534.773333pt;}
.y42{bottom:538.853333pt;}
.y91{bottom:540.133333pt;}
.y5e{bottom:542.293333pt;}
.y14f{bottom:542.933333pt;}
.y101{bottom:544.693333pt;}
.y12a{bottom:547.653333pt;}
.y17a{bottom:550.453333pt;}
.ybe{bottom:553.013333pt;}
.y41{bottom:554.453333pt;}
.y11{bottom:555.013333pt;}
.y90{bottom:555.813333pt;}
.y5d{bottom:557.973333pt;}
.y14e{bottom:558.533333pt;}
.y129{bottom:563.253333pt;}
.y10{bottom:570.613333pt;}
.y8f{bottom:571.413333pt;}
.y5c{bottom:573.573333pt;}
.y179{bottom:574.053333pt;}
.y14d{bottom:574.213333pt;}
.y100{bottom:576.293333pt;}
.y40{bottom:578.133333pt;}
.yf{bottom:586.293333pt;}
.y128{bottom:587.093333pt;}
.y8e{bottom:587.733333pt;}
.y178{bottom:589.653333pt;}
.y14c{bottom:589.813333pt;}
.y5b{bottom:589.973333pt;}
.ybb{bottom:596.293333pt;}
.yff{bottom:597.573333pt;}
.ye{bottom:601.893333pt;}
.y8d{bottom:603.413333pt;}
.y14b{bottom:605.413333pt;}
.y5a{bottom:605.573333pt;}
.y3f{bottom:610.053333pt;}
.y177{bottom:613.333333pt;}
.yd{bottom:617.573333pt;}
.y8c{bottom:619.013333pt;}
.y59{bottom:621.173333pt;}
.yfd{bottom:622.293333pt;}
.yba{bottom:627.973333pt;}
.y176{bottom:628.933333pt;}
.y14a{bottom:629.333333pt;}
.y127{bottom:629.973333pt;}
.yc{bottom:633.173333pt;}
.y8b{bottom:634.613333pt;}
.yb9{bottom:643.573333pt;}
.y126{bottom:645.733333pt;}
.yfe{bottom:646.933333pt;}
.yb{bottom:648.773333pt;}
.y8a{bottom:651.013333pt;}
.y175{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.y58{bottom:653.573333pt;}
.y125{bottom:661.333333pt;}
.y89{bottom:666.693333pt;}
.yb8{bottom:667.493333pt;}
.y174{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.yfa{bottom:671.573333pt;}
.y149{bottom:672.293333pt;}
.ya{bottom:672.773333pt;}
.y124{bottom:676.933333pt;}
.y57{bottom:682.213333pt;}
.y88{bottom:682.293333pt;}
.y3c{bottom:684.213333pt;}
.y148{bottom:687.893333pt;}
.y173{bottom:691.813333pt;}
.y123{bottom:693.333333pt;}
.y87{bottom:698.693333pt;}
.yfc{bottom:702.533333pt;}
.y147{bottom:703.573333pt;}
.ya8{bottom:705.333333pt;}
.y172{bottom:707.493333pt;}
.y122{bottom:708.933333pt;}
.yb7{bottom:710.373333pt;}
.y9{bottom:714.293333pt;}
.y3b{bottom:715.813333pt;}
.y146{bottom:719.173333pt;}
.ya7{bottom:721.013333pt;}
.y121{bottom:724.533333pt;}
.yb6{bottom:726.053333pt;}
.yf8{bottom:727.173333pt;}
.y86{bottom:729.893333pt;}
.y171{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.y145{bottom:734.773333pt;}
.y120{bottom:740.933333pt;}
.y8{bottom:745.893333pt;}
.y85{bottom:746.293333pt;}
.y170{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.yb5{bottom:749.973333pt;}
.y144{bottom:750.453333pt;}
.ya6{bottom:753.413333pt;}
.y11f{bottom:756.613333pt;}
.yf9{bottom:758.053333pt;}
.y84{bottom:761.893333pt;}
.y16f{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.ya5{bottom:769.093333pt;}
.y193{bottom:770.373333pt;}
.y11e{bottom:772.213333pt;}
.y7{bottom:777.733333pt;}
.y37{bottom:778.373333pt;}
.y143{bottom:782.053333pt;}
.yf1{bottom:782.693333pt;}
.y16e{bottom:785.973333pt;}
.y11d{bottom:788.613333pt;}
.yb4{bottom:792.853333pt;}
.y36{bottom:793.973333pt;}
.y83{bottom:794.293333pt;}
.y142{bottom:797.733333pt;}
.ya4{bottom:800.053333pt;}
.y16d{bottom:801.653333pt;}
.y11c{bottom:804.213333pt;}
.yf7{bottom:807.413333pt;}
.y6{bottom:809.733333pt;}
.y82{bottom:809.893333pt;}
.ya3{bottom:810.213333pt;}
.y141{bottom:813.333333pt;}
.y16c{bottom:817.253333pt;}
.y11b{bottom:819.893333pt;}
.yb3{bottom:823.893333pt;}
.y192{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y140{bottom:828.933333pt;}
.yf3{bottom:832.053333pt;}
.y11a{bottom:835.493333pt;}
.y81{bottom:836.133333pt;}
.yb2{bottom:838.053333pt;}
.y16b{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y13f{bottom:844.613333pt;}
.y119{bottom:851.093333pt;}
.y80{bottom:851.893333pt;}
.y16a{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y13e{bottom:860.213333pt;}
.y7f{bottom:867.493333pt;}
.ye7{bottom:871.973333pt;}
.y191{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y169{bottom:880.133333pt;}
.y7e{bottom:883.093333pt;}
.y13d{bottom:884.133333pt;}
.y31{bottom:888.133333pt;}
.y168{bottom:895.813333pt;}
.yee{bottom:896.613333pt;}
.y3{bottom:897.840000pt;}
.y7d{bottom:898.720000pt;}
.y118{bottom:898.800000pt;}
.y30{bottom:903.840000pt;}
.y167{bottom:911.440000pt;}
.y117{bottom:914.400000pt;}
.y7c{bottom:915.120000pt;}
.yea{bottom:921.360000pt;}
.y13c{bottom:927.040000pt;}
.y7b{bottom:930.800000pt;}
.y166{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y13b{bottom:942.720000pt;}
.ye5{bottom:946.000000pt;}
.y7a{bottom:946.400000pt;}
.y2e{bottom:951.040000pt;}
.y165{bottom:958.720000pt;}
.y79{bottom:962.000000pt;}
.y2d{bottom:966.720000pt;}
.ye6{bottom:970.320000pt;}
.y13a{bottom:974.320000pt;}
.y78{bottom:977.600000pt;}
.y2c{bottom:982.320000pt;}
.y139{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y77{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hc{height:23.680000pt;}
.hf{height:24.000000pt;}
.h17{height:24.026667pt;}
.h2{height:26.686562pt;}
.h13{height:30.240000pt;}
.h3{height:33.867188pt;}
.ha{height:36.034687pt;}
.h1c{height:39.200000pt;}
.h15{height:39.280000pt;}
.h11{height:39.306667pt;}
.h6{height:45.246562pt;}
.hb{height:47.920000pt;}
.h14{height:48.640000pt;}
.h5{height:49.581562pt;}
.h12{height:54.880000pt;}
.h9{height:54.927899pt;}
.h19{height:54.960000pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:73.280000pt;}
.h1a{height:73.306667pt;}
.h16{height:73.386667pt;}
.h1b{height:88.560000pt;}
.h10{height:88.586667pt;}
.h18{height:88.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:15.146667pt;}
.w18{width:15.226667pt;}
.w9{width:16.720000pt;}
.w8{width:16.746667pt;}
.w13{width:27.200000pt;}
.w12{width:27.280000pt;}
.w11{width:27.360000pt;}
.w3{width:29.600000pt;}
.wa{width:30.240000pt;}
.wb{width:30.320000pt;}
.wc{width:31.600000pt;}
.w14{width:37.200000pt;}
.w4{width:80.746667pt;}
.wd{width:84.426667pt;}
.w6{width:126.906667pt;}
.w16{width:126.986667pt;}
.w7{width:148.480000pt;}
.wf{width:155.680000pt;}
.w17{width:159.120000pt;}
.w15{width:255.680000pt;}
.we{width:259.920000pt;}
.w5{width:264.400000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:3.440000pt;}
.x1e{left:23.440000pt;}
.x1{left:60.480000pt;}
.x27{left:64.000000pt;}
.x1f{left:66.400000pt;}
.x14{left:70.560000pt;}
.xb{left:77.359988pt;}
.x11{left:83.519988pt;}
.x6{left:84.479988pt;}
.x20{left:98.640000pt;}
.x16{left:100.800000pt;}
.x28{left:101.840000pt;}
.x7{left:108.479988pt;}
.x8{left:132.479988pt;}
.xf{left:143.519988pt;}
.x2{left:180.266655pt;}
.x17{left:182.266667pt;}
.x21{left:183.706667pt;}
.x5{left:185.866655pt;}
.x29{left:186.906667pt;}
.x13{left:237.386655pt;}
.xa{left:323.386655pt;}
.xe{left:324.586655pt;}
.xc{left:343.306655pt;}
.x2a{left:443.226667pt;}
.x22{left:444.346667pt;}
.x18{left:447.386667pt;}
.x2c{left:459.093333pt;}
.x24{left:460.133333pt;}
.x1a{left:464.773333pt;}
.x1b{left:482.213333pt;}
.x2d{left:487.093333pt;}
.x25{left:488.133333pt;}
.x12{left:502.053322pt;}
.x1c{left:513.093333pt;}
.x2e{left:515.013333pt;}
.x26{left:516.053333pt;}
.xd{left:531.013322pt;}
.x2f{left:542.933333pt;}
.x1d{left:544.053333pt;}
.x2b{left:570.853333pt;}
.x23{left:571.973333pt;}
.x19{left:575.013333pt;}
.x4{left:601.013322pt;}
.x10{left:631.013322pt;}
.x9{left:658.053322pt;}
.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; }
  