
    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_9c9c5ff68a3a13bf8665a915.woff2')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_404a8904ca4227e70897eb5e.woff2')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_e81e1b156ecedbae975ec840.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_c8d03530f1e7e6761c91f587.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_07dcdad540f680164c4e8bd7.woff2')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_7ff3d196c451799bb597c6ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08016f1d39fafc11ac71c0dc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3142aae352cc1da41065c792.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_300f6f51d934102a0b96a8fb.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;}
.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;}
.ls15{letter-spacing:-0.966000px;}
.lse{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.150000px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.114600px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.449400px;}
.ls1a{letter-spacing:47.726640px;}
.ls18{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;}
}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.wsb{word-spacing:-10.983000px;}
.wsc{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-9.567600px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-3.847199px;}
._6{margin-left:-2.344800px;}
._0{margin-left:-1.140000px;}
._2{width:1.006728px;}
._5{width:2.721745px;}
._c{width:3.859574px;}
._8{width:5.591400px;}
._b{width:6.607197px;}
._9{width:7.635000px;}
._a{width:8.778001px;}
._10{width:10.157399px;}
._11{width:11.422800px;}
._14{width:14.804832px;}
._e{width:16.433520px;}
._d{width:17.594280px;}
._12{width:18.937800px;}
._13{width:20.200320px;}
._4{width:22.899072px;}
._3{width:24.325200px;}
._f{width:25.935000px;}
._15{width:31.803480px;}
._16{width:33.123840px;}
._1{width:34.306836px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:7.830000px;}
.y60{bottom:7.920000px;}
.yb6{bottom:23.580000px;}
.ye2{bottom:25.470000px;}
.y5c{bottom:40.410000px;}
.yb5{bottom:45.720000px;}
.y5b{bottom:62.460000px;}
.y85{bottom:62.580000px;}
.yb4{bottom:67.770000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.yb3{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.yc1{bottom:116.760000px;}
.yea{bottom:119.640000px;}
.y55{bottom:124.860000px;}
.ya9{bottom:130.620000px;}
.yc0{bottom:134.400000px;}
.ye9{bottom:137.280000px;}
.y112{bottom:137.910000px;}
.y137{bottom:138.270000px;}
.y7f{bottom:146.010000px;}
.y15f{bottom:147.810000px;}
.ybf{bottom:151.950000px;}
.ye8{bottom:154.830000px;}
.y111{bottom:155.460000px;}
.y136{bottom:155.910000px;}
.y54{bottom:160.500000px;}
.y7e{bottom:163.560000px;}
.ya8{bottom:166.170000px;}
.ybe{bottom:169.590000px;}
.y110{bottom:173.100000px;}
.y15e{bottom:174.450000px;}
.y7d{bottom:181.200000px;}
.y135{bottom:182.820000px;}
.ye7{bottom:190.380000px;}
.y10f{bottom:190.650000px;}
.y25{bottom:192.090000px;}
.y53{bottom:196.050000px;}
.y7c{bottom:198.750000px;}
.y15d{bottom:201.000000px;}
.ya7{bottom:201.720000px;}
.yba{bottom:202.530000px;}
.ye6{bottom:208.020000px;}
.y10e{bottom:208.200000px;}
.y52{bottom:213.600000px;}
.y7b{bottom:216.300000px;}
.y15c{bottom:218.640000px;}
.ya6{bottom:219.360000px;}
.ye5{bottom:225.570000px;}
.y10d{bottom:225.840000px;}
.y24{bottom:229.080000px;}
.ybd{bottom:229.890000px;}
.y134{bottom:231.060000px;}
.y51{bottom:231.240000px;}
.ya5{bottom:236.910000px;}
.ye4{bottom:243.120000px;}
.y15b{bottom:245.190000px;}
.y23{bottom:246.720000px;}
.y133{bottom:248.610000px;}
.y7a{bottom:251.940000px;}
.ya4{bottom:254.550000px;}
.ybc{bottom:257.160000px;}
.y10c{bottom:261.390000px;}
.y15a{bottom:262.740000px;}
.y22{bottom:264.270000px;}
.y132{bottom:266.250000px;}
.y50{bottom:266.790000px;}
.y79{bottom:269.490000px;}
.ya3{bottom:272.100000px;}
.ye3{bottom:276.150000px;}
.y10b{bottom:278.940000px;}
.y21{bottom:281.910000px;}
.y131{bottom:283.800000px;}
.y4f{bottom:284.430000px;}
.ybb{bottom:284.520000px;}
.y78{bottom:287.130000px;}
.y159{bottom:289.380000px;}
.y10a{bottom:296.580000px;}
.y20{bottom:299.460000px;}
.y130{bottom:301.440000px;}
.y4e{bottom:301.980000px;}
.y77{bottom:304.680000px;}
.y158{bottom:306.930000px;}
.ya2{bottom:307.650000px;}
.yb2{bottom:311.880000px;}
.y109{bottom:314.130000px;}
.ye1{bottom:321.060000px;}
.ya1{bottom:325.290000px;}
.y4d{bottom:328.890000px;}
.y108{bottom:331.770000px;}
.y157{bottom:333.480000px;}
.y1f{bottom:335.010000px;}
.y12f{bottom:336.990000px;}
.yb9{bottom:339.150000px;}
.y76{bottom:340.230000px;}
.ya0{bottom:342.840000px;}
.y156{bottom:351.120000px;}
.y1e{bottom:352.650000px;}
.y12e{bottom:354.540000px;}
.y75{bottom:357.870000px;}
.y9f{bottom:360.480000px;}
.ye0{bottom:365.970000px;}
.yb8{bottom:366.510000px;}
.y107{bottom:367.320000px;}
.y1d{bottom:370.200000px;}
.y12d{bottom:372.180000px;}
.y74{bottom:375.420000px;}
.y4c{bottom:377.130000px;}
.y155{bottom:377.670000px;}
.y9e{bottom:378.030000px;}
.y106{bottom:384.870000px;}
.y1c{bottom:387.840000px;}
.y12c{bottom:389.730000px;}
.yb7{bottom:393.870000px;}
.y4b{bottom:394.770000px;}
.y154{bottom:395.310000px;}
.y105{bottom:402.510000px;}
.y1b{bottom:405.390000px;}
.y12b{bottom:407.370000px;}
.y73{bottom:411.060000px;}
.y4a{bottom:412.320000px;}
.y9d{bottom:413.580000px;}
.ydf{bottom:414.660000px;}
.y104{bottom:420.060000px;}
.yb1{bottom:421.230000px;}
.y153{bottom:421.860000px;}
.y1a{bottom:422.940000px;}
.y72{bottom:428.610000px;}
.y49{bottom:429.870000px;}
.y9c{bottom:431.220000px;}
.y152{bottom:439.410000px;}
.y12a{bottom:442.920000px;}
.y71{bottom:446.160000px;}
.y103{bottom:446.700000px;}
.y48{bottom:447.510000px;}
.y9b{bottom:448.770000px;}
.yde{bottom:450.300000px;}
.y19{bottom:458.580000px;}
.y129{bottom:460.470000px;}
.y70{bottom:463.800000px;}
.y151{bottom:466.320000px;}
.y9a{bottom:466.410000px;}
.ydd{bottom:467.850000px;}
.yb0{bottom:469.950000px;}
.y18{bottom:476.160000px;}
.y128{bottom:478.140000px;}
.y102{bottom:482.280000px;}
.y47{bottom:483.090000px;}
.ydc{bottom:485.430000px;}
.y17{bottom:493.800000px;}
.y127{bottom:495.690000px;}
.y6f{bottom:498.660000px;}
.y101{bottom:499.830000px;}
.y46{bottom:500.730000px;}
.y99{bottom:501.990000px;}
.ydb{bottom:503.070000px;}
.yaf{bottom:505.500000px;}
.y6e{bottom:510.810000px;}
.y16{bottom:511.350000px;}
.y126{bottom:513.330000px;}
.y150{bottom:514.680000px;}
.y100{bottom:517.470000px;}
.y45{bottom:518.280000px;}
.y98{bottom:519.540000px;}
.yda{bottom:520.620000px;}
.y15{bottom:528.900000px;}
.y125{bottom:530.880000px;}
.yff{bottom:535.020000px;}
.y44{bottom:535.830000px;}
.y97{bottom:537.180000px;}
.y6d{bottom:538.170000px;}
.yae{bottom:540.330000px;}
.y14f{bottom:541.590000px;}
.y14{bottom:546.540000px;}
.yfe{bottom:552.660000px;}
.y96{bottom:554.730000px;}
.yd9{bottom:556.260000px;}
.y6c{bottom:565.530000px;}
.y124{bottom:566.430000px;}
.yad{bottom:569.760000px;}
.y43{bottom:571.470000px;}
.yd8{bottom:573.810000px;}
.y14e{bottom:578.580000px;}
.y13{bottom:582.090000px;}
.y123{bottom:584.070000px;}
.yfd{bottom:588.210000px;}
.y42{bottom:589.020000px;}
.y95{bottom:589.560000px;}
.yd7{bottom:591.360000px;}
.y6b{bottom:592.890000px;}
.y12{bottom:599.640000px;}
.y122{bottom:601.620000px;}
.y94{bottom:601.800000px;}
.y14d{bottom:605.490000px;}
.yfc{bottom:605.760000px;}
.y41{bottom:606.660000px;}
.yd6{bottom:609.000000px;}
.y11{bottom:617.280000px;}
.y121{bottom:619.260000px;}
.y6a{bottom:620.160000px;}
.yfb{bottom:623.400000px;}
.y40{bottom:624.210000px;}
.yd5{bottom:626.550000px;}
.y93{bottom:629.160000px;}
.y10{bottom:634.830000px;}
.y120{bottom:636.810000px;}
.y3f{bottom:641.760000px;}
.y14c{bottom:642.840000px;}
.y69{bottom:647.520000px;}
.yfa{bottom:650.310000px;}
.yf{bottom:652.470000px;}
.y11f{bottom:654.360000px;}
.y92{bottom:656.430000px;}
.y3e{bottom:659.400000px;}
.yd4{bottom:662.190000px;}
.ye{bottom:670.020000px;}
.y11e{bottom:672.000000px;}
.y68{bottom:674.880000px;}
.yd3{bottom:679.740000px;}
.y167{bottom:681.000000px;}
.y91{bottom:683.790000px;}
.yd{bottom:687.570000px;}
.y14b{bottom:691.080000px;}
.y3d{bottom:694.950000px;}
.yd2{bottom:697.290000px;}
.yf9{bottom:698.550000px;}
.y67{bottom:702.240000px;}
.y11d{bottom:707.550000px;}
.y14a{bottom:708.720000px;}
.y90{bottom:711.150000px;}
.y3c{bottom:712.590000px;}
.yc{bottom:714.480000px;}
.yd1{bottom:714.930000px;}
.yf8{bottom:716.190000px;}
.y11c{bottom:725.190000px;}
.y149{bottom:726.270000px;}
.y66{bottom:729.510000px;}
.y3b{bottom:730.140000px;}
.yd0{bottom:732.480000px;}
.yf7{bottom:733.740000px;}
.y8f{bottom:738.420000px;}
.y11b{bottom:742.740000px;}
.y3a{bottom:747.690000px;}
.yf6{bottom:751.290000px;}
.y148{bottom:753.180000px;}
.y65{bottom:756.870000px;}
.y11a{bottom:760.290000px;}
.yb{bottom:762.810000px;}
.y39{bottom:765.330000px;}
.ycf{bottom:765.420000px;}
.y8e{bottom:765.780000px;}
.yf5{bottom:768.930000px;}
.y119{bottom:777.930000px;}
.y38{bottom:782.880000px;}
.y64{bottom:784.230000px;}
.y166{bottom:786.930000px;}
.y147{bottom:790.170000px;}
.yce{bottom:792.780000px;}
.y8d{bottom:793.140000px;}
.yf4{bottom:795.480000px;}
.ya{bottom:798.630000px;}
.y165{bottom:804.480000px;}
.y146{bottom:807.810000px;}
.y63{bottom:811.500000px;}
.y37{bottom:818.520000px;}
.ycd{bottom:820.140000px;}
.y8c{bottom:820.500000px;}
.y118{bottom:822.030000px;}
.y145{bottom:825.360000px;}
.yf3{bottom:831.030000px;}
.y9{bottom:834.630000px;}
.y36{bottom:836.070000px;}
.y62{bottom:838.860000px;}
.y144{bottom:843.000000px;}
.y8b{bottom:847.770000px;}
.yf2{bottom:848.670000px;}
.y35{bottom:853.620000px;}
.y117{bottom:857.670000px;}
.y61{bottom:866.220000px;}
.ycc{bottom:868.830000px;}
.y34{bottom:871.260000px;}
.y8{bottom:874.410000px;}
.y8a{bottom:875.130000px;}
.y116{bottom:875.220000px;}
.y143{bottom:878.550000px;}
.yf1{bottom:883.860000px;}
.y33{bottom:888.810000px;}
.y7{bottom:892.410000px;}
.y5a{bottom:893.580000px;}
.y142{bottom:896.100000px;}
.yf0{bottom:901.410000px;}
.y164{bottom:901.860000px;}
.y89{bottom:902.490000px;}
.ycb{bottom:904.380000px;}
.y32{bottom:906.450000px;}
.y115{bottom:910.860000px;}
.y5f{bottom:920.850000px;}
.yca{bottom:922.020000px;}
.y141{bottom:923.010000px;}
.y31{bottom:924.000000px;}
.y6{bottom:924.720000px;}
.yef{bottom:927.960000px;}
.y114{bottom:928.410000px;}
.y88{bottom:929.850000px;}
.yc9{bottom:939.570000px;}
.y113{bottom:945.960000px;}
.y5d{bottom:948.210000px;}
.y84{bottom:957.120000px;}
.y30{bottom:959.550000px;}
.y140{bottom:960.090000px;}
.y5{bottom:962.970000px;}
.yee{bottom:963.600000px;}
.yc8{bottom:966.120000px;}
.y163{bottom:972.600000px;}
.y2f{bottom:977.190000px;}
.y13f{bottom:977.640000px;}
.y87{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.y162{bottom:990.150000px;}
.y13e{bottom:995.280000px;}
.y59{bottom:996.900000px;}
.yc7{bottom:998.790000px;}
.yed{bottom:999.150000px;}
.y86{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y2e{bottom:1012.770000px;}
.yec{bottom:1016.820000px;}
.y13d{bottom:1022.130000px;}
.yac{bottom:1029.960000px;}
.y2d{bottom:1030.320000px;}
.y58{bottom:1032.570000px;}
.yc6{bottom:1034.370000px;}
.yab{bottom:1047.510000px;}
.y2c{bottom:1047.960000px;}
.yc5{bottom:1051.920000px;}
.y57{bottom:1059.120000px;}
.y13c{bottom:1059.210000px;}
.y83{bottom:1060.560000px;}
.y161{bottom:1060.920000px;}
.yaa{bottom:1065.150000px;}
.y2b{bottom:1065.510000px;}
.yc4{bottom:1069.560000px;}
.y13b{bottom:1076.760000px;}
.y160{bottom:1078.560000px;}
.y2a{bottom:1083.150000px;}
.yc3{bottom:1087.110000px;}
.y56{bottom:1091.700000px;}
.y13a{bottom:1094.400000px;}
.y82{bottom:1096.110000px;}
.y29{bottom:1100.700000px;}
.yeb{bottom:1105.110000px;}
.y139{bottom:1111.950000px;}
.y81{bottom:1113.750000px;}
.yc2{bottom:1122.750000px;}
.y28{bottom:1127.610000px;}
.y138{bottom:1138.860000px;}
.y80{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h11{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h13{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h8{height:60.960938px;}
.h14{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:81.180000px;}
.h10{height:81.300000px;}
.h12{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:25.830000px;}
.w22{width:28.710000px;}
.wc{width:32.040000px;}
.wf{width:32.130000px;}
.w1c{width:35.550000px;}
.w13{width:38.250000px;}
.w21{width:39.000000px;}
.we{width:40.410000px;}
.w23{width:42.390000px;}
.wd{width:43.470000px;}
.w11{width:43.500000px;}
.w10{width:43.560000px;}
.w1e{width:44.730000px;}
.w1f{width:48.150000px;}
.w20{width:48.240000px;}
.w1d{width:51.750000px;}
.w5{width:53.280000px;}
.w3{width:55.110000px;}
.w15{width:61.050000px;}
.wb{width:64.890000px;}
.w1b{width:71.910000px;}
.w1a{width:75.360000px;}
.w7{width:76.320000px;}
.wa{width:76.350000px;}
.w9{width:76.410000px;}
.w19{width:84.510000px;}
.w8{width:84.690000px;}
.w17{width:88.110000px;}
.w18{width:93.690000px;}
.w2b{width:96.300000px;}
.w6{width:110.430000px;}
.w27{width:113.940000px;}
.w29{width:125.670000px;}
.w2d{width:129.780000px;}
.w2a{width:132.750000px;}
.w25{width:165.690000px;}
.w26{width:171.660000px;}
.w28{width:380.280000px;}
.w4{width:381.630000px;}
.w16{width:416.640000px;}
.w14{width:437.550000px;}
.w24{width:478.410000px;}
.w2c{width:491.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x26{left:77.940000px;}
.x2b{left:111.239987px;}
.x13{left:124.830000px;}
.x4{left:145.260000px;}
.x14{left:186.600000px;}
.x6{left:201.180000px;}
.x2{left:211.079987px;}
.x23{left:220.260000px;}
.x1b{left:222.960000px;}
.x22{left:225.929987px;}
.xd{left:234.030000px;}
.x17{left:275.520000px;}
.x9{left:278.220000px;}
.x21{left:309.539987px;}
.xe{left:319.440000px;}
.x1c{left:321.060000px;}
.x12{left:348.869987px;}
.xa{left:363.630000px;}
.x18{left:370.020000px;}
.x24{left:386.670000px;}
.xf{left:396.480000px;}
.x1d{left:406.290000px;}
.xb{left:440.760000px;}
.x19{left:455.250000px;}
.x27{left:459.030000px;}
.x10{left:473.610000px;}
.x1e{left:491.610000px;}
.xc{left:517.920000px;}
.x1a{left:531.330000px;}
.x11{left:544.560000px;}
.x25{left:559.050000px;}
.x1f{left:560.850000px;}
.x7{left:583.530000px;}
.x28{left:585.510000px;}
.x15{left:603.960000px;}
.x8{left:637.530000px;}
.x16{left:657.960000px;}
.x2a{left:691.710000px;}
.x29{left:718.980000px;}
.x3{left:800.339987px;}
.x20{left:819.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.858667pt;}
.lse{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.133333pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.101867pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.399467pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.wsb{word-spacing:-9.762667pt;}
.wsc{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-8.504533pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-3.419732pt;}
._6{margin-left:-2.084267pt;}
._0{margin-left:-1.013333pt;}
._2{width:0.894869pt;}
._5{width:2.419329pt;}
._c{width:3.430733pt;}
._8{width:4.970134pt;}
._b{width:5.873064pt;}
._9{width:6.786666pt;}
._a{width:7.802668pt;}
._10{width:9.028799pt;}
._11{width:10.153600pt;}
._14{width:13.159851pt;}
._e{width:14.607573pt;}
._d{width:15.639360pt;}
._12{width:16.833600pt;}
._13{width:17.955840pt;}
._4{width:20.354731pt;}
._3{width:21.622400pt;}
._f{width:23.053333pt;}
._15{width:28.269760pt;}
._16{width:29.443413pt;}
._1{width:30.494965pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:6.960000pt;}
.y60{bottom:7.040000pt;}
.yb6{bottom:20.960000pt;}
.ye2{bottom:22.640000pt;}
.y5c{bottom:35.920000pt;}
.yb5{bottom:40.640000pt;}
.y5b{bottom:55.520000pt;}
.y85{bottom:55.626667pt;}
.yb4{bottom:60.240000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.yb3{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.yc1{bottom:103.786667pt;}
.yea{bottom:106.346667pt;}
.y55{bottom:110.986667pt;}
.ya9{bottom:116.106667pt;}
.yc0{bottom:119.466667pt;}
.ye9{bottom:122.026667pt;}
.y112{bottom:122.586667pt;}
.y137{bottom:122.906667pt;}
.y7f{bottom:129.786667pt;}
.y15f{bottom:131.386667pt;}
.ybf{bottom:135.066667pt;}
.ye8{bottom:137.626667pt;}
.y111{bottom:138.186667pt;}
.y136{bottom:138.586667pt;}
.y54{bottom:142.666667pt;}
.y7e{bottom:145.386667pt;}
.ya8{bottom:147.706667pt;}
.ybe{bottom:150.746667pt;}
.y110{bottom:153.866667pt;}
.y15e{bottom:155.066667pt;}
.y7d{bottom:161.066667pt;}
.y135{bottom:162.506667pt;}
.ye7{bottom:169.226667pt;}
.y10f{bottom:169.466667pt;}
.y25{bottom:170.746667pt;}
.y53{bottom:174.266667pt;}
.y7c{bottom:176.666667pt;}
.y15d{bottom:178.666667pt;}
.ya7{bottom:179.306667pt;}
.yba{bottom:180.026667pt;}
.ye6{bottom:184.906667pt;}
.y10e{bottom:185.066667pt;}
.y52{bottom:189.866667pt;}
.y7b{bottom:192.266667pt;}
.y15c{bottom:194.346667pt;}
.ya6{bottom:194.986667pt;}
.ye5{bottom:200.506667pt;}
.y10d{bottom:200.746667pt;}
.y24{bottom:203.626667pt;}
.ybd{bottom:204.346667pt;}
.y134{bottom:205.386667pt;}
.y51{bottom:205.546667pt;}
.ya5{bottom:210.586667pt;}
.ye4{bottom:216.106667pt;}
.y15b{bottom:217.946667pt;}
.y23{bottom:219.306667pt;}
.y133{bottom:220.986667pt;}
.y7a{bottom:223.946667pt;}
.ya4{bottom:226.266667pt;}
.ybc{bottom:228.586667pt;}
.y10c{bottom:232.346667pt;}
.y15a{bottom:233.546667pt;}
.y22{bottom:234.906667pt;}
.y132{bottom:236.666667pt;}
.y50{bottom:237.146667pt;}
.y79{bottom:239.546667pt;}
.ya3{bottom:241.866667pt;}
.ye3{bottom:245.466667pt;}
.y10b{bottom:247.946667pt;}
.y21{bottom:250.586667pt;}
.y131{bottom:252.266667pt;}
.y4f{bottom:252.826667pt;}
.ybb{bottom:252.906667pt;}
.y78{bottom:255.226667pt;}
.y159{bottom:257.226667pt;}
.y10a{bottom:263.626667pt;}
.y20{bottom:266.186667pt;}
.y130{bottom:267.946667pt;}
.y4e{bottom:268.426667pt;}
.y77{bottom:270.826667pt;}
.y158{bottom:272.826667pt;}
.ya2{bottom:273.466667pt;}
.yb2{bottom:277.226667pt;}
.y109{bottom:279.226667pt;}
.ye1{bottom:285.386667pt;}
.ya1{bottom:289.146667pt;}
.y4d{bottom:292.346667pt;}
.y108{bottom:294.906667pt;}
.y157{bottom:296.426667pt;}
.y1f{bottom:297.786667pt;}
.y12f{bottom:299.546667pt;}
.yb9{bottom:301.466667pt;}
.y76{bottom:302.426667pt;}
.ya0{bottom:304.746667pt;}
.y156{bottom:312.106667pt;}
.y1e{bottom:313.466667pt;}
.y12e{bottom:315.146667pt;}
.y75{bottom:318.106667pt;}
.y9f{bottom:320.426667pt;}
.ye0{bottom:325.306667pt;}
.yb8{bottom:325.786667pt;}
.y107{bottom:326.506667pt;}
.y1d{bottom:329.066667pt;}
.y12d{bottom:330.826667pt;}
.y74{bottom:333.706667pt;}
.y4c{bottom:335.226667pt;}
.y155{bottom:335.706667pt;}
.y9e{bottom:336.026667pt;}
.y106{bottom:342.106667pt;}
.y1c{bottom:344.746667pt;}
.y12c{bottom:346.426667pt;}
.yb7{bottom:350.106667pt;}
.y4b{bottom:350.906667pt;}
.y154{bottom:351.386667pt;}
.y105{bottom:357.786667pt;}
.y1b{bottom:360.346667pt;}
.y12b{bottom:362.106667pt;}
.y73{bottom:365.386667pt;}
.y4a{bottom:366.506667pt;}
.y9d{bottom:367.626667pt;}
.ydf{bottom:368.586667pt;}
.y104{bottom:373.386667pt;}
.yb1{bottom:374.426667pt;}
.y153{bottom:374.986667pt;}
.y1a{bottom:375.946667pt;}
.y72{bottom:380.986667pt;}
.y49{bottom:382.106667pt;}
.y9c{bottom:383.306667pt;}
.y152{bottom:390.586667pt;}
.y12a{bottom:393.706667pt;}
.y71{bottom:396.586667pt;}
.y103{bottom:397.066667pt;}
.y48{bottom:397.786667pt;}
.y9b{bottom:398.906667pt;}
.yde{bottom:400.266667pt;}
.y19{bottom:407.626667pt;}
.y129{bottom:409.306667pt;}
.y70{bottom:412.266667pt;}
.y151{bottom:414.506667pt;}
.y9a{bottom:414.586667pt;}
.ydd{bottom:415.866667pt;}
.yb0{bottom:417.733333pt;}
.y18{bottom:423.253333pt;}
.y128{bottom:425.013333pt;}
.y102{bottom:428.693333pt;}
.y47{bottom:429.413333pt;}
.ydc{bottom:431.493333pt;}
.y17{bottom:438.933333pt;}
.y127{bottom:440.613333pt;}
.y6f{bottom:443.253333pt;}
.y101{bottom:444.293333pt;}
.y46{bottom:445.093333pt;}
.y99{bottom:446.213333pt;}
.ydb{bottom:447.173333pt;}
.yaf{bottom:449.333333pt;}
.y6e{bottom:454.053333pt;}
.y16{bottom:454.533333pt;}
.y126{bottom:456.293333pt;}
.y150{bottom:457.493333pt;}
.y100{bottom:459.973333pt;}
.y45{bottom:460.693333pt;}
.y98{bottom:461.813333pt;}
.yda{bottom:462.773333pt;}
.y15{bottom:470.133333pt;}
.y125{bottom:471.893333pt;}
.yff{bottom:475.573333pt;}
.y44{bottom:476.293333pt;}
.y97{bottom:477.493333pt;}
.y6d{bottom:478.373333pt;}
.yae{bottom:480.293333pt;}
.y14f{bottom:481.413333pt;}
.y14{bottom:485.813333pt;}
.yfe{bottom:491.253333pt;}
.y96{bottom:493.093333pt;}
.yd9{bottom:494.453333pt;}
.y6c{bottom:502.693333pt;}
.y124{bottom:503.493333pt;}
.yad{bottom:506.453333pt;}
.y43{bottom:507.973333pt;}
.yd8{bottom:510.053333pt;}
.y14e{bottom:514.293333pt;}
.y13{bottom:517.413333pt;}
.y123{bottom:519.173333pt;}
.yfd{bottom:522.853333pt;}
.y42{bottom:523.573333pt;}
.y95{bottom:524.053333pt;}
.yd7{bottom:525.653333pt;}
.y6b{bottom:527.013333pt;}
.y12{bottom:533.013333pt;}
.y122{bottom:534.773333pt;}
.y94{bottom:534.933333pt;}
.y14d{bottom:538.213333pt;}
.yfc{bottom:538.453333pt;}
.y41{bottom:539.253333pt;}
.yd6{bottom:541.333333pt;}
.y11{bottom:548.693333pt;}
.y121{bottom:550.453333pt;}
.y6a{bottom:551.253333pt;}
.yfb{bottom:554.133333pt;}
.y40{bottom:554.853333pt;}
.yd5{bottom:556.933333pt;}
.y93{bottom:559.253333pt;}
.y10{bottom:564.293333pt;}
.y120{bottom:566.053333pt;}
.y3f{bottom:570.453333pt;}
.y14c{bottom:571.413333pt;}
.y69{bottom:575.573333pt;}
.yfa{bottom:578.053333pt;}
.yf{bottom:579.973333pt;}
.y11f{bottom:581.653333pt;}
.y92{bottom:583.493333pt;}
.y3e{bottom:586.133333pt;}
.yd4{bottom:588.613333pt;}
.ye{bottom:595.573333pt;}
.y11e{bottom:597.333333pt;}
.y68{bottom:599.893333pt;}
.yd3{bottom:604.213333pt;}
.y167{bottom:605.333333pt;}
.y91{bottom:607.813333pt;}
.yd{bottom:611.173333pt;}
.y14b{bottom:614.293333pt;}
.y3d{bottom:617.733333pt;}
.yd2{bottom:619.813333pt;}
.yf9{bottom:620.933333pt;}
.y67{bottom:624.213333pt;}
.y11d{bottom:628.933333pt;}
.y14a{bottom:629.973333pt;}
.y90{bottom:632.133333pt;}
.y3c{bottom:633.413333pt;}
.yc{bottom:635.093333pt;}
.yd1{bottom:635.493333pt;}
.yf8{bottom:636.613333pt;}
.y11c{bottom:644.613333pt;}
.y149{bottom:645.573333pt;}
.y66{bottom:648.453333pt;}
.y3b{bottom:649.013333pt;}
.yd0{bottom:651.093333pt;}
.yf7{bottom:652.213333pt;}
.y8f{bottom:656.373333pt;}
.y11b{bottom:660.213333pt;}
.y3a{bottom:664.613333pt;}
.yf6{bottom:667.813333pt;}
.y148{bottom:669.493333pt;}
.y65{bottom:672.773333pt;}
.y11a{bottom:675.813333pt;}
.yb{bottom:678.053333pt;}
.y39{bottom:680.293333pt;}
.ycf{bottom:680.373333pt;}
.y8e{bottom:680.693333pt;}
.yf5{bottom:683.493333pt;}
.y119{bottom:691.493333pt;}
.y38{bottom:695.893333pt;}
.y64{bottom:697.093333pt;}
.y166{bottom:699.493333pt;}
.y147{bottom:702.373333pt;}
.yce{bottom:704.693333pt;}
.y8d{bottom:705.013333pt;}
.yf4{bottom:707.093333pt;}
.ya{bottom:709.893333pt;}
.y165{bottom:715.093333pt;}
.y146{bottom:718.053333pt;}
.y63{bottom:721.333333pt;}
.y37{bottom:727.573333pt;}
.ycd{bottom:729.013333pt;}
.y8c{bottom:729.333333pt;}
.y118{bottom:730.693333pt;}
.y145{bottom:733.653333pt;}
.yf3{bottom:738.693333pt;}
.y9{bottom:741.893333pt;}
.y36{bottom:743.173333pt;}
.y62{bottom:745.653333pt;}
.y144{bottom:749.333333pt;}
.y8b{bottom:753.573333pt;}
.yf2{bottom:754.373333pt;}
.y35{bottom:758.773333pt;}
.y117{bottom:762.373333pt;}
.y61{bottom:769.973333pt;}
.ycc{bottom:772.293333pt;}
.y34{bottom:774.453333pt;}
.y8{bottom:777.253333pt;}
.y8a{bottom:777.893333pt;}
.y116{bottom:777.973333pt;}
.y143{bottom:780.933333pt;}
.yf1{bottom:785.653333pt;}
.y33{bottom:790.053333pt;}
.y7{bottom:793.253333pt;}
.y5a{bottom:794.293333pt;}
.y142{bottom:796.533333pt;}
.yf0{bottom:801.253333pt;}
.y164{bottom:801.653333pt;}
.y89{bottom:802.213333pt;}
.ycb{bottom:803.893333pt;}
.y32{bottom:805.733333pt;}
.y115{bottom:809.653333pt;}
.y5f{bottom:818.533333pt;}
.yca{bottom:819.573333pt;}
.y141{bottom:820.453333pt;}
.y31{bottom:821.333333pt;}
.y6{bottom:821.973333pt;}
.yef{bottom:824.853333pt;}
.y114{bottom:825.253333pt;}
.y88{bottom:826.533333pt;}
.yc9{bottom:835.173333pt;}
.y113{bottom:840.853333pt;}
.y5d{bottom:842.853333pt;}
.y84{bottom:850.773333pt;}
.y30{bottom:852.933333pt;}
.y140{bottom:853.413333pt;}
.y5{bottom:855.973333pt;}
.yee{bottom:856.533333pt;}
.yc8{bottom:858.773333pt;}
.y163{bottom:864.533333pt;}
.y2f{bottom:868.613333pt;}
.y13f{bottom:869.013333pt;}
.y87{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.y162{bottom:880.133333pt;}
.y13e{bottom:884.693333pt;}
.y59{bottom:886.133333pt;}
.yc7{bottom:887.813333pt;}
.yed{bottom:888.133333pt;}
.y86{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y2e{bottom:900.240000pt;}
.yec{bottom:903.840000pt;}
.y13d{bottom:908.560000pt;}
.yac{bottom:915.520000pt;}
.y2d{bottom:915.840000pt;}
.y58{bottom:917.840000pt;}
.yc6{bottom:919.440000pt;}
.yab{bottom:931.120000pt;}
.y2c{bottom:931.520000pt;}
.yc5{bottom:935.040000pt;}
.y57{bottom:941.440000pt;}
.y13c{bottom:941.520000pt;}
.y83{bottom:942.720000pt;}
.y161{bottom:943.040000pt;}
.yaa{bottom:946.800000pt;}
.y2b{bottom:947.120000pt;}
.yc4{bottom:950.720000pt;}
.y13b{bottom:957.120000pt;}
.y160{bottom:958.720000pt;}
.y2a{bottom:962.800000pt;}
.yc3{bottom:966.320000pt;}
.y56{bottom:970.400000pt;}
.y13a{bottom:972.800000pt;}
.y82{bottom:974.320000pt;}
.y29{bottom:978.400000pt;}
.yeb{bottom:982.320000pt;}
.y139{bottom:988.400000pt;}
.y81{bottom:990.000000pt;}
.yc2{bottom:998.000000pt;}
.y28{bottom:1002.320000pt;}
.y138{bottom:1012.320000pt;}
.y80{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h11{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h13{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h8{height:54.187500pt;}
.h14{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:72.160000pt;}
.h10{height:72.266667pt;}
.h12{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:22.960000pt;}
.w22{width:25.520000pt;}
.wc{width:28.480000pt;}
.wf{width:28.560000pt;}
.w1c{width:31.600000pt;}
.w13{width:34.000000pt;}
.w21{width:34.666667pt;}
.we{width:35.920000pt;}
.w23{width:37.680000pt;}
.wd{width:38.640000pt;}
.w11{width:38.666667pt;}
.w10{width:38.720000pt;}
.w1e{width:39.760000pt;}
.w1f{width:42.800000pt;}
.w20{width:42.880000pt;}
.w1d{width:46.000000pt;}
.w5{width:47.360000pt;}
.w3{width:48.986667pt;}
.w15{width:54.266667pt;}
.wb{width:57.680000pt;}
.w1b{width:63.920000pt;}
.w1a{width:66.986667pt;}
.w7{width:67.840000pt;}
.wa{width:67.866667pt;}
.w9{width:67.920000pt;}
.w19{width:75.120000pt;}
.w8{width:75.280000pt;}
.w17{width:78.320000pt;}
.w18{width:83.280000pt;}
.w2b{width:85.600000pt;}
.w6{width:98.160000pt;}
.w27{width:101.280000pt;}
.w29{width:111.706667pt;}
.w2d{width:115.360000pt;}
.w2a{width:118.000000pt;}
.w25{width:147.280000pt;}
.w26{width:152.586667pt;}
.w28{width:338.026667pt;}
.w4{width:339.226667pt;}
.w16{width:370.346667pt;}
.w14{width:388.933333pt;}
.w24{width:425.253333pt;}
.w2c{width:437.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x26{left:69.280000pt;}
.x2b{left:98.879988pt;}
.x13{left:110.960000pt;}
.x4{left:129.120000pt;}
.x14{left:165.866667pt;}
.x6{left:178.826667pt;}
.x2{left:187.626655pt;}
.x23{left:195.786667pt;}
.x1b{left:198.186667pt;}
.x22{left:200.826655pt;}
.xd{left:208.026667pt;}
.x17{left:244.906667pt;}
.x9{left:247.306667pt;}
.x21{left:275.146655pt;}
.xe{left:283.946667pt;}
.x1c{left:285.386667pt;}
.x12{left:310.106655pt;}
.xa{left:323.226667pt;}
.x18{left:328.906667pt;}
.x24{left:343.706667pt;}
.xf{left:352.426667pt;}
.x1d{left:361.146667pt;}
.xb{left:391.786667pt;}
.x19{left:404.666667pt;}
.x27{left:408.026667pt;}
.x10{left:420.986667pt;}
.x1e{left:436.986667pt;}
.xc{left:460.373333pt;}
.x1a{left:472.293333pt;}
.x11{left:484.053333pt;}
.x25{left:496.933333pt;}
.x1f{left:498.533333pt;}
.x7{left:518.693333pt;}
.x28{left:520.453333pt;}
.x15{left:536.853333pt;}
.x8{left:566.693333pt;}
.x16{left:584.853333pt;}
.x2a{left:614.853333pt;}
.x29{left:639.093333pt;}
.x3{left:711.413322pt;}
.x20{left:728.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; }
  