
    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_b45f2ac76888442f750b087f.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_3ea3f97eafed5d64fc7501c7.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_9b257eef73d4bc12f17246c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_38444820585d9addbca0d879.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_3dab417395757544f64fdaed.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_6b9d70d9f12c351fa4a3d145.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a44cad188c0b80396b1cfd38.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls1a{letter-spacing:-0.367800px;}
.ls19{letter-spacing:-0.244200px;}
.ls11{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.048960px;}
.ls13{letter-spacing:-0.018360px;}
.lsb{letter-spacing:-0.015000px;}
.ls18{letter-spacing:-0.014760px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.098400px;}
.lsf{letter-spacing:0.115800px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls1c{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342200px;}
.ws3{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.ws4{word-spacing:-13.211400px;}
.wsd{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.177440px;}
.ws12{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982200px;}
.ws11{word-spacing:-12.858600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._12{margin-left:-4.088160px;}
._4{margin-left:-3.066000px;}
._0{margin-left:-1.110000px;}
._1{width:1.174236px;}
._2{width:2.312964px;}
._5{width:3.790871px;}
._3{width:5.651400px;}
._9{width:6.733200px;}
._a{width:7.756201px;}
._7{width:9.559200px;}
._8{width:10.880999px;}
._b{width:12.085563px;}
._6{width:14.366640px;}
._27{width:15.534720px;}
._c{width:16.593120px;}
._d{width:17.703120px;}
._13{width:19.238400px;}
._10{width:20.741400px;}
._11{width:21.749604px;}
._20{width:23.086080px;}
._28{width:24.312240px;}
._29{width:25.501440px;}
._21{width:26.783280px;}
._22{width:27.896040px;}
._18{width:34.508880px;}
._14{width:39.558960px;}
._23{width:50.621040px;}
._24{width:52.031964px;}
._16{width:55.009800px;}
._f{width:63.426600px;}
._17{width:69.438600px;}
._1d{width:76.172040px;}
._15{width:88.797240px;}
._1f{width:103.586760px;}
._e{width:123.185880px;}
._19{width:126.815760px;}
._25{width:155.770920px;}
._26{width:156.989004px;}
._1c{width:198.215640px;}
._1b{width:216.191520px;}
._1e{width:229.598280px;}
._1a{width:307.453680px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y53{bottom:7.830000px;}
.y121{bottom:7.860000px;}
.y57{bottom:7.920000px;}
.y52{bottom:25.380000px;}
.y56{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaa{bottom:116.580000px;}
.y69{bottom:118.470000px;}
.y92{bottom:119.730000px;}
.ye6{bottom:125.760000px;}
.yfb{bottom:126.120000px;}
.y2a{bottom:131.880000px;}
.ya9{bottom:134.220000px;}
.y15f{bottom:134.310000px;}
.ycd{bottom:134.940000px;}
.y68{bottom:136.020000px;}
.ye5{bottom:143.310000px;}
.yfa{bottom:143.670000px;}
.y29{bottom:149.520000px;}
.ya8{bottom:151.770000px;}
.y15e{bottom:151.860000px;}
.y67{bottom:153.570000px;}
.y91{bottom:155.280000px;}
.y135{bottom:155.640000px;}
.y5a{bottom:156.180000px;}
.ye4{bottom:160.950000px;}
.y28{bottom:167.070000px;}
.ya7{bottom:169.410000px;}
.ycc{bottom:170.580000px;}
.y66{bottom:171.210000px;}
.y11c{bottom:172.110000px;}
.y90{bottom:172.920000px;}
.y134{bottom:173.190000px;}
.ye3{bottom:178.500000px;}
.yf9{bottom:179.310000px;}
.y27{bottom:184.620000px;}
.y8f{bottom:190.470000px;}
.y133{bottom:190.830000px;}
.y59{bottom:191.730000px;}
.y15d{bottom:196.050000px;}
.yf8{bottom:196.860000px;}
.y26{bottom:202.260000px;}
.ycb{bottom:202.800000px;}
.ya6{bottom:204.960000px;}
.ye2{bottom:205.140000px;}
.y58{bottom:206.670000px;}
.y65{bottom:206.760000px;}
.y11b{bottom:207.660000px;}
.y8e{bottom:208.020000px;}
.y132{bottom:208.380000px;}
.y15c{bottom:213.600000px;}
.yf7{bottom:214.410000px;}
.y64{bottom:224.400000px;}
.y8d{bottom:225.660000px;}
.y131{bottom:225.930000px;}
.y83{bottom:226.470000px;}
.y25{bottom:229.170000px;}
.ya5{bottom:237.180000px;}
.ye1{bottom:238.080000px;}
.y15b{bottom:240.240000px;}
.yf6{bottom:241.050000px;}
.y82{bottom:241.500000px;}
.y63{bottom:241.950000px;}
.y11a{bottom:243.210000px;}
.y55{bottom:251.580000px;}
.y8c{bottom:252.570000px;}
.ybe{bottom:256.080000px;}
.y15a{bottom:257.790000px;}
.y62{bottom:259.500000px;}
.y119{bottom:260.850000px;}
.y130{bottom:261.570000px;}
.ye0{bottom:265.440000px;}
.y81{bottom:268.770000px;}
.ybd{bottom:273.720000px;}
.yf5{bottom:273.990000px;}
.y61{bottom:277.140000px;}
.y24{bottom:277.410000px;}
.y118{bottom:278.400000px;}
.y12f{bottom:279.120000px;}
.y159{bottom:284.430000px;}
.ybc{bottom:291.270000px;}
.ydf{bottom:292.710000px;}
.y60{bottom:294.690000px;}
.y23{bottom:295.320000px;}
.y117{bottom:296.040000px;}
.y80{bottom:296.130000px;}
.y54{bottom:296.580000px;}
.y12e{bottom:296.670000px;}
.y8b{bottom:300.810000px;}
.y158{bottom:301.980000px;}
.ybb{bottom:308.910000px;}
.y116{bottom:313.590000px;}
.y12d{bottom:314.310000px;}
.yf4{bottom:318.900000px;}
.y157{bottom:319.530000px;}
.yde{bottom:320.070000px;}
.y5f{bottom:321.600000px;}
.y7f{bottom:323.490000px;}
.y12c{bottom:331.860000px;}
.y22{bottom:332.400000px;}
.y8a{bottom:333.030000px;}
.y51{bottom:341.490000px;}
.yba{bottom:344.460000px;}
.y156{bottom:346.170000px;}
.yf3{bottom:346.260000px;}
.ydd{bottom:347.430000px;}
.y115{bottom:349.140000px;}
.y12b{bottom:349.500000px;}
.y21{bottom:349.950000px;}
.yb9{bottom:362.010000px;}
.y155{bottom:363.720000px;}
.y114{bottom:366.780000px;}
.y20{bottom:367.500000px;}
.y5e{bottom:369.840000px;}
.y7e{bottom:372.180000px;}
.ydc{bottom:374.790000px;}
.y12a{bottom:376.410000px;}
.yb8{bottom:379.650000px;}
.y154{bottom:381.360000px;}
.y113{bottom:384.330000px;}
.y1f{bottom:385.140000px;}
.y171{bottom:390.180000px;}
.yb7{bottom:397.200000px;}
.y112{bottom:401.970000px;}
.y5d{bottom:402.150000px;}
.y1e{bottom:402.690000px;}
.y50{bottom:407.730000px;}
.y153{bottom:407.910000px;}
.yf2{bottom:412.500000px;}
.y1d{bottom:420.240000px;}
.ydb{bottom:423.480000px;}
.yb6{bottom:423.750000px;}
.y129{bottom:424.650000px;}
.y7d{bottom:425.370000px;}
.y152{bottom:425.460000px;}
.y111{bottom:428.520000px;}
.y104{bottom:437.610000px;}
.y1c{bottom:437.880000px;}
.y7c{bottom:442.920000px;}
.y151{bottom:443.100000px;}
.y4f{bottom:443.370000px;}
.yf1{bottom:448.140000px;}
.y170{bottom:451.920000px;}
.y1b{bottom:455.430000px;}
.y128{bottom:456.870000px;}
.yda{bottom:459.030000px;}
.yb5{bottom:459.390000px;}
.y7b{bottom:460.470000px;}
.y4e{bottom:460.920000px;}
.y110{bottom:461.460000px;}
.yf0{bottom:465.690000px;}
.y16f{bottom:469.470000px;}
.y150{bottom:469.650000px;}
.y1a{bottom:473.100000px;}
.y7a{bottom:478.140000px;}
.y4d{bottom:478.500000px;}
.y103{bottom:482.550000px;}
.yef{bottom:483.360000px;}
.y14f{bottom:487.230000px;}
.y10f{bottom:488.850000px;}
.y19{bottom:490.650000px;}
.yd9{bottom:491.280000px;}
.yb4{bottom:491.640000px;}
.y79{bottom:495.690000px;}
.y4c{bottom:496.140000px;}
.yee{bottom:500.910000px;}
.y14e{bottom:504.870000px;}
.y18{bottom:508.200000px;}
.y102{bottom:509.910000px;}
.y4b{bottom:513.690000px;}
.y10e{bottom:516.210000px;}
.yed{bottom:518.460000px;}
.y17{bottom:525.840000px;}
.y4a{bottom:531.330000px;}
.y14d{bottom:531.420000px;}
.yca{bottom:532.410000px;}
.y16e{bottom:540.330000px;}
.y16{bottom:543.390000px;}
.y49{bottom:548.880000px;}
.y14c{bottom:549.060000px;}
.yc9{bottom:549.960000px;}
.yec{bottom:554.100000px;}
.y16d{bottom:557.880000px;}
.y15{bottom:561.030000px;}
.y78{bottom:566.430000px;}
.y14b{bottom:566.610000px;}
.yc8{bottom:567.600000px;}
.yeb{bottom:571.650000px;}
.y48{bottom:575.430000px;}
.y101{bottom:576.150000px;}
.y14{bottom:578.580000px;}
.y10d{bottom:582.450000px;}
.y77{bottom:584.070000px;}
.y16c{bottom:584.430000px;}
.ya4{bottom:584.790000px;}
.yc7{bottom:585.150000px;}
.yea{bottom:589.290000px;}
.y14a{bottom:593.160000px;}
.y13{bottom:596.130000px;}
.y76{bottom:601.620000px;}
.y16b{bottom:602.070000px;}
.y149{bottom:610.800000px;}
.y47{bottom:611.070000px;}
.y100{bottom:611.790000px;}
.y12{bottom:613.770000px;}
.ye9{bottom:615.840000px;}
.ya3{bottom:617.820000px;}
.y10c{bottom:618.090000px;}
.y75{bottom:619.260000px;}
.yc6{bottom:620.790000px;}
.y148{bottom:628.350000px;}
.y46{bottom:628.620000px;}
.yff{bottom:629.340000px;}
.y11{bottom:631.320000px;}
.y10b{bottom:635.640000px;}
.yc5{bottom:638.340000px;}
.y74{bottom:645.810000px;}
.y45{bottom:646.260000px;}
.yfe{bottom:646.890000px;}
.y10{bottom:648.960000px;}
.ye8{bottom:651.390000px;}
.y10a{bottom:653.190000px;}
.y147{bottom:654.990000px;}
.ya2{bottom:662.730000px;}
.y44{bottom:663.810000px;}
.yf{bottom:666.510000px;}
.y109{bottom:670.830000px;}
.y146{bottom:672.540000px;}
.y16a{bottom:672.810000px;}
.yfd{bottom:673.530000px;}
.yc4{bottom:673.890000px;}
.y89{bottom:680.640000px;}
.y43{bottom:681.360000px;}
.ye7{bottom:683.610000px;}
.ye{bottom:684.060000px;}
.y108{bottom:688.380000px;}
.y145{bottom:690.090000px;}
.y169{bottom:690.360000px;}
.yc3{bottom:691.530000px;}
.y88{bottom:698.280000px;}
.y73{bottom:699.000000px;}
.yd{bottom:701.700000px;}
.ya1{bottom:707.640000px;}
.yc2{bottom:709.080000px;}
.y107{bottom:715.020000px;}
.y87{bottom:715.830000px;}
.y72{bottom:716.550000px;}
.y144{bottom:716.730000px;}
.y42{bottom:717.000000px;}
.yc{bottom:719.250000px;}
.y71{bottom:734.190000px;}
.y143{bottom:734.280000px;}
.y41{bottom:734.550000px;}
.yc1{bottom:735.720000px;}
.yb{bottom:736.890000px;}
.yfc{bottom:741.300000px;}
.y86{bottom:742.470000px;}
.y106{bottom:750.570000px;}
.y70{bottom:751.740000px;}
.y40{bottom:752.190000px;}
.ya0{bottom:752.550000px;}
.y142{bottom:760.920000px;}
.ya{bottom:763.800000px;}
.y3f{bottom:769.740000px;}
.yc0{bottom:771.270000px;}
.y85{bottom:778.020000px;}
.y141{bottom:778.470000px;}
.y168{bottom:778.740000px;}
.y105{bottom:782.790000px;}
.y5c{bottom:786.570000px;}
.y3e{bottom:787.290000px;}
.y140{bottom:796.020000px;}
.y167{bottom:796.290000px;}
.y9f{bottom:797.460000px;}
.ybf{bottom:803.490000px;}
.y6f{bottom:804.930000px;}
.y84{bottom:810.240000px;}
.y9{bottom:812.040000px;}
.y166{bottom:813.930000px;}
.y5b{bottom:818.790000px;}
.y6e{bottom:822.480000px;}
.y13f{bottom:822.660000px;}
.y3d{bottom:822.930000px;}
.y6d{bottom:840.030000px;}
.y13e{bottom:840.210000px;}
.y3c{bottom:840.480000px;}
.y8{bottom:847.860000px;}
.y6c{bottom:857.670000px;}
.y13d{bottom:857.850000px;}
.y3b{bottom:858.030000px;}
.y9e{bottom:863.790000px;}
.y3a{bottom:875.670000px;}
.y127{bottom:879.630000px;}
.y7{bottom:883.860000px;}
.yb3{bottom:884.220000px;}
.y13c{bottom:884.400000px;}
.y39{bottom:893.220000px;}
.y126{bottom:897.270000px;}
.y9d{bottom:899.340000px;}
.yb2{bottom:901.860000px;}
.y13b{bottom:901.950000px;}
.y165{bottom:902.220000px;}
.y38{bottom:910.860000px;}
.y125{bottom:914.820000px;}
.yd8{bottom:915.450000px;}
.y9c{bottom:916.890000px;}
.yb1{bottom:919.410000px;}
.y13a{bottom:919.590000px;}
.y164{bottom:919.860000px;}
.y6{bottom:923.640000px;}
.y37{bottom:928.410000px;}
.y124{bottom:932.460000px;}
.yd7{bottom:933.000000px;}
.y9b{bottom:935.340000px;}
.yb0{bottom:936.960000px;}
.y163{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.y36{bottom:945.960000px;}
.y139{bottom:946.500000px;}
.yd6{bottom:950.550000px;}
.y9a{bottom:952.890000px;}
.y123{bottom:959.010000px;}
.y6b{bottom:963.600000px;}
.y162{bottom:963.960000px;}
.yd5{bottom:968.190000px;}
.y99{bottom:971.340000px;}
.yaf{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y6a{bottom:981.150000px;}
.y35{bottom:981.600000px;}
.yd4{bottom:985.740000px;}
.y98{bottom:988.890000px;}
.yae{bottom:990.150000px;}
.y122{bottom:994.560000px;}
.y138{bottom:994.740000px;}
.y34{bottom:999.150000px;}
.yad{bottom:1007.790000px;}
.y120{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.yd3{bottom:1012.320000px;}
.y33{bottom:1016.820000px;}
.y137{bottom:1021.680000px;}
.y97{bottom:1025.370000px;}
.y161{bottom:1025.820000px;}
.y32{bottom:1034.370000px;}
.y11f{bottom:1036.890000px;}
.y160{bottom:1043.370000px;}
.yd2{bottom:1047.960000px;}
.y31{bottom:1051.920000px;}
.y96{bottom:1060.920000px;}
.y11e{bottom:1064.250000px;}
.yd1{bottom:1065.510000px;}
.y30{bottom:1069.560000px;}
.y136{bottom:1069.920000px;}
.y95{bottom:1078.560000px;}
.yd0{bottom:1083.150000px;}
.y2f{bottom:1087.110000px;}
.yac{bottom:1087.560000px;}
.y11d{bottom:1091.610000px;}
.y94{bottom:1096.110000px;}
.ycf{bottom:1100.700000px;}
.yab{bottom:1105.110000px;}
.y93{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.yce{bottom:1127.610000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.he{height:26.550000px;}
.h13{height:26.580000px;}
.hf{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.ha{height:44.100000px;}
.hc{height:44.190000px;}
.h11{height:44.220000px;}
.hb{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.793886px;}
.h9{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:94.320000px;}
.w4{width:94.410000px;}
.w7{width:105.660000px;}
.w23{width:112.590000px;}
.w19{width:115.590000px;}
.w1e{width:116.190000px;}
.w12{width:116.820000px;}
.wb{width:117.210000px;}
.w18{width:118.260000px;}
.wa{width:118.530000px;}
.w26{width:121.860000px;}
.w22{width:128.640000px;}
.w3{width:128.820000px;}
.w13{width:129.630000px;}
.wd{width:130.440000px;}
.w24{width:140.760000px;}
.w6{width:148.170000px;}
.w21{width:151.380000px;}
.w1f{width:153.180000px;}
.w1d{width:154.290000px;}
.w10{width:170.550000px;}
.w20{width:177.600000px;}
.w9{width:179.220000px;}
.w8{width:180.630000px;}
.w15{width:190.920000px;}
.w11{width:201.540000px;}
.w1c{width:205.380000px;}
.w25{width:210.090000px;}
.w17{width:210.630000px;}
.w1b{width:213.510000px;}
.w1a{width:219.060000px;}
.we{width:222.390000px;}
.wf{width:229.980000px;}
.w14{width:233.640000px;}
.w16{width:233.730000px;}
.wc{width:288.540000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x33{left:88.200000px;}
.xe{left:93.690000px;}
.x14{left:95.039987px;}
.x21{left:104.670000px;}
.x3a{left:111.239987px;}
.x15{left:122.039987px;}
.x2c{left:185.070000px;}
.x5{left:198.300000px;}
.x16{left:200.010000px;}
.x2{left:202.799987px;}
.x34{left:217.560000px;}
.x20{left:222.059987px;}
.x26{left:224.579987px;}
.x1c{left:228.719987px;}
.x2b{left:258.059987px;}
.x27{left:260.400000px;}
.xf{left:273.720000px;}
.xb{left:275.879987px;}
.x39{left:279.749987px;}
.x6{left:293.430000px;}
.x22{left:306.930000px;}
.x30{left:308.459987px;}
.x1f{left:312.959987px;}
.x1a{left:323.669987px;}
.xd{left:329.339987px;}
.x35{left:330.870000px;}
.x31{left:340.770000px;}
.x7{left:388.470000px;}
.x10{left:393.060000px;}
.x2d{left:404.850000px;}
.x17{left:423.210000px;}
.x23{left:424.560000px;}
.x36{left:472.350000px;}
.x28{left:494.850000px;}
.x11{left:510.990000px;}
.x8{left:537.360000px;}
.x24{left:554.910000px;}
.x2e{left:619.080000px;}
.x9{left:643.830000px;}
.x1d{left:646.889987px;}
.x12{left:648.059987px;}
.x18{left:653.910000px;}
.x32{left:673.080000px;}
.x1e{left:677.309987px;}
.x38{left:678.659987px;}
.x37{left:683.160000px;}
.x13{left:691.889987px;}
.x19{left:697.559987px;}
.xa{left:699.809987px;}
.x29{left:706.200000px;}
.xc{left:722.309987px;}
.x25{left:723.389987px;}
.x1b{left:724.559987px;}
.x2a{left:725.639987px;}
.x2f{left:730.139987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.326933pt;}
.ls19{letter-spacing:-0.217067pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.043520pt;}
.ls13{letter-spacing:-0.016320pt;}
.lsb{letter-spacing:-0.013333pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.087467pt;}
.lsf{letter-spacing:0.102933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.859733pt;}
.ws3{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws4{word-spacing:-11.743467pt;}
.wsd{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.713280pt;}
.ws12{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.539733pt;}
.ws11{word-spacing:-11.429867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._12{margin-left:-3.633920pt;}
._4{margin-left:-2.725333pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043765pt;}
._2{width:2.055968pt;}
._5{width:3.369663pt;}
._3{width:5.023467pt;}
._9{width:5.985066pt;}
._a{width:6.894401pt;}
._7{width:8.497067pt;}
._8{width:9.671999pt;}
._b{width:10.742723pt;}
._6{width:12.770347pt;}
._27{width:13.808640pt;}
._c{width:14.749440pt;}
._d{width:15.736107pt;}
._13{width:17.100800pt;}
._10{width:18.436800pt;}
._11{width:19.332981pt;}
._20{width:20.520960pt;}
._28{width:21.610880pt;}
._29{width:22.667947pt;}
._21{width:23.807360pt;}
._22{width:24.796480pt;}
._18{width:30.674560pt;}
._14{width:35.163520pt;}
._23{width:44.996480pt;}
._24{width:46.250635pt;}
._16{width:48.897600pt;}
._f{width:56.379200pt;}
._17{width:61.723200pt;}
._1d{width:67.708480pt;}
._15{width:78.930880pt;}
._1f{width:92.077120pt;}
._e{width:109.498560pt;}
._19{width:112.725120pt;}
._25{width:138.463040pt;}
._26{width:139.545781pt;}
._1c{width:176.191680pt;}
._1b{width:192.170240pt;}
._1e{width:204.087360pt;}
._1a{width:273.292160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:6.960000pt;}
.y121{bottom:6.986667pt;}
.y57{bottom:7.040000pt;}
.y52{bottom:22.560000pt;}
.y56{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaa{bottom:103.626667pt;}
.y69{bottom:105.306667pt;}
.y92{bottom:106.426667pt;}
.ye6{bottom:111.786667pt;}
.yfb{bottom:112.106667pt;}
.y2a{bottom:117.226667pt;}
.ya9{bottom:119.306667pt;}
.y15f{bottom:119.386667pt;}
.ycd{bottom:119.946667pt;}
.y68{bottom:120.906667pt;}
.ye5{bottom:127.386667pt;}
.yfa{bottom:127.706667pt;}
.y29{bottom:132.906667pt;}
.ya8{bottom:134.906667pt;}
.y15e{bottom:134.986667pt;}
.y67{bottom:136.506667pt;}
.y91{bottom:138.026667pt;}
.y135{bottom:138.346667pt;}
.y5a{bottom:138.826667pt;}
.ye4{bottom:143.066667pt;}
.y28{bottom:148.506667pt;}
.ya7{bottom:150.586667pt;}
.ycc{bottom:151.626667pt;}
.y66{bottom:152.186667pt;}
.y11c{bottom:152.986667pt;}
.y90{bottom:153.706667pt;}
.y134{bottom:153.946667pt;}
.ye3{bottom:158.666667pt;}
.yf9{bottom:159.386667pt;}
.y27{bottom:164.106667pt;}
.y8f{bottom:169.306667pt;}
.y133{bottom:169.626667pt;}
.y59{bottom:170.426667pt;}
.y15d{bottom:174.266667pt;}
.yf8{bottom:174.986667pt;}
.y26{bottom:179.786667pt;}
.ycb{bottom:180.266667pt;}
.ya6{bottom:182.186667pt;}
.ye2{bottom:182.346667pt;}
.y58{bottom:183.706667pt;}
.y65{bottom:183.786667pt;}
.y11b{bottom:184.586667pt;}
.y8e{bottom:184.906667pt;}
.y132{bottom:185.226667pt;}
.y15c{bottom:189.866667pt;}
.yf7{bottom:190.586667pt;}
.y64{bottom:199.466667pt;}
.y8d{bottom:200.586667pt;}
.y131{bottom:200.826667pt;}
.y83{bottom:201.306667pt;}
.y25{bottom:203.706667pt;}
.ya5{bottom:210.826667pt;}
.ye1{bottom:211.626667pt;}
.y15b{bottom:213.546667pt;}
.yf6{bottom:214.266667pt;}
.y82{bottom:214.666667pt;}
.y63{bottom:215.066667pt;}
.y11a{bottom:216.186667pt;}
.y55{bottom:223.626667pt;}
.y8c{bottom:224.506667pt;}
.ybe{bottom:227.626667pt;}
.y15a{bottom:229.146667pt;}
.y62{bottom:230.666667pt;}
.y119{bottom:231.866667pt;}
.y130{bottom:232.506667pt;}
.ye0{bottom:235.946667pt;}
.y81{bottom:238.906667pt;}
.ybd{bottom:243.306667pt;}
.yf5{bottom:243.546667pt;}
.y61{bottom:246.346667pt;}
.y24{bottom:246.586667pt;}
.y118{bottom:247.466667pt;}
.y12f{bottom:248.106667pt;}
.y159{bottom:252.826667pt;}
.ybc{bottom:258.906667pt;}
.ydf{bottom:260.186667pt;}
.y60{bottom:261.946667pt;}
.y23{bottom:262.506667pt;}
.y117{bottom:263.146667pt;}
.y80{bottom:263.226667pt;}
.y54{bottom:263.626667pt;}
.y12e{bottom:263.706667pt;}
.y8b{bottom:267.386667pt;}
.y158{bottom:268.426667pt;}
.ybb{bottom:274.586667pt;}
.y116{bottom:278.746667pt;}
.y12d{bottom:279.386667pt;}
.yf4{bottom:283.466667pt;}
.y157{bottom:284.026667pt;}
.yde{bottom:284.506667pt;}
.y5f{bottom:285.866667pt;}
.y7f{bottom:287.546667pt;}
.y12c{bottom:294.986667pt;}
.y22{bottom:295.466667pt;}
.y8a{bottom:296.026667pt;}
.y51{bottom:303.546667pt;}
.yba{bottom:306.186667pt;}
.y156{bottom:307.706667pt;}
.yf3{bottom:307.786667pt;}
.ydd{bottom:308.826667pt;}
.y115{bottom:310.346667pt;}
.y12b{bottom:310.666667pt;}
.y21{bottom:311.066667pt;}
.yb9{bottom:321.786667pt;}
.y155{bottom:323.306667pt;}
.y114{bottom:326.026667pt;}
.y20{bottom:326.666667pt;}
.y5e{bottom:328.746667pt;}
.y7e{bottom:330.826667pt;}
.ydc{bottom:333.146667pt;}
.y12a{bottom:334.586667pt;}
.yb8{bottom:337.466667pt;}
.y154{bottom:338.986667pt;}
.y113{bottom:341.626667pt;}
.y1f{bottom:342.346667pt;}
.y171{bottom:346.826667pt;}
.yb7{bottom:353.066667pt;}
.y112{bottom:357.306667pt;}
.y5d{bottom:357.466667pt;}
.y1e{bottom:357.946667pt;}
.y50{bottom:362.426667pt;}
.y153{bottom:362.586667pt;}
.yf2{bottom:366.666667pt;}
.y1d{bottom:373.546667pt;}
.ydb{bottom:376.426667pt;}
.yb6{bottom:376.666667pt;}
.y129{bottom:377.466667pt;}
.y7d{bottom:378.106667pt;}
.y152{bottom:378.186667pt;}
.y111{bottom:380.906667pt;}
.y104{bottom:388.986667pt;}
.y1c{bottom:389.226667pt;}
.y7c{bottom:393.706667pt;}
.y151{bottom:393.866667pt;}
.y4f{bottom:394.106667pt;}
.yf1{bottom:398.346667pt;}
.y170{bottom:401.706667pt;}
.y1b{bottom:404.826667pt;}
.y128{bottom:406.106667pt;}
.yda{bottom:408.026667pt;}
.yb5{bottom:408.346667pt;}
.y7b{bottom:409.306667pt;}
.y4e{bottom:409.706667pt;}
.y110{bottom:410.186667pt;}
.yf0{bottom:413.946667pt;}
.y16f{bottom:417.306667pt;}
.y150{bottom:417.466667pt;}
.y1a{bottom:420.533333pt;}
.y7a{bottom:425.013333pt;}
.y4d{bottom:425.333333pt;}
.y103{bottom:428.933333pt;}
.yef{bottom:429.653333pt;}
.y14f{bottom:433.093333pt;}
.y10f{bottom:434.533333pt;}
.y19{bottom:436.133333pt;}
.yd9{bottom:436.693333pt;}
.yb4{bottom:437.013333pt;}
.y79{bottom:440.613333pt;}
.y4c{bottom:441.013333pt;}
.yee{bottom:445.253333pt;}
.y14e{bottom:448.773333pt;}
.y18{bottom:451.733333pt;}
.y102{bottom:453.253333pt;}
.y4b{bottom:456.613333pt;}
.y10e{bottom:458.853333pt;}
.yed{bottom:460.853333pt;}
.y17{bottom:467.413333pt;}
.y4a{bottom:472.293333pt;}
.y14d{bottom:472.373333pt;}
.yca{bottom:473.253333pt;}
.y16e{bottom:480.293333pt;}
.y16{bottom:483.013333pt;}
.y49{bottom:487.893333pt;}
.y14c{bottom:488.053333pt;}
.yc9{bottom:488.853333pt;}
.yec{bottom:492.533333pt;}
.y16d{bottom:495.893333pt;}
.y15{bottom:498.693333pt;}
.y78{bottom:503.493333pt;}
.y14b{bottom:503.653333pt;}
.yc8{bottom:504.533333pt;}
.yeb{bottom:508.133333pt;}
.y48{bottom:511.493333pt;}
.y101{bottom:512.133333pt;}
.y14{bottom:514.293333pt;}
.y10d{bottom:517.733333pt;}
.y77{bottom:519.173333pt;}
.y16c{bottom:519.493333pt;}
.ya4{bottom:519.813333pt;}
.yc7{bottom:520.133333pt;}
.yea{bottom:523.813333pt;}
.y14a{bottom:527.253333pt;}
.y13{bottom:529.893333pt;}
.y76{bottom:534.773333pt;}
.y16b{bottom:535.173333pt;}
.y149{bottom:542.933333pt;}
.y47{bottom:543.173333pt;}
.y100{bottom:543.813333pt;}
.y12{bottom:545.573333pt;}
.ye9{bottom:547.413333pt;}
.ya3{bottom:549.173333pt;}
.y10c{bottom:549.413333pt;}
.y75{bottom:550.453333pt;}
.yc6{bottom:551.813333pt;}
.y148{bottom:558.533333pt;}
.y46{bottom:558.773333pt;}
.yff{bottom:559.413333pt;}
.y11{bottom:561.173333pt;}
.y10b{bottom:565.013333pt;}
.yc5{bottom:567.413333pt;}
.y74{bottom:574.053333pt;}
.y45{bottom:574.453333pt;}
.yfe{bottom:575.013333pt;}
.y10{bottom:576.853333pt;}
.ye8{bottom:579.013333pt;}
.y10a{bottom:580.613333pt;}
.y147{bottom:582.213333pt;}
.ya2{bottom:589.093333pt;}
.y44{bottom:590.053333pt;}
.yf{bottom:592.453333pt;}
.y109{bottom:596.293333pt;}
.y146{bottom:597.813333pt;}
.y16a{bottom:598.053333pt;}
.yfd{bottom:598.693333pt;}
.yc4{bottom:599.013333pt;}
.y89{bottom:605.013333pt;}
.y43{bottom:605.653333pt;}
.ye7{bottom:607.653333pt;}
.ye{bottom:608.053333pt;}
.y108{bottom:611.893333pt;}
.y145{bottom:613.413333pt;}
.y169{bottom:613.653333pt;}
.yc3{bottom:614.693333pt;}
.y88{bottom:620.693333pt;}
.y73{bottom:621.333333pt;}
.yd{bottom:623.733333pt;}
.ya1{bottom:629.013333pt;}
.yc2{bottom:630.293333pt;}
.y107{bottom:635.573333pt;}
.y87{bottom:636.293333pt;}
.y72{bottom:636.933333pt;}
.y144{bottom:637.093333pt;}
.y42{bottom:637.333333pt;}
.yc{bottom:639.333333pt;}
.y71{bottom:652.613333pt;}
.y143{bottom:652.693333pt;}
.y41{bottom:652.933333pt;}
.yc1{bottom:653.973333pt;}
.yb{bottom:655.013333pt;}
.yfc{bottom:658.933333pt;}
.y86{bottom:659.973333pt;}
.y106{bottom:667.173333pt;}
.y70{bottom:668.213333pt;}
.y40{bottom:668.613333pt;}
.ya0{bottom:668.933333pt;}
.y142{bottom:676.373333pt;}
.ya{bottom:678.933333pt;}
.y3f{bottom:684.213333pt;}
.yc0{bottom:685.573333pt;}
.y85{bottom:691.573333pt;}
.y141{bottom:691.973333pt;}
.y168{bottom:692.213333pt;}
.y105{bottom:695.813333pt;}
.y5c{bottom:699.173333pt;}
.y3e{bottom:699.813333pt;}
.y140{bottom:707.573333pt;}
.y167{bottom:707.813333pt;}
.y9f{bottom:708.853333pt;}
.ybf{bottom:714.213333pt;}
.y6f{bottom:715.493333pt;}
.y84{bottom:720.213333pt;}
.y9{bottom:721.813333pt;}
.y166{bottom:723.493333pt;}
.y5b{bottom:727.813333pt;}
.y6e{bottom:731.093333pt;}
.y13f{bottom:731.253333pt;}
.y3d{bottom:731.493333pt;}
.y6d{bottom:746.693333pt;}
.y13e{bottom:746.853333pt;}
.y3c{bottom:747.093333pt;}
.y8{bottom:753.653333pt;}
.y6c{bottom:762.373333pt;}
.y13d{bottom:762.533333pt;}
.y3b{bottom:762.693333pt;}
.y9e{bottom:767.813333pt;}
.y3a{bottom:778.373333pt;}
.y127{bottom:781.893333pt;}
.y7{bottom:785.653333pt;}
.yb3{bottom:785.973333pt;}
.y13c{bottom:786.133333pt;}
.y39{bottom:793.973333pt;}
.y126{bottom:797.573333pt;}
.y9d{bottom:799.413333pt;}
.yb2{bottom:801.653333pt;}
.y13b{bottom:801.733333pt;}
.y165{bottom:801.973333pt;}
.y38{bottom:809.653333pt;}
.y125{bottom:813.173333pt;}
.yd8{bottom:813.733333pt;}
.y9c{bottom:815.013333pt;}
.yb1{bottom:817.253333pt;}
.y13a{bottom:817.413333pt;}
.y164{bottom:817.653333pt;}
.y6{bottom:821.013333pt;}
.y37{bottom:825.253333pt;}
.y124{bottom:828.853333pt;}
.yd7{bottom:829.333333pt;}
.y9b{bottom:831.413333pt;}
.yb0{bottom:832.853333pt;}
.y163{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.y36{bottom:840.853333pt;}
.y139{bottom:841.333333pt;}
.yd6{bottom:844.933333pt;}
.y9a{bottom:847.013333pt;}
.y123{bottom:852.453333pt;}
.y6b{bottom:856.533333pt;}
.y162{bottom:856.853333pt;}
.yd5{bottom:860.613333pt;}
.y99{bottom:863.413333pt;}
.yaf{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y6a{bottom:872.133333pt;}
.y35{bottom:872.533333pt;}
.yd4{bottom:876.213333pt;}
.y98{bottom:879.013333pt;}
.yae{bottom:880.133333pt;}
.y122{bottom:884.053333pt;}
.y138{bottom:884.213333pt;}
.y34{bottom:888.133333pt;}
.yad{bottom:895.813333pt;}
.y120{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.yd3{bottom:899.840000pt;}
.y33{bottom:903.840000pt;}
.y137{bottom:908.160000pt;}
.y97{bottom:911.440000pt;}
.y161{bottom:911.840000pt;}
.y32{bottom:919.440000pt;}
.y11f{bottom:921.680000pt;}
.y160{bottom:927.440000pt;}
.yd2{bottom:931.520000pt;}
.y31{bottom:935.040000pt;}
.y96{bottom:943.040000pt;}
.y11e{bottom:946.000000pt;}
.yd1{bottom:947.120000pt;}
.y30{bottom:950.720000pt;}
.y136{bottom:951.040000pt;}
.y95{bottom:958.720000pt;}
.yd0{bottom:962.800000pt;}
.y2f{bottom:966.320000pt;}
.yac{bottom:966.720000pt;}
.y11d{bottom:970.320000pt;}
.y94{bottom:974.320000pt;}
.ycf{bottom:978.400000pt;}
.yab{bottom:982.320000pt;}
.y93{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.yce{bottom:1002.320000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h13{height:23.626667pt;}
.hf{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.ha{height:39.200000pt;}
.hc{height:39.280000pt;}
.h11{height:39.306667pt;}
.hb{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.927899pt;}
.h9{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:83.840000pt;}
.w4{width:83.920000pt;}
.w7{width:93.920000pt;}
.w23{width:100.080000pt;}
.w19{width:102.746667pt;}
.w1e{width:103.280000pt;}
.w12{width:103.840000pt;}
.wb{width:104.186667pt;}
.w18{width:105.120000pt;}
.wa{width:105.360000pt;}
.w26{width:108.320000pt;}
.w22{width:114.346667pt;}
.w3{width:114.506667pt;}
.w13{width:115.226667pt;}
.wd{width:115.946667pt;}
.w24{width:125.120000pt;}
.w6{width:131.706667pt;}
.w21{width:134.560000pt;}
.w1f{width:136.160000pt;}
.w1d{width:137.146667pt;}
.w10{width:151.600000pt;}
.w20{width:157.866667pt;}
.w9{width:159.306667pt;}
.w8{width:160.560000pt;}
.w15{width:169.706667pt;}
.w11{width:179.146667pt;}
.w1c{width:182.560000pt;}
.w25{width:186.746667pt;}
.w17{width:187.226667pt;}
.w1b{width:189.786667pt;}
.w1a{width:194.720000pt;}
.we{width:197.680000pt;}
.wf{width:204.426667pt;}
.w14{width:207.680000pt;}
.w16{width:207.760000pt;}
.wc{width:256.480000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x33{left:78.400000pt;}
.xe{left:83.280000pt;}
.x14{left:84.479988pt;}
.x21{left:93.040000pt;}
.x3a{left:98.879988pt;}
.x15{left:108.479988pt;}
.x2c{left:164.506667pt;}
.x5{left:176.266667pt;}
.x16{left:177.786667pt;}
.x2{left:180.266655pt;}
.x34{left:193.386667pt;}
.x20{left:197.386655pt;}
.x26{left:199.626655pt;}
.x1c{left:203.306655pt;}
.x2b{left:229.386655pt;}
.x27{left:231.466667pt;}
.xf{left:243.306667pt;}
.xb{left:245.226655pt;}
.x39{left:248.666655pt;}
.x6{left:260.826667pt;}
.x22{left:272.826667pt;}
.x30{left:274.186655pt;}
.x1f{left:278.186655pt;}
.x1a{left:287.706655pt;}
.xd{left:292.746655pt;}
.x35{left:294.106667pt;}
.x31{left:302.906667pt;}
.x7{left:345.306667pt;}
.x10{left:349.386667pt;}
.x2d{left:359.866667pt;}
.x17{left:376.186667pt;}
.x23{left:377.386667pt;}
.x36{left:419.866667pt;}
.x28{left:439.866667pt;}
.x11{left:454.213333pt;}
.x8{left:477.653333pt;}
.x24{left:493.253333pt;}
.x2e{left:550.293333pt;}
.x9{left:572.293333pt;}
.x1d{left:575.013322pt;}
.x12{left:576.053322pt;}
.x18{left:581.253333pt;}
.x32{left:598.293333pt;}
.x1e{left:602.053322pt;}
.x38{left:603.253322pt;}
.x37{left:607.253333pt;}
.x13{left:615.013322pt;}
.x19{left:620.053322pt;}
.xa{left:622.053322pt;}
.x29{left:627.733333pt;}
.xc{left:642.053322pt;}
.x25{left:643.013322pt;}
.x1b{left:644.053322pt;}
.x2a{left:645.013322pt;}
.x2f{left:649.013322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  