
    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_6b4b68013c610b4a2042eed4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c901cc7fe8e100a516513d3a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0dbd25fdb7ad522ac6ccd72d.woff2')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_e334daa956f51c61c8b839c6.woff2')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_875f0667869c6797b81574a3.woff2')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_472fa5d86938b41f4ea33c2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_88f8e42f44d7cb8a3e380fb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ef57bbe73ce103aac8b89035.woff2')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_9e7b56735bbe729fe17737f9.woff2')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_fbd5681a4900d8c22ea0b944.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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:ffb;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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:ffc;src:url('chunks/assets/font_a64422bf99bc516d4ded32b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854492;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:ffd;src:url('chunks/assets/font_1ad0d752c12f820397163837.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m2{transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262012,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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:45.360000px;}
.ls10{letter-spacing:-2.535648px;}
.lsf{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.002886px;}
.ls9{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014760px;}
.ls0{letter-spacing:0.027360px;}
.lsd{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048240px;}
.lse{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.051120px;}
.ls14{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls1a{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.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;}
}
.wsf{word-spacing:-37.592148px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws2{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.277520px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:-8.625600px;}
.ws9{word-spacing:-8.553600px;}
.ws13{word-spacing:-3.231000px;}
.wsc{word-spacing:-0.068474px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:0.007920px;}
.wsd{word-spacing:2.467174px;}
.ws4{word-spacing:4.304880px;}
.wse{word-spacing:1046.379375px;}
._16{margin-left:-904.237857px;}
._11{margin-left:-377.354106px;}
._f{margin-left:-361.487153px;}
._13{margin-left:-262.602428px;}
._14{margin-left:-258.990111px;}
._15{margin-left:-219.634154px;}
._12{margin-left:-210.471824px;}
._10{margin-left:-5.309547px;}
._17{margin-left:-4.268039px;}
._6{margin-left:-3.186600px;}
._a{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._1{width:1.174152px;}
._3{width:2.204278px;}
._e{width:3.366720px;}
._2{width:4.449000px;}
._b{width:5.651400px;}
._9{width:7.334400px;}
._8{width:8.416800px;}
._4{width:9.438600px;}
._5{width:10.656962px;}
._7{width:12.156237px;}
._d{width:14.571480px;}
._c{width:15.687360px;}
._1a{width:19.478880px;}
._1b{width:20.769120px;}
._1c{width:21.832921px;}
._18{width:198.930095px;}
._19{width:585.576480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:68.473857px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y105{bottom:3.060000px;}
.ya7{bottom:7.830000px;}
.yf1{bottom:7.860000px;}
.ya9{bottom:7.920000px;}
.yc7{bottom:7.950000px;}
.yfb{bottom:8.010000px;}
.y4e{bottom:8.201778px;}
.ye9{bottom:8.910000px;}
.y4d{bottom:21.798898px;}
.y50{bottom:21.798933px;}
.yde{bottom:25.380000px;}
.yd6{bottom:25.470000px;}
.y4f{bottom:32.771557px;}
.yab{bottom:35.190000px;}
.y10a{bottom:35.220000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y109{bottom:113.610000px;}
.y12b{bottom:115.320000px;}
.yd2{bottom:123.150000px;}
.yee{bottom:123.960000px;}
.y5b{bottom:135.120000px;}
.yae{bottom:140.340000px;}
.y87{bottom:140.790000px;}
.y28{bottom:141.600000px;}
.y12a{bottom:142.680000px;}
.y108{bottom:149.160000px;}
.yed{bottom:151.320000px;}
.y5a{bottom:152.670000px;}
.y86{bottom:158.340000px;}
.yd1{bottom:158.790000px;}
.y27{bottom:159.240000px;}
.y129{bottom:170.040000px;}
.y59{bottom:170.310000px;}
.y85{bottom:175.890000px;}
.yad{bottom:175.980000px;}
.y26{bottom:176.790000px;}
.y107{bottom:184.710000px;}
.y58{bottom:187.860000px;}
.y84{bottom:193.530000px;}
.y25{bottom:194.340000px;}
.y128{bottom:197.310000px;}
.yec{bottom:200.010000px;}
.y146{bottom:202.440000px;}
.y83{bottom:211.080000px;}
.yac{bottom:211.530000px;}
.y24{bottom:211.980000px;}
.y57{bottom:214.410000px;}
.y145{bottom:220.080000px;}
.y106{bottom:220.350000px;}
.y127{bottom:224.670000px;}
.yaa{bottom:226.560000px;}
.y82{bottom:228.720000px;}
.y23{bottom:229.530000px;}
.yd0{bottom:229.890000px;}
.yeb{bottom:235.560000px;}
.y144{bottom:237.630000px;}
.y104{bottom:244.290000px;}
.ycf{bottom:244.920000px;}
.y56{bottom:247.080000px;}
.yea{bottom:250.590000px;}
.y126{bottom:252.030000px;}
.ya8{bottom:253.830000px;}
.y81{bottom:255.270000px;}
.y143{bottom:264.270000px;}
.y22{bottom:265.170000px;}
.yce{bottom:272.190000px;}
.ye8{bottom:277.950000px;}
.ya6{bottom:281.190000px;}
.y55{bottom:282.630000px;}
.y21{bottom:282.720000px;}
.y80{bottom:290.820000px;}
.ycd{bottom:299.550000px;}
.y54{bottom:300.180000px;}
.y20{bottom:300.270000px;}
.y125{bottom:300.720000px;}
.y142{bottom:308.370000px;}
.y7f{bottom:308.460000px;}
.y53{bottom:317.820000px;}
.y1f{bottom:317.910000px;}
.y116{bottom:323.490000px;}
.ycc{bottom:326.910000px;}
.y124{bottom:327.270000px;}
.ye7{bottom:327.720000px;}
.ya5{bottom:329.880000px;}
.y141{bottom:335.010000px;}
.y1e{bottom:335.460000px;}
.y115{bottom:338.520000px;}
.y7e{bottom:344.010000px;}
.y52{bottom:344.370000px;}
.y140{bottom:352.560000px;}
.y1d{bottom:353.100000px;}
.ycb{bottom:354.270000px;}
.ya4{bottom:356.520000px;}
.y7d{bottom:362.370000px;}
.y123{bottom:362.910000px;}
.y114{bottom:365.880000px;}
.y13f{bottom:370.200000px;}
.y4c{bottom:376.574959px;}
.y1c{bottom:380.010000px;}
.y7c{bottom:380.820000px;}
.yca{bottom:381.540000px;}
.ye6{bottom:389.910000px;}
.ya3{bottom:392.430000px;}
.y113{bottom:393.150000px;}
.y122{bottom:395.130000px;}
.y13e{bottom:397.110000px;}
.y51{bottom:399.090000px;}
.y7b{bottom:399.270000px;}
.yc9{bottom:408.900000px;}
.ye5{bottom:413.850000px;}
.y7a{bottom:417.630000px;}
.y112{bottom:420.510000px;}
.y1b{bottom:428.250000px;}
.yc8{bottom:436.260000px;}
.ya2{bottom:437.430000px;}
.y79{bottom:445.080000px;}
.y13d{bottom:445.350000px;}
.y1a{bottom:446.160000px;}
.y4b{bottom:447.510000px;}
.y111{bottom:447.870000px;}
.yc6{bottom:463.530000px;}
.y4a{bottom:465.060000px;}
.y13c{bottom:472.290000px;}
.y110{bottom:475.170000px;}
.y78{bottom:477.690000px;}
.y49{bottom:482.730000px;}
.y19{bottom:483.180000px;}
.yc5{bottom:490.920000px;}
.ya1{bottom:492.900000px;}
.y48{bottom:500.280000px;}
.y18{bottom:500.820000px;}
.y13b{bottom:509.640000px;}
.ya0{bottom:510.540000px;}
.y77{bottom:513.330000px;}
.y47{bottom:517.830000px;}
.yc4{bottom:518.280000px;}
.y17{bottom:518.370000px;}
.y10f{bottom:523.950000px;}
.y9f{bottom:528.090000px;}
.y76{bottom:530.880000px;}
.y103{bottom:535.020000px;}
.y46{bottom:535.470000px;}
.y16{bottom:535.920000px;}
.yc3{bottom:545.640000px;}
.y75{bottom:548.430000px;}
.y102{bottom:549.960000px;}
.y10e{bottom:550.500000px;}
.y45{bottom:553.020000px;}
.y15{bottom:553.560000px;}
.y9e{bottom:554.640000px;}
.y13a{bottom:557.880000px;}
.y74{bottom:566.070000px;}
.y14{bottom:571.110000px;}
.yc2{bottom:572.910000px;}
.y139{bottom:575.520000px;}
.y101{bottom:577.410000px;}
.y44{bottom:579.660000px;}
.y73{bottom:583.620000px;}
.y10d{bottom:586.050000px;}
.y13{bottom:588.750000px;}
.y9d{bottom:590.280000px;}
.y138{bottom:593.070000px;}
.yc1{bottom:600.270000px;}
.y72{bottom:601.260000px;}
.y100{bottom:604.860000px;}
.y12{bottom:606.300000px;}
.y137{bottom:610.620000px;}
.y43{bottom:615.210000px;}
.y9c{bottom:616.830000px;}
.y10c{bottom:618.270000px;}
.y71{bottom:618.810000px;}
.y11{bottom:623.850000px;}
.yc0{bottom:627.630000px;}
.y136{bottom:628.260000px;}
.yff{bottom:632.310000px;}
.y42{bottom:632.760000px;}
.y121{bottom:634.740000px;}
.ye4{bottom:636.270000px;}
.y70{bottom:636.360000px;}
.y10{bottom:641.490000px;}
.y135{bottom:645.810000px;}
.y120{bottom:649.680000px;}
.y41{bottom:650.400000px;}
.ye3{bottom:651.210000px;}
.y9b{bottom:652.380000px;}
.ybf{bottom:654.990000px;}
.yf{bottom:659.040000px;}
.yfe{bottom:659.670000px;}
.y6f{bottom:663.000000px;}
.y40{bottom:667.950000px;}
.y9a{bottom:670.020000px;}
.y134{bottom:672.720000px;}
.ye{bottom:676.680000px;}
.y11f{bottom:677.040000px;}
.ye2{bottom:678.570000px;}
.ybe{bottom:682.260000px;}
.yfd{bottom:687.030000px;}
.yd{bottom:694.230000px;}
.y3f{bottom:694.590000px;}
.y99{bottom:696.570000px;}
.y6e{bottom:698.550000px;}
.y11e{bottom:704.400000px;}
.ye1{bottom:705.840000px;}
.ybd{bottom:709.620000px;}
.yfc{bottom:714.300000px;}
.y133{bottom:720.960000px;}
.yc{bottom:721.140000px;}
.y3e{bottom:730.140000px;}
.y11d{bottom:731.760000px;}
.y98{bottom:732.210000px;}
.ye0{bottom:733.200000px;}
.y6d{bottom:734.190000px;}
.ybc{bottom:736.980000px;}
.y132{bottom:738.600000px;}
.yfa{bottom:741.660000px;}
.y3d{bottom:747.690000px;}
.y97{bottom:749.760000px;}
.y131{bottom:756.150000px;}
.y11c{bottom:759.030000px;}
.ydf{bottom:760.560000px;}
.ybb{bottom:764.250000px;}
.y3c{bottom:765.330000px;}
.y96{bottom:767.310000px;}
.yb{bottom:769.380000px;}
.y6c{bottom:773.520000px;}
.y130{bottom:773.790000px;}
.y3b{bottom:782.880000px;}
.y95{bottom:784.950000px;}
.y11b{bottom:786.390000px;}
.y6b{bottom:787.290000px;}
.ydd{bottom:787.920000px;}
.yf9{bottom:790.530000px;}
.y12f{bottom:791.340000px;}
.yba{bottom:791.610000px;}
.y3a{bottom:800.520000px;}
.y6a{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.y12e{bottom:808.890000px;}
.y39{bottom:818.070000px;}
.yb9{bottom:818.970000px;}
.y94{bottom:820.500000px;}
.y69{bottom:822.480000px;}
.yf8{bottom:826.080000px;}
.y12d{bottom:826.530000px;}
.y11a{bottom:835.080000px;}
.y38{bottom:835.620000px;}
.y68{bottom:840.030000px;}
.yf7{bottom:841.020000px;}
.y9{bottom:841.200000px;}
.y12c{bottom:844.080000px;}
.yb8{bottom:846.330000px;}
.y14d{bottom:849.030000px;}
.y37{bottom:853.260000px;}
.y10b{bottom:853.440000px;}
.ydc{bottom:854.160000px;}
.y93{bottom:856.140000px;}
.y67{bottom:857.670000px;}
.y119{bottom:861.720000px;}
.y14c{bottom:866.670000px;}
.yf6{bottom:868.380000px;}
.yb7{bottom:873.600000px;}
.y66{bottom:875.220000px;}
.ydb{bottom:878.100000px;}
.y36{bottom:879.810000px;}
.y8{bottom:880.980000px;}
.y14b{bottom:884.220000px;}
.y92{bottom:891.690000px;}
.yf5{bottom:895.740000px;}
.y118{bottom:897.270000px;}
.y7{bottom:898.980000px;}
.yb6{bottom:900.960000px;}
.y65{bottom:901.860000px;}
.yda{bottom:905.460000px;}
.y91{bottom:909.240000px;}
.y14a{bottom:910.860000px;}
.y35{bottom:915.720000px;}
.y6{bottom:916.980000px;}
.yf4{bottom:923.100000px;}
.y90{bottom:926.880000px;}
.yb5{bottom:928.320000px;}
.y149{bottom:928.410000px;}
.y117{bottom:929.490000px;}
.yd9{bottom:932.820000px;}
.y64{bottom:937.410000px;}
.y8f{bottom:944.430000px;}
.y5{bottom:949.290000px;}
.yf3{bottom:950.370000px;}
.y63{bottom:954.960000px;}
.yb4{bottom:955.680000px;}
.yd8{bottom:960.180000px;}
.y34{bottom:963.960000px;}
.y8e{bottom:970.980000px;}
.y62{bottom:972.600000px;}
.yf2{bottom:977.730000px;}
.y33{bottom:981.600000px;}
.yb3{bottom:982.950000px;}
.yd7{bottom:987.450000px;}
.y4{bottom:987.630000px;}
.y61{bottom:990.150000px;}
.y32{bottom:999.150000px;}
.y8d{bottom:1003.650000px;}
.yf0{bottom:1005.090000px;}
.y60{bottom:1007.790000px;}
.yb2{bottom:1010.340000px;}
.y3{bottom:1012.320000px;}
.yd5{bottom:1014.840000px;}
.y31{bottom:1016.820000px;}
.y5f{bottom:1025.370000px;}
.yef{bottom:1032.390000px;}
.y30{bottom:1034.370000px;}
.yb0{bottom:1037.700000px;}
.y8c{bottom:1039.140000px;}
.y5e{bottom:1042.920000px;}
.y2f{bottom:1051.920000px;}
.y8b{bottom:1057.590000px;}
.y5d{bottom:1060.560000px;}
.y148{bottom:1060.920000px;}
.yb1{bottom:1064.970000px;}
.y8a{bottom:1076.040000px;}
.y147{bottom:1078.560000px;}
.yd4{bottom:1081.170000px;}
.y5c{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y89{bottom:1094.400000px;}
.y2d{bottom:1105.110000px;}
.yd3{bottom:1107.720000px;}
.y88{bottom:1112.850000px;}
.yaf{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h19{height:26.580000px;}
.h11{height:26.640000px;}
.h13{height:26.670000px;}
.h1a{height:26.730000px;}
.h18{height:27.630000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h15{height:44.100000px;}
.h14{height:44.190000px;}
.ha{height:49.499180px;}
.h7{height:50.902383px;}
.h12{height:53.910000px;}
.h1c{height:53.940000px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.hd{height:61.793886px;}
.h9{height:62.585859px;}
.h17{height:65.526152px;}
.hb{height:67.203346px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:91.222383px;}
.he{height:96.027539px;}
.h16{height:200.280000px;}
.h1b{height:268.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:44.190000px;}
.wa{width:52.200000px;}
.w10{width:52.650000px;}
.w13{width:59.670000px;}
.w9{width:67.680000px;}
.w6{width:76.050000px;}
.w8{width:84.240000px;}
.w1b{width:97.500000px;}
.w1c{width:102.780000px;}
.w12{width:103.080000px;}
.w23{width:104.670000px;}
.w15{width:105.120000px;}
.w5{width:134.730000px;}
.w27{width:138.690000px;}
.w7{width:145.470000px;}
.wd{width:147.810000px;}
.we{width:158.490000px;}
.w11{width:169.110000px;}
.w14{width:170.670000px;}
.w25{width:171.810000px;}
.w1f{width:171.900000px;}
.w1a{width:171.990000px;}
.wb{width:196.560000px;}
.w1d{width:201.000000px;}
.w28{width:253.710000px;}
.wc{width:307.020000px;}
.w3{width:331.946995px;}
.w16{width:363.810000px;}
.w20{width:373.620000px;}
.w1e{width:373.710000px;}
.w19{width:377.220000px;}
.w21{width:377.490000px;}
.w17{width:391.170000px;}
.w18{width:404.220000px;}
.w26{width:418.980000px;}
.w22{width:419.070000px;}
.w24{width:419.100000px;}
.wf{width:504.390000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.650000px;}
.x18{left:14.040000px;}
.x8{left:22.593082px;}
.x16{left:57.870000px;}
.x1{left:68.040000px;}
.xb{left:95.039987px;}
.x38{left:109.800000px;}
.x3a{left:111.239987px;}
.x2b{left:138.959987px;}
.x30{left:150.750000px;}
.x34{left:167.430000px;}
.xf{left:168.510000px;}
.x2c{left:184.350000px;}
.x2{left:192.719987px;}
.x7{left:195.870172px;}
.x33{left:200.099987px;}
.x24{left:206.130000px;}
.x2f{left:211.619987px;}
.x11{left:213.510000px;}
.xa{left:220.349987px;}
.x37{left:237.899987px;}
.xd{left:250.229987px;}
.x6{left:254.874040px;}
.x23{left:258.689987px;}
.x26{left:259.770000px;}
.x1d{left:278.130000px;}
.x4{left:280.694980px;}
.x1a{left:283.440000px;}
.x25{left:296.490000px;}
.x5{left:302.124788px;}
.xc{left:321.509987px;}
.x1b{left:336.900000px;}
.x1e{left:338.610000px;}
.x2a{left:345.450000px;}
.x12{left:349.050000px;}
.x28{left:354.810000px;}
.x20{left:363.270000px;}
.x22{left:391.170000px;}
.x17{left:418.260000px;}
.x13{left:425.910000px;}
.x21{left:433.290000px;}
.x29{left:446.970000px;}
.xe{left:473.069987px;}
.x1c{left:506.730000px;}
.x1f{left:510.000000px;}
.x27{left:530.700000px;}
.x19{left:566.790000px;}
.x31{left:570.660000px;}
.x14{left:572.190000px;}
.x35{left:587.220000px;}
.x2d{left:604.230000px;}
.x9{left:612.689987px;}
.x15{left:657.150000px;}
.x36{left:697.559987px;}
.x39{left:720.059987px;}
.x32{left:726.809987px;}
.x2e{left:734.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:40.320000pt;}
.ls10{letter-spacing:-2.253909pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.002565pt;}
.ls9{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.013120pt;}
.ls0{letter-spacing:0.024320pt;}
.lsd{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.042880pt;}
.lse{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.045440pt;}
.ls14{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.wsf{word-spacing:-33.415242pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws2{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.802240pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:-7.667200pt;}
.ws9{word-spacing:-7.603200pt;}
.ws13{word-spacing:-2.872000pt;}
.wsc{word-spacing:-0.060866pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:0.007040pt;}
.wsd{word-spacing:2.193043pt;}
.ws4{word-spacing:3.826560pt;}
.wse{word-spacing:930.115000pt;}
._16{margin-left:-803.766984pt;}
._11{margin-left:-335.425872pt;}
._f{margin-left:-321.321913pt;}
._13{margin-left:-233.424381pt;}
._14{margin-left:-230.213432pt;}
._15{margin-left:-195.230359pt;}
._12{margin-left:-187.086066pt;}
._10{margin-left:-4.719598pt;}
._17{margin-left:-3.793812pt;}
._6{margin-left:-2.832534pt;}
._a{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043691pt;}
._3{width:1.959358pt;}
._e{width:2.992640pt;}
._2{width:3.954667pt;}
._b{width:5.023467pt;}
._9{width:6.519466pt;}
._8{width:7.481600pt;}
._4{width:8.389866pt;}
._5{width:9.472855pt;}
._7{width:10.805544pt;}
._d{width:12.952427pt;}
._c{width:13.944320pt;}
._1a{width:17.314560pt;}
._1b{width:18.461440pt;}
._1c{width:19.407041pt;}
._18{width:176.826751pt;}
._19{width:520.512427pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:60.865651pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.720000pt;}
.ya7{bottom:6.960000pt;}
.yf1{bottom:6.986667pt;}
.ya9{bottom:7.040000pt;}
.yc7{bottom:7.066667pt;}
.yfb{bottom:7.120000pt;}
.y4e{bottom:7.290469pt;}
.ye9{bottom:7.920000pt;}
.y4d{bottom:19.376799pt;}
.y50{bottom:19.376829pt;}
.yde{bottom:22.560000pt;}
.yd6{bottom:22.640000pt;}
.y4f{bottom:29.130273pt;}
.yab{bottom:31.280000pt;}
.y10a{bottom:31.306667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y109{bottom:100.986667pt;}
.y12b{bottom:102.506667pt;}
.yd2{bottom:109.466667pt;}
.yee{bottom:110.186667pt;}
.y5b{bottom:120.106667pt;}
.yae{bottom:124.746667pt;}
.y87{bottom:125.146667pt;}
.y28{bottom:125.866667pt;}
.y12a{bottom:126.826667pt;}
.y108{bottom:132.586667pt;}
.yed{bottom:134.506667pt;}
.y5a{bottom:135.706667pt;}
.y86{bottom:140.746667pt;}
.yd1{bottom:141.146667pt;}
.y27{bottom:141.546667pt;}
.y129{bottom:151.146667pt;}
.y59{bottom:151.386667pt;}
.y85{bottom:156.346667pt;}
.yad{bottom:156.426667pt;}
.y26{bottom:157.146667pt;}
.y107{bottom:164.186667pt;}
.y58{bottom:166.986667pt;}
.y84{bottom:172.026667pt;}
.y25{bottom:172.746667pt;}
.y128{bottom:175.386667pt;}
.yec{bottom:177.786667pt;}
.y146{bottom:179.946667pt;}
.y83{bottom:187.626667pt;}
.yac{bottom:188.026667pt;}
.y24{bottom:188.426667pt;}
.y57{bottom:190.586667pt;}
.y145{bottom:195.626667pt;}
.y106{bottom:195.866667pt;}
.y127{bottom:199.706667pt;}
.yaa{bottom:201.386667pt;}
.y82{bottom:203.306667pt;}
.y23{bottom:204.026667pt;}
.yd0{bottom:204.346667pt;}
.yeb{bottom:209.386667pt;}
.y144{bottom:211.226667pt;}
.y104{bottom:217.146667pt;}
.ycf{bottom:217.706667pt;}
.y56{bottom:219.626667pt;}
.yea{bottom:222.746667pt;}
.y126{bottom:224.026667pt;}
.ya8{bottom:225.626667pt;}
.y81{bottom:226.906667pt;}
.y143{bottom:234.906667pt;}
.y22{bottom:235.706667pt;}
.yce{bottom:241.946667pt;}
.ye8{bottom:247.066667pt;}
.ya6{bottom:249.946667pt;}
.y55{bottom:251.226667pt;}
.y21{bottom:251.306667pt;}
.y80{bottom:258.506667pt;}
.ycd{bottom:266.266667pt;}
.y54{bottom:266.826667pt;}
.y20{bottom:266.906667pt;}
.y125{bottom:267.306667pt;}
.y142{bottom:274.106667pt;}
.y7f{bottom:274.186667pt;}
.y53{bottom:282.506667pt;}
.y1f{bottom:282.586667pt;}
.y116{bottom:287.546667pt;}
.ycc{bottom:290.586667pt;}
.y124{bottom:290.906667pt;}
.ye7{bottom:291.306667pt;}
.ya5{bottom:293.226667pt;}
.y141{bottom:297.786667pt;}
.y1e{bottom:298.186667pt;}
.y115{bottom:300.906667pt;}
.y7e{bottom:305.786667pt;}
.y52{bottom:306.106667pt;}
.y140{bottom:313.386667pt;}
.y1d{bottom:313.866667pt;}
.ycb{bottom:314.906667pt;}
.ya4{bottom:316.906667pt;}
.y7d{bottom:322.106667pt;}
.y123{bottom:322.586667pt;}
.y114{bottom:325.226667pt;}
.y13f{bottom:329.066667pt;}
.y4c{bottom:334.733297pt;}
.y1c{bottom:337.786667pt;}
.y7c{bottom:338.506667pt;}
.yca{bottom:339.146667pt;}
.ye6{bottom:346.586667pt;}
.ya3{bottom:348.826667pt;}
.y113{bottom:349.466667pt;}
.y122{bottom:351.226667pt;}
.y13e{bottom:352.986667pt;}
.y51{bottom:354.746667pt;}
.y7b{bottom:354.906667pt;}
.yc9{bottom:363.466667pt;}
.ye5{bottom:367.866667pt;}
.y7a{bottom:371.226667pt;}
.y112{bottom:373.786667pt;}
.y1b{bottom:380.666667pt;}
.yc8{bottom:387.786667pt;}
.ya2{bottom:388.826667pt;}
.y79{bottom:395.626667pt;}
.y13d{bottom:395.866667pt;}
.y1a{bottom:396.586667pt;}
.y4b{bottom:397.786667pt;}
.y111{bottom:398.106667pt;}
.yc6{bottom:412.026667pt;}
.y4a{bottom:413.386667pt;}
.y13c{bottom:419.813333pt;}
.y110{bottom:422.373333pt;}
.y78{bottom:424.613333pt;}
.y49{bottom:429.093333pt;}
.y19{bottom:429.493333pt;}
.yc5{bottom:436.373333pt;}
.ya1{bottom:438.133333pt;}
.y48{bottom:444.693333pt;}
.y18{bottom:445.173333pt;}
.y13b{bottom:453.013333pt;}
.ya0{bottom:453.813333pt;}
.y77{bottom:456.293333pt;}
.y47{bottom:460.293333pt;}
.yc4{bottom:460.693333pt;}
.y17{bottom:460.773333pt;}
.y10f{bottom:465.733333pt;}
.y9f{bottom:469.413333pt;}
.y76{bottom:471.893333pt;}
.y103{bottom:475.573333pt;}
.y46{bottom:475.973333pt;}
.y16{bottom:476.373333pt;}
.yc3{bottom:485.013333pt;}
.y75{bottom:487.493333pt;}
.y102{bottom:488.853333pt;}
.y10e{bottom:489.333333pt;}
.y45{bottom:491.573333pt;}
.y15{bottom:492.053333pt;}
.y9e{bottom:493.013333pt;}
.y13a{bottom:495.893333pt;}
.y74{bottom:503.173333pt;}
.y14{bottom:507.653333pt;}
.yc2{bottom:509.253333pt;}
.y139{bottom:511.573333pt;}
.y101{bottom:513.253333pt;}
.y44{bottom:515.253333pt;}
.y73{bottom:518.773333pt;}
.y10d{bottom:520.933333pt;}
.y13{bottom:523.333333pt;}
.y9d{bottom:524.693333pt;}
.y138{bottom:527.173333pt;}
.yc1{bottom:533.573333pt;}
.y72{bottom:534.453333pt;}
.y100{bottom:537.653333pt;}
.y12{bottom:538.933333pt;}
.y137{bottom:542.773333pt;}
.y43{bottom:546.853333pt;}
.y9c{bottom:548.293333pt;}
.y10c{bottom:549.573333pt;}
.y71{bottom:550.053333pt;}
.y11{bottom:554.533333pt;}
.yc0{bottom:557.893333pt;}
.y136{bottom:558.453333pt;}
.yff{bottom:562.053333pt;}
.y42{bottom:562.453333pt;}
.y121{bottom:564.213333pt;}
.ye4{bottom:565.573333pt;}
.y70{bottom:565.653333pt;}
.y10{bottom:570.213333pt;}
.y135{bottom:574.053333pt;}
.y120{bottom:577.493333pt;}
.y41{bottom:578.133333pt;}
.ye3{bottom:578.853333pt;}
.y9b{bottom:579.893333pt;}
.ybf{bottom:582.213333pt;}
.yf{bottom:585.813333pt;}
.yfe{bottom:586.373333pt;}
.y6f{bottom:589.333333pt;}
.y40{bottom:593.733333pt;}
.y9a{bottom:595.573333pt;}
.y134{bottom:597.973333pt;}
.ye{bottom:601.493333pt;}
.y11f{bottom:601.813333pt;}
.ye2{bottom:603.173333pt;}
.ybe{bottom:606.453333pt;}
.yfd{bottom:610.693333pt;}
.yd{bottom:617.093333pt;}
.y3f{bottom:617.413333pt;}
.y99{bottom:619.173333pt;}
.y6e{bottom:620.933333pt;}
.y11e{bottom:626.133333pt;}
.ye1{bottom:627.413333pt;}
.ybd{bottom:630.773333pt;}
.yfc{bottom:634.933333pt;}
.y133{bottom:640.853333pt;}
.yc{bottom:641.013333pt;}
.y3e{bottom:649.013333pt;}
.y11d{bottom:650.453333pt;}
.y98{bottom:650.853333pt;}
.ye0{bottom:651.733333pt;}
.y6d{bottom:652.613333pt;}
.ybc{bottom:655.093333pt;}
.y132{bottom:656.533333pt;}
.yfa{bottom:659.253333pt;}
.y3d{bottom:664.613333pt;}
.y97{bottom:666.453333pt;}
.y131{bottom:672.133333pt;}
.y11c{bottom:674.693333pt;}
.ydf{bottom:676.053333pt;}
.ybb{bottom:679.333333pt;}
.y3c{bottom:680.293333pt;}
.y96{bottom:682.053333pt;}
.yb{bottom:683.893333pt;}
.y6c{bottom:687.573333pt;}
.y130{bottom:687.813333pt;}
.y3b{bottom:695.893333pt;}
.y95{bottom:697.733333pt;}
.y11b{bottom:699.013333pt;}
.y6b{bottom:699.813333pt;}
.ydd{bottom:700.373333pt;}
.yf9{bottom:702.693333pt;}
.y12f{bottom:703.413333pt;}
.yba{bottom:703.653333pt;}
.y3a{bottom:711.573333pt;}
.y6a{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.y12e{bottom:719.013333pt;}
.y39{bottom:727.173333pt;}
.yb9{bottom:727.973333pt;}
.y94{bottom:729.333333pt;}
.y69{bottom:731.093333pt;}
.yf8{bottom:734.293333pt;}
.y12d{bottom:734.693333pt;}
.y11a{bottom:742.293333pt;}
.y38{bottom:742.773333pt;}
.y68{bottom:746.693333pt;}
.yf7{bottom:747.573333pt;}
.y9{bottom:747.733333pt;}
.y12c{bottom:750.293333pt;}
.yb8{bottom:752.293333pt;}
.y14d{bottom:754.693333pt;}
.y37{bottom:758.453333pt;}
.y10b{bottom:758.613333pt;}
.ydc{bottom:759.253333pt;}
.y93{bottom:761.013333pt;}
.y67{bottom:762.373333pt;}
.y119{bottom:765.973333pt;}
.y14c{bottom:770.373333pt;}
.yf6{bottom:771.893333pt;}
.yb7{bottom:776.533333pt;}
.y66{bottom:777.973333pt;}
.ydb{bottom:780.533333pt;}
.y36{bottom:782.053333pt;}
.y8{bottom:783.093333pt;}
.y14b{bottom:785.973333pt;}
.y92{bottom:792.613333pt;}
.yf5{bottom:796.213333pt;}
.y118{bottom:797.573333pt;}
.y7{bottom:799.093333pt;}
.yb6{bottom:800.853333pt;}
.y65{bottom:801.653333pt;}
.yda{bottom:804.853333pt;}
.y91{bottom:808.213333pt;}
.y14a{bottom:809.653333pt;}
.y35{bottom:813.973333pt;}
.y6{bottom:815.093333pt;}
.yf4{bottom:820.533333pt;}
.y90{bottom:823.893333pt;}
.yb5{bottom:825.173333pt;}
.y149{bottom:825.253333pt;}
.y117{bottom:826.213333pt;}
.yd9{bottom:829.173333pt;}
.y64{bottom:833.253333pt;}
.y8f{bottom:839.493333pt;}
.y5{bottom:843.813333pt;}
.yf3{bottom:844.773333pt;}
.y63{bottom:848.853333pt;}
.yb4{bottom:849.493333pt;}
.yd8{bottom:853.493333pt;}
.y34{bottom:856.853333pt;}
.y8e{bottom:863.093333pt;}
.y62{bottom:864.533333pt;}
.yf2{bottom:869.093333pt;}
.y33{bottom:872.533333pt;}
.yb3{bottom:873.733333pt;}
.yd7{bottom:877.733333pt;}
.y4{bottom:877.893333pt;}
.y61{bottom:880.133333pt;}
.y32{bottom:888.133333pt;}
.y8d{bottom:892.133333pt;}
.yf0{bottom:893.413333pt;}
.y60{bottom:895.813333pt;}
.yb2{bottom:898.080000pt;}
.y3{bottom:899.840000pt;}
.yd5{bottom:902.080000pt;}
.y31{bottom:903.840000pt;}
.y5f{bottom:911.440000pt;}
.yef{bottom:917.680000pt;}
.y30{bottom:919.440000pt;}
.yb0{bottom:922.400000pt;}
.y8c{bottom:923.680000pt;}
.y5e{bottom:927.040000pt;}
.y2f{bottom:935.040000pt;}
.y8b{bottom:940.080000pt;}
.y5d{bottom:942.720000pt;}
.y148{bottom:943.040000pt;}
.yb1{bottom:946.640000pt;}
.y8a{bottom:956.480000pt;}
.y147{bottom:958.720000pt;}
.yd4{bottom:961.040000pt;}
.y5c{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y89{bottom:972.800000pt;}
.y2d{bottom:982.320000pt;}
.yd3{bottom:984.640000pt;}
.y88{bottom:989.200000pt;}
.yaf{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h19{height:23.626667pt;}
.h11{height:23.680000pt;}
.h13{height:23.706667pt;}
.h1a{height:23.760000pt;}
.h18{height:24.560000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h15{height:39.200000pt;}
.h14{height:39.280000pt;}
.ha{height:43.999272pt;}
.h7{height:45.246562pt;}
.h12{height:47.920000pt;}
.h1c{height:47.946667pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.hd{height:54.927899pt;}
.h9{height:55.631875pt;}
.h17{height:58.245469pt;}
.hb{height:59.736308pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:81.086563pt;}
.he{height:85.357812pt;}
.h16{height:178.026667pt;}
.h1b{height:238.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:39.280000pt;}
.wa{width:46.400000pt;}
.w10{width:46.800000pt;}
.w13{width:53.040000pt;}
.w9{width:60.160000pt;}
.w6{width:67.600000pt;}
.w8{width:74.880000pt;}
.w1b{width:86.666667pt;}
.w1c{width:91.360000pt;}
.w12{width:91.626667pt;}
.w23{width:93.040000pt;}
.w15{width:93.440000pt;}
.w5{width:119.760000pt;}
.w27{width:123.280000pt;}
.w7{width:129.306667pt;}
.wd{width:131.386667pt;}
.we{width:140.880000pt;}
.w11{width:150.320000pt;}
.w14{width:151.706667pt;}
.w25{width:152.720000pt;}
.w1f{width:152.800000pt;}
.w1a{width:152.880000pt;}
.wb{width:174.720000pt;}
.w1d{width:178.666667pt;}
.w28{width:225.520000pt;}
.wc{width:272.906667pt;}
.w3{width:295.063995pt;}
.w16{width:323.386667pt;}
.w20{width:332.106667pt;}
.w1e{width:332.186667pt;}
.w19{width:335.306667pt;}
.w21{width:335.546667pt;}
.w17{width:347.706667pt;}
.w18{width:359.306667pt;}
.w26{width:372.426667pt;}
.w22{width:372.506667pt;}
.w24{width:372.533333pt;}
.wf{width:448.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.800000pt;}
.x18{left:12.480000pt;}
.x8{left:20.082739pt;}
.x16{left:51.440000pt;}
.x1{left:60.480000pt;}
.xb{left:84.479988pt;}
.x38{left:97.600000pt;}
.x3a{left:98.879988pt;}
.x2b{left:123.519988pt;}
.x30{left:134.000000pt;}
.x34{left:148.826667pt;}
.xf{left:149.786667pt;}
.x2c{left:163.866667pt;}
.x2{left:171.306655pt;}
.x7{left:174.106820pt;}
.x33{left:177.866655pt;}
.x24{left:183.226667pt;}
.x2f{left:188.106655pt;}
.x11{left:189.786667pt;}
.xa{left:195.866655pt;}
.x37{left:211.466655pt;}
.xd{left:222.426655pt;}
.x6{left:226.554702pt;}
.x23{left:229.946655pt;}
.x26{left:230.906667pt;}
.x1d{left:247.226667pt;}
.x4{left:249.506649pt;}
.x1a{left:251.946667pt;}
.x25{left:263.546667pt;}
.x5{left:268.555368pt;}
.xc{left:285.786655pt;}
.x1b{left:299.466667pt;}
.x1e{left:300.986667pt;}
.x2a{left:307.066667pt;}
.x12{left:310.266667pt;}
.x28{left:315.386667pt;}
.x20{left:322.906667pt;}
.x22{left:347.706667pt;}
.x17{left:371.786667pt;}
.x13{left:378.586667pt;}
.x21{left:385.146667pt;}
.x29{left:397.306667pt;}
.xe{left:420.506655pt;}
.x1c{left:450.426667pt;}
.x1f{left:453.333333pt;}
.x27{left:471.733333pt;}
.x19{left:503.813333pt;}
.x31{left:507.253333pt;}
.x14{left:508.613333pt;}
.x35{left:521.973333pt;}
.x2d{left:537.093333pt;}
.x9{left:544.613322pt;}
.x15{left:584.133333pt;}
.x36{left:620.053322pt;}
.x39{left:640.053322pt;}
.x32{left:646.053322pt;}
.x2e{left:653.013322pt;}
.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; }
  