
    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_94f02f17bfbd9c581d748e6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_7eeaae392e6d7b57c98ef705.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fd2d7a55c0cd9520f9449dfd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3e8d2fed67d43d9a0cd57c2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_beccb8618dd7081a41e72916.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_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_783cc66be5276f3f826d6882.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_5cbbd7962a34fa11091c6892.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-85.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-0.738000px;}
.lse{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.341400px;}
.lsa{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.lsd{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.901440px;}
.ls2{letter-spacing:17.280000px;}
.ls1{letter-spacing:153.864000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.041280px;}
.ws0{word-spacing:-20.566320px;}
.ws3{word-spacing:-20.322000px;}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.280000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-6.841200px;}
._5{margin-left:-5.640000px;}
._1f{margin-left:-4.236000px;}
._4{margin-left:-3.168000px;}
._3{margin-left:-2.088000px;}
._0{margin-left:-1.008000px;}
._1{width:1.020000px;}
._2{width:2.275920px;}
._11{width:3.888000px;}
._12{width:4.956000px;}
._1d{width:6.696000px;}
._18{width:7.920000px;}
._b{width:9.432000px;}
._c{width:10.656000px;}
._1c{width:11.736000px;}
._15{width:13.008000px;}
._8{width:14.040000px;}
._10{width:15.204000px;}
._7{width:16.764000px;}
._1e{width:19.404000px;}
._d{width:20.448000px;}
._e{width:21.672000px;}
._21{width:22.680000px;}
._1a{width:23.976000px;}
._16{width:25.416000px;}
._17{width:26.496000px;}
._22{width:27.864000px;}
._9{width:29.232000px;}
._a{width:31.104000px;}
._19{width:32.520000px;}
._13{width:33.624000px;}
._14{width:34.848000px;}
._f{width:36.360000px;}
._23{width:37.872000px;}
._1b{width:42.120000px;}
._24{width:44.352000px;}
._25{width:45.432000px;}
._20{width:92.016000px;}
.fc3{color:transparent;}
.fc5{color:rgb(13,13,13);}
.fc4{color:rgb(1,2,5);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs3{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y7{bottom:-3.630000px;}
.y0{bottom:0.000000px;}
.y112{bottom:4.140000px;}
.yc7{bottom:4.485000px;}
.y105{bottom:4.495500px;}
.y95{bottom:4.500000px;}
.y11b{bottom:4.530000px;}
.yd2{bottom:7.555500px;}
.y6{bottom:7.710000px;}
.yff{bottom:9.165000px;}
.y104{bottom:9.345000px;}
.ya1{bottom:9.529500px;}
.y109{bottom:9.535500px;}
.yc9{bottom:9.705000px;}
.ybe{bottom:9.720000px;}
.ya8{bottom:10.080000px;}
.y102{bottom:10.255500px;}
.yf3{bottom:10.800000px;}
.ydf{bottom:11.880000px;}
.yec{bottom:12.060000px;}
.ycd{bottom:12.405000px;}
.y50{bottom:14.220000px;}
.y8c{bottom:14.760000px;}
.y8e{bottom:16.740000px;}
.ya5{bottom:16.770000px;}
.y9a{bottom:16.920000px;}
.yd3{bottom:18.895500px;}
.ydb{bottom:19.260000px;}
.yf0{bottom:19.440000px;}
.y8a{bottom:21.600000px;}
.yd7{bottom:22.140000px;}
.ya3{bottom:23.395500px;}
.yab{bottom:23.580000px;}
.y94{bottom:25.200000px;}
.yd5{bottom:25.230000px;}
.ye2{bottom:25.245000px;}
.ye6{bottom:27.540000px;}
.yd1{bottom:28.249500px;}
.y5{bottom:28.410000px;}
.y101{bottom:30.949500px;}
.y107{bottom:30.955500px;}
.ycc{bottom:33.105000px;}
.yc0{bottom:35.460000px;}
.y55{bottom:36.180000px;}
.yda{bottom:39.960000px;}
.y3{bottom:46.620000px;}
.y54{bottom:56.160000px;}
.ycf{bottom:64.069500px;}
.y2{bottom:66.456000px;}
.y130{bottom:86.256000px;}
.y1{bottom:86.436000px;}
.y106{bottom:89.320500px;}
.y85{bottom:96.876000px;}
.yce{bottom:97.780500px;}
.ya2{bottom:103.900500px;}
.y12f{bottom:106.956000px;}
.y108{bottom:110.740500px;}
.y84{bottom:117.576000px;}
.y32{bottom:125.316000px;}
.y12e{bottom:127.656000px;}
.yc2{bottom:131.790000px;}
.yea{bottom:133.590000px;}
.yd0{bottom:133.600500px;}
.y100{bottom:137.200500px;}
.y83{bottom:138.276000px;}
.ydd{bottom:139.725000px;}
.ya0{bottom:144.400500px;}
.y31{bottom:146.016000px;}
.y12d{bottom:148.356000px;}
.y103{bottom:158.805000px;}
.y82{bottom:158.970000px;}
.y30{bottom:166.710000px;}
.y12c{bottom:169.050000px;}
.y9f{bottom:175.530000px;}
.y4e{bottom:178.410000px;}
.ycb{bottom:178.785000px;}
.y81{bottom:179.670000px;}
.yfe{bottom:185.265000px;}
.y2f{bottom:187.410000px;}
.y12b{bottom:189.390000px;}
.y4d{bottom:193.890000px;}
.y9e{bottom:196.230000px;}
.y80{bottom:200.370000px;}
.y2e{bottom:208.110000px;}
.y4c{bottom:209.370000px;}
.y12a{bottom:210.090000px;}
.yfd{bottom:215.130000px;}
.y9d{bottom:217.110000px;}
.y7f{bottom:221.070000px;}
.y4b{bottom:224.850000px;}
.y2d{bottom:228.810000px;}
.y129{bottom:231.150000px;}
.yca{bottom:233.310000px;}
.yfc{bottom:235.650000px;}
.y7e{bottom:241.770000px;}
.y4a{bottom:244.290000px;}
.y2c{bottom:249.150000px;}
.yc8{bottom:250.245000px;}
.y128{bottom:251.850000px;}
.yfb{bottom:256.350000px;}
.y7d{bottom:262.470000px;}
.y49{bottom:264.990000px;}
.y2b{bottom:270.210000px;}
.y127{bottom:272.550000px;}
.yc1{bottom:276.885000px;}
.yfa{bottom:277.050000px;}
.y7c{bottom:282.810000px;}
.y48{bottom:285.690000px;}
.y2a{bottom:290.910000px;}
.y126{bottom:293.250000px;}
.yf9{bottom:298.110000px;}
.yc6{bottom:298.305000px;}
.y7b{bottom:303.510000px;}
.y47{bottom:306.390000px;}
.y29{bottom:311.655000px;}
.y125{bottom:313.995000px;}
.yf8{bottom:318.855000px;}
.yc5{bottom:319.755000px;}
.y7a{bottom:324.615000px;}
.y46{bottom:327.135000px;}
.y28{bottom:331.995000px;}
.y124{bottom:334.695000px;}
.yf7{bottom:339.555000px;}
.y79{bottom:345.315000px;}
.y45{bottom:347.835000px;}
.y27{bottom:353.055000px;}
.y123{bottom:355.395000px;}
.yf6{bottom:360.255000px;}
.yc4{bottom:361.875000px;}
.y78{bottom:366.015000px;}
.y44{bottom:368.535000px;}
.y26{bottom:373.755000px;}
.y122{bottom:376.095000px;}
.yf5{bottom:380.955000px;}
.yc3{bottom:383.475000px;}
.y77{bottom:386.715000px;}
.y43{bottom:389.235000px;}
.y25{bottom:394.455000px;}
.y121{bottom:396.795000px;}
.yf4{bottom:401.655000px;}
.y76{bottom:407.415000px;}
.y42{bottom:409.935000px;}
.y24{bottom:414.795000px;}
.y120{bottom:417.495000px;}
.yf2{bottom:418.575000px;}
.ybf{bottom:425.595000px;}
.y75{bottom:428.115000px;}
.y41{bottom:430.635000px;}
.y23{bottom:435.855000px;}
.y11f{bottom:437.835000px;}
.yf1{bottom:446.475000px;}
.y74{bottom:448.815000px;}
.y40{bottom:451.335000px;}
.y9c{bottom:455.475000px;}
.y22{bottom:456.555000px;}
.y11e{bottom:458.895000px;}
.ye9{bottom:467.895000px;}
.y73{bottom:469.515000px;}
.y3f{bottom:472.035000px;}
.y9b{bottom:472.755000px;}
.y11d{bottom:475.815000px;}
.y21{bottom:477.255000px;}
.ybd{bottom:477.975000px;}
.yef{bottom:489.315000px;}
.y72{bottom:490.215000px;}
.y3e{bottom:492.735000px;}
.y20{bottom:497.595000px;}
.y99{bottom:506.415000px;}
.ybc{bottom:509.115000px;}
.y71{bottom:510.915000px;}
.y3d{bottom:513.435000px;}
.y11c{bottom:518.115000px;}
.y1f{bottom:518.655000px;}
.yee{bottom:525.675000px;}
.ybb{bottom:529.455000px;}
.y70{bottom:531.615000px;}
.y3c{bottom:534.135000px;}
.y1e{bottom:539.355000px;}
.y98{bottom:540.255000px;}
.yba{bottom:550.155000px;}
.y6f{bottom:552.315000px;}
.y3b{bottom:554.835000px;}
.y1d{bottom:560.055000px;}
.y11a{bottom:560.235000px;}
.y97{bottom:561.705000px;}
.yed{bottom:568.005000px;}
.yb9{bottom:571.245000px;}
.y6e{bottom:573.045000px;}
.y3a{bottom:575.565000px;}
.y1c{bottom:580.425000px;}
.y96{bottom:583.125000px;}
.yeb{bottom:589.425000px;}
.yb8{bottom:591.945000px;}
.y6d{bottom:593.745000px;}
.y39{bottom:596.265000px;}
.y1b{bottom:601.485000px;}
.y119{bottom:602.385000px;}
.y93{bottom:604.545000px;}
.yb7{bottom:612.645000px;}
.y6c{bottom:614.445000px;}
.y38{bottom:616.965000px;}
.ye8{bottom:618.405000px;}
.y1a{bottom:622.185000px;}
.yb6{bottom:633.345000px;}
.y6b{bottom:635.145000px;}
.y37{bottom:637.665000px;}
.y19{bottom:642.885000px;}
.y118{bottom:644.505000px;}
.y92{bottom:650.265000px;}
.yb5{bottom:654.045000px;}
.y6a{bottom:655.845000px;}
.y36{bottom:658.365000px;}
.y18{bottom:663.045000px;}
.ye7{bottom:665.205000px;}
.y91{bottom:670.785000px;}
.yb4{bottom:674.745000px;}
.y69{bottom:676.545000px;}
.y35{bottom:679.065000px;}
.ye5{bottom:682.125000px;}
.y17{bottom:682.845000px;}
.y117{bottom:686.625000px;}
.y90{bottom:691.485000px;}
.yb3{bottom:695.445000px;}
.y68{bottom:697.245000px;}
.y34{bottom:699.765000px;}
.y16{bottom:701.025000px;}
.y8f{bottom:712.545000px;}
.yb2{bottom:716.145000px;}
.y67{bottom:717.765000px;}
.y15{bottom:720.465000px;}
.ydc{bottom:726.765000px;}
.y116{bottom:728.745000px;}
.yb1{bottom:736.845000px;}
.y66{bottom:738.465000px;}
.y14{bottom:741.165000px;}
.ye4{bottom:748.185000px;}
.yb0{bottom:757.545000px;}
.y65{bottom:759.165000px;}
.y13{bottom:761.865000px;}
.ye3{bottom:769.605000px;}
.y115{bottom:770.865000px;}
.yaf{bottom:778.245000px;}
.y64{bottom:779.865000px;}
.y12{bottom:782.205000px;}
.y33{bottom:782.565000px;}
.ye1{bottom:791.025000px;}
.yae{bottom:798.945000px;}
.y11{bottom:799.665000px;}
.y63{bottom:800.565000px;}
.y10{bottom:809.385000px;}
.y114{bottom:813.210000px;}
.yad{bottom:815.910000px;}
.yf{bottom:818.250000px;}
.y62{bottom:821.310000px;}
.ye0{bottom:833.190000px;}
.y61{bottom:842.010000px;}
.y4{bottom:846.720000px;}
.yac{bottom:849.750000px;}
.yde{bottom:854.610000px;}
.y113{bottom:855.330000px;}
.y60{bottom:862.710000px;}
.y5f{bottom:883.410000px;}
.y111{bottom:897.450000px;}
.y8d{bottom:899.970000px;}
.y5e{bottom:904.110000px;}
.ye{bottom:910.590000px;}
.yd{bottom:923.370000px;}
.yaa{bottom:923.910000px;}
.y5d{bottom:924.810000px;}
.y8b{bottom:933.630000px;}
.y110{bottom:944.070000px;}
.yd9{bottom:944.790000px;}
.y5c{bottom:945.510000px;}
.ya9{bottom:957.750000px;}
.y10f{bottom:964.770000px;}
.y89{bottom:965.490000px;}
.y5b{bottom:966.210000px;}
.yc{bottom:968.910000px;}
.yd8{bottom:983.310000px;}
.y10e{bottom:985.470000px;}
.y5a{bottom:986.910000px;}
.ya7{bottom:991.410000px;}
.yd6{bottom:1004.730000px;}
.y10d{bottom:1006.170000px;}
.y88{bottom:1007.430000px;}
.y59{bottom:1007.610000px;}
.ya6{bottom:1018.410000px;}
.y10c{bottom:1026.870000px;}
.y87{bottom:1027.950000px;}
.y58{bottom:1028.310000px;}
.y9{bottom:1030.290000px;}
.yd4{bottom:1043.790000px;}
.y10b{bottom:1047.570000px;}
.y86{bottom:1048.650000px;}
.y57{bottom:1049.010000px;}
.y8{bottom:1050.990000px;}
.ya4{bottom:1052.250000px;}
.y10a{bottom:1064.520000px;}
.y56{bottom:1069.380000px;}
.y131{bottom:1069.740000px;}
.yb{bottom:1106.460000px;}
.y4f{bottom:1108.080000px;}
.y52{bottom:1116.540000px;}
.ya{bottom:1120.680000px;}
.y51{bottom:1137.060000px;}
.y53{bottom:1171.620000px;}
.hd{height:8.773594px;}
.he{height:10.830586px;}
.h4{height:18.430664px;}
.h27{height:20.685000px;}
.h3d{height:20.695500px;}
.h19{height:20.700000px;}
.h28{height:20.721000px;}
.h1a{height:20.730000px;}
.ha{height:25.163437px;}
.h3b{height:25.545000px;}
.h39{height:25.725000px;}
.h3e{height:25.735500px;}
.h23{height:25.905000px;}
.h1d{height:26.095500px;}
.h21{height:26.280000px;}
.h38{height:26.985000px;}
.h31{height:28.080000px;}
.h35{height:28.260000px;}
.h8{height:29.678906px;}
.h13{height:29.700000px;}
.h16{height:30.960000px;}
.h1c{height:32.925000px;}
.h17{height:32.940000px;}
.h1f{height:32.962500px;}
.h1b{height:33.105000px;}
.h20{height:33.120000px;}
.h2c{height:35.095500px;}
.h37{height:35.625000px;}
.h15{height:37.800000px;}
.h2e{height:38.340000px;}
.h1e{height:39.595500px;}
.h22{height:39.780000px;}
.h26{height:41.385000px;}
.h18{height:41.400000px;}
.h2d{height:41.422500px;}
.h36{height:41.430000px;}
.h32{height:41.436000px;}
.h5{height:42.602344px;}
.h33{height:43.740000px;}
.h2b{height:44.455500px;}
.h7{height:44.518359px;}
.h2{height:45.000000px;}
.h11{height:45.403594px;}
.hc{height:45.457031px;}
.h3a{height:47.155500px;}
.h14{height:47.221875px;}
.h29{height:49.305000px;}
.h1{height:50.326875px;}
.h6{height:51.328125px;}
.h24{height:51.645000px;}
.h12{height:52.998047px;}
.hb{height:55.760625px;}
.h2f{height:56.160000px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h2a{height:80.275500px;}
.h3c{height:80.464922px;}
.h3{height:81.736875px;}
.h9{height:84.898125px;}
.h25{height:147.981000px;}
.h34{height:149.790000px;}
.h30{height:155.910000px;}
.h0{height:1188.000000px;}
.w3b{width:40.485000px;}
.w3{width:63.742500px;}
.w38{width:67.162500px;}
.w1f{width:80.271000px;}
.w2e{width:82.282500px;}
.w32{width:86.076000px;}
.w35{width:86.205000px;}
.w33{width:86.220000px;}
.w36{width:86.241000px;}
.w34{width:86.256000px;}
.w37{width:86.385000px;}
.w18{width:87.120000px;}
.w25{width:87.142500px;}
.w4{width:91.431000px;}
.w1b{width:93.240000px;}
.w1e{width:93.802500px;}
.w10{width:97.041000px;}
.w9{width:97.416000px;}
.w24{width:100.101000px;}
.w29{width:100.440000px;}
.w17{width:100.462500px;}
.w2b{width:101.721000px;}
.w21{width:102.996000px;}
.w3c{width:103.125000px;}
.wf{width:105.105000px;}
.w5{width:105.876000px;}
.w13{width:107.316000px;}
.we{width:108.216000px;}
.w22{width:108.900000px;}
.w2f{width:109.971000px;}
.w15{width:113.796000px;}
.w28{width:114.156000px;}
.w14{width:120.960000px;}
.w2c{width:123.651000px;}
.w1c{width:126.936000px;}
.w26{width:129.951000px;}
.w1d{width:133.941000px;}
.w16{width:134.301000px;}
.w23{width:135.036000px;}
.w1a{width:135.936000px;}
.w2a{width:136.836000px;}
.wa{width:137.340000px;}
.wb{width:147.816000px;}
.w8{width:152.665500px;}
.wc{width:156.255000px;}
.w19{width:174.805500px;}
.w6{width:177.690000px;}
.w12{width:188.305500px;}
.w7{width:201.255000px;}
.w20{width:217.825500px;}
.w27{width:218.185500px;}
.w3a{width:232.575000px;}
.w30{width:259.995000px;}
.w31{width:260.115000px;}
.w39{width:344.370000px;}
.wd{width:346.750500px;}
.w2{width:406.260000px;}
.w11{width:667.575000px;}
.w2d{width:714.735000px;}
.w1{width:783.360000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:5.400000px;}
.x16{left:8.385000px;}
.x29{left:46.804500px;}
.x25{left:53.644500px;}
.x3{left:58.500000px;}
.x4{left:67.320000px;}
.x19{left:73.264500px;}
.x9{left:76.500000px;}
.x18{left:81.000000px;}
.x32{left:134.676000px;}
.x36{left:136.656000px;}
.x1a{left:137.736000px;}
.x2e{left:141.336000px;}
.x28{left:154.830000px;}
.x6{left:206.310000px;}
.x17{left:207.390000px;}
.x2a{left:222.330000px;}
.x1e{left:226.650000px;}
.x1b{left:229.890000px;}
.x26{left:242.670000px;}
.x8{left:246.450000px;}
.x2f{left:265.350000px;}
.x1f{left:324.975000px;}
.x38{left:334.155000px;}
.x1c{left:336.495000px;}
.x13{left:351.435000px;}
.x2b{left:358.995000px;}
.xa{left:369.075000px;}
.x33{left:380.595000px;}
.xb{left:383.475000px;}
.x14{left:385.275000px;}
.xc{left:393.735000px;}
.xd{left:401.655000px;}
.xe{left:411.915000px;}
.x22{left:420.735000px;}
.xf{left:423.795000px;}
.x10{left:438.195000px;}
.x2{left:445.575000px;}
.x11{left:450.075000px;}
.x2c{left:452.955000px;}
.x1{left:459.075000px;}
.x20{left:463.035000px;}
.x7{left:472.215000px;}
.x30{left:478.695000px;}
.x34{left:481.935000px;}
.x3b{left:486.300000px;}
.x37{left:508.080000px;}
.x12{left:509.325000px;}
.x15{left:511.560000px;}
.x1d{left:514.920000px;}
.x23{left:529.860000px;}
.x2d{left:580.620000px;}
.x27{left:586.920000px;}
.x39{left:595.020000px;}
.x21{left:611.580000px;}
.x31{left:614.460000px;}
.x35{left:619.500000px;}
.x24{left:635.700000px;}
.x3a{left:681.990000px;}
.x3c{left:719.610000px;}
.x3d{left:761.010000px;}
@media print{
.v2{vertical-align:-76.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-0.656000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.303467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.801280pt;}
.ls2{letter-spacing:15.360000pt;}
.ls1{letter-spacing:136.768000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws0{word-spacing:-18.281173pt;}
.ws3{word-spacing:-18.064000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.360000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-6.081067pt;}
._5{margin-left:-5.013333pt;}
._1f{margin-left:-3.765333pt;}
._4{margin-left:-2.816000pt;}
._3{margin-left:-1.856000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.906667pt;}
._2{width:2.023040pt;}
._11{width:3.456000pt;}
._12{width:4.405333pt;}
._1d{width:5.952000pt;}
._18{width:7.040000pt;}
._b{width:8.384000pt;}
._c{width:9.472000pt;}
._1c{width:10.432000pt;}
._15{width:11.562667pt;}
._8{width:12.480000pt;}
._10{width:13.514667pt;}
._7{width:14.901333pt;}
._1e{width:17.248000pt;}
._d{width:18.176000pt;}
._e{width:19.264000pt;}
._21{width:20.160000pt;}
._1a{width:21.312000pt;}
._16{width:22.592000pt;}
._17{width:23.552000pt;}
._22{width:24.768000pt;}
._9{width:25.984000pt;}
._a{width:27.648000pt;}
._19{width:28.906667pt;}
._13{width:29.888000pt;}
._14{width:30.976000pt;}
._f{width:32.320000pt;}
._23{width:33.664000pt;}
._1b{width:37.440000pt;}
._24{width:39.424000pt;}
._25{width:40.384000pt;}
._20{width:81.792000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y7{bottom:-3.226667pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:3.680000pt;}
.yc7{bottom:3.986667pt;}
.y105{bottom:3.996000pt;}
.y95{bottom:4.000000pt;}
.y11b{bottom:4.026667pt;}
.yd2{bottom:6.716000pt;}
.y6{bottom:6.853333pt;}
.yff{bottom:8.146667pt;}
.y104{bottom:8.306667pt;}
.ya1{bottom:8.470667pt;}
.y109{bottom:8.476000pt;}
.yc9{bottom:8.626667pt;}
.ybe{bottom:8.640000pt;}
.ya8{bottom:8.960000pt;}
.y102{bottom:9.116000pt;}
.yf3{bottom:9.600000pt;}
.ydf{bottom:10.560000pt;}
.yec{bottom:10.720000pt;}
.ycd{bottom:11.026667pt;}
.y50{bottom:12.640000pt;}
.y8c{bottom:13.120000pt;}
.y8e{bottom:14.880000pt;}
.ya5{bottom:14.906667pt;}
.y9a{bottom:15.040000pt;}
.yd3{bottom:16.796000pt;}
.ydb{bottom:17.120000pt;}
.yf0{bottom:17.280000pt;}
.y8a{bottom:19.200000pt;}
.yd7{bottom:19.680000pt;}
.ya3{bottom:20.796000pt;}
.yab{bottom:20.960000pt;}
.y94{bottom:22.400000pt;}
.yd5{bottom:22.426667pt;}
.ye2{bottom:22.440000pt;}
.ye6{bottom:24.480000pt;}
.yd1{bottom:25.110667pt;}
.y5{bottom:25.253333pt;}
.y101{bottom:27.510667pt;}
.y107{bottom:27.516000pt;}
.ycc{bottom:29.426667pt;}
.yc0{bottom:31.520000pt;}
.y55{bottom:32.160000pt;}
.yda{bottom:35.520000pt;}
.y3{bottom:41.440000pt;}
.y54{bottom:49.920000pt;}
.ycf{bottom:56.950667pt;}
.y2{bottom:59.072000pt;}
.y130{bottom:76.672000pt;}
.y1{bottom:76.832000pt;}
.y106{bottom:79.396000pt;}
.y85{bottom:86.112000pt;}
.yce{bottom:86.916000pt;}
.ya2{bottom:92.356000pt;}
.y12f{bottom:95.072000pt;}
.y108{bottom:98.436000pt;}
.y84{bottom:104.512000pt;}
.y32{bottom:111.392000pt;}
.y12e{bottom:113.472000pt;}
.yc2{bottom:117.146667pt;}
.yea{bottom:118.746667pt;}
.yd0{bottom:118.756000pt;}
.y100{bottom:121.956000pt;}
.y83{bottom:122.912000pt;}
.ydd{bottom:124.200000pt;}
.ya0{bottom:128.356000pt;}
.y31{bottom:129.792000pt;}
.y12d{bottom:131.872000pt;}
.y103{bottom:141.160000pt;}
.y82{bottom:141.306667pt;}
.y30{bottom:148.186667pt;}
.y12c{bottom:150.266667pt;}
.y9f{bottom:156.026667pt;}
.y4e{bottom:158.586667pt;}
.ycb{bottom:158.920000pt;}
.y81{bottom:159.706667pt;}
.yfe{bottom:164.680000pt;}
.y2f{bottom:166.586667pt;}
.y12b{bottom:168.346667pt;}
.y4d{bottom:172.346667pt;}
.y9e{bottom:174.426667pt;}
.y80{bottom:178.106667pt;}
.y2e{bottom:184.986667pt;}
.y4c{bottom:186.106667pt;}
.y12a{bottom:186.746667pt;}
.yfd{bottom:191.226667pt;}
.y9d{bottom:192.986667pt;}
.y7f{bottom:196.506667pt;}
.y4b{bottom:199.866667pt;}
.y2d{bottom:203.386667pt;}
.y129{bottom:205.466667pt;}
.yca{bottom:207.386667pt;}
.yfc{bottom:209.466667pt;}
.y7e{bottom:214.906667pt;}
.y4a{bottom:217.146667pt;}
.y2c{bottom:221.466667pt;}
.yc8{bottom:222.440000pt;}
.y128{bottom:223.866667pt;}
.yfb{bottom:227.866667pt;}
.y7d{bottom:233.306667pt;}
.y49{bottom:235.546667pt;}
.y2b{bottom:240.186667pt;}
.y127{bottom:242.266667pt;}
.yc1{bottom:246.120000pt;}
.yfa{bottom:246.266667pt;}
.y7c{bottom:251.386667pt;}
.y48{bottom:253.946667pt;}
.y2a{bottom:258.586667pt;}
.y126{bottom:260.666667pt;}
.yf9{bottom:264.986667pt;}
.yc6{bottom:265.160000pt;}
.y7b{bottom:269.786667pt;}
.y47{bottom:272.346667pt;}
.y29{bottom:277.026667pt;}
.y125{bottom:279.106667pt;}
.yf8{bottom:283.426667pt;}
.yc5{bottom:284.226667pt;}
.y7a{bottom:288.546667pt;}
.y46{bottom:290.786667pt;}
.y28{bottom:295.106667pt;}
.y124{bottom:297.506667pt;}
.yf7{bottom:301.826667pt;}
.y79{bottom:306.946667pt;}
.y45{bottom:309.186667pt;}
.y27{bottom:313.826667pt;}
.y123{bottom:315.906667pt;}
.yf6{bottom:320.226667pt;}
.yc4{bottom:321.666667pt;}
.y78{bottom:325.346667pt;}
.y44{bottom:327.586667pt;}
.y26{bottom:332.226667pt;}
.y122{bottom:334.306667pt;}
.yf5{bottom:338.626667pt;}
.yc3{bottom:340.866667pt;}
.y77{bottom:343.746667pt;}
.y43{bottom:345.986667pt;}
.y25{bottom:350.626667pt;}
.y121{bottom:352.706667pt;}
.yf4{bottom:357.026667pt;}
.y76{bottom:362.146667pt;}
.y42{bottom:364.386667pt;}
.y24{bottom:368.706667pt;}
.y120{bottom:371.106667pt;}
.yf2{bottom:372.066667pt;}
.ybf{bottom:378.306667pt;}
.y75{bottom:380.546667pt;}
.y41{bottom:382.786667pt;}
.y23{bottom:387.426667pt;}
.y11f{bottom:389.186667pt;}
.yf1{bottom:396.866667pt;}
.y74{bottom:398.946667pt;}
.y40{bottom:401.186667pt;}
.y9c{bottom:404.866667pt;}
.y22{bottom:405.826667pt;}
.y11e{bottom:407.906667pt;}
.ye9{bottom:415.906667pt;}
.y73{bottom:417.346667pt;}
.y3f{bottom:419.586667pt;}
.y9b{bottom:420.226667pt;}
.y11d{bottom:422.946667pt;}
.y21{bottom:424.226667pt;}
.ybd{bottom:424.866667pt;}
.yef{bottom:434.946667pt;}
.y72{bottom:435.746667pt;}
.y3e{bottom:437.986667pt;}
.y20{bottom:442.306667pt;}
.y99{bottom:450.146667pt;}
.ybc{bottom:452.546667pt;}
.y71{bottom:454.146667pt;}
.y3d{bottom:456.386667pt;}
.y11c{bottom:460.546667pt;}
.y1f{bottom:461.026667pt;}
.yee{bottom:467.266667pt;}
.ybb{bottom:470.626667pt;}
.y70{bottom:472.546667pt;}
.y3c{bottom:474.786667pt;}
.y1e{bottom:479.426667pt;}
.y98{bottom:480.226667pt;}
.yba{bottom:489.026667pt;}
.y6f{bottom:490.946667pt;}
.y3b{bottom:493.186667pt;}
.y1d{bottom:497.826667pt;}
.y11a{bottom:497.986667pt;}
.y97{bottom:499.293333pt;}
.yed{bottom:504.893333pt;}
.yb9{bottom:507.773333pt;}
.y6e{bottom:509.373333pt;}
.y3a{bottom:511.613333pt;}
.y1c{bottom:515.933333pt;}
.y96{bottom:518.333333pt;}
.yeb{bottom:523.933333pt;}
.yb8{bottom:526.173333pt;}
.y6d{bottom:527.773333pt;}
.y39{bottom:530.013333pt;}
.y1b{bottom:534.653333pt;}
.y119{bottom:535.453333pt;}
.y93{bottom:537.373333pt;}
.yb7{bottom:544.573333pt;}
.y6c{bottom:546.173333pt;}
.y38{bottom:548.413333pt;}
.ye8{bottom:549.693333pt;}
.y1a{bottom:553.053333pt;}
.yb6{bottom:562.973333pt;}
.y6b{bottom:564.573333pt;}
.y37{bottom:566.813333pt;}
.y19{bottom:571.453333pt;}
.y118{bottom:572.893333pt;}
.y92{bottom:578.013333pt;}
.yb5{bottom:581.373333pt;}
.y6a{bottom:582.973333pt;}
.y36{bottom:585.213333pt;}
.y18{bottom:589.373333pt;}
.ye7{bottom:591.293333pt;}
.y91{bottom:596.253333pt;}
.yb4{bottom:599.773333pt;}
.y69{bottom:601.373333pt;}
.y35{bottom:603.613333pt;}
.ye5{bottom:606.333333pt;}
.y17{bottom:606.973333pt;}
.y117{bottom:610.333333pt;}
.y90{bottom:614.653333pt;}
.yb3{bottom:618.173333pt;}
.y68{bottom:619.773333pt;}
.y34{bottom:622.013333pt;}
.y16{bottom:623.133333pt;}
.y8f{bottom:633.373333pt;}
.yb2{bottom:636.573333pt;}
.y67{bottom:638.013333pt;}
.y15{bottom:640.413333pt;}
.ydc{bottom:646.013333pt;}
.y116{bottom:647.773333pt;}
.yb1{bottom:654.973333pt;}
.y66{bottom:656.413333pt;}
.y14{bottom:658.813333pt;}
.ye4{bottom:665.053333pt;}
.yb0{bottom:673.373333pt;}
.y65{bottom:674.813333pt;}
.y13{bottom:677.213333pt;}
.ye3{bottom:684.093333pt;}
.y115{bottom:685.213333pt;}
.yaf{bottom:691.773333pt;}
.y64{bottom:693.213333pt;}
.y12{bottom:695.293333pt;}
.y33{bottom:695.613333pt;}
.ye1{bottom:703.133333pt;}
.yae{bottom:710.173333pt;}
.y11{bottom:710.813333pt;}
.y63{bottom:711.613333pt;}
.y10{bottom:719.453333pt;}
.y114{bottom:722.853333pt;}
.yad{bottom:725.253333pt;}
.yf{bottom:727.333333pt;}
.y62{bottom:730.053333pt;}
.ye0{bottom:740.613333pt;}
.y61{bottom:748.453333pt;}
.y4{bottom:752.640000pt;}
.yac{bottom:755.333333pt;}
.yde{bottom:759.653333pt;}
.y113{bottom:760.293333pt;}
.y60{bottom:766.853333pt;}
.y5f{bottom:785.253333pt;}
.y111{bottom:797.733333pt;}
.y8d{bottom:799.973333pt;}
.y5e{bottom:803.653333pt;}
.ye{bottom:809.413333pt;}
.yd{bottom:820.773333pt;}
.yaa{bottom:821.253333pt;}
.y5d{bottom:822.053333pt;}
.y8b{bottom:829.893333pt;}
.y110{bottom:839.173333pt;}
.yd9{bottom:839.813333pt;}
.y5c{bottom:840.453333pt;}
.ya9{bottom:851.333333pt;}
.y10f{bottom:857.573333pt;}
.y89{bottom:858.213333pt;}
.y5b{bottom:858.853333pt;}
.yc{bottom:861.253333pt;}
.yd8{bottom:874.053333pt;}
.y10e{bottom:875.973333pt;}
.y5a{bottom:877.253333pt;}
.ya7{bottom:881.253333pt;}
.yd6{bottom:893.093333pt;}
.y10d{bottom:894.373333pt;}
.y88{bottom:895.493333pt;}
.y59{bottom:895.653333pt;}
.ya6{bottom:905.253333pt;}
.y10c{bottom:912.773333pt;}
.y87{bottom:913.733333pt;}
.y58{bottom:914.053333pt;}
.y9{bottom:915.813333pt;}
.yd4{bottom:927.813333pt;}
.y10b{bottom:931.173333pt;}
.y86{bottom:932.133333pt;}
.y57{bottom:932.453333pt;}
.y8{bottom:934.213333pt;}
.ya4{bottom:935.333333pt;}
.y10a{bottom:946.240000pt;}
.y56{bottom:950.560000pt;}
.y131{bottom:950.880000pt;}
.yb{bottom:983.520000pt;}
.y4f{bottom:984.960000pt;}
.y52{bottom:992.480000pt;}
.ya{bottom:996.160000pt;}
.y51{bottom:1010.720000pt;}
.y53{bottom:1041.440000pt;}
.hd{height:7.798750pt;}
.he{height:9.627187pt;}
.h4{height:16.382812pt;}
.h27{height:18.386667pt;}
.h3d{height:18.396000pt;}
.h19{height:18.400000pt;}
.h28{height:18.418667pt;}
.h1a{height:18.426667pt;}
.ha{height:22.367500pt;}
.h3b{height:22.706667pt;}
.h39{height:22.866667pt;}
.h3e{height:22.876000pt;}
.h23{height:23.026667pt;}
.h1d{height:23.196000pt;}
.h21{height:23.360000pt;}
.h38{height:23.986667pt;}
.h31{height:24.960000pt;}
.h35{height:25.120000pt;}
.h8{height:26.381250pt;}
.h13{height:26.400000pt;}
.h16{height:27.520000pt;}
.h1c{height:29.266667pt;}
.h17{height:29.280000pt;}
.h1f{height:29.300000pt;}
.h1b{height:29.426667pt;}
.h20{height:29.440000pt;}
.h2c{height:31.196000pt;}
.h37{height:31.666667pt;}
.h15{height:33.600000pt;}
.h2e{height:34.080000pt;}
.h1e{height:35.196000pt;}
.h22{height:35.360000pt;}
.h26{height:36.786667pt;}
.h18{height:36.800000pt;}
.h2d{height:36.820000pt;}
.h36{height:36.826667pt;}
.h32{height:36.832000pt;}
.h5{height:37.868750pt;}
.h33{height:38.880000pt;}
.h2b{height:39.516000pt;}
.h7{height:39.571875pt;}
.h2{height:40.000000pt;}
.h11{height:40.358750pt;}
.hc{height:40.406250pt;}
.h3a{height:41.916000pt;}
.h14{height:41.975000pt;}
.h29{height:43.826667pt;}
.h1{height:44.735000pt;}
.h6{height:45.625000pt;}
.h24{height:45.906667pt;}
.h12{height:47.109375pt;}
.hb{height:49.565000pt;}
.h2f{height:49.920000pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h2a{height:71.356000pt;}
.h3c{height:71.524375pt;}
.h3{height:72.655000pt;}
.h9{height:75.465000pt;}
.h25{height:131.538667pt;}
.h34{height:133.146667pt;}
.h30{height:138.586667pt;}
.h0{height:1056.000000pt;}
.w3b{width:35.986667pt;}
.w3{width:56.660000pt;}
.w38{width:59.700000pt;}
.w1f{width:71.352000pt;}
.w2e{width:73.140000pt;}
.w32{width:76.512000pt;}
.w35{width:76.626667pt;}
.w33{width:76.640000pt;}
.w36{width:76.658667pt;}
.w34{width:76.672000pt;}
.w37{width:76.786667pt;}
.w18{width:77.440000pt;}
.w25{width:77.460000pt;}
.w4{width:81.272000pt;}
.w1b{width:82.880000pt;}
.w1e{width:83.380000pt;}
.w10{width:86.258667pt;}
.w9{width:86.592000pt;}
.w24{width:88.978667pt;}
.w29{width:89.280000pt;}
.w17{width:89.300000pt;}
.w2b{width:90.418667pt;}
.w21{width:91.552000pt;}
.w3c{width:91.666667pt;}
.wf{width:93.426667pt;}
.w5{width:94.112000pt;}
.w13{width:95.392000pt;}
.we{width:96.192000pt;}
.w22{width:96.800000pt;}
.w2f{width:97.752000pt;}
.w15{width:101.152000pt;}
.w28{width:101.472000pt;}
.w14{width:107.520000pt;}
.w2c{width:109.912000pt;}
.w1c{width:112.832000pt;}
.w26{width:115.512000pt;}
.w1d{width:119.058667pt;}
.w16{width:119.378667pt;}
.w23{width:120.032000pt;}
.w1a{width:120.832000pt;}
.w2a{width:121.632000pt;}
.wa{width:122.080000pt;}
.wb{width:131.392000pt;}
.w8{width:135.702667pt;}
.wc{width:138.893333pt;}
.w19{width:155.382667pt;}
.w6{width:157.946667pt;}
.w12{width:167.382667pt;}
.w7{width:178.893333pt;}
.w20{width:193.622667pt;}
.w27{width:193.942667pt;}
.w3a{width:206.733333pt;}
.w30{width:231.106667pt;}
.w31{width:231.213333pt;}
.w39{width:306.106667pt;}
.wd{width:308.222667pt;}
.w2{width:361.120000pt;}
.w11{width:593.400000pt;}
.w2d{width:635.320000pt;}
.w1{width:696.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.800000pt;}
.x16{left:7.453333pt;}
.x29{left:41.604000pt;}
.x25{left:47.684000pt;}
.x3{left:52.000000pt;}
.x4{left:59.840000pt;}
.x19{left:65.124000pt;}
.x9{left:68.000000pt;}
.x18{left:72.000000pt;}
.x32{left:119.712000pt;}
.x36{left:121.472000pt;}
.x1a{left:122.432000pt;}
.x2e{left:125.632000pt;}
.x28{left:137.626667pt;}
.x6{left:183.386667pt;}
.x17{left:184.346667pt;}
.x2a{left:197.626667pt;}
.x1e{left:201.466667pt;}
.x1b{left:204.346667pt;}
.x26{left:215.706667pt;}
.x8{left:219.066667pt;}
.x2f{left:235.866667pt;}
.x1f{left:288.866667pt;}
.x38{left:297.026667pt;}
.x1c{left:299.106667pt;}
.x13{left:312.386667pt;}
.x2b{left:319.106667pt;}
.xa{left:328.066667pt;}
.x33{left:338.306667pt;}
.xb{left:340.866667pt;}
.x14{left:342.466667pt;}
.xc{left:349.986667pt;}
.xd{left:357.026667pt;}
.xe{left:366.146667pt;}
.x22{left:373.986667pt;}
.xf{left:376.706667pt;}
.x10{left:389.506667pt;}
.x2{left:396.066667pt;}
.x11{left:400.066667pt;}
.x2c{left:402.626667pt;}
.x1{left:408.066667pt;}
.x20{left:411.586667pt;}
.x7{left:419.746667pt;}
.x30{left:425.506667pt;}
.x34{left:428.386667pt;}
.x3b{left:432.266667pt;}
.x37{left:451.626667pt;}
.x12{left:452.733333pt;}
.x15{left:454.720000pt;}
.x1d{left:457.706667pt;}
.x23{left:470.986667pt;}
.x2d{left:516.106667pt;}
.x27{left:521.706667pt;}
.x39{left:528.906667pt;}
.x21{left:543.626667pt;}
.x31{left:546.186667pt;}
.x35{left:550.666667pt;}
.x24{left:565.066667pt;}
.x3a{left:606.213333pt;}
.x3c{left:639.653333pt;}
.x3d{left:676.453333pt;}
}




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