
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_231d770d534e3811a79946ab.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_1be3d5f6ac9cacb7ec49936e.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_b1ecd63ce14dd81e009c95ae.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_cd0f0f251e451295ddbd9746.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d46e54188145f25fac5f2c0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_159877ebae6c98c335cdce45.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;}
.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;}
.ls17{letter-spacing:-0.375000px;}
.ls9{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.038880px;}
.lsf{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:48.446640px;}
.ls11{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._1{margin-left:-3.774600px;}
._e{margin-left:-2.284560px;}
._0{margin-left:-1.110000px;}
._2{width:1.231764px;}
._b{width:2.259253px;}
._7{width:3.277236px;}
._4{width:4.449000px;}
._5{width:5.650835px;}
._6{width:6.793764px;}
._9{width:8.761776px;}
._d{width:10.116024px;}
._a{width:11.122200px;}
._10{width:12.174996px;}
._3{width:14.308800px;}
._1c{width:15.631200px;}
._f{width:17.575202px;}
._8{width:18.757200px;}
._12{width:20.140200px;}
._c{width:22.003800px;}
._11{width:23.567040px;}
._39{width:24.598920px;}
._3c{width:26.031960px;}
._27{width:27.234360px;}
._19{width:28.617120px;}
._38{width:29.759400px;}
._17{width:30.781440px;}
._25{width:32.885640px;}
._14{width:33.967800px;}
._13{width:34.983360px;}
._18{width:39.159600px;}
._3a{width:40.965480px;}
._22{width:42.232080px;}
._1b{width:43.587000px;}
._21{width:45.150120px;}
._23{width:46.833480px;}
._3b{width:47.892120px;}
._36{width:49.178160px;}
._2f{width:52.063920px;}
._1d{width:53.807400px;}
._16{width:57.655080px;}
._24{width:64.448640px;}
._30{width:66.219960px;}
._29{width:71.061840px;}
._1f{width:72.204120px;}
._33{width:74.064240px;}
._26{width:75.146400px;}
._37{width:80.612760px;}
._15{width:82.424520px;}
._2e{width:85.731120px;}
._2c{width:95.951520px;}
._32{width:101.843280px;}
._1e{width:104.368320px;}
._1a{width:106.709400px;}
._2a{width:132.805080px;}
._2b{width:145.189800px;}
._20{width:152.283960px;}
._2d{width:161.061480px;}
._28{width:165.025800px;}
._34{width:183.546360px;}
._31{width:216.131400px;}
._35{width:236.932920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:3.420000px;}
.y94{bottom:7.830000px;}
.ya3{bottom:7.920000px;}
.ye0{bottom:20.970000px;}
.y9d{bottom:25.380000px;}
.y99{bottom:25.410000px;}
.ya2{bottom:25.470000px;}
.ydf{bottom:38.520000px;}
.y9c{bottom:43.020000px;}
.y98{bottom:43.050000px;}
.ya1{bottom:43.110000px;}
.yde{bottom:56.160000px;}
.y9b{bottom:60.570000px;}
.y97{bottom:60.600000px;}
.ya0{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y9f{bottom:78.210000px;}
.y96{bottom:78.240000px;}
.ydc{bottom:95.760000px;}
.yd9{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.ydb{bottom:113.400000px;}
.y60{bottom:114.240000px;}
.ybf{bottom:116.310000px;}
.y19c{bottom:118.380000px;}
.ydd{bottom:124.500000px;}
.y16d{bottom:128.370000px;}
.y5f{bottom:131.790000px;}
.ybe{bottom:133.860000px;}
.y19b{bottom:136.020000px;}
.y110{bottom:142.140000px;}
.y150{bottom:143.670000px;}
.y16c{bottom:146.010000px;}
.y12b{bottom:148.080000px;}
.y5e{bottom:149.340000px;}
.ybd{bottom:151.500000px;}
.y19a{bottom:153.660000px;}
.y14f{bottom:161.310000px;}
.y28{bottom:165.360000px;}
.y12a{bottom:165.630000px;}
.y5d{bottom:166.980000px;}
.y10f{bottom:168.690000px;}
.ybc{bottom:169.050000px;}
.y92{bottom:170.580000px;}
.y16b{bottom:171.030000px;}
.y199{bottom:178.590000px;}
.y14e{bottom:178.860000px;}
.y27{bottom:183.000000px;}
.y129{bottom:183.180000px;}
.y5c{bottom:184.530000px;}
.y16a{bottom:188.670000px;}
.ybb{bottom:195.600000px;}
.y198{bottom:196.320000px;}
.y14d{bottom:196.500000px;}
.yda{bottom:200.100000px;}
.y26{bottom:200.550000px;}
.y128{bottom:200.820000px;}
.y5b{bottom:202.170000px;}
.y10e{bottom:204.330000px;}
.y91{bottom:206.130000px;}
.y169{bottom:213.690000px;}
.y14c{bottom:214.050000px;}
.y25{bottom:218.190000px;}
.y127{bottom:218.370000px;}
.y5a{bottom:219.720000px;}
.y197{bottom:221.340000px;}
.y10d{bottom:221.880000px;}
.yba{bottom:231.240000px;}
.y168{bottom:231.420000px;}
.y14b{bottom:231.600000px;}
.y24{bottom:235.740000px;}
.y126{bottom:236.010000px;}
.y59{bottom:237.270000px;}
.y196{bottom:238.980000px;}
.y10c{bottom:239.430000px;}
.y90{bottom:241.680000px;}
.yb9{bottom:248.790000px;}
.y14a{bottom:249.240000px;}
.y23{bottom:253.290000px;}
.y125{bottom:253.560000px;}
.y58{bottom:254.910000px;}
.y167{bottom:256.350000px;}
.y10b{bottom:257.070000px;}
.y195{bottom:264.000000px;}
.yb8{bottom:266.430000px;}
.y22{bottom:270.930000px;}
.y124{bottom:271.110000px;}
.y166{bottom:274.080000px;}
.y10a{bottom:274.620000px;}
.y8f{bottom:277.320000px;}
.y57{bottom:281.460000px;}
.y194{bottom:281.640000px;}
.yb7{bottom:283.980000px;}
.y149{bottom:284.790000px;}
.y21{bottom:288.480000px;}
.y123{bottom:288.750000px;}
.y109{bottom:292.260000px;}
.y8e{bottom:294.870000px;}
.y165{bottom:299.010000px;}
.y193{bottom:299.280000px;}
.yb6{bottom:301.530000px;}
.y148{bottom:302.430000px;}
.y20{bottom:306.120000px;}
.y122{bottom:306.300000px;}
.y108{bottom:309.810000px;}
.y8d{bottom:312.510000px;}
.y164{bottom:316.740000px;}
.y56{bottom:317.100000px;}
.yb5{bottom:319.170000px;}
.y147{bottom:319.980000px;}
.y1f{bottom:323.670000px;}
.y121{bottom:323.940000px;}
.y192{bottom:324.210000px;}
.y107{bottom:327.360000px;}
.y8c{bottom:330.060000px;}
.yd8{bottom:332.940000px;}
.y55{bottom:334.650000px;}
.yb4{bottom:336.720000px;}
.y146{bottom:337.530000px;}
.y1e{bottom:341.220000px;}
.y120{bottom:341.490000px;}
.y163{bottom:341.670000px;}
.y191{bottom:341.940000px;}
.y106{bottom:345.000000px;}
.y8b{bottom:347.610000px;}
.y54{bottom:352.200000px;}
.yb3{bottom:354.360000px;}
.y145{bottom:355.170000px;}
.y1d{bottom:358.860000px;}
.y11f{bottom:359.040000px;}
.y162{bottom:359.400000px;}
.y190{bottom:359.490000px;}
.y105{bottom:362.550000px;}
.y8a{bottom:365.250000px;}
.y53{bottom:369.840000px;}
.yb2{bottom:371.910000px;}
.y144{bottom:372.720000px;}
.y1c{bottom:376.410000px;}
.y11e{bottom:376.680000px;}
.y161{bottom:376.950000px;}
.y104{bottom:380.190000px;}
.y89{bottom:382.800000px;}
.y18f{bottom:384.510000px;}
.y52{bottom:387.390000px;}
.yb1{bottom:389.460000px;}
.y143{bottom:390.360000px;}
.y1b{bottom:394.050000px;}
.y11d{bottom:394.230000px;}
.y160{bottom:394.590000px;}
.y88{bottom:400.440000px;}
.y18e{bottom:402.150000px;}
.y51{bottom:404.940000px;}
.yb0{bottom:407.100000px;}
.y142{bottom:407.910000px;}
.y1a{bottom:411.600000px;}
.y103{bottom:415.740000px;}
.y87{bottom:417.990000px;}
.y15f{bottom:419.520000px;}
.y18d{bottom:419.790000px;}
.y50{bottom:422.580000px;}
.yaf{bottom:424.650000px;}
.y11c{bottom:427.260000px;}
.y19{bottom:429.150000px;}
.y102{bottom:433.290000px;}
.y141{bottom:434.820000px;}
.y86{bottom:435.540000px;}
.y4f{bottom:440.130000px;}
.yae{bottom:442.290000px;}
.y15e{bottom:444.630000px;}
.y18c{bottom:444.720000px;}
.y18{bottom:446.790000px;}
.yd7{bottom:448.230000px;}
.y101{bottom:450.930000px;}
.y85{bottom:453.180000px;}
.y4e{bottom:457.770000px;}
.yad{bottom:459.840000px;}
.y15d{bottom:462.360000px;}
.y18b{bottom:462.450000px;}
.y17{bottom:464.340000px;}
.y100{bottom:468.480000px;}
.y84{bottom:470.760000px;}
.y4d{bottom:475.350000px;}
.yac{bottom:477.420000px;}
.y18a{bottom:480.030000px;}
.y16{bottom:481.920000px;}
.y140{bottom:483.090000px;}
.yff{bottom:486.150000px;}
.y15c{bottom:487.320000px;}
.y83{bottom:488.400000px;}
.y11b{bottom:489.750000px;}
.y4c{bottom:492.900000px;}
.yab{bottom:495.060000px;}
.yd6{bottom:496.950000px;}
.y13f{bottom:500.730000px;}
.yfe{bottom:503.700000px;}
.y15b{bottom:505.050000px;}
.y82{bottom:505.950000px;}
.y15{bottom:508.830000px;}
.y4b{bottom:510.540000px;}
.yaa{bottom:512.610000px;}
.y13e{bottom:518.280000px;}
.yfd{bottom:521.250000px;}
.y189{bottom:522.690000px;}
.y81{bottom:523.500000px;}
.y4a{bottom:528.090000px;}
.y15a{bottom:529.980000px;}
.ya9{bottom:530.160000px;}
.yd5{bottom:532.500000px;}
.yfc{bottom:538.890000px;}
.y80{bottom:541.140000px;}
.y49{bottom:545.730000px;}
.y159{bottom:547.710000px;}
.ya8{bottom:547.800000px;}
.yd4{bottom:550.140000px;}
.y13d{bottom:553.830000px;}
.yfb{bottom:556.440000px;}
.y14{bottom:557.160000px;}
.y7f{bottom:558.690000px;}
.y48{bottom:563.280000px;}
.y188{bottom:565.350000px;}
.yd3{bottom:567.690000px;}
.y11a{bottom:569.850000px;}
.y13c{bottom:571.470000px;}
.yfa{bottom:574.080000px;}
.ya7{bottom:574.350000px;}
.y158{bottom:574.620000px;}
.y13{bottom:575.070000px;}
.y7e{bottom:576.330000px;}
.y47{bottom:580.830000px;}
.yd2{bottom:585.330000px;}
.y13b{bottom:589.020000px;}
.y187{bottom:590.370000px;}
.y46{bottom:598.470000px;}
.yf9{bottom:600.630000px;}
.y7d{bottom:602.880000px;}
.y13a{bottom:606.660000px;}
.y186{bottom:608.010000px;}
.ya6{bottom:610.260000px;}
.y12{bottom:612.060000px;}
.y45{bottom:616.020000px;}
.yd1{bottom:620.430000px;}
.y157{bottom:622.860000px;}
.y139{bottom:624.210000px;}
.y185{bottom:625.650000px;}
.y11{bottom:629.700000px;}
.y119{bottom:632.310000px;}
.y44{bottom:633.660000px;}
.yf8{bottom:636.180000px;}
.yd0{bottom:638.070000px;}
.y7c{bottom:638.430000px;}
.y138{bottom:641.760000px;}
.y10{bottom:647.250000px;}
.y156{bottom:649.770000px;}
.y184{bottom:650.670000px;}
.y43{bottom:651.210000px;}
.yf7{bottom:653.820000px;}
.ycf{bottom:655.620000px;}
.ya5{bottom:655.980000px;}
.y7b{bottom:656.070000px;}
.yf{bottom:664.800000px;}
.y183{bottom:668.310000px;}
.yf6{bottom:671.370000px;}
.yce{bottom:673.260000px;}
.y7a{bottom:673.620000px;}
.y137{bottom:677.400000px;}
.y42{bottom:677.760000px;}
.ye{bottom:682.440000px;}
.y182{bottom:685.860000px;}
.y155{bottom:687.120000px;}
.yf5{bottom:689.010000px;}
.ycd{bottom:690.810000px;}
.y79{bottom:691.260000px;}
.y118{bottom:694.860000px;}
.y136{bottom:694.950000px;}
.yd{bottom:699.990000px;}
.y181{bottom:703.500000px;}
.yf4{bottom:706.560000px;}
.ycc{bottom:708.360000px;}
.y78{bottom:708.810000px;}
.y135{bottom:712.590000px;}
.y41{bottom:713.400000px;}
.yc{bottom:717.630000px;}
.yf3{bottom:724.110000px;}
.ycb{bottom:726.000000px;}
.y77{bottom:726.360000px;}
.y180{bottom:728.430000px;}
.y134{bottom:730.140000px;}
.y40{bottom:730.950000px;}
.yb{bottom:735.180000px;}
.y154{bottom:735.360000px;}
.ya4{bottom:735.990000px;}
.yf2{bottom:741.750000px;}
.yca{bottom:743.550000px;}
.y76{bottom:744.000000px;}
.y17f{bottom:746.160000px;}
.y133{bottom:747.690000px;}
.y3f{bottom:748.590000px;}
.y153{bottom:753.000000px;}
.yc9{bottom:761.190000px;}
.y75{bottom:761.550000px;}
.ya{bottom:762.090000px;}
.y132{bottom:765.330000px;}
.y3e{bottom:766.140000px;}
.y117{bottom:770.190000px;}
.y152{bottom:770.550000px;}
.y17e{bottom:771.180000px;}
.yf1{bottom:777.300000px;}
.yc8{bottom:778.740000px;}
.y74{bottom:779.190000px;}
.y3d{bottom:783.690000px;}
.y151{bottom:788.190000px;}
.y17d{bottom:788.820000px;}
.yf0{bottom:794.850000px;}
.yc7{bottom:796.290000px;}
.y73{bottom:796.740000px;}
.y131{bottom:800.880000px;}
.y3c{bottom:801.330000px;}
.y116{bottom:805.740000px;}
.y9{bottom:808.890000px;}
.yef{bottom:812.490000px;}
.y17c{bottom:813.840000px;}
.y72{bottom:814.290000px;}
.y9e{bottom:816.090000px;}
.y130{bottom:818.520000px;}
.y3b{bottom:818.880000px;}
.yc6{bottom:822.930000px;}
.y115{bottom:823.290000px;}
.yee{bottom:830.040000px;}
.y17b{bottom:831.480000px;}
.y71{bottom:831.930000px;}
.y12f{bottom:836.070000px;}
.y3a{bottom:836.520000px;}
.y114{bottom:840.930000px;}
.y8{bottom:844.440000px;}
.yed{bottom:847.680000px;}
.y70{bottom:849.480000px;}
.y12e{bottom:853.620000px;}
.y39{bottom:854.070000px;}
.y17a{bottom:856.500000px;}
.yc5{bottom:858.480000px;}
.yec{bottom:865.230000px;}
.y6f{bottom:867.030000px;}
.y12d{bottom:871.260000px;}
.y38{bottom:871.620000px;}
.y179{bottom:874.140000px;}
.yc4{bottom:876.030000px;}
.y7{bottom:880.260000px;}
.yeb{bottom:882.780000px;}
.y6e{bottom:884.670000px;}
.y37{bottom:889.260000px;}
.yc3{bottom:893.670000px;}
.y178{bottom:899.160000px;}
.yea{bottom:900.420000px;}
.y6d{bottom:902.220000px;}
.y36{bottom:906.810000px;}
.yc2{bottom:911.220000px;}
.y9a{bottom:913.830000px;}
.y6{bottom:916.260000px;}
.y177{bottom:916.800000px;}
.ye9{bottom:917.970000px;}
.y6c{bottom:919.860000px;}
.y35{bottom:924.450000px;}
.yc1{bottom:928.860000px;}
.ye8{bottom:935.610000px;}
.y6b{bottom:937.410000px;}
.y176{bottom:941.820000px;}
.y34{bottom:942.000000px;}
.yc0{bottom:946.410000px;}
.y113{bottom:946.860000px;}
.y5{bottom:952.350000px;}
.ye7{bottom:953.160000px;}
.y175{bottom:959.460000px;}
.y33{bottom:959.550000px;}
.y6a{bottom:963.960000px;}
.y112{bottom:964.410000px;}
.ye6{bottom:970.710000px;}
.y4{bottom:971.700000px;}
.y174{bottom:977.100000px;}
.y32{bottom:977.190000px;}
.y111{bottom:981.960000px;}
.ye5{bottom:988.350000px;}
.y95{bottom:993.930000px;}
.y31{bottom:994.740000px;}
.y69{bottom:999.600000px;}
.y173{bottom:1002.120000px;}
.y3{bottom:1009.980000px;}
.y30{bottom:1012.320000px;}
.ye4{bottom:1014.930000px;}
.y68{bottom:1017.180000px;}
.y172{bottom:1019.790000px;}
.y2f{bottom:1029.960000px;}
.y67{bottom:1034.820000px;}
.y171{bottom:1044.810000px;}
.y2e{bottom:1047.510000px;}
.ye3{bottom:1050.840000px;}
.y66{bottom:1052.370000px;}
.y12c{bottom:1056.870000px;}
.y170{bottom:1062.450000px;}
.y2d{bottom:1065.150000px;}
.y65{bottom:1069.920000px;}
.y16f{bottom:1080.000000px;}
.y64{bottom:1087.560000px;}
.y93{bottom:1091.610000px;}
.y2c{bottom:1091.700000px;}
.ye2{bottom:1096.470000px;}
.y16e{bottom:1105.020000px;}
.y63{bottom:1105.110000px;}
.y62{bottom:1122.750000px;}
.y2b{bottom:1127.610000px;}
.y61{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h9{height:26.550000px;}
.he{height:26.580000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h12{height:57.330000px;}
.h14{height:61.740000px;}
.h15{height:61.770000px;}
.h16{height:61.793886px;}
.h13{height:61.830000px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:74.880000px;}
.hb{height:79.290000px;}
.hd{height:79.380000px;}
.hc{height:96.930000px;}
.ha{height:96.960000px;}
.hf{height:114.570000px;}
.h10{height:132.120000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:91.710000px;}
.w7{width:104.520000px;}
.wb{width:130.440000px;}
.wa{width:156.060000px;}
.w8{width:195.300000px;}
.w5{width:198.840000px;}
.w6{width:225.630000px;}
.w4{width:237.360000px;}
.w9{width:297.570000px;}
.wc{width:624.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:111.419987px;}
.x5{left:161.190000px;}
.x9{left:174.000000px;}
.x2{left:192.719987px;}
.xc{left:200.010000px;}
.xa{left:370.110000px;}
.x6{left:399.270000px;}
.x7{left:598.830000px;}
.xb{left:668.400000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.333333pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.034560pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:43.063680pt;}
.ls11{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._1{margin-left:-3.355200pt;}
._e{margin-left:-2.030720pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.094901pt;}
._b{width:2.008225pt;}
._7{width:2.913099pt;}
._4{width:3.954667pt;}
._5{width:5.022965pt;}
._6{width:6.038901pt;}
._9{width:7.788246pt;}
._d{width:8.992021pt;}
._a{width:9.886400pt;}
._10{width:10.822219pt;}
._3{width:12.718934pt;}
._1c{width:13.894400pt;}
._f{width:15.622402pt;}
._8{width:16.673066pt;}
._12{width:17.902400pt;}
._c{width:19.558933pt;}
._11{width:20.948480pt;}
._39{width:21.865707pt;}
._3c{width:23.139520pt;}
._27{width:24.208320pt;}
._19{width:25.437440pt;}
._38{width:26.452800pt;}
._17{width:27.361280pt;}
._25{width:29.231680pt;}
._14{width:30.193600pt;}
._13{width:31.096320pt;}
._18{width:34.808533pt;}
._3a{width:36.413760pt;}
._22{width:37.539627pt;}
._1b{width:38.744000pt;}
._21{width:40.133440pt;}
._23{width:41.629760pt;}
._3b{width:42.570773pt;}
._36{width:43.713920pt;}
._2f{width:46.279040pt;}
._1d{width:47.828800pt;}
._16{width:51.248960pt;}
._24{width:57.287680pt;}
._30{width:58.862187pt;}
._29{width:63.166080pt;}
._1f{width:64.181440pt;}
._33{width:65.834880pt;}
._26{width:66.796800pt;}
._37{width:71.655787pt;}
._15{width:73.266240pt;}
._2e{width:76.205440pt;}
._2c{width:85.290240pt;}
._32{width:90.527360pt;}
._1e{width:92.771840pt;}
._1a{width:94.852800pt;}
._2a{width:118.048960pt;}
._2b{width:129.057600pt;}
._20{width:135.363520pt;}
._2d{width:143.165760pt;}
._28{width:146.689600pt;}
._34{width:163.152320pt;}
._31{width:192.116800pt;}
._35{width:210.607040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:3.040000pt;}
.y94{bottom:6.960000pt;}
.ya3{bottom:7.040000pt;}
.ye0{bottom:18.640000pt;}
.y9d{bottom:22.560000pt;}
.y99{bottom:22.586667pt;}
.ya2{bottom:22.640000pt;}
.ydf{bottom:34.240000pt;}
.y9c{bottom:38.240000pt;}
.y98{bottom:38.266667pt;}
.ya1{bottom:38.320000pt;}
.yde{bottom:49.920000pt;}
.y9b{bottom:53.840000pt;}
.y97{bottom:53.866667pt;}
.ya0{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y9f{bottom:69.520000pt;}
.y96{bottom:69.546667pt;}
.ydc{bottom:85.120000pt;}
.yd9{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.ydb{bottom:100.800000pt;}
.y60{bottom:101.546667pt;}
.ybf{bottom:103.386667pt;}
.y19c{bottom:105.226667pt;}
.ydd{bottom:110.666667pt;}
.y16d{bottom:114.106667pt;}
.y5f{bottom:117.146667pt;}
.ybe{bottom:118.986667pt;}
.y19b{bottom:120.906667pt;}
.y110{bottom:126.346667pt;}
.y150{bottom:127.706667pt;}
.y16c{bottom:129.786667pt;}
.y12b{bottom:131.626667pt;}
.y5e{bottom:132.746667pt;}
.ybd{bottom:134.666667pt;}
.y19a{bottom:136.586667pt;}
.y14f{bottom:143.386667pt;}
.y28{bottom:146.986667pt;}
.y12a{bottom:147.226667pt;}
.y5d{bottom:148.426667pt;}
.y10f{bottom:149.946667pt;}
.ybc{bottom:150.266667pt;}
.y92{bottom:151.626667pt;}
.y16b{bottom:152.026667pt;}
.y199{bottom:158.746667pt;}
.y14e{bottom:158.986667pt;}
.y27{bottom:162.666667pt;}
.y129{bottom:162.826667pt;}
.y5c{bottom:164.026667pt;}
.y16a{bottom:167.706667pt;}
.ybb{bottom:173.866667pt;}
.y198{bottom:174.506667pt;}
.y14d{bottom:174.666667pt;}
.yda{bottom:177.866667pt;}
.y26{bottom:178.266667pt;}
.y128{bottom:178.506667pt;}
.y5b{bottom:179.706667pt;}
.y10e{bottom:181.626667pt;}
.y91{bottom:183.226667pt;}
.y169{bottom:189.946667pt;}
.y14c{bottom:190.266667pt;}
.y25{bottom:193.946667pt;}
.y127{bottom:194.106667pt;}
.y5a{bottom:195.306667pt;}
.y197{bottom:196.746667pt;}
.y10d{bottom:197.226667pt;}
.yba{bottom:205.546667pt;}
.y168{bottom:205.706667pt;}
.y14b{bottom:205.866667pt;}
.y24{bottom:209.546667pt;}
.y126{bottom:209.786667pt;}
.y59{bottom:210.906667pt;}
.y196{bottom:212.426667pt;}
.y10c{bottom:212.826667pt;}
.y90{bottom:214.826667pt;}
.yb9{bottom:221.146667pt;}
.y14a{bottom:221.546667pt;}
.y23{bottom:225.146667pt;}
.y125{bottom:225.386667pt;}
.y58{bottom:226.586667pt;}
.y167{bottom:227.866667pt;}
.y10b{bottom:228.506667pt;}
.y195{bottom:234.666667pt;}
.yb8{bottom:236.826667pt;}
.y22{bottom:240.826667pt;}
.y124{bottom:240.986667pt;}
.y166{bottom:243.626667pt;}
.y10a{bottom:244.106667pt;}
.y8f{bottom:246.506667pt;}
.y57{bottom:250.186667pt;}
.y194{bottom:250.346667pt;}
.yb7{bottom:252.426667pt;}
.y149{bottom:253.146667pt;}
.y21{bottom:256.426667pt;}
.y123{bottom:256.666667pt;}
.y109{bottom:259.786667pt;}
.y8e{bottom:262.106667pt;}
.y165{bottom:265.786667pt;}
.y193{bottom:266.026667pt;}
.yb6{bottom:268.026667pt;}
.y148{bottom:268.826667pt;}
.y20{bottom:272.106667pt;}
.y122{bottom:272.266667pt;}
.y108{bottom:275.386667pt;}
.y8d{bottom:277.786667pt;}
.y164{bottom:281.546667pt;}
.y56{bottom:281.866667pt;}
.yb5{bottom:283.706667pt;}
.y147{bottom:284.426667pt;}
.y1f{bottom:287.706667pt;}
.y121{bottom:287.946667pt;}
.y192{bottom:288.186667pt;}
.y107{bottom:290.986667pt;}
.y8c{bottom:293.386667pt;}
.yd8{bottom:295.946667pt;}
.y55{bottom:297.466667pt;}
.yb4{bottom:299.306667pt;}
.y146{bottom:300.026667pt;}
.y1e{bottom:303.306667pt;}
.y120{bottom:303.546667pt;}
.y163{bottom:303.706667pt;}
.y191{bottom:303.946667pt;}
.y106{bottom:306.666667pt;}
.y8b{bottom:308.986667pt;}
.y54{bottom:313.066667pt;}
.yb3{bottom:314.986667pt;}
.y145{bottom:315.706667pt;}
.y1d{bottom:318.986667pt;}
.y11f{bottom:319.146667pt;}
.y162{bottom:319.466667pt;}
.y190{bottom:319.546667pt;}
.y105{bottom:322.266667pt;}
.y8a{bottom:324.666667pt;}
.y53{bottom:328.746667pt;}
.yb2{bottom:330.586667pt;}
.y144{bottom:331.306667pt;}
.y1c{bottom:334.586667pt;}
.y11e{bottom:334.826667pt;}
.y161{bottom:335.066667pt;}
.y104{bottom:337.946667pt;}
.y89{bottom:340.266667pt;}
.y18f{bottom:341.786667pt;}
.y52{bottom:344.346667pt;}
.yb1{bottom:346.186667pt;}
.y143{bottom:346.986667pt;}
.y1b{bottom:350.266667pt;}
.y11d{bottom:350.426667pt;}
.y160{bottom:350.746667pt;}
.y88{bottom:355.946667pt;}
.y18e{bottom:357.466667pt;}
.y51{bottom:359.946667pt;}
.yb0{bottom:361.866667pt;}
.y142{bottom:362.586667pt;}
.y1a{bottom:365.866667pt;}
.y103{bottom:369.546667pt;}
.y87{bottom:371.546667pt;}
.y15f{bottom:372.906667pt;}
.y18d{bottom:373.146667pt;}
.y50{bottom:375.626667pt;}
.yaf{bottom:377.466667pt;}
.y11c{bottom:379.786667pt;}
.y19{bottom:381.466667pt;}
.y102{bottom:385.146667pt;}
.y141{bottom:386.506667pt;}
.y86{bottom:387.146667pt;}
.y4f{bottom:391.226667pt;}
.yae{bottom:393.146667pt;}
.y15e{bottom:395.226667pt;}
.y18c{bottom:395.306667pt;}
.y18{bottom:397.146667pt;}
.yd7{bottom:398.426667pt;}
.y101{bottom:400.826667pt;}
.y85{bottom:402.826667pt;}
.y4e{bottom:406.906667pt;}
.yad{bottom:408.746667pt;}
.y15d{bottom:410.986667pt;}
.y18b{bottom:411.066667pt;}
.y17{bottom:412.746667pt;}
.y100{bottom:416.426667pt;}
.y84{bottom:418.453333pt;}
.y4d{bottom:422.533333pt;}
.yac{bottom:424.373333pt;}
.y18a{bottom:426.693333pt;}
.y16{bottom:428.373333pt;}
.y140{bottom:429.413333pt;}
.yff{bottom:432.133333pt;}
.y15c{bottom:433.173333pt;}
.y83{bottom:434.133333pt;}
.y11b{bottom:435.333333pt;}
.y4c{bottom:438.133333pt;}
.yab{bottom:440.053333pt;}
.yd6{bottom:441.733333pt;}
.y13f{bottom:445.093333pt;}
.yfe{bottom:447.733333pt;}
.y15b{bottom:448.933333pt;}
.y82{bottom:449.733333pt;}
.y15{bottom:452.293333pt;}
.y4b{bottom:453.813333pt;}
.yaa{bottom:455.653333pt;}
.y13e{bottom:460.693333pt;}
.yfd{bottom:463.333333pt;}
.y189{bottom:464.613333pt;}
.y81{bottom:465.333333pt;}
.y4a{bottom:469.413333pt;}
.y15a{bottom:471.093333pt;}
.ya9{bottom:471.253333pt;}
.yd5{bottom:473.333333pt;}
.yfc{bottom:479.013333pt;}
.y80{bottom:481.013333pt;}
.y49{bottom:485.093333pt;}
.y159{bottom:486.853333pt;}
.ya8{bottom:486.933333pt;}
.yd4{bottom:489.013333pt;}
.y13d{bottom:492.293333pt;}
.yfb{bottom:494.613333pt;}
.y14{bottom:495.253333pt;}
.y7f{bottom:496.613333pt;}
.y48{bottom:500.693333pt;}
.y188{bottom:502.533333pt;}
.yd3{bottom:504.613333pt;}
.y11a{bottom:506.533333pt;}
.y13c{bottom:507.973333pt;}
.yfa{bottom:510.293333pt;}
.ya7{bottom:510.533333pt;}
.y158{bottom:510.773333pt;}
.y13{bottom:511.173333pt;}
.y7e{bottom:512.293333pt;}
.y47{bottom:516.293333pt;}
.yd2{bottom:520.293333pt;}
.y13b{bottom:523.573333pt;}
.y187{bottom:524.773333pt;}
.y46{bottom:531.973333pt;}
.yf9{bottom:533.893333pt;}
.y7d{bottom:535.893333pt;}
.y13a{bottom:539.253333pt;}
.y186{bottom:540.453333pt;}
.ya6{bottom:542.453333pt;}
.y12{bottom:544.053333pt;}
.y45{bottom:547.573333pt;}
.yd1{bottom:551.493333pt;}
.y157{bottom:553.653333pt;}
.y139{bottom:554.853333pt;}
.y185{bottom:556.133333pt;}
.y11{bottom:559.733333pt;}
.y119{bottom:562.053333pt;}
.y44{bottom:563.253333pt;}
.yf8{bottom:565.493333pt;}
.yd0{bottom:567.173333pt;}
.y7c{bottom:567.493333pt;}
.y138{bottom:570.453333pt;}
.y10{bottom:575.333333pt;}
.y156{bottom:577.573333pt;}
.y184{bottom:578.373333pt;}
.y43{bottom:578.853333pt;}
.yf7{bottom:581.173333pt;}
.ycf{bottom:582.773333pt;}
.ya5{bottom:583.093333pt;}
.y7b{bottom:583.173333pt;}
.yf{bottom:590.933333pt;}
.y183{bottom:594.053333pt;}
.yf6{bottom:596.773333pt;}
.yce{bottom:598.453333pt;}
.y7a{bottom:598.773333pt;}
.y137{bottom:602.133333pt;}
.y42{bottom:602.453333pt;}
.ye{bottom:606.613333pt;}
.y182{bottom:609.653333pt;}
.y155{bottom:610.773333pt;}
.yf5{bottom:612.453333pt;}
.ycd{bottom:614.053333pt;}
.y79{bottom:614.453333pt;}
.y118{bottom:617.653333pt;}
.y136{bottom:617.733333pt;}
.yd{bottom:622.213333pt;}
.y181{bottom:625.333333pt;}
.yf4{bottom:628.053333pt;}
.ycc{bottom:629.653333pt;}
.y78{bottom:630.053333pt;}
.y135{bottom:633.413333pt;}
.y41{bottom:634.133333pt;}
.yc{bottom:637.893333pt;}
.yf3{bottom:643.653333pt;}
.ycb{bottom:645.333333pt;}
.y77{bottom:645.653333pt;}
.y180{bottom:647.493333pt;}
.y134{bottom:649.013333pt;}
.y40{bottom:649.733333pt;}
.yb{bottom:653.493333pt;}
.y154{bottom:653.653333pt;}
.ya4{bottom:654.213333pt;}
.yf2{bottom:659.333333pt;}
.yca{bottom:660.933333pt;}
.y76{bottom:661.333333pt;}
.y17f{bottom:663.253333pt;}
.y133{bottom:664.613333pt;}
.y3f{bottom:665.413333pt;}
.y153{bottom:669.333333pt;}
.yc9{bottom:676.613333pt;}
.y75{bottom:676.933333pt;}
.ya{bottom:677.413333pt;}
.y132{bottom:680.293333pt;}
.y3e{bottom:681.013333pt;}
.y117{bottom:684.613333pt;}
.y152{bottom:684.933333pt;}
.y17e{bottom:685.493333pt;}
.yf1{bottom:690.933333pt;}
.yc8{bottom:692.213333pt;}
.y74{bottom:692.613333pt;}
.y3d{bottom:696.613333pt;}
.y151{bottom:700.613333pt;}
.y17d{bottom:701.173333pt;}
.yf0{bottom:706.533333pt;}
.yc7{bottom:707.813333pt;}
.y73{bottom:708.213333pt;}
.y131{bottom:711.893333pt;}
.y3c{bottom:712.293333pt;}
.y116{bottom:716.213333pt;}
.y9{bottom:719.013333pt;}
.yef{bottom:722.213333pt;}
.y17c{bottom:723.413333pt;}
.y72{bottom:723.813333pt;}
.y9e{bottom:725.413333pt;}
.y130{bottom:727.573333pt;}
.y3b{bottom:727.893333pt;}
.yc6{bottom:731.493333pt;}
.y115{bottom:731.813333pt;}
.yee{bottom:737.813333pt;}
.y17b{bottom:739.093333pt;}
.y71{bottom:739.493333pt;}
.y12f{bottom:743.173333pt;}
.y3a{bottom:743.573333pt;}
.y114{bottom:747.493333pt;}
.y8{bottom:750.613333pt;}
.yed{bottom:753.493333pt;}
.y70{bottom:755.093333pt;}
.y12e{bottom:758.773333pt;}
.y39{bottom:759.173333pt;}
.y17a{bottom:761.333333pt;}
.yc5{bottom:763.093333pt;}
.yec{bottom:769.093333pt;}
.y6f{bottom:770.693333pt;}
.y12d{bottom:774.453333pt;}
.y38{bottom:774.773333pt;}
.y179{bottom:777.013333pt;}
.yc4{bottom:778.693333pt;}
.y7{bottom:782.453333pt;}
.yeb{bottom:784.693333pt;}
.y6e{bottom:786.373333pt;}
.y37{bottom:790.453333pt;}
.yc3{bottom:794.373333pt;}
.y178{bottom:799.253333pt;}
.yea{bottom:800.373333pt;}
.y6d{bottom:801.973333pt;}
.y36{bottom:806.053333pt;}
.yc2{bottom:809.973333pt;}
.y9a{bottom:812.293333pt;}
.y6{bottom:814.453333pt;}
.y177{bottom:814.933333pt;}
.ye9{bottom:815.973333pt;}
.y6c{bottom:817.653333pt;}
.y35{bottom:821.733333pt;}
.yc1{bottom:825.653333pt;}
.ye8{bottom:831.653333pt;}
.y6b{bottom:833.253333pt;}
.y176{bottom:837.173333pt;}
.y34{bottom:837.333333pt;}
.yc0{bottom:841.253333pt;}
.y113{bottom:841.653333pt;}
.y5{bottom:846.533333pt;}
.ye7{bottom:847.253333pt;}
.y175{bottom:852.853333pt;}
.y33{bottom:852.933333pt;}
.y6a{bottom:856.853333pt;}
.y112{bottom:857.253333pt;}
.ye6{bottom:862.853333pt;}
.y4{bottom:863.733333pt;}
.y174{bottom:868.533333pt;}
.y32{bottom:868.613333pt;}
.y111{bottom:872.853333pt;}
.ye5{bottom:878.533333pt;}
.y95{bottom:883.493333pt;}
.y31{bottom:884.213333pt;}
.y69{bottom:888.533333pt;}
.y173{bottom:890.773333pt;}
.y3{bottom:897.760000pt;}
.y30{bottom:899.840000pt;}
.ye4{bottom:902.160000pt;}
.y68{bottom:904.160000pt;}
.y172{bottom:906.480000pt;}
.y2f{bottom:915.520000pt;}
.y67{bottom:919.840000pt;}
.y171{bottom:928.720000pt;}
.y2e{bottom:931.120000pt;}
.ye3{bottom:934.080000pt;}
.y66{bottom:935.440000pt;}
.y12c{bottom:939.440000pt;}
.y170{bottom:944.400000pt;}
.y2d{bottom:946.800000pt;}
.y65{bottom:951.040000pt;}
.y16f{bottom:960.000000pt;}
.y64{bottom:966.720000pt;}
.y93{bottom:970.320000pt;}
.y2c{bottom:970.400000pt;}
.ye2{bottom:974.640000pt;}
.y16e{bottom:982.240000pt;}
.y63{bottom:982.320000pt;}
.y62{bottom:998.000000pt;}
.y2b{bottom:1002.320000pt;}
.y61{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.he{height:23.626667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h12{height:50.960000pt;}
.h14{height:54.880000pt;}
.h15{height:54.906667pt;}
.h16{height:54.927899pt;}
.h13{height:54.960000pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:66.560000pt;}
.hb{height:70.480000pt;}
.hd{height:70.560000pt;}
.hc{height:86.160000pt;}
.ha{height:86.186667pt;}
.hf{height:101.840000pt;}
.h10{height:117.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:81.520000pt;}
.w7{width:92.906667pt;}
.wb{width:115.946667pt;}
.wa{width:138.720000pt;}
.w8{width:173.600000pt;}
.w5{width:176.746667pt;}
.w6{width:200.560000pt;}
.w4{width:210.986667pt;}
.w9{width:264.506667pt;}
.wc{width:555.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:99.039988pt;}
.x5{left:143.280000pt;}
.x9{left:154.666667pt;}
.x2{left:171.306655pt;}
.xc{left:177.786667pt;}
.xa{left:328.986667pt;}
.x6{left:354.906667pt;}
.x7{left:532.293333pt;}
.xb{left:594.133333pt;}
.x3{left:711.413322pt;}
}




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