
    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_ced9fa3d9465bf018ad24c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_509157bc4de08d7feee19e05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_4787306b31c4de1161b31590.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_78e06c44fa398792410d2981.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.808838;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_838aeaaf207ac66d59c5f8fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_cd7347b436b35d19841d8854.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_792a0459654f613d07201f10.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_6510bcad99f0a547eabe39e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.808838;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_513cd854bdfb8bcdaa69543c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704590;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;}
.m1{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-3.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.900000px;}
.ls3{letter-spacing:3.000000px;}
.lsb{letter-spacing:3.300000px;}
.lsa{letter-spacing:7.608000px;}
.ls0{letter-spacing:9.000000px;}
.ls6{letter-spacing:10.170000px;}
.ls2{letter-spacing:12.000000px;}
.ls8{letter-spacing:13.650000px;}
.ls5{letter-spacing:20.205000px;}
.lsc{letter-spacing:26.808000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-47.700000px;}
.wsf{word-spacing:-32.295000px;}
.ws5{word-spacing:-31.800000px;}
.ws0{word-spacing:-31.413000px;}
.ws11{word-spacing:-27.840000px;}
.ws2{word-spacing:-27.798000px;}
.wsa{word-spacing:-25.737000px;}
.ws12{word-spacing:-23.460000px;}
.wsc{word-spacing:-12.906000px;}
.ws13{word-spacing:-12.192000px;}
.ws10{word-spacing:-11.808000px;}
.ws3{word-spacing:-11.115132px;}
.wsd{word-spacing:-10.200000px;}
.ws9{word-spacing:-6.600000px;}
.ws8{word-spacing:-6.348000px;}
.ws7{word-spacing:-5.940000px;}
.ws14{word-spacing:-4.224000px;}
.wsb{word-spacing:-3.357000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:3.132000px;}
.ws1{word-spacing:4.950000px;}
._12{margin-left:-11.001000px;}
._1d{margin-left:-9.075000px;}
._11{margin-left:-7.662000px;}
._14{margin-left:-5.130000px;}
._23{margin-left:-3.741000px;}
._3{margin-left:-2.394000px;}
._4{margin-left:-1.083000px;}
._0{width:1.581000px;}
._6{width:2.667000px;}
._1{width:4.104000px;}
._8{width:5.628000px;}
._9{width:6.636000px;}
._10{width:7.809000px;}
._b{width:9.006000px;}
._c{width:10.089000px;}
._22{width:11.127000px;}
._7{width:12.129000px;}
._a{width:13.755000px;}
._13{width:14.763000px;}
._2{width:16.017000px;}
._5{width:17.727000px;}
._16{width:19.284000px;}
._e{width:20.535000px;}
._20{width:21.540000px;}
._f{width:22.584000px;}
._d{width:23.997000px;}
._1b{width:25.524000px;}
._1a{width:26.607000px;}
._15{width:27.651000px;}
._1f{width:28.773000px;}
._17{width:30.045000px;}
._18{width:31.821000px;}
._1c{width:33.174000px;}
._1e{width:34.287000px;}
._19{width:36.228000px;}
._21{width:37.251000px;}
._25{width:39.510000px;}
._24{width:41.172000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fs4{font-size:45.000000px;}
.fs13{font-size:48.000000px;}
.fs1{font-size:57.000000px;}
.fsd{font-size:60.000000px;}
.fs7{font-size:63.154161px;}
.fsa{font-size:66.000000px;}
.fsf{font-size:75.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:93.000000px;}
.fs12{font-size:96.000000px;}
.fse{font-size:99.000000px;}
.fs10{font-size:105.000000px;}
.fs8{font-size:120.000000px;}
.fs11{font-size:123.000000px;}
.fsb{font-size:156.000000px;}
.fs9{font-size:162.000000px;}
.fs3{font-size:213.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:0.030000px;}
.y28{bottom:34.530000px;}
.y27{bottom:153.330000px;}
.y61{bottom:162.030000px;}
.y7c{bottom:171.030000px;}
.yab{bottom:174.930000px;}
.y95{bottom:176.130000px;}
.yf5{bottom:176.430000px;}
.y60{bottom:177.930000px;}
.y12d{bottom:179.280000px;}
.y106{bottom:179.730000px;}
.y44{bottom:180.330000px;}
.y11f{bottom:181.530000px;}
.ye1{bottom:181.830000px;}
.yc6{bottom:183.930000px;}
.ya{bottom:185.130000px;}
.y23{bottom:186.180000px;}
.y7b{bottom:194.430000px;}
.yaa{bottom:198.330000px;}
.y94{bottom:199.830000px;}
.yf4{bottom:200.130000px;}
.y5f{bottom:201.330000px;}
.y12c{bottom:202.680000px;}
.y105{bottom:203.130000px;}
.y43{bottom:203.430000px;}
.ye0{bottom:204.930000px;}
.y11e{bottom:205.230000px;}
.yc5{bottom:207.780000px;}
.y22{bottom:209.130000px;}
.y9{bottom:212.130000px;}
.y7a{bottom:217.830000px;}
.ya9{bottom:221.730000px;}
.y93{bottom:222.930000px;}
.yf3{bottom:223.230000px;}
.y5e{bottom:224.730000px;}
.y12b{bottom:225.780000px;}
.y104{bottom:226.080000px;}
.y42{bottom:226.530000px;}
.ydf{bottom:228.330000px;}
.yc4{bottom:230.730000px;}
.y21{bottom:232.230000px;}
.y8{bottom:238.380000px;}
.y79{bottom:241.080000px;}
.ya8{bottom:244.830000px;}
.y92{bottom:245.880000px;}
.yf2{bottom:246.030000px;}
.y5d{bottom:247.380000px;}
.y12a{bottom:249.180000px;}
.y103{bottom:249.480000px;}
.y41{bottom:249.630000px;}
.y11d{bottom:251.280000px;}
.yde{bottom:252.330000px;}
.yc3{bottom:253.530000px;}
.y20{bottom:255.330000px;}
.y78{bottom:264.180000px;}
.ya7{bottom:268.230000px;}
.y91{bottom:268.980000px;}
.y5c{bottom:270.030000px;}
.y102{bottom:272.130000px;}
.y40{bottom:272.580000px;}
.y11c{bottom:274.380000px;}
.ydd{bottom:274.680000px;}
.yc2{bottom:276.480000px;}
.y1f{bottom:278.430000px;}
.y77{bottom:287.280000px;}
.ya6{bottom:291.630000px;}
.y90{bottom:291.930000px;}
.y5b{bottom:293.130000px;}
.y129{bottom:295.230000px;}
.y3f{bottom:295.530000px;}
.y11b{bottom:297.330000px;}
.ydc{bottom:298.080000px;}
.yc1{bottom:299.580000px;}
.y1e{bottom:301.380000px;}
.y76{bottom:310.380000px;}
.yf1{bottom:314.580000px;}
.ya5{bottom:314.730000px;}
.y8f{bottom:315.030000px;}
.y5a{bottom:316.080000px;}
.y3e{bottom:318.630000px;}
.y11a{bottom:320.130000px;}
.ydb{bottom:320.730000px;}
.yc0{bottom:322.680000px;}
.y1d{bottom:324.330000px;}
.y75{bottom:333.780000px;}
.ya4{bottom:337.380000px;}
.yf0{bottom:337.680000px;}
.y8e{bottom:338.130000px;}
.y59{bottom:339.180000px;}
.y101{bottom:341.730000px;}
.y3d{bottom:342.030000px;}
.y119{bottom:342.780000px;}
.yda{bottom:344.130000px;}
.ybf{bottom:345.330000px;}
.y1c{bottom:347.130000px;}
.y74{bottom:357.180000px;}
.y8d{bottom:360.630000px;}
.ya3{bottom:360.780000px;}
.y58{bottom:361.830000px;}
.y128{bottom:364.680000px;}
.y3c{bottom:365.130000px;}
.y118{bottom:366.180000px;}
.yd9{bottom:366.930000px;}
.ybe{bottom:367.980000px;}
.y1b{bottom:370.080000px;}
.y140{bottom:379.830000px;}
.y73{bottom:380.130000px;}
.ya2{bottom:383.430000px;}
.y8c{bottom:383.730000px;}
.y57{bottom:384.930000px;}
.y127{bottom:387.780000px;}
.y100{bottom:388.080000px;}
.y3b{bottom:388.230000px;}
.y117{bottom:388.830000px;}
.yd8{bottom:390.180000px;}
.ybd{bottom:390.930000px;}
.y1a{bottom:392.730000px;}
.y13f{bottom:402.480000px;}
.y72{bottom:403.230000px;}
.y8b{bottom:406.830000px;}
.yef{bottom:407.130000px;}
.y56{bottom:407.880000px;}
.yff{bottom:410.730000px;}
.y3a{bottom:411.180000px;}
.y116{bottom:411.930000px;}
.yd7{bottom:413.280000px;}
.ybc{bottom:414.030000px;}
.y19{bottom:416.130000px;}
.y13e{bottom:425.880000px;}
.y71{bottom:426.330000px;}
.yee{bottom:429.780000px;}
.y8a{bottom:430.230000px;}
.y55{bottom:431.280000px;}
.y39{bottom:434.130000px;}
.y115{bottom:434.880000px;}
.yd6{bottom:436.380000px;}
.ybb{bottom:437.130000px;}
.y18{bottom:439.230000px;}
.y13d{bottom:448.680000px;}
.y70{bottom:449.280000px;}
.yed{bottom:452.880000px;}
.y89{bottom:453.330000px;}
.y54{bottom:453.930000px;}
.yfe{bottom:456.930000px;}
.y38{bottom:457.230000px;}
.y114{bottom:457.530000px;}
.yd5{bottom:459.330000px;}
.yba{bottom:460.080000px;}
.y17{bottom:461.880000px;}
.y13c{bottom:471.330000px;}
.y6f{bottom:472.680000px;}
.y88{bottom:475.980000px;}
.ya1{bottom:476.280000px;}
.y53{bottom:477.030000px;}
.y37{bottom:480.330000px;}
.y113{bottom:480.630000px;}
.yd4{bottom:482.430000px;}
.yb9{bottom:482.730000px;}
.y16{bottom:484.980000px;}
.y13b{bottom:493.980000px;}
.y6e{bottom:495.330000px;}
.yec{bottom:498.630000px;}
.y87{bottom:498.930000px;}
.y7{bottom:499.380000px;}
.y52{bottom:500.130000px;}
.yfd{bottom:503.280000px;}
.y126{bottom:503.430000px;}
.y36{bottom:503.730000px;}
.yd3{bottom:505.530000px;}
.yb8{bottom:505.830000px;}
.y15{bottom:508.380000px;}
.y13a{bottom:518.430000px;}
.y6d{bottom:518.730000px;}
.y86{bottom:522.030000px;}
.ya0{bottom:522.330000px;}
.y51{bottom:523.080000px;}
.yfc{bottom:526.380000px;}
.y35{bottom:526.680000px;}
.yb7{bottom:528.480000px;}
.y14{bottom:531.030000px;}
.y139{bottom:539.730000px;}
.y6{bottom:540.330000px;}
.y6c{bottom:541.830000px;}
.yeb{bottom:543.930000px;}
.y85{bottom:544.680000px;}
.y9f{bottom:545.130000px;}
.y50{bottom:545.430000px;}
.y112{bottom:548.280000px;}
.yfb{bottom:549.030000px;}
.y34{bottom:549.330000px;}
.yb6{bottom:550.830000px;}
.yd2{bottom:551.130000px;}
.y13{bottom:553.380000px;}
.y138{bottom:561.930000px;}
.y6b{bottom:564.480000px;}
.yea{bottom:566.730000px;}
.y84{bottom:567.330000px;}
.y4f{bottom:568.080000px;}
.yfa{bottom:571.680000px;}
.y125{bottom:571.980000px;}
.y33{bottom:572.130000px;}
.y111{bottom:573.180000px;}
.yb5{bottom:573.780000px;}
.yd1{bottom:574.230000px;}
.y12{bottom:576.480000px;}
.y137{bottom:584.730000px;}
.y5{bottom:586.080000px;}
.y6a{bottom:587.880000px;}
.y83{bottom:590.430000px;}
.y4e{bottom:591.180000px;}
.y9e{bottom:591.480000px;}
.y110{bottom:594.330000px;}
.y32{bottom:595.080000px;}
.yb4{bottom:596.880000px;}
.yd0{bottom:597.630000px;}
.y11{bottom:599.130000px;}
.y136{bottom:608.130000px;}
.y69{bottom:610.980000px;}
.ye9{bottom:612.780000px;}
.y82{bottom:613.080000px;}
.y4d{bottom:613.830000px;}
.y9d{bottom:614.130000px;}
.y10f{bottom:617.280000px;}
.y124{bottom:618.180000px;}
.y31{bottom:618.480000px;}
.yb3{bottom:619.980000px;}
.ycf{bottom:620.730000px;}
.y10{bottom:621.780000px;}
.y135{bottom:630.780000px;}
.y4{bottom:632.880000px;}
.y68{bottom:634.380000px;}
.ye8{bottom:635.730000px;}
.y81{bottom:636.480000px;}
.y4c{bottom:636.780000px;}
.y9c{bottom:637.530000px;}
.y10e{bottom:640.380000px;}
.y30{bottom:641.580000px;}
.yb2{bottom:642.630000px;}
.yce{bottom:644.130000px;}
.yf{bottom:645.180000px;}
.y134{bottom:653.730000px;}
.y67{bottom:657.780000px;}
.ye7{bottom:658.830000px;}
.y80{bottom:659.580000px;}
.y4b{bottom:659.880000px;}
.y9b{bottom:660.630000px;}
.y10d{bottom:663.480000px;}
.y2f{bottom:664.980000px;}
.yb1{bottom:666.030000px;}
.ycd{bottom:667.530000px;}
.ye{bottom:667.830000px;}
.y133{bottom:676.830000px;}
.y3{bottom:680.130000px;}
.y66{bottom:680.730000px;}
.ye6{bottom:682.230000px;}
.y4a{bottom:682.980000px;}
.y9a{bottom:684.030000px;}
.y10c{bottom:686.580000px;}
.y2e{bottom:686.880000px;}
.y123{bottom:687.930000px;}
.yf9{bottom:688.380000px;}
.yb0{bottom:688.680000px;}
.ycc{bottom:690.480000px;}
.yd{bottom:690.930000px;}
.y132{bottom:699.930000px;}
.y65{bottom:704.580000px;}
.ye5{bottom:705.330000px;}
.y49{bottom:705.930000px;}
.y99{bottom:707.130000px;}
.y10b{bottom:709.530000px;}
.y2d{bottom:711.030000px;}
.y122{bottom:711.330000px;}
.yf8{bottom:711.780000px;}
.yaf{bottom:712.080000px;}
.yc{bottom:713.580000px;}
.ycb{bottom:713.880000px;}
.y131{bottom:722.580000px;}
.y64{bottom:727.530000px;}
.ye4{bottom:727.980000px;}
.y48{bottom:729.030000px;}
.y98{bottom:730.530000px;}
.y2{bottom:731.880000px;}
.y10a{bottom:732.630000px;}
.y2c{bottom:734.430000px;}
.yae{bottom:734.730000px;}
.yca{bottom:737.280000px;}
.y130{bottom:745.530000px;}
.y63{bottom:750.930000px;}
.ye3{bottom:751.680000px;}
.y47{bottom:752.130000px;}
.y7f{bottom:752.730000px;}
.y97{bottom:753.480000px;}
.y109{bottom:755.280000px;}
.y2b{bottom:757.830000px;}
.y121{bottom:758.130000px;}
.yf7{bottom:758.580000px;}
.yc9{bottom:761.130000px;}
.y12f{bottom:768.630000px;}
.y1{bottom:774.330000px;}
.y46{bottom:774.780000px;}
.y26{bottom:776.130000px;}
.y96{bottom:776.580000px;}
.y108{bottom:778.380000px;}
.y2a{bottom:780.930000px;}
.yad{bottom:781.230000px;}
.yb{bottom:781.530000px;}
.yc8{bottom:784.080000px;}
.yac{bottom:786.330000px;}
.y12e{bottom:787.380000px;}
.y62{bottom:793.080000px;}
.y7d{bottom:793.830000px;}
.y7e{bottom:794.580000px;}
.y107{bottom:797.430000px;}
.yc7{bottom:799.980000px;}
.y45{bottom:800.280000px;}
.y120{bottom:800.730000px;}
.y25{bottom:801.780000px;}
.yf6{bottom:803.880000px;}
.ye2{bottom:807.930000px;}
.y24{bottom:824.430000px;}
.hd{height:23.994141px;}
.he{height:39.990234px;}
.h5{height:41.044922px;}
.h8{height:42.092495px;}
.h3{height:51.990234px;}
.h14{height:54.726562px;}
.h6{height:59.985352px;}
.hb{height:60.199219px;}
.h13{height:63.984375px;}
.hf{height:65.983887px;}
.h7{height:71.144531px;}
.h11{height:72.751465px;}
.h9{height:79.980469px;}
.h12{height:81.979980px;}
.h10{height:82.089844px;}
.h2{height:84.826172px;}
.ha{height:121.500000px;}
.hc{height:142.289062px;}
.h4{height:159.750000px;}
.h0{height:931.350000px;}
.h1{height:931.500000px;}
.w2{width:686.850000px;}
.w3{width:687.000000px;}
.w0{width:696.600000px;}
.w1{width:696.750000px;}
.x0{left:0.000000px;}
.x3{left:156.600000px;}
.xe{left:157.650000px;}
.xf{left:158.700000px;}
.x10{left:159.750000px;}
.x2b{left:161.550000px;}
.x2a{left:162.750000px;}
.x29{left:163.800000px;}
.x28{left:164.850000px;}
.x27{left:165.900000px;}
.x26{left:166.950000px;}
.x5{left:168.150000px;}
.x1c{left:169.200000px;}
.x1b{left:170.250000px;}
.x1a{left:171.450000px;}
.x2d{left:172.800000px;}
.x20{left:173.850000px;}
.x1f{left:175.050000px;}
.x22{left:176.850000px;}
.x23{left:177.900000px;}
.x2{left:178.950000px;}
.x35{left:180.000000px;}
.x34{left:181.050000px;}
.x17{left:183.150000px;}
.x6{left:185.100000px;}
.x11{left:187.950000px;}
.x2c{left:189.300000px;}
.x2e{left:199.050000px;}
.x32{left:201.600000px;}
.x21{left:203.400000px;}
.x36{left:206.250000px;}
.x1{left:208.050000px;}
.x18{left:211.650000px;}
.x4{left:230.400000px;}
.x8{left:233.250000px;}
.x7{left:282.600000px;}
.xd{left:283.650000px;}
.x9{left:301.650000px;}
.xa{left:310.350000px;}
.xb{left:316.050000px;}
.x37{left:318.150000px;}
.x30{left:323.250000px;}
.x25{left:327.900000px;}
.x31{left:329.850000px;}
.x1e{left:331.200000px;}
.x2f{left:332.250000px;}
.x24{left:333.750000px;}
.x33{left:336.900000px;}
.x38{left:340.650000px;}
.x19{left:344.850000px;}
.xc{left:348.900000px;}
.x1d{left:376.200000px;}
.x13{left:385.200000px;}
.x12{left:394.500000px;}
.x15{left:684.750000px;}
.x14{left:690.450000px;}
.x16{left:695.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls3{letter-spacing:2.666667pt;}
.lsb{letter-spacing:2.933333pt;}
.lsa{letter-spacing:6.762667pt;}
.ls0{letter-spacing:8.000000pt;}
.ls6{letter-spacing:9.040000pt;}
.ls2{letter-spacing:10.666667pt;}
.ls8{letter-spacing:12.133333pt;}
.ls5{letter-spacing:17.960000pt;}
.lsc{letter-spacing:23.829333pt;}
.wse{word-spacing:-42.400000pt;}
.wsf{word-spacing:-28.706667pt;}
.ws5{word-spacing:-28.266667pt;}
.ws0{word-spacing:-27.922667pt;}
.ws11{word-spacing:-24.746667pt;}
.ws2{word-spacing:-24.709333pt;}
.wsa{word-spacing:-22.877333pt;}
.ws12{word-spacing:-20.853333pt;}
.wsc{word-spacing:-11.472000pt;}
.ws13{word-spacing:-10.837333pt;}
.ws10{word-spacing:-10.496000pt;}
.ws3{word-spacing:-9.880118pt;}
.wsd{word-spacing:-9.066667pt;}
.ws9{word-spacing:-5.866667pt;}
.ws8{word-spacing:-5.642667pt;}
.ws7{word-spacing:-5.280000pt;}
.ws14{word-spacing:-3.754667pt;}
.wsb{word-spacing:-2.984000pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:2.784000pt;}
.ws1{word-spacing:4.400000pt;}
._12{margin-left:-9.778667pt;}
._1d{margin-left:-8.066667pt;}
._11{margin-left:-6.810667pt;}
._14{margin-left:-4.560000pt;}
._23{margin-left:-3.325333pt;}
._3{margin-left:-2.128000pt;}
._4{margin-left:-0.962667pt;}
._0{width:1.405333pt;}
._6{width:2.370667pt;}
._1{width:3.648000pt;}
._8{width:5.002667pt;}
._9{width:5.898667pt;}
._10{width:6.941333pt;}
._b{width:8.005333pt;}
._c{width:8.968000pt;}
._22{width:9.890667pt;}
._7{width:10.781333pt;}
._a{width:12.226667pt;}
._13{width:13.122667pt;}
._2{width:14.237333pt;}
._5{width:15.757333pt;}
._16{width:17.141333pt;}
._e{width:18.253333pt;}
._20{width:19.146667pt;}
._f{width:20.074667pt;}
._d{width:21.330667pt;}
._1b{width:22.688000pt;}
._1a{width:23.650667pt;}
._15{width:24.578667pt;}
._1f{width:25.576000pt;}
._17{width:26.706667pt;}
._18{width:28.285333pt;}
._1c{width:29.488000pt;}
._1e{width:30.477333pt;}
._19{width:32.202667pt;}
._21{width:33.112000pt;}
._25{width:35.120000pt;}
._24{width:36.597333pt;}
.fsc{font-size:32.000000pt;}
.fs4{font-size:40.000000pt;}
.fs13{font-size:42.666667pt;}
.fs1{font-size:50.666667pt;}
.fsd{font-size:53.333333pt;}
.fs7{font-size:56.137032pt;}
.fsa{font-size:58.666667pt;}
.fsf{font-size:66.666667pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:82.666667pt;}
.fs12{font-size:85.333333pt;}
.fse{font-size:88.000000pt;}
.fs10{font-size:93.333333pt;}
.fs8{font-size:106.666667pt;}
.fs11{font-size:109.333333pt;}
.fsb{font-size:138.666667pt;}
.fs9{font-size:144.000000pt;}
.fs3{font-size:189.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:0.026667pt;}
.y28{bottom:30.693333pt;}
.y27{bottom:136.293333pt;}
.y61{bottom:144.026667pt;}
.y7c{bottom:152.026667pt;}
.yab{bottom:155.493333pt;}
.y95{bottom:156.560000pt;}
.yf5{bottom:156.826667pt;}
.y60{bottom:158.160000pt;}
.y12d{bottom:159.360000pt;}
.y106{bottom:159.760000pt;}
.y44{bottom:160.293333pt;}
.y11f{bottom:161.360000pt;}
.ye1{bottom:161.626667pt;}
.yc6{bottom:163.493333pt;}
.ya{bottom:164.560000pt;}
.y23{bottom:165.493333pt;}
.y7b{bottom:172.826667pt;}
.yaa{bottom:176.293333pt;}
.y94{bottom:177.626667pt;}
.yf4{bottom:177.893333pt;}
.y5f{bottom:178.960000pt;}
.y12c{bottom:180.160000pt;}
.y105{bottom:180.560000pt;}
.y43{bottom:180.826667pt;}
.ye0{bottom:182.160000pt;}
.y11e{bottom:182.426667pt;}
.yc5{bottom:184.693333pt;}
.y22{bottom:185.893333pt;}
.y9{bottom:188.560000pt;}
.y7a{bottom:193.626667pt;}
.ya9{bottom:197.093333pt;}
.y93{bottom:198.160000pt;}
.yf3{bottom:198.426667pt;}
.y5e{bottom:199.760000pt;}
.y12b{bottom:200.693333pt;}
.y104{bottom:200.960000pt;}
.y42{bottom:201.360000pt;}
.ydf{bottom:202.960000pt;}
.yc4{bottom:205.093333pt;}
.y21{bottom:206.426667pt;}
.y8{bottom:211.893333pt;}
.y79{bottom:214.293333pt;}
.ya8{bottom:217.626667pt;}
.y92{bottom:218.560000pt;}
.yf2{bottom:218.693333pt;}
.y5d{bottom:219.893333pt;}
.y12a{bottom:221.493333pt;}
.y103{bottom:221.760000pt;}
.y41{bottom:221.893333pt;}
.y11d{bottom:223.360000pt;}
.yde{bottom:224.293333pt;}
.yc3{bottom:225.360000pt;}
.y20{bottom:226.960000pt;}
.y78{bottom:234.826667pt;}
.ya7{bottom:238.426667pt;}
.y91{bottom:239.093333pt;}
.y5c{bottom:240.026667pt;}
.y102{bottom:241.893333pt;}
.y40{bottom:242.293333pt;}
.y11c{bottom:243.893333pt;}
.ydd{bottom:244.160000pt;}
.yc2{bottom:245.760000pt;}
.y1f{bottom:247.493333pt;}
.y77{bottom:255.360000pt;}
.ya6{bottom:259.226667pt;}
.y90{bottom:259.493333pt;}
.y5b{bottom:260.560000pt;}
.y129{bottom:262.426667pt;}
.y3f{bottom:262.693333pt;}
.y11b{bottom:264.293333pt;}
.ydc{bottom:264.960000pt;}
.yc1{bottom:266.293333pt;}
.y1e{bottom:267.893333pt;}
.y76{bottom:275.893333pt;}
.yf1{bottom:279.626667pt;}
.ya5{bottom:279.760000pt;}
.y8f{bottom:280.026667pt;}
.y5a{bottom:280.960000pt;}
.y3e{bottom:283.226667pt;}
.y11a{bottom:284.560000pt;}
.ydb{bottom:285.093333pt;}
.yc0{bottom:286.826667pt;}
.y1d{bottom:288.293333pt;}
.y75{bottom:296.693333pt;}
.ya4{bottom:299.893333pt;}
.yf0{bottom:300.160000pt;}
.y8e{bottom:300.560000pt;}
.y59{bottom:301.493333pt;}
.y101{bottom:303.760000pt;}
.y3d{bottom:304.026667pt;}
.y119{bottom:304.693333pt;}
.yda{bottom:305.893333pt;}
.ybf{bottom:306.960000pt;}
.y1c{bottom:308.560000pt;}
.y74{bottom:317.493333pt;}
.y8d{bottom:320.560000pt;}
.ya3{bottom:320.693333pt;}
.y58{bottom:321.626667pt;}
.y128{bottom:324.160000pt;}
.y3c{bottom:324.560000pt;}
.y118{bottom:325.493333pt;}
.yd9{bottom:326.160000pt;}
.ybe{bottom:327.093333pt;}
.y1b{bottom:328.960000pt;}
.y140{bottom:337.626667pt;}
.y73{bottom:337.893333pt;}
.ya2{bottom:340.826667pt;}
.y8c{bottom:341.093333pt;}
.y57{bottom:342.160000pt;}
.y127{bottom:344.693333pt;}
.y100{bottom:344.960000pt;}
.y3b{bottom:345.093333pt;}
.y117{bottom:345.626667pt;}
.yd8{bottom:346.826667pt;}
.ybd{bottom:347.493333pt;}
.y1a{bottom:349.093333pt;}
.y13f{bottom:357.760000pt;}
.y72{bottom:358.426667pt;}
.y8b{bottom:361.626667pt;}
.yef{bottom:361.893333pt;}
.y56{bottom:362.560000pt;}
.yff{bottom:365.093333pt;}
.y3a{bottom:365.493333pt;}
.y116{bottom:366.160000pt;}
.yd7{bottom:367.360000pt;}
.ybc{bottom:368.026667pt;}
.y19{bottom:369.893333pt;}
.y13e{bottom:378.560000pt;}
.y71{bottom:378.960000pt;}
.yee{bottom:382.026667pt;}
.y8a{bottom:382.426667pt;}
.y55{bottom:383.360000pt;}
.y39{bottom:385.893333pt;}
.y115{bottom:386.560000pt;}
.yd6{bottom:387.893333pt;}
.ybb{bottom:388.560000pt;}
.y18{bottom:390.426667pt;}
.y13d{bottom:398.826667pt;}
.y70{bottom:399.360000pt;}
.yed{bottom:402.560000pt;}
.y89{bottom:402.960000pt;}
.y54{bottom:403.493333pt;}
.yfe{bottom:406.160000pt;}
.y38{bottom:406.426667pt;}
.y114{bottom:406.693333pt;}
.yd5{bottom:408.293333pt;}
.yba{bottom:408.960000pt;}
.y17{bottom:410.560000pt;}
.y13c{bottom:418.960000pt;}
.y6f{bottom:420.160000pt;}
.y88{bottom:423.093333pt;}
.ya1{bottom:423.360000pt;}
.y53{bottom:424.026667pt;}
.y37{bottom:426.960000pt;}
.y113{bottom:427.226667pt;}
.yd4{bottom:428.826667pt;}
.yb9{bottom:429.093333pt;}
.y16{bottom:431.093333pt;}
.y13b{bottom:439.093333pt;}
.y6e{bottom:440.293333pt;}
.yec{bottom:443.226667pt;}
.y87{bottom:443.493333pt;}
.y7{bottom:443.893333pt;}
.y52{bottom:444.560000pt;}
.yfd{bottom:447.360000pt;}
.y126{bottom:447.493333pt;}
.y36{bottom:447.760000pt;}
.yd3{bottom:449.360000pt;}
.yb8{bottom:449.626667pt;}
.y15{bottom:451.893333pt;}
.y13a{bottom:460.826667pt;}
.y6d{bottom:461.093333pt;}
.y86{bottom:464.026667pt;}
.ya0{bottom:464.293333pt;}
.y51{bottom:464.960000pt;}
.yfc{bottom:467.893333pt;}
.y35{bottom:468.160000pt;}
.yb7{bottom:469.760000pt;}
.y14{bottom:472.026667pt;}
.y139{bottom:479.760000pt;}
.y6{bottom:480.293333pt;}
.y6c{bottom:481.626667pt;}
.yeb{bottom:483.493333pt;}
.y85{bottom:484.160000pt;}
.y9f{bottom:484.560000pt;}
.y50{bottom:484.826667pt;}
.y112{bottom:487.360000pt;}
.yfb{bottom:488.026667pt;}
.y34{bottom:488.293333pt;}
.yb6{bottom:489.626667pt;}
.yd2{bottom:489.893333pt;}
.y13{bottom:491.893333pt;}
.y138{bottom:499.493333pt;}
.y6b{bottom:501.760000pt;}
.yea{bottom:503.760000pt;}
.y84{bottom:504.293333pt;}
.y4f{bottom:504.960000pt;}
.yfa{bottom:508.160000pt;}
.y125{bottom:508.426667pt;}
.y33{bottom:508.560000pt;}
.y111{bottom:509.493333pt;}
.yb5{bottom:510.026667pt;}
.yd1{bottom:510.426667pt;}
.y12{bottom:512.426667pt;}
.y137{bottom:519.760000pt;}
.y5{bottom:520.960000pt;}
.y6a{bottom:522.560000pt;}
.y83{bottom:524.826667pt;}
.y4e{bottom:525.493333pt;}
.y9e{bottom:525.760000pt;}
.y110{bottom:528.293333pt;}
.y32{bottom:528.960000pt;}
.yb4{bottom:530.560000pt;}
.yd0{bottom:531.226667pt;}
.y11{bottom:532.560000pt;}
.y136{bottom:540.560000pt;}
.y69{bottom:543.093333pt;}
.ye9{bottom:544.693333pt;}
.y82{bottom:544.960000pt;}
.y4d{bottom:545.626667pt;}
.y9d{bottom:545.893333pt;}
.y10f{bottom:548.693333pt;}
.y124{bottom:549.493333pt;}
.y31{bottom:549.760000pt;}
.yb3{bottom:551.093333pt;}
.ycf{bottom:551.760000pt;}
.y10{bottom:552.693333pt;}
.y135{bottom:560.693333pt;}
.y4{bottom:562.560000pt;}
.y68{bottom:563.893333pt;}
.ye8{bottom:565.093333pt;}
.y81{bottom:565.760000pt;}
.y4c{bottom:566.026667pt;}
.y9c{bottom:566.693333pt;}
.y10e{bottom:569.226667pt;}
.y30{bottom:570.293333pt;}
.yb2{bottom:571.226667pt;}
.yce{bottom:572.560000pt;}
.yf{bottom:573.493333pt;}
.y134{bottom:581.093333pt;}
.y67{bottom:584.693333pt;}
.ye7{bottom:585.626667pt;}
.y80{bottom:586.293333pt;}
.y4b{bottom:586.560000pt;}
.y9b{bottom:587.226667pt;}
.y10d{bottom:589.760000pt;}
.y2f{bottom:591.093333pt;}
.yb1{bottom:592.026667pt;}
.ycd{bottom:593.360000pt;}
.ye{bottom:593.626667pt;}
.y133{bottom:601.626667pt;}
.y3{bottom:604.560000pt;}
.y66{bottom:605.093333pt;}
.ye6{bottom:606.426667pt;}
.y4a{bottom:607.093333pt;}
.y9a{bottom:608.026667pt;}
.y10c{bottom:610.293333pt;}
.y2e{bottom:610.560000pt;}
.y123{bottom:611.493333pt;}
.yf9{bottom:611.893333pt;}
.yb0{bottom:612.160000pt;}
.ycc{bottom:613.760000pt;}
.yd{bottom:614.160000pt;}
.y132{bottom:622.160000pt;}
.y65{bottom:626.293333pt;}
.ye5{bottom:626.960000pt;}
.y49{bottom:627.493333pt;}
.y99{bottom:628.560000pt;}
.y10b{bottom:630.693333pt;}
.y2d{bottom:632.026667pt;}
.y122{bottom:632.293333pt;}
.yf8{bottom:632.693333pt;}
.yaf{bottom:632.960000pt;}
.yc{bottom:634.293333pt;}
.ycb{bottom:634.560000pt;}
.y131{bottom:642.293333pt;}
.y64{bottom:646.693333pt;}
.ye4{bottom:647.093333pt;}
.y48{bottom:648.026667pt;}
.y98{bottom:649.360000pt;}
.y2{bottom:650.560000pt;}
.y10a{bottom:651.226667pt;}
.y2c{bottom:652.826667pt;}
.yae{bottom:653.093333pt;}
.yca{bottom:655.360000pt;}
.y130{bottom:662.693333pt;}
.y63{bottom:667.493333pt;}
.ye3{bottom:668.160000pt;}
.y47{bottom:668.560000pt;}
.y7f{bottom:669.093333pt;}
.y97{bottom:669.760000pt;}
.y109{bottom:671.360000pt;}
.y2b{bottom:673.626667pt;}
.y121{bottom:673.893333pt;}
.yf7{bottom:674.293333pt;}
.yc9{bottom:676.560000pt;}
.y12f{bottom:683.226667pt;}
.y1{bottom:688.293333pt;}
.y46{bottom:688.693333pt;}
.y26{bottom:689.893333pt;}
.y96{bottom:690.293333pt;}
.y108{bottom:691.893333pt;}
.y2a{bottom:694.160000pt;}
.yad{bottom:694.426667pt;}
.yb{bottom:694.693333pt;}
.yc8{bottom:696.960000pt;}
.yac{bottom:698.960000pt;}
.y12e{bottom:699.893333pt;}
.y62{bottom:704.960000pt;}
.y7d{bottom:705.626667pt;}
.y7e{bottom:706.293333pt;}
.y107{bottom:708.826667pt;}
.yc7{bottom:711.093333pt;}
.y45{bottom:711.360000pt;}
.y120{bottom:711.760000pt;}
.y25{bottom:712.693333pt;}
.yf6{bottom:714.560000pt;}
.ye2{bottom:718.160000pt;}
.y24{bottom:732.826667pt;}
.hd{height:21.328125pt;}
.he{height:35.546875pt;}
.h5{height:36.484375pt;}
.h8{height:37.415551pt;}
.h3{height:46.213542pt;}
.h14{height:48.645833pt;}
.h6{height:53.320312pt;}
.hb{height:53.510417pt;}
.h13{height:56.875000pt;}
.hf{height:58.652344pt;}
.h7{height:63.239583pt;}
.h11{height:64.667969pt;}
.h9{height:71.093750pt;}
.h12{height:72.871094pt;}
.h10{height:72.968750pt;}
.h2{height:75.401042pt;}
.ha{height:108.000000pt;}
.hc{height:126.479167pt;}
.h4{height:142.000000pt;}
.h0{height:827.866667pt;}
.h1{height:828.000000pt;}
.w2{width:610.533333pt;}
.w3{width:610.666667pt;}
.w0{width:619.200000pt;}
.w1{width:619.333333pt;}
.x0{left:0.000000pt;}
.x3{left:139.200000pt;}
.xe{left:140.133333pt;}
.xf{left:141.066667pt;}
.x10{left:142.000000pt;}
.x2b{left:143.600000pt;}
.x2a{left:144.666667pt;}
.x29{left:145.600000pt;}
.x28{left:146.533333pt;}
.x27{left:147.466667pt;}
.x26{left:148.400000pt;}
.x5{left:149.466667pt;}
.x1c{left:150.400000pt;}
.x1b{left:151.333333pt;}
.x1a{left:152.400000pt;}
.x2d{left:153.600000pt;}
.x20{left:154.533333pt;}
.x1f{left:155.600000pt;}
.x22{left:157.200000pt;}
.x23{left:158.133333pt;}
.x2{left:159.066667pt;}
.x35{left:160.000000pt;}
.x34{left:160.933333pt;}
.x17{left:162.800000pt;}
.x6{left:164.533333pt;}
.x11{left:167.066667pt;}
.x2c{left:168.266667pt;}
.x2e{left:176.933333pt;}
.x32{left:179.200000pt;}
.x21{left:180.800000pt;}
.x36{left:183.333333pt;}
.x1{left:184.933333pt;}
.x18{left:188.133333pt;}
.x4{left:204.800000pt;}
.x8{left:207.333333pt;}
.x7{left:251.200000pt;}
.xd{left:252.133333pt;}
.x9{left:268.133333pt;}
.xa{left:275.866667pt;}
.xb{left:280.933333pt;}
.x37{left:282.800000pt;}
.x30{left:287.333333pt;}
.x25{left:291.466667pt;}
.x31{left:293.200000pt;}
.x1e{left:294.400000pt;}
.x2f{left:295.333333pt;}
.x24{left:296.666667pt;}
.x33{left:299.466667pt;}
.x38{left:302.800000pt;}
.x19{left:306.533333pt;}
.xc{left:310.133333pt;}
.x1d{left:334.400000pt;}
.x13{left:342.400000pt;}
.x12{left:350.666667pt;}
.x15{left:608.666667pt;}
.x14{left:613.733333pt;}
.x16{left:618.266667pt;}
}




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