
    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_9732726aa88fb4398b4efd9f.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_9921c05df6bd13bba655a751.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_eb2037f83758cf92493ec2ac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_97ef0cfd7e29adbf283c19c5.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_8fe5a42d30c622f5100eb022.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_2ac766dcea3bb5a2e341529f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a1185d476a70f650dee7e8be.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bef37efe2dcc73a35a18fdc7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1a6844006d5105822d14e03f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.048960px;}
.ls17{letter-spacing:-0.040320px;}
.ls18{letter-spacing:-0.011520px;}
.ls11{letter-spacing:-0.007560px;}
.ls19{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.018000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls15{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.109200px;}
.ls22{letter-spacing:0.116400px;}
.ls1a{letter-spacing:0.133200px;}
.ls5{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.173400px;}
.ls23{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.813600px;}
.ls1e{letter-spacing:1.602000px;}
.ls1f{letter-spacing:4.122000px;}
.ls21{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls1c{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.220280px;}
.wsa{word-spacing:-13.218840px;}
.wsc{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.064400px;}
.ws4{word-spacing:-13.039800px;}
.wsf{word-spacing:-10.522080px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-4.120921px;}
._4{margin-left:-3.066000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._6{width:2.140235px;}
._7{width:3.341965px;}
._5{width:4.350000px;}
._3{width:5.594400px;}
._2{width:6.613200px;}
._e{width:7.875720px;}
._d{width:9.286320px;}
._c{width:10.340640px;}
._9{width:12.084000px;}
._b{width:14.428800px;}
._8{width:16.713600px;}
._12{width:17.900169px;}
._10{width:19.539000px;}
._13{width:21.883680px;}
._11{width:67.334400px;}
._f{width:249.137280px;}
.fc2{color:transparent;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.330000px;}
.y7f{bottom:3.420000px;}
.y4e{bottom:3.960000px;}
.y4b{bottom:4.500000px;}
.y7c{bottom:6.750000px;}
.y4d{bottom:6.840000px;}
.y58{bottom:7.830000px;}
.y5a{bottom:7.920000px;}
.y4a{bottom:11.250000px;}
.y49{bottom:13.500000px;}
.y7e{bottom:20.970000px;}
.yc9{bottom:25.470000px;}
.yeb{bottom:26.550000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y8e{bottom:118.110000px;}
.yb3{bottom:121.530000px;}
.y8d{bottom:135.660000px;}
.yb2{bottom:139.080000px;}
.y13b{bottom:141.690000px;}
.y114{bottom:142.140000px;}
.y76{bottom:142.860000px;}
.y29{bottom:143.310000px;}
.yce{bottom:151.320000px;}
.yb1{bottom:156.720000px;}
.y113{bottom:159.780000px;}
.y75{bottom:160.410000px;}
.y28{bottom:160.860000px;}
.y8c{bottom:162.300000px;}
.ycd{bottom:165.360000px;}
.y50{bottom:166.800000px;}
.y13a{bottom:168.240000px;}
.yb0{bottom:174.270000px;}
.y112{bottom:177.330000px;}
.ycc{bottom:177.600000px;}
.y27{bottom:178.500000px;}
.y74{bottom:186.960000px;}
.y139{bottom:194.790000px;}
.y111{bottom:194.970000px;}
.y26{bottom:196.050000px;}
.y8b{bottom:198.210000px;}
.yaf{bottom:200.910000px;}
.y4f{bottom:202.350000px;}
.y138{bottom:212.430000px;}
.y110{bottom:212.520000px;}
.y25{bottom:213.600000px;}
.ye9{bottom:221.520000px;}
.ycb{bottom:222.510000px;}
.y73{bottom:222.600000px;}
.y4c{bottom:225.570000px;}
.y137{bottom:229.980000px;}
.y10f{bottom:230.070000px;}
.y24{bottom:231.240000px;}
.yae{bottom:235.740000px;}
.y8a{bottom:246.450000px;}
.y10e{bottom:247.710000px;}
.yad{bottom:247.890000px;}
.y23{bottom:248.790000px;}
.yca{bottom:249.870000px;}
.y48{bottom:255.630000px;}
.y136{bottom:256.530000px;}
.ye8{bottom:256.980000px;}
.y72{bottom:258.150000px;}
.y89{bottom:264.000000px;}
.y10d{bottom:265.260000px;}
.y22{bottom:266.340000px;}
.y135{bottom:274.170000px;}
.yac{bottom:275.250000px;}
.y71{bottom:275.790000px;}
.yc8{bottom:277.140000px;}
.y88{bottom:281.640000px;}
.y10c{bottom:282.900000px;}
.y21{bottom:283.980000px;}
.ye7{bottom:291.810000px;}
.y87{bottom:299.190000px;}
.y10b{bottom:300.450000px;}
.y134{bottom:300.720000px;}
.y20{bottom:301.530000px;}
.y70{bottom:302.340000px;}
.yab{bottom:302.610000px;}
.ye6{bottom:303.240000px;}
.y86{bottom:316.830000px;}
.y10a{bottom:318.000000px;}
.y133{bottom:318.360000px;}
.y1f{bottom:319.170000px;}
.yaa{bottom:329.880000px;}
.y85{bottom:334.380000px;}
.y109{bottom:335.640000px;}
.y1e{bottom:336.720000px;}
.y6f{bottom:337.890000px;}
.yc7{bottom:343.470000px;}
.y132{bottom:344.910000px;}
.y84{bottom:351.930000px;}
.y108{bottom:353.190000px;}
.y1d{bottom:354.270000px;}
.yc6{bottom:361.020000px;}
.y131{bottom:362.460000px;}
.y107{bottom:370.740000px;}
.y1c{bottom:371.910000px;}
.y6e{bottom:373.530000px;}
.y83{bottom:378.570000px;}
.ya9{bottom:378.660000px;}
.y106{bottom:388.380000px;}
.y130{bottom:389.100000px;}
.y1b{bottom:389.460000px;}
.y6d{bottom:391.080000px;}
.ya8{bottom:396.210000px;}
.yc5{bottom:396.660000px;}
.y105{bottom:405.930000px;}
.y12f{bottom:406.650000px;}
.y81{bottom:410.790000px;}
.yc4{bottom:414.210000px;}
.y1a{bottom:416.370000px;}
.y6c{bottom:417.630000px;}
.y104{bottom:423.570000px;}
.ya7{bottom:431.760000px;}
.y12e{bottom:433.290000px;}
.y80{bottom:437.340000px;}
.y103{bottom:441.120000px;}
.ya6{bottom:449.400000px;}
.y12d{bottom:450.840000px;}
.y6b{bottom:453.270000px;}
.y102{bottom:458.670000px;}
.y19{bottom:464.970000px;}
.ya5{bottom:466.950000px;}
.y101{bottom:476.340000px;}
.y12c{bottom:477.420000px;}
.ya4{bottom:484.620000px;}
.y6a{bottom:488.850000px;}
.y100{bottom:493.890000px;}
.y12b{bottom:495.060000px;}
.y47{bottom:495.240000px;}
.y18{bottom:502.080000px;}
.ya3{bottom:502.170000px;}
.y69{bottom:506.490000px;}
.yff{bottom:511.530000px;}
.y46{bottom:513.690000px;}
.y17{bottom:519.630000px;}
.ya2{bottom:519.720000px;}
.y12a{bottom:522.600000px;}
.y68{bottom:524.040000px;}
.yc3{bottom:528.720000px;}
.yfe{bottom:529.080000px;}
.y45{bottom:532.140000px;}
.y16{bottom:537.180000px;}
.y67{bottom:541.590000px;}
.ya1{bottom:546.360000px;}
.yfd{bottom:546.630000px;}
.y129{bottom:554.190000px;}
.y15{bottom:554.820000px;}
.yc2{bottom:563.640000px;}
.yfc{bottom:564.270000px;}
.y66{bottom:568.230000px;}
.y44{bottom:568.590000px;}
.y14{bottom:572.370000px;}
.yc1{bottom:575.790000px;}
.ya0{bottom:581.190000px;}
.yfb{bottom:581.820000px;}
.y13{bottom:589.920000px;}
.y9f{bottom:593.340000px;}
.y43{bottom:595.140000px;}
.yfa{bottom:599.460000px;}
.y128{bottom:602.520000px;}
.yc0{bottom:603.150000px;}
.y65{bottom:603.780000px;}
.y12{bottom:607.560000px;}
.yee{bottom:607.650000px;}
.ye5{bottom:612.240000px;}
.yf9{bottom:617.010000px;}
.y9e{bottom:620.700000px;}
.y11{bottom:625.110000px;}
.y127{bottom:629.430000px;}
.ybf{bottom:630.420000px;}
.y42{bottom:630.690000px;}
.yf8{bottom:634.560000px;}
.yed{bottom:635.010000px;}
.y64{bottom:639.420000px;}
.y10{bottom:642.750000px;}
.ye4{bottom:643.290000px;}
.y9d{bottom:648.060000px;}
.y41{bottom:648.330000px;}
.yf7{bottom:652.200000px;}
.y63{bottom:656.970000px;}
.ybe{bottom:657.780000px;}
.yf{bottom:660.300000px;}
.yec{bottom:662.370000px;}
.y40{bottom:665.880000px;}
.y126{bottom:666.420000px;}
.yf6{bottom:669.750000px;}
.ye3{bottom:674.340000px;}
.y62{bottom:674.520000px;}
.y9c{bottom:675.420000px;}
.ye{bottom:677.850000px;}
.y7d{bottom:682.620000px;}
.y3f{bottom:683.520000px;}
.yf5{bottom:687.390000px;}
.yea{bottom:689.730000px;}
.y61{bottom:692.160000px;}
.yd{bottom:695.490000px;}
.y3e{bottom:701.070000px;}
.y125{bottom:702.060000px;}
.yf4{bottom:704.940000px;}
.ye2{bottom:705.390000px;}
.ybd{bottom:706.470000px;}
.yc{bottom:713.040000px;}
.y3d{bottom:718.620000px;}
.y60{bottom:718.710000px;}
.y124{bottom:719.610000px;}
.yf3{bottom:722.490000px;}
.y9b{bottom:724.110000px;}
.y7b{bottom:726.810000px;}
.yb{bottom:730.680000px;}
.ye1{bottom:743.550000px;}
.y3c{bottom:745.260000px;}
.y123{bottom:746.520000px;}
.yf2{bottom:749.400000px;}
.y5f{bottom:754.350000px;}
.ya{bottom:757.590000px;}
.y9a{bottom:759.660000px;}
.y5e{bottom:771.900000px;}
.y99{bottom:777.300000px;}
.ye0{bottom:779.190000px;}
.y3b{bottom:780.810000px;}
.y122{bottom:783.510000px;}
.y5d{bottom:789.450000px;}
.y98{bottom:794.850000px;}
.ydf{bottom:796.740000px;}
.yf1{bottom:797.730000px;}
.y3a{bottom:798.450000px;}
.y9{bottom:805.830000px;}
.y121{bottom:810.420000px;}
.y97{bottom:812.400000px;}
.yde{bottom:814.290000px;}
.y39{bottom:816.000000px;}
.y149{bottom:828.690000px;}
.y96{bottom:830.040000px;}
.ydd{bottom:831.930000px;}
.yf0{bottom:832.560000px;}
.y8{bottom:841.380000px;}
.y38{bottom:842.550000px;}
.yef{bottom:843.990000px;}
.y5c{bottom:846.060000px;}
.y120{bottom:847.500000px;}
.ybc{bottom:847.590000px;}
.ydc{bottom:849.480000px;}
.y148{bottom:855.240000px;}
.y95{bottom:856.590000px;}
.y11f{bottom:865.050000px;}
.ybb{bottom:865.140000px;}
.ydb{bottom:867.030000px;}
.y147{bottom:872.880000px;}
.y5b{bottom:873.420000px;}
.y7{bottom:877.200000px;}
.y37{bottom:878.460000px;}
.y11e{bottom:882.600000px;}
.yda{bottom:884.670000px;}
.y94{bottom:891.420000px;}
.yba{bottom:891.780000px;}
.y146{bottom:899.430000px;}
.y59{bottom:900.690000px;}
.y93{bottom:903.660000px;}
.y11d{bottom:909.510000px;}
.y6{bottom:913.200000px;}
.y145{bottom:916.980000px;}
.yd9{bottom:920.220000px;}
.yb9{bottom:926.610000px;}
.y36{bottom:926.700000px;}
.y57{bottom:928.050000px;}
.y92{bottom:930.930000px;}
.y144{bottom:934.620000px;}
.yd8{bottom:937.860000px;}
.yb8{bottom:938.850000px;}
.y35{bottom:945.150000px;}
.y11c{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yd7{bottom:955.410000px;}
.y91{bottom:958.290000px;}
.y143{bottom:961.170000px;}
.yb7{bottom:966.120000px;}
.yd6{bottom:972.960000px;}
.y56{bottom:976.740000px;}
.y34{bottom:981.600000px;}
.y90{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y142{bottom:987.810000px;}
.yd5{bottom:990.600000px;}
.yb6{bottom:993.480000px;}
.y11b{bottom:995.190000px;}
.y141{bottom:1006.350000px;}
.yd4{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y11a{bottom:1012.770000px;}
.y33{bottom:1017.180000px;}
.yb5{bottom:1020.870000px;}
.y7a{bottom:1024.920000px;}
.yd3{bottom:1025.820000px;}
.y140{bottom:1028.700000px;}
.y55{bottom:1029.960000px;}
.y119{bottom:1030.320000px;}
.y8f{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yd2{bottom:1043.370000px;}
.y13f{bottom:1046.250000px;}
.y54{bottom:1047.510000px;}
.y118{bottom:1047.960000px;}
.y31{bottom:1052.370000px;}
.y79{bottom:1060.560000px;}
.yd1{bottom:1060.920000px;}
.y53{bottom:1065.150000px;}
.y117{bottom:1065.510000px;}
.yb4{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y13e{bottom:1072.800000px;}
.y78{bottom:1078.110000px;}
.yd0{bottom:1078.560000px;}
.y116{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y13d{bottom:1090.440000px;}
.y52{bottom:1091.700000px;}
.ycf{bottom:1096.110000px;}
.y115{bottom:1100.700000px;}
.y77{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y13c{bottom:1117.980000px;}
.y2d{bottom:1122.750000px;}
.y51{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h16{height:26.580000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.he{height:30.060000px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h14{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h12{height:59.973223px;}
.h9{height:60.960938px;}
.hc{height:62.585859px;}
.hf{height:62.648438px;}
.ha{height:62.703281px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h18{height:74.004654px;}
.h19{height:84.480469px;}
.hd{height:218.280000px;}
.h15{height:245.280000px;}
.h13{height:276.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:32.220000px;}
.w8{width:32.250000px;}
.w7{width:32.310000px;}
.w22{width:51.750000px;}
.w23{width:60.150000px;}
.w20{width:63.450000px;}
.w17{width:63.720000px;}
.w12{width:63.810000px;}
.w6{width:92.340000px;}
.w21{width:103.950000px;}
.w11{width:120.870000px;}
.w1c{width:135.720000px;}
.w1e{width:150.750000px;}
.w19{width:152.820000px;}
.w13{width:152.850000px;}
.w15{width:152.940000px;}
.w14{width:157.320000px;}
.w16{width:185.580000px;}
.wb{width:195.780000px;}
.w1a{width:209.190000px;}
.w1b{width:210.510000px;}
.w18{width:210.540000px;}
.w10{width:223.140000px;}
.w1d{width:232.680000px;}
.w5{width:234.450000px;}
.wf{width:235.740000px;}
.w3{width:236.730000px;}
.w4{width:250.230000px;}
.wa{width:276.420000px;}
.wc{width:284.220000px;}
.w1f{width:306.480000px;}
.wd{width:358.950000px;}
.we{width:397.470000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x20{left:10.080000px;}
.x1d{left:16.110000px;}
.xc{left:25.650000px;}
.x25{left:30.150000px;}
.xb{left:32.400000px;}
.x1f{left:34.740000px;}
.x24{left:36.450000px;}
.x1{left:68.040000px;}
.x5{left:85.950000px;}
.x40{left:93.959987px;}
.x4{left:95.039987px;}
.x1e{left:101.370000px;}
.x45{left:104.759987px;}
.x46{left:111.239987px;}
.x26{left:123.750000px;}
.x2f{left:126.540000px;}
.x17{left:127.709987px;}
.x3d{left:137.969987px;}
.x2b{left:140.670000px;}
.x35{left:151.289987px;}
.x15{left:152.909987px;}
.x14{left:162.209987px;}
.x36{left:164.100000px;}
.x16{left:173.279987px;}
.x2a{left:176.159987px;}
.x1a{left:197.130000px;}
.x2{left:202.799987px;}
.x13{left:205.319987px;}
.xd{left:224.399987px;}
.xa{left:226.350000px;}
.x6{left:228.630000px;}
.x8{left:242.130000px;}
.x18{left:255.630000px;}
.x1c{left:268.110000px;}
.x44{left:291.179987px;}
.x21{left:296.400000px;}
.x3a{left:302.250000px;}
.x23{left:319.170000px;}
.x7{left:322.680000px;}
.x33{left:338.700000px;}
.x19{left:344.820000px;}
.xe{left:350.940000px;}
.x27{left:360.210000px;}
.x30{left:363.000000px;}
.x37{left:375.330000px;}
.x2c{left:377.130000px;}
.x22{left:427.350000px;}
.x41{left:442.740000px;}
.x10{left:444.000000px;}
.x3e{left:446.609987px;}
.x3b{left:453.810000px;}
.x11{left:477.030000px;}
.x34{left:492.240000px;}
.x42{left:495.210000px;}
.x12{left:510.090000px;}
.x31{left:516.660000px;}
.x38{left:528.990000px;}
.x2d{left:530.790000px;}
.x1b{left:540.600000px;}
.x9{left:572.910000px;}
.x28{left:584.160000px;}
.x39{left:665.430000px;}
.x2e{left:688.830000px;}
.x32{left:702.960000px;}
.x29{left:705.750000px;}
.x43{left:729.059987px;}
.x3f{left:736.889987px;}
.x3c{left:761.010000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.043520pt;}
.ls17{letter-spacing:-0.035840pt;}
.ls18{letter-spacing:-0.010240pt;}
.ls11{letter-spacing:-0.006720pt;}
.ls19{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls15{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.097067pt;}
.ls22{letter-spacing:0.103467pt;}
.ls1a{letter-spacing:0.118400pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.154133pt;}
.ls23{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.723200pt;}
.ls1e{letter-spacing:1.424000pt;}
.ls1f{letter-spacing:3.664000pt;}
.ls21{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.751360pt;}
.wsa{word-spacing:-11.750080pt;}
.wsc{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.612800pt;}
.ws4{word-spacing:-11.590933pt;}
.wsf{word-spacing:-9.352960pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.663041pt;}
._4{margin-left:-2.725333pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._6{width:1.902431pt;}
._7{width:2.970635pt;}
._5{width:3.866667pt;}
._3{width:4.972800pt;}
._2{width:5.878400pt;}
._e{width:7.000640pt;}
._d{width:8.254507pt;}
._c{width:9.191680pt;}
._9{width:10.741333pt;}
._b{width:12.825600pt;}
._8{width:14.856534pt;}
._12{width:15.911261pt;}
._10{width:17.368000pt;}
._13{width:19.452160pt;}
._11{width:59.852800pt;}
._f{width:221.455360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:2.960000pt;}
.y7f{bottom:3.040000pt;}
.y4e{bottom:3.520000pt;}
.y4b{bottom:4.000000pt;}
.y7c{bottom:6.000000pt;}
.y4d{bottom:6.080000pt;}
.y58{bottom:6.960000pt;}
.y5a{bottom:7.040000pt;}
.y4a{bottom:10.000000pt;}
.y49{bottom:12.000000pt;}
.y7e{bottom:18.640000pt;}
.yc9{bottom:22.640000pt;}
.yeb{bottom:23.600000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y8e{bottom:104.986667pt;}
.yb3{bottom:108.026667pt;}
.y8d{bottom:120.586667pt;}
.yb2{bottom:123.626667pt;}
.y13b{bottom:125.946667pt;}
.y114{bottom:126.346667pt;}
.y76{bottom:126.986667pt;}
.y29{bottom:127.386667pt;}
.yce{bottom:134.506667pt;}
.yb1{bottom:139.306667pt;}
.y113{bottom:142.026667pt;}
.y75{bottom:142.586667pt;}
.y28{bottom:142.986667pt;}
.y8c{bottom:144.266667pt;}
.ycd{bottom:146.986667pt;}
.y50{bottom:148.266667pt;}
.y13a{bottom:149.546667pt;}
.yb0{bottom:154.906667pt;}
.y112{bottom:157.626667pt;}
.ycc{bottom:157.866667pt;}
.y27{bottom:158.666667pt;}
.y74{bottom:166.186667pt;}
.y139{bottom:173.146667pt;}
.y111{bottom:173.306667pt;}
.y26{bottom:174.266667pt;}
.y8b{bottom:176.186667pt;}
.yaf{bottom:178.586667pt;}
.y4f{bottom:179.866667pt;}
.y138{bottom:188.826667pt;}
.y110{bottom:188.906667pt;}
.y25{bottom:189.866667pt;}
.ye9{bottom:196.906667pt;}
.ycb{bottom:197.786667pt;}
.y73{bottom:197.866667pt;}
.y4c{bottom:200.506667pt;}
.y137{bottom:204.426667pt;}
.y10f{bottom:204.506667pt;}
.y24{bottom:205.546667pt;}
.yae{bottom:209.546667pt;}
.y8a{bottom:219.066667pt;}
.y10e{bottom:220.186667pt;}
.yad{bottom:220.346667pt;}
.y23{bottom:221.146667pt;}
.yca{bottom:222.106667pt;}
.y48{bottom:227.226667pt;}
.y136{bottom:228.026667pt;}
.ye8{bottom:228.426667pt;}
.y72{bottom:229.466667pt;}
.y89{bottom:234.666667pt;}
.y10d{bottom:235.786667pt;}
.y22{bottom:236.746667pt;}
.y135{bottom:243.706667pt;}
.yac{bottom:244.666667pt;}
.y71{bottom:245.146667pt;}
.yc8{bottom:246.346667pt;}
.y88{bottom:250.346667pt;}
.y10c{bottom:251.466667pt;}
.y21{bottom:252.426667pt;}
.ye7{bottom:259.386667pt;}
.y87{bottom:265.946667pt;}
.y10b{bottom:267.066667pt;}
.y134{bottom:267.306667pt;}
.y20{bottom:268.026667pt;}
.y70{bottom:268.746667pt;}
.yab{bottom:268.986667pt;}
.ye6{bottom:269.546667pt;}
.y86{bottom:281.626667pt;}
.y10a{bottom:282.666667pt;}
.y133{bottom:282.986667pt;}
.y1f{bottom:283.706667pt;}
.yaa{bottom:293.226667pt;}
.y85{bottom:297.226667pt;}
.y109{bottom:298.346667pt;}
.y1e{bottom:299.306667pt;}
.y6f{bottom:300.346667pt;}
.yc7{bottom:305.306667pt;}
.y132{bottom:306.586667pt;}
.y84{bottom:312.826667pt;}
.y108{bottom:313.946667pt;}
.y1d{bottom:314.906667pt;}
.yc6{bottom:320.906667pt;}
.y131{bottom:322.186667pt;}
.y107{bottom:329.546667pt;}
.y1c{bottom:330.586667pt;}
.y6e{bottom:332.026667pt;}
.y83{bottom:336.506667pt;}
.ya9{bottom:336.586667pt;}
.y106{bottom:345.226667pt;}
.y130{bottom:345.866667pt;}
.y1b{bottom:346.186667pt;}
.y6d{bottom:347.626667pt;}
.ya8{bottom:352.186667pt;}
.yc5{bottom:352.586667pt;}
.y105{bottom:360.826667pt;}
.y12f{bottom:361.466667pt;}
.y81{bottom:365.146667pt;}
.yc4{bottom:368.186667pt;}
.y1a{bottom:370.106667pt;}
.y6c{bottom:371.226667pt;}
.y104{bottom:376.506667pt;}
.ya7{bottom:383.786667pt;}
.y12e{bottom:385.146667pt;}
.y80{bottom:388.746667pt;}
.y103{bottom:392.106667pt;}
.ya6{bottom:399.466667pt;}
.y12d{bottom:400.746667pt;}
.y6b{bottom:402.906667pt;}
.y102{bottom:407.706667pt;}
.y19{bottom:413.306667pt;}
.ya5{bottom:415.066667pt;}
.y101{bottom:423.413333pt;}
.y12c{bottom:424.373333pt;}
.ya4{bottom:430.773333pt;}
.y6a{bottom:434.533333pt;}
.y100{bottom:439.013333pt;}
.y12b{bottom:440.053333pt;}
.y47{bottom:440.213333pt;}
.y18{bottom:446.293333pt;}
.ya3{bottom:446.373333pt;}
.y69{bottom:450.213333pt;}
.yff{bottom:454.693333pt;}
.y46{bottom:456.613333pt;}
.y17{bottom:461.893333pt;}
.ya2{bottom:461.973333pt;}
.y12a{bottom:464.533333pt;}
.y68{bottom:465.813333pt;}
.yc3{bottom:469.973333pt;}
.yfe{bottom:470.293333pt;}
.y45{bottom:473.013333pt;}
.y16{bottom:477.493333pt;}
.y67{bottom:481.413333pt;}
.ya1{bottom:485.653333pt;}
.yfd{bottom:485.893333pt;}
.y129{bottom:492.613333pt;}
.y15{bottom:493.173333pt;}
.yc2{bottom:501.013333pt;}
.yfc{bottom:501.573333pt;}
.y66{bottom:505.093333pt;}
.y44{bottom:505.413333pt;}
.y14{bottom:508.773333pt;}
.yc1{bottom:511.813333pt;}
.ya0{bottom:516.613333pt;}
.yfb{bottom:517.173333pt;}
.y13{bottom:524.373333pt;}
.y9f{bottom:527.413333pt;}
.y43{bottom:529.013333pt;}
.yfa{bottom:532.853333pt;}
.y128{bottom:535.573333pt;}
.yc0{bottom:536.133333pt;}
.y65{bottom:536.693333pt;}
.y12{bottom:540.053333pt;}
.yee{bottom:540.133333pt;}
.ye5{bottom:544.213333pt;}
.yf9{bottom:548.453333pt;}
.y9e{bottom:551.733333pt;}
.y11{bottom:555.653333pt;}
.y127{bottom:559.493333pt;}
.ybf{bottom:560.373333pt;}
.y42{bottom:560.613333pt;}
.yf8{bottom:564.053333pt;}
.yed{bottom:564.453333pt;}
.y64{bottom:568.373333pt;}
.y10{bottom:571.333333pt;}
.ye4{bottom:571.813333pt;}
.y9d{bottom:576.053333pt;}
.y41{bottom:576.293333pt;}
.yf7{bottom:579.733333pt;}
.y63{bottom:583.973333pt;}
.ybe{bottom:584.693333pt;}
.yf{bottom:586.933333pt;}
.yec{bottom:588.773333pt;}
.y40{bottom:591.893333pt;}
.y126{bottom:592.373333pt;}
.yf6{bottom:595.333333pt;}
.ye3{bottom:599.413333pt;}
.y62{bottom:599.573333pt;}
.y9c{bottom:600.373333pt;}
.ye{bottom:602.533333pt;}
.y7d{bottom:606.773333pt;}
.y3f{bottom:607.573333pt;}
.yf5{bottom:611.013333pt;}
.yea{bottom:613.093333pt;}
.y61{bottom:615.253333pt;}
.yd{bottom:618.213333pt;}
.y3e{bottom:623.173333pt;}
.y125{bottom:624.053333pt;}
.yf4{bottom:626.613333pt;}
.ye2{bottom:627.013333pt;}
.ybd{bottom:627.973333pt;}
.yc{bottom:633.813333pt;}
.y3d{bottom:638.773333pt;}
.y60{bottom:638.853333pt;}
.y124{bottom:639.653333pt;}
.yf3{bottom:642.213333pt;}
.y9b{bottom:643.653333pt;}
.y7b{bottom:646.053333pt;}
.yb{bottom:649.493333pt;}
.ye1{bottom:660.933333pt;}
.y3c{bottom:662.453333pt;}
.y123{bottom:663.573333pt;}
.yf2{bottom:666.133333pt;}
.y5f{bottom:670.533333pt;}
.ya{bottom:673.413333pt;}
.y9a{bottom:675.253333pt;}
.y5e{bottom:686.133333pt;}
.y99{bottom:690.933333pt;}
.ye0{bottom:692.613333pt;}
.y3b{bottom:694.053333pt;}
.y122{bottom:696.453333pt;}
.y5d{bottom:701.733333pt;}
.y98{bottom:706.533333pt;}
.ydf{bottom:708.213333pt;}
.yf1{bottom:709.093333pt;}
.y3a{bottom:709.733333pt;}
.y9{bottom:716.293333pt;}
.y121{bottom:720.373333pt;}
.y97{bottom:722.133333pt;}
.yde{bottom:723.813333pt;}
.y39{bottom:725.333333pt;}
.y149{bottom:736.613333pt;}
.y96{bottom:737.813333pt;}
.ydd{bottom:739.493333pt;}
.yf0{bottom:740.053333pt;}
.y8{bottom:747.893333pt;}
.y38{bottom:748.933333pt;}
.yef{bottom:750.213333pt;}
.y5c{bottom:752.053333pt;}
.y120{bottom:753.333333pt;}
.ybc{bottom:753.413333pt;}
.ydc{bottom:755.093333pt;}
.y148{bottom:760.213333pt;}
.y95{bottom:761.413333pt;}
.y11f{bottom:768.933333pt;}
.ybb{bottom:769.013333pt;}
.ydb{bottom:770.693333pt;}
.y147{bottom:775.893333pt;}
.y5b{bottom:776.373333pt;}
.y7{bottom:779.733333pt;}
.y37{bottom:780.853333pt;}
.y11e{bottom:784.533333pt;}
.yda{bottom:786.373333pt;}
.y94{bottom:792.373333pt;}
.yba{bottom:792.693333pt;}
.y146{bottom:799.493333pt;}
.y59{bottom:800.613333pt;}
.y93{bottom:803.253333pt;}
.y11d{bottom:808.453333pt;}
.y6{bottom:811.733333pt;}
.y145{bottom:815.093333pt;}
.yd9{bottom:817.973333pt;}
.yb9{bottom:823.653333pt;}
.y36{bottom:823.733333pt;}
.y57{bottom:824.933333pt;}
.y92{bottom:827.493333pt;}
.y144{bottom:830.773333pt;}
.yd8{bottom:833.653333pt;}
.yb8{bottom:834.533333pt;}
.y35{bottom:840.133333pt;}
.y11c{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yd7{bottom:849.253333pt;}
.y91{bottom:851.813333pt;}
.y143{bottom:854.373333pt;}
.yb7{bottom:858.773333pt;}
.yd6{bottom:864.853333pt;}
.y56{bottom:868.213333pt;}
.y34{bottom:872.533333pt;}
.y90{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y142{bottom:878.053333pt;}
.yd5{bottom:880.533333pt;}
.yb6{bottom:883.093333pt;}
.y11b{bottom:884.613333pt;}
.y141{bottom:894.533333pt;}
.yd4{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y11a{bottom:900.240000pt;}
.y33{bottom:904.160000pt;}
.yb5{bottom:907.440000pt;}
.y7a{bottom:911.040000pt;}
.yd3{bottom:911.840000pt;}
.y140{bottom:914.400000pt;}
.y55{bottom:915.520000pt;}
.y119{bottom:915.840000pt;}
.y8f{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yd2{bottom:927.440000pt;}
.y13f{bottom:930.000000pt;}
.y54{bottom:931.120000pt;}
.y118{bottom:931.520000pt;}
.y31{bottom:935.440000pt;}
.y79{bottom:942.720000pt;}
.yd1{bottom:943.040000pt;}
.y53{bottom:946.800000pt;}
.y117{bottom:947.120000pt;}
.yb4{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y13e{bottom:953.600000pt;}
.y78{bottom:958.320000pt;}
.yd0{bottom:958.720000pt;}
.y116{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y13d{bottom:969.280000pt;}
.y52{bottom:970.400000pt;}
.ycf{bottom:974.320000pt;}
.y115{bottom:978.400000pt;}
.y77{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y13c{bottom:993.760000pt;}
.y2d{bottom:998.000000pt;}
.y51{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h16{height:23.626667pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.he{height:26.720000pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h14{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h12{height:53.309531pt;}
.h9{height:54.187500pt;}
.hc{height:55.631875pt;}
.hf{height:55.687500pt;}
.ha{height:55.736250pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h18{height:65.781915pt;}
.h19{height:75.093750pt;}
.hd{height:194.026667pt;}
.h15{height:218.026667pt;}
.h13{height:246.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:28.640000pt;}
.w8{width:28.666667pt;}
.w7{width:28.720000pt;}
.w22{width:46.000000pt;}
.w23{width:53.466667pt;}
.w20{width:56.400000pt;}
.w17{width:56.640000pt;}
.w12{width:56.720000pt;}
.w6{width:82.080000pt;}
.w21{width:92.400000pt;}
.w11{width:107.440000pt;}
.w1c{width:120.640000pt;}
.w1e{width:134.000000pt;}
.w19{width:135.840000pt;}
.w13{width:135.866667pt;}
.w15{width:135.946667pt;}
.w14{width:139.840000pt;}
.w16{width:164.960000pt;}
.wb{width:174.026667pt;}
.w1a{width:185.946667pt;}
.w1b{width:187.120000pt;}
.w18{width:187.146667pt;}
.w10{width:198.346667pt;}
.w1d{width:206.826667pt;}
.w5{width:208.400000pt;}
.wf{width:209.546667pt;}
.w3{width:210.426667pt;}
.w4{width:222.426667pt;}
.wa{width:245.706667pt;}
.wc{width:252.640000pt;}
.w1f{width:272.426667pt;}
.wd{width:319.066667pt;}
.we{width:353.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x20{left:8.960000pt;}
.x1d{left:14.320000pt;}
.xc{left:22.800000pt;}
.x25{left:26.800000pt;}
.xb{left:28.800000pt;}
.x1f{left:30.880000pt;}
.x24{left:32.400000pt;}
.x1{left:60.480000pt;}
.x5{left:76.400000pt;}
.x40{left:83.519988pt;}
.x4{left:84.479988pt;}
.x1e{left:90.106667pt;}
.x45{left:93.119988pt;}
.x46{left:98.879988pt;}
.x26{left:110.000000pt;}
.x2f{left:112.480000pt;}
.x17{left:113.519988pt;}
.x3d{left:122.639988pt;}
.x2b{left:125.040000pt;}
.x35{left:134.479988pt;}
.x15{left:135.919988pt;}
.x14{left:144.186655pt;}
.x36{left:145.866667pt;}
.x16{left:154.026655pt;}
.x2a{left:156.586655pt;}
.x1a{left:175.226667pt;}
.x2{left:180.266655pt;}
.x13{left:182.506655pt;}
.xd{left:199.466655pt;}
.xa{left:201.200000pt;}
.x6{left:203.226667pt;}
.x8{left:215.226667pt;}
.x18{left:227.226667pt;}
.x1c{left:238.320000pt;}
.x44{left:258.826655pt;}
.x21{left:263.466667pt;}
.x3a{left:268.666667pt;}
.x23{left:283.706667pt;}
.x7{left:286.826667pt;}
.x33{left:301.066667pt;}
.x19{left:306.506667pt;}
.xe{left:311.946667pt;}
.x27{left:320.186667pt;}
.x30{left:322.666667pt;}
.x37{left:333.626667pt;}
.x2c{left:335.226667pt;}
.x22{left:379.866667pt;}
.x41{left:393.546667pt;}
.x10{left:394.666667pt;}
.x3e{left:396.986655pt;}
.x3b{left:403.386667pt;}
.x11{left:424.026667pt;}
.x34{left:437.546667pt;}
.x42{left:440.186667pt;}
.x12{left:453.413333pt;}
.x31{left:459.253333pt;}
.x38{left:470.213333pt;}
.x2d{left:471.813333pt;}
.x1b{left:480.533333pt;}
.x9{left:509.253333pt;}
.x28{left:519.253333pt;}
.x39{left:591.493333pt;}
.x2e{left:612.293333pt;}
.x32{left:624.853333pt;}
.x29{left:627.333333pt;}
.x43{left:648.053322pt;}
.x3f{left:655.013322pt;}
.x3c{left:676.453333pt;}
.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; }
  