
    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_2db29440705181c10dc92945.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_eb64b1d584cd6c642bd3af0e.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_a8046140436b2b037d7189aa.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_6cc67c3ba416bafb924cd519.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f05c1fd2c2d4244ea4750e59.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_ab165060d3c41fe01d9e468d.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0a631a0a576477bdac628f8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9b18c5d07dfea22aa87cecab.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1c1844754cca7ce191843444.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.036000px;}
.ls17{letter-spacing:-0.013320px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls1a{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.279680px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.213080px;}
.wsb{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.160400px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._8{margin-left:-3.426600px;}
._a{margin-left:-2.285402px;}
._0{margin-left:-1.158000px;}
._1{width:1.090188px;}
._d{width:2.517012px;}
._2{width:4.027800px;}
._3{width:5.712001px;}
._e{width:7.033800px;}
._f{width:8.116200px;}
._10{width:9.145811px;}
._c{width:10.581601px;}
._b{width:11.843400px;}
._11{width:14.702520px;}
._18{width:15.838440px;}
._12{width:17.074200px;}
._13{width:18.361450px;}
._6{width:19.374600px;}
._7{width:20.677197px;}
._1b{width:21.711485px;}
._9{width:22.905600px;}
._19{width:24.288480px;}
._1a{width:25.611120px;}
._33{width:27.414720px;}
._14{width:28.436760px;}
._16{width:29.579040px;}
._17{width:31.021920px;}
._1d{width:32.885640px;}
._1c{width:34.027920px;}
._2c{width:37.018200px;}
._15{width:38.191920px;}
._43{width:40.055640px;}
._41{width:41.603040px;}
._4{width:43.105800px;}
._5{width:44.110093px;}
._31{width:46.593000px;}
._20{width:48.051600px;}
._24{width:49.057920px;}
._2f{width:50.260320px;}
._2e{width:51.556680px;}
._2b{width:57.414600px;}
._32{width:58.857480px;}
._3e{width:62.103960px;}
._3a{width:69.083640px;}
._2d{width:70.520760px;}
._40{width:71.594892px;}
._36{width:73.406520px;}
._39{width:78.336360px;}
._3d{width:79.478640px;}
._3b{width:80.741160px;}
._44{width:82.206600px;}
._21{width:83.211840px;}
._27{width:88.737120px;}
._1f{width:94.283880px;}
._34{width:97.454520px;}
._30{width:104.729040px;}
._25{width:107.740800px;}
._28{width:110.335920px;}
._3f{width:112.009320px;}
._3c{width:122.103720px;}
._26{width:132.865200px;}
._23{width:134.728920px;}
._38{width:149.037480px;}
._42{width:162.143640px;}
._22{width:173.987280px;}
._29{width:194.608440px;}
._1e{width:214.027200px;}
._2a{width:230.439960px;}
._35{width:296.391600px;}
._37{width:387.232920px;}
.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;}
.y10a{bottom:7.830000px;}
.y114{bottom:7.860000px;}
.y10e{bottom:7.920000px;}
.y117{bottom:25.380000px;}
.y109{bottom:25.470000px;}
.y113{bottom:25.500000px;}
.y10d{bottom:43.020000px;}
.y112{bottom:43.050000px;}
.y11c{bottom:43.110000px;}
.y10c{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y106{bottom:74.280000px;}
.y125{bottom:97.590000px;}
.y1{bottom:101.640000px;}
.ye9{bottom:117.030000px;}
.y151{bottom:117.390000px;}
.y90{bottom:120.270000px;}
.y59{bottom:133.770000px;}
.y118{bottom:134.310000px;}
.ye8{bottom:134.580000px;}
.y150{bottom:134.940000px;}
.y8f{bottom:137.820000px;}
.y29{bottom:140.610000px;}
.ybc{bottom:145.290000px;}
.y14f{bottom:152.490000px;}
.y8e{bottom:155.460000px;}
.y28{bottom:158.250000px;}
.y124{bottom:160.140000px;}
.ye7{bottom:161.130000px;}
.y58{bottom:169.320000px;}
.y27{bottom:175.800000px;}
.y14e{bottom:179.130000px;}
.ybb{bottom:180.930000px;}
.y8d{bottom:182.010000px;}
.y26{bottom:193.350000px;}
.y14d{bottom:196.680000px;}
.ye6{bottom:196.770000px;}
.yba{bottom:198.480000px;}
.y57{bottom:204.960000px;}
.y25{bottom:210.990000px;}
.ye5{bottom:214.320000px;}
.yb9{bottom:216.030000px;}
.y8c{bottom:217.650000px;}
.y123{bottom:222.600000px;}
.y24{bottom:228.540000px;}
.ye4{bottom:231.960000px;}
.yb8{bottom:233.670000px;}
.y8b{bottom:235.200000px;}
.y56{bottom:240.510000px;}
.y14c{bottom:240.870000px;}
.yb7{bottom:251.220000px;}
.y8a{bottom:252.750000px;}
.y23{bottom:255.450000px;}
.y55{bottom:258.060000px;}
.y14b{bottom:258.420000px;}
.y116{bottom:259.320000px;}
.ye3{bottom:267.510000px;}
.yb6{bottom:268.860000px;}
.y89{bottom:270.390000px;}
.y54{bottom:275.700000px;}
.y14a{bottom:276.060000px;}
.ye2{bottom:285.060000px;}
.y122{bottom:285.150000px;}
.yb5{bottom:286.410000px;}
.y88{bottom:287.940000px;}
.ye1{bottom:302.610000px;}
.y22{bottom:303.690000px;}
.yb4{bottom:303.960000px;}
.y87{bottom:305.580000px;}
.y53{bottom:311.250000px;}
.y149{bottom:320.250000px;}
.ye0{bottom:321.060000px;}
.y21{bottom:321.600000px;}
.y115{bottom:321.780000px;}
.y86{bottom:323.130000px;}
.y52{bottom:329.610000px;}
.y121{bottom:330.060000px;}
.y7d{bottom:335.550000px;}
.y148{bottom:337.800000px;}
.ydf{bottom:338.610000px;}
.yb3{bottom:339.150000px;}
.y85{bottom:340.680000px;}
.y51{bottom:348.060000px;}
.y7c{bottom:353.100000px;}
.yb2{bottom:356.790000px;}
.yde{bottom:357.060000px;}
.y84{bottom:358.320000px;}
.y20{bottom:358.680000px;}
.y147{bottom:364.350000px;}
.y50{bottom:366.510000px;}
.ydd{bottom:374.700000px;}
.y83{bottom:375.870000px;}
.y1f{bottom:376.230000px;}
.y104{bottom:376.500000px;}
.y146{bottom:381.990000px;}
.yb1{bottom:383.340000px;}
.y4f{bottom:384.060000px;}
.y111{bottom:384.330000px;}
.y7b{bottom:388.740000px;}
.ydc{bottom:392.250000px;}
.y120{bottom:392.550000px;}
.y1e{bottom:393.870000px;}
.y145{bottom:399.540000px;}
.y82{bottom:402.420000px;}
.y4e{bottom:402.510000px;}
.ydb{bottom:410.700000px;}
.y1d{bottom:411.420000px;}
.y103{bottom:412.050000px;}
.yb0{bottom:418.890000px;}
.y4d{bottom:420.060000px;}
.y7a{bottom:424.290000px;}
.y144{bottom:426.090000px;}
.yda{bottom:428.250000px;}
.y1c{bottom:428.970000px;}
.y102{bottom:429.690000px;}
.y81{bottom:435.090000px;}
.yaf{bottom:436.530000px;}
.y79{bottom:441.840000px;}
.y143{bottom:443.730000px;}
.yd9{bottom:445.800000px;}
.y1b{bottom:446.610000px;}
.y110{bottom:446.820000px;}
.y101{bottom:447.240000px;}
.yae{bottom:454.080000px;}
.y11f{bottom:455.100000px;}
.y4c{bottom:456.510000px;}
.y78{bottom:459.480000px;}
.y1a{bottom:464.160000px;}
.yd8{bottom:464.250000px;}
.y100{bottom:464.880000px;}
.y142{bottom:470.310000px;}
.y80{bottom:471.030000px;}
.yad{bottom:471.750000px;}
.y4b{bottom:474.090000px;}
.y77{bottom:477.060000px;}
.y19{bottom:481.830000px;}
.yff{bottom:482.460000px;}
.y141{bottom:487.950000px;}
.yac{bottom:489.300000px;}
.y76{bottom:494.700000px;}
.y18{bottom:499.380000px;}
.y4a{bottom:500.730000px;}
.yfe{bottom:509.370000px;}
.y75{bottom:512.250000px;}
.y140{bottom:514.500000px;}
.y17{bottom:516.930000px;}
.y11e{bottom:517.560000px;}
.y7f{bottom:519.270000px;}
.y163{bottom:522.690000px;}
.yab{bottom:524.850000px;}
.y13f{bottom:532.050000px;}
.y16{bottom:534.570000px;}
.yd7{bottom:535.830000px;}
.y49{bottom:536.280000px;}
.y74{bottom:538.800000px;}
.y162{bottom:540.330000px;}
.yaa{bottom:542.490000px;}
.yfd{bottom:546.360000px;}
.y13e{bottom:549.690000px;}
.y7e{bottom:551.490000px;}
.y15{bottom:552.120000px;}
.y48{bottom:553.830000px;}
.ya9{bottom:560.040000px;}
.yd6{bottom:562.470000px;}
.yfc{bottom:564.000000px;}
.y161{bottom:566.880000px;}
.y14{bottom:569.670000px;}
.y47{bottom:571.470000px;}
.y10f{bottom:571.830000px;}
.y73{bottom:574.440000px;}
.y13d{bottom:576.240000px;}
.ya8{bottom:577.590000px;}
.y11d{bottom:580.110000px;}
.y160{bottom:584.430000px;}
.y13{bottom:587.310000px;}
.y46{bottom:589.020000px;}
.y72{bottom:591.990000px;}
.y13c{bottom:593.880000px;}
.ya7{bottom:595.230000px;}
.yd5{bottom:598.380000px;}
.yfb{bottom:599.550000px;}
.y15f{bottom:602.070000px;}
.y12{bottom:604.860000px;}
.y45{bottom:606.660000px;}
.y71{bottom:609.630000px;}
.y13b{bottom:611.430000px;}
.ya6{bottom:612.780000px;}
.yfa{bottom:617.190000px;}
.y11{bottom:622.500000px;}
.y70{bottom:627.180000px;}
.y15e{bottom:628.620000px;}
.ya5{bottom:630.420000px;}
.y44{bottom:633.210000px;}
.yf9{bottom:634.740000px;}
.y13a{bottom:637.980000px;}
.y10{bottom:640.050000px;}
.y11b{bottom:642.570000px;}
.y6f{bottom:644.730000px;}
.y15d{bottom:646.260000px;}
.yd4{bottom:646.620000px;}
.y10b{bottom:651.930000px;}
.yf8{bottom:653.190000px;}
.y139{bottom:655.620000px;}
.ya4{bottom:656.970000px;}
.yf{bottom:657.600000px;}
.y6e{bottom:662.370000px;}
.y15c{bottom:663.810000px;}
.yd3{bottom:664.260000px;}
.y43{bottom:669.120000px;}
.yf7{bottom:670.740000px;}
.y138{bottom:673.170000px;}
.ye{bottom:675.240000px;}
.y6d{bottom:679.920000px;}
.yd2{bottom:681.810000px;}
.yf6{bottom:688.290000px;}
.y15b{bottom:690.360000px;}
.ya3{bottom:692.520000px;}
.yd{bottom:692.790000px;}
.y6c{bottom:697.560000px;}
.yd1{bottom:699.360000px;}
.y137{bottom:700.080000px;}
.y11a{bottom:705.120000px;}
.yf5{bottom:706.740000px;}
.y15a{bottom:708.000000px;}
.ya2{bottom:710.160000px;}
.yc{bottom:710.430000px;}
.y6b{bottom:715.110000px;}
.yd0{bottom:717.000000px;}
.y42{bottom:717.360000px;}
.yf4{bottom:724.290000px;}
.ya1{bottom:727.710000px;}
.yb{bottom:727.980000px;}
.y108{bottom:732.060000px;}
.ycf{bottom:734.550000px;}
.y41{bottom:735.000000px;}
.y6a{bottom:741.660000px;}
.ya0{bottom:745.350000px;}
.y136{bottom:748.410000px;}
.y119{bottom:750.060000px;}
.yf3{bottom:751.740000px;}
.yce{bottom:752.190000px;}
.y40{bottom:752.550000px;}
.ya{bottom:754.890000px;}
.y9f{bottom:762.900000px;}
.y135{bottom:765.960000px;}
.yf2{bottom:769.290000px;}
.ycd{bottom:769.740000px;}
.y3f{bottom:770.190000px;}
.y69{bottom:777.300000px;}
.y9e{bottom:780.450000px;}
.y134{bottom:783.510000px;}
.y3e{bottom:787.740000px;}
.y68{bottom:794.850000px;}
.ycc{bottom:796.290000px;}
.y107{bottom:798.390000px;}
.y9{bottom:803.130000px;}
.yf1{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.y9d{bottom:807.000000px;}
.y133{bottom:810.420000px;}
.y67{bottom:812.490000px;}
.y159{bottom:813.930000px;}
.yf0{bottom:822.480000px;}
.y105{bottom:824.940000px;}
.y66{bottom:830.040000px;}
.y158{bottom:831.480000px;}
.ycb{bottom:831.930000px;}
.y8{bottom:838.950000px;}
.y9c{bottom:839.670000px;}
.yef{bottom:840.030000px;}
.y3c{bottom:840.930000px;}
.y132{bottom:847.500000px;}
.y157{bottom:849.030000px;}
.yca{bottom:849.480000px;}
.y65{bottom:856.590000px;}
.yee{bottom:857.670000px;}
.y3b{bottom:858.480000px;}
.y131{bottom:865.050000px;}
.yc9{bottom:867.030000px;}
.y7{bottom:874.950000px;}
.y9b{bottom:875.220000px;}
.y156{bottom:875.670000px;}
.y3a{bottom:876.030000px;}
.yc8{bottom:884.670000px;}
.y130{bottom:891.960000px;}
.y64{bottom:892.140000px;}
.y9a{bottom:892.860000px;}
.y155{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.yed{bottom:901.860000px;}
.yc7{bottom:902.220000px;}
.y99{bottom:910.410000px;}
.y63{bottom:910.590000px;}
.y154{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y38{bottom:911.220000px;}
.y37{bottom:928.860000px;}
.y62{bottom:929.040000px;}
.y12f{bottom:929.310000px;}
.y98{bottom:936.960000px;}
.yec{bottom:937.410000px;}
.yc6{bottom:937.860000px;}
.y36{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yeb{bottom:954.960000px;}
.yc5{bottom:955.410000px;}
.y61{bottom:956.400000px;}
.y35{bottom:963.960000px;}
.y97{bottom:972.600000px;}
.yc4{bottom:972.960000px;}
.y12e{bottom:977.550000px;}
.y34{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y60{bottom:988.980000px;}
.y96{bottom:990.150000px;}
.yc3{bottom:990.600000px;}
.y12d{bottom:995.190000px;}
.y153{bottom:999.150000px;}
.y5f{bottom:1007.430000px;}
.y95{bottom:1007.790000px;}
.yc2{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y12c{bottom:1012.770000px;}
.y152{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y94{bottom:1025.370000px;}
.y5e{bottom:1025.820000px;}
.y12b{bottom:1030.320000px;}
.yea{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y93{bottom:1042.920000px;}
.yc1{bottom:1043.370000px;}
.y5d{bottom:1044.270000px;}
.y12a{bottom:1047.960000px;}
.y31{bottom:1052.370000px;}
.y92{bottom:1060.560000px;}
.yc0{bottom:1060.920000px;}
.y5c{bottom:1061.820000px;}
.y129{bottom:1065.510000px;}
.y30{bottom:1069.920000px;}
.ybf{bottom:1078.560000px;}
.y5b{bottom:1080.270000px;}
.y128{bottom:1083.150000px;}
.y91{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.ybe{bottom:1096.110000px;}
.y127{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y5a{bottom:1107.720000px;}
.ybd{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y126{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hf{height:44.190000px;}
.h14{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h12{height:61.740000px;}
.h13{height:61.770000px;}
.hb{height:61.793886px;}
.h15{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h11{height:79.380000px;}
.h10{height:79.410000px;}
.hd{height:893.160000px;}
.he{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:32.220000px;}
.w8{width:48.600000px;}
.w7{width:113.880000px;}
.wb{width:173.100000px;}
.w9{width:182.700000px;}
.wa{width:198.720000px;}
.wc{width:291.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.xa{left:107.999981px;}
.x12{left:111.239987px;}
.x5{left:122.039987px;}
.xc{left:141.660000px;}
.x2{left:201.539987px;}
.xd{left:256.350000px;}
.xe{left:305.760000px;}
.x7{left:328.439987px;}
.x8{left:386.129981px;}
.xf{left:489.180000px;}
.x6{left:648.059987px;}
.x10{left:688.620000px;}
.x3{left:792.059987px;}
.x11{left:862.440000px;}
.x9{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls17{letter-spacing:-0.011840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.804160pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.744960pt;}
.wsb{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.698133pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._8{margin-left:-3.045866pt;}
._a{margin-left:-2.031468pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.969056pt;}
._d{width:2.237344pt;}
._2{width:3.580266pt;}
._3{width:5.077334pt;}
._e{width:6.252266pt;}
._f{width:7.214400pt;}
._10{width:8.129610pt;}
._c{width:9.405868pt;}
._b{width:10.527466pt;}
._11{width:13.068907pt;}
._18{width:14.078613pt;}
._12{width:15.177067pt;}
._13{width:16.321289pt;}
._6{width:17.221867pt;}
._7{width:18.379731pt;}
._1b{width:19.299098pt;}
._9{width:20.360533pt;}
._19{width:21.589760pt;}
._1a{width:22.765440pt;}
._33{width:24.368640pt;}
._14{width:25.277120pt;}
._16{width:26.292480pt;}
._17{width:27.575040pt;}
._1d{width:29.231680pt;}
._1c{width:30.247040pt;}
._2c{width:32.905067pt;}
._15{width:33.948373pt;}
._43{width:35.605013pt;}
._41{width:36.980480pt;}
._4{width:38.316266pt;}
._5{width:39.208972pt;}
._31{width:41.416000pt;}
._20{width:42.712533pt;}
._24{width:43.607040pt;}
._2f{width:44.675840pt;}
._2e{width:45.828160pt;}
._2b{width:51.035200pt;}
._32{width:52.317760pt;}
._3e{width:55.203520pt;}
._3a{width:61.407680pt;}
._2d{width:62.685120pt;}
._40{width:63.639904pt;}
._36{width:65.250240pt;}
._39{width:69.632320pt;}
._3d{width:70.647680pt;}
._3b{width:71.769920pt;}
._44{width:73.072533pt;}
._21{width:73.966080pt;}
._27{width:78.877440pt;}
._1f{width:83.807893pt;}
._34{width:86.626240pt;}
._30{width:93.092480pt;}
._25{width:95.769600pt;}
._28{width:98.076373pt;}
._3f{width:99.563840pt;}
._3c{width:108.536640pt;}
._26{width:118.102400pt;}
._23{width:119.759040pt;}
._38{width:132.477760pt;}
._42{width:144.127680pt;}
._22{width:154.655360pt;}
._29{width:172.985280pt;}
._1e{width:190.246400pt;}
._2a{width:204.835520pt;}
._35{width:263.459200pt;}
._37{width:344.207040pt;}
.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;}
.y10a{bottom:6.960000pt;}
.y114{bottom:6.986667pt;}
.y10e{bottom:7.040000pt;}
.y117{bottom:22.560000pt;}
.y109{bottom:22.640000pt;}
.y113{bottom:22.666667pt;}
.y10d{bottom:38.240000pt;}
.y112{bottom:38.266667pt;}
.y11c{bottom:38.320000pt;}
.y10c{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y106{bottom:66.026667pt;}
.y125{bottom:86.746667pt;}
.y1{bottom:90.346667pt;}
.ye9{bottom:104.026667pt;}
.y151{bottom:104.346667pt;}
.y90{bottom:106.906667pt;}
.y59{bottom:118.906667pt;}
.y118{bottom:119.386667pt;}
.ye8{bottom:119.626667pt;}
.y150{bottom:119.946667pt;}
.y8f{bottom:122.506667pt;}
.y29{bottom:124.986667pt;}
.ybc{bottom:129.146667pt;}
.y14f{bottom:135.546667pt;}
.y8e{bottom:138.186667pt;}
.y28{bottom:140.666667pt;}
.y124{bottom:142.346667pt;}
.ye7{bottom:143.226667pt;}
.y58{bottom:150.506667pt;}
.y27{bottom:156.266667pt;}
.y14e{bottom:159.226667pt;}
.ybb{bottom:160.826667pt;}
.y8d{bottom:161.786667pt;}
.y26{bottom:171.866667pt;}
.y14d{bottom:174.826667pt;}
.ye6{bottom:174.906667pt;}
.yba{bottom:176.426667pt;}
.y57{bottom:182.186667pt;}
.y25{bottom:187.546667pt;}
.ye5{bottom:190.506667pt;}
.yb9{bottom:192.026667pt;}
.y8c{bottom:193.466667pt;}
.y123{bottom:197.866667pt;}
.y24{bottom:203.146667pt;}
.ye4{bottom:206.186667pt;}
.yb8{bottom:207.706667pt;}
.y8b{bottom:209.066667pt;}
.y56{bottom:213.786667pt;}
.y14c{bottom:214.106667pt;}
.yb7{bottom:223.306667pt;}
.y8a{bottom:224.666667pt;}
.y23{bottom:227.066667pt;}
.y55{bottom:229.386667pt;}
.y14b{bottom:229.706667pt;}
.y116{bottom:230.506667pt;}
.ye3{bottom:237.786667pt;}
.yb6{bottom:238.986667pt;}
.y89{bottom:240.346667pt;}
.y54{bottom:245.066667pt;}
.y14a{bottom:245.386667pt;}
.ye2{bottom:253.386667pt;}
.y122{bottom:253.466667pt;}
.yb5{bottom:254.586667pt;}
.y88{bottom:255.946667pt;}
.ye1{bottom:268.986667pt;}
.y22{bottom:269.946667pt;}
.yb4{bottom:270.186667pt;}
.y87{bottom:271.626667pt;}
.y53{bottom:276.666667pt;}
.y149{bottom:284.666667pt;}
.ye0{bottom:285.386667pt;}
.y21{bottom:285.866667pt;}
.y115{bottom:286.026667pt;}
.y86{bottom:287.226667pt;}
.y52{bottom:292.986667pt;}
.y121{bottom:293.386667pt;}
.y7d{bottom:298.266667pt;}
.y148{bottom:300.266667pt;}
.ydf{bottom:300.986667pt;}
.yb3{bottom:301.466667pt;}
.y85{bottom:302.826667pt;}
.y51{bottom:309.386667pt;}
.y7c{bottom:313.866667pt;}
.yb2{bottom:317.146667pt;}
.yde{bottom:317.386667pt;}
.y84{bottom:318.506667pt;}
.y20{bottom:318.826667pt;}
.y147{bottom:323.866667pt;}
.y50{bottom:325.786667pt;}
.ydd{bottom:333.066667pt;}
.y83{bottom:334.106667pt;}
.y1f{bottom:334.426667pt;}
.y104{bottom:334.666667pt;}
.y146{bottom:339.546667pt;}
.yb1{bottom:340.746667pt;}
.y4f{bottom:341.386667pt;}
.y111{bottom:341.626667pt;}
.y7b{bottom:345.546667pt;}
.ydc{bottom:348.666667pt;}
.y120{bottom:348.933333pt;}
.y1e{bottom:350.106667pt;}
.y145{bottom:355.146667pt;}
.y82{bottom:357.706667pt;}
.y4e{bottom:357.786667pt;}
.ydb{bottom:365.066667pt;}
.y1d{bottom:365.706667pt;}
.y103{bottom:366.266667pt;}
.yb0{bottom:372.346667pt;}
.y4d{bottom:373.386667pt;}
.y7a{bottom:377.146667pt;}
.y144{bottom:378.746667pt;}
.yda{bottom:380.666667pt;}
.y1c{bottom:381.306667pt;}
.y102{bottom:381.946667pt;}
.y81{bottom:386.746667pt;}
.yaf{bottom:388.026667pt;}
.y79{bottom:392.746667pt;}
.y143{bottom:394.426667pt;}
.yd9{bottom:396.266667pt;}
.y1b{bottom:396.986667pt;}
.y110{bottom:397.173333pt;}
.y101{bottom:397.546667pt;}
.yae{bottom:403.626667pt;}
.y11f{bottom:404.533333pt;}
.y4c{bottom:405.786667pt;}
.y78{bottom:408.426667pt;}
.y1a{bottom:412.586667pt;}
.yd8{bottom:412.666667pt;}
.y100{bottom:413.226667pt;}
.y142{bottom:418.053333pt;}
.y80{bottom:418.693333pt;}
.yad{bottom:419.333333pt;}
.y4b{bottom:421.413333pt;}
.y77{bottom:424.053333pt;}
.y19{bottom:428.293333pt;}
.yff{bottom:428.853333pt;}
.y141{bottom:433.733333pt;}
.yac{bottom:434.933333pt;}
.y76{bottom:439.733333pt;}
.y18{bottom:443.893333pt;}
.y4a{bottom:445.093333pt;}
.yfe{bottom:452.773333pt;}
.y75{bottom:455.333333pt;}
.y140{bottom:457.333333pt;}
.y17{bottom:459.493333pt;}
.y11e{bottom:460.053333pt;}
.y7f{bottom:461.573333pt;}
.y163{bottom:464.613333pt;}
.yab{bottom:466.533333pt;}
.y13f{bottom:472.933333pt;}
.y16{bottom:475.173333pt;}
.yd7{bottom:476.293333pt;}
.y49{bottom:476.693333pt;}
.y74{bottom:478.933333pt;}
.y162{bottom:480.293333pt;}
.yaa{bottom:482.213333pt;}
.yfd{bottom:485.653333pt;}
.y13e{bottom:488.613333pt;}
.y7e{bottom:490.213333pt;}
.y15{bottom:490.773333pt;}
.y48{bottom:492.293333pt;}
.ya9{bottom:497.813333pt;}
.yd6{bottom:499.973333pt;}
.yfc{bottom:501.333333pt;}
.y161{bottom:503.893333pt;}
.y14{bottom:506.373333pt;}
.y47{bottom:507.973333pt;}
.y10f{bottom:508.293333pt;}
.y73{bottom:510.613333pt;}
.y13d{bottom:512.213333pt;}
.ya8{bottom:513.413333pt;}
.y11d{bottom:515.653333pt;}
.y160{bottom:519.493333pt;}
.y13{bottom:522.053333pt;}
.y46{bottom:523.573333pt;}
.y72{bottom:526.213333pt;}
.y13c{bottom:527.893333pt;}
.ya7{bottom:529.093333pt;}
.yd5{bottom:531.893333pt;}
.yfb{bottom:532.933333pt;}
.y15f{bottom:535.173333pt;}
.y12{bottom:537.653333pt;}
.y45{bottom:539.253333pt;}
.y71{bottom:541.893333pt;}
.y13b{bottom:543.493333pt;}
.ya6{bottom:544.693333pt;}
.yfa{bottom:548.613333pt;}
.y11{bottom:553.333333pt;}
.y70{bottom:557.493333pt;}
.y15e{bottom:558.773333pt;}
.ya5{bottom:560.373333pt;}
.y44{bottom:562.853333pt;}
.yf9{bottom:564.213333pt;}
.y13a{bottom:567.093333pt;}
.y10{bottom:568.933333pt;}
.y11b{bottom:571.173333pt;}
.y6f{bottom:573.093333pt;}
.y15d{bottom:574.453333pt;}
.yd4{bottom:574.773333pt;}
.y10b{bottom:579.493333pt;}
.yf8{bottom:580.613333pt;}
.y139{bottom:582.773333pt;}
.ya4{bottom:583.973333pt;}
.yf{bottom:584.533333pt;}
.y6e{bottom:588.773333pt;}
.y15c{bottom:590.053333pt;}
.yd3{bottom:590.453333pt;}
.y43{bottom:594.773333pt;}
.yf7{bottom:596.213333pt;}
.y138{bottom:598.373333pt;}
.ye{bottom:600.213333pt;}
.y6d{bottom:604.373333pt;}
.yd2{bottom:606.053333pt;}
.yf6{bottom:611.813333pt;}
.y15b{bottom:613.653333pt;}
.ya3{bottom:615.573333pt;}
.yd{bottom:615.813333pt;}
.y6c{bottom:620.053333pt;}
.yd1{bottom:621.653333pt;}
.y137{bottom:622.293333pt;}
.y11a{bottom:626.773333pt;}
.yf5{bottom:628.213333pt;}
.y15a{bottom:629.333333pt;}
.ya2{bottom:631.253333pt;}
.yc{bottom:631.493333pt;}
.y6b{bottom:635.653333pt;}
.yd0{bottom:637.333333pt;}
.y42{bottom:637.653333pt;}
.yf4{bottom:643.813333pt;}
.ya1{bottom:646.853333pt;}
.yb{bottom:647.093333pt;}
.y108{bottom:650.720000pt;}
.ycf{bottom:652.933333pt;}
.y41{bottom:653.333333pt;}
.y6a{bottom:659.253333pt;}
.ya0{bottom:662.533333pt;}
.y136{bottom:665.253333pt;}
.y119{bottom:666.720000pt;}
.yf3{bottom:668.213333pt;}
.yce{bottom:668.613333pt;}
.y40{bottom:668.933333pt;}
.ya{bottom:671.013333pt;}
.y9f{bottom:678.133333pt;}
.y135{bottom:680.853333pt;}
.yf2{bottom:683.813333pt;}
.ycd{bottom:684.213333pt;}
.y3f{bottom:684.613333pt;}
.y69{bottom:690.933333pt;}
.y9e{bottom:693.733333pt;}
.y134{bottom:696.453333pt;}
.y3e{bottom:700.213333pt;}
.y68{bottom:706.533333pt;}
.ycc{bottom:707.813333pt;}
.y107{bottom:709.680000pt;}
.y9{bottom:713.893333pt;}
.yf1{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.y9d{bottom:717.333333pt;}
.y133{bottom:720.373333pt;}
.y67{bottom:722.213333pt;}
.y159{bottom:723.493333pt;}
.yf0{bottom:731.093333pt;}
.y105{bottom:733.280000pt;}
.y66{bottom:737.813333pt;}
.y158{bottom:739.093333pt;}
.ycb{bottom:739.493333pt;}
.y8{bottom:745.733333pt;}
.y9c{bottom:746.373333pt;}
.yef{bottom:746.693333pt;}
.y3c{bottom:747.493333pt;}
.y132{bottom:753.333333pt;}
.y157{bottom:754.693333pt;}
.yca{bottom:755.093333pt;}
.y65{bottom:761.413333pt;}
.yee{bottom:762.373333pt;}
.y3b{bottom:763.093333pt;}
.y131{bottom:768.933333pt;}
.yc9{bottom:770.693333pt;}
.y7{bottom:777.733333pt;}
.y9b{bottom:777.973333pt;}
.y156{bottom:778.373333pt;}
.y3a{bottom:778.693333pt;}
.yc8{bottom:786.373333pt;}
.y130{bottom:792.853333pt;}
.y64{bottom:793.013333pt;}
.y9a{bottom:793.653333pt;}
.y155{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.yed{bottom:801.653333pt;}
.yc7{bottom:801.973333pt;}
.y99{bottom:809.253333pt;}
.y63{bottom:809.413333pt;}
.y154{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y38{bottom:809.973333pt;}
.y37{bottom:825.653333pt;}
.y62{bottom:825.813333pt;}
.y12f{bottom:826.053333pt;}
.y98{bottom:832.853333pt;}
.yec{bottom:833.253333pt;}
.yc6{bottom:833.653333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yeb{bottom:848.853333pt;}
.yc5{bottom:849.253333pt;}
.y61{bottom:850.133333pt;}
.y35{bottom:856.853333pt;}
.y97{bottom:864.533333pt;}
.yc4{bottom:864.853333pt;}
.y12e{bottom:868.933333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y60{bottom:879.093333pt;}
.y96{bottom:880.133333pt;}
.yc3{bottom:880.533333pt;}
.y12d{bottom:884.613333pt;}
.y153{bottom:888.133333pt;}
.y5f{bottom:895.493333pt;}
.y95{bottom:895.813333pt;}
.yc2{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y12c{bottom:900.240000pt;}
.y152{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y94{bottom:911.440000pt;}
.y5e{bottom:911.840000pt;}
.y12b{bottom:915.840000pt;}
.yea{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y93{bottom:927.040000pt;}
.yc1{bottom:927.440000pt;}
.y5d{bottom:928.240000pt;}
.y12a{bottom:931.520000pt;}
.y31{bottom:935.440000pt;}
.y92{bottom:942.720000pt;}
.yc0{bottom:943.040000pt;}
.y5c{bottom:943.840000pt;}
.y129{bottom:947.120000pt;}
.y30{bottom:951.040000pt;}
.ybf{bottom:958.720000pt;}
.y5b{bottom:960.240000pt;}
.y128{bottom:962.800000pt;}
.y91{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.ybe{bottom:974.320000pt;}
.y127{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y5a{bottom:984.640000pt;}
.ybd{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y126{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hf{height:39.280000pt;}
.h14{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h12{height:54.880000pt;}
.h13{height:54.906667pt;}
.hb{height:54.927899pt;}
.h15{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h11{height:70.560000pt;}
.h10{height:70.586667pt;}
.hd{height:793.920000pt;}
.he{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:28.640000pt;}
.w8{width:43.200000pt;}
.w7{width:101.226667pt;}
.wb{width:153.866667pt;}
.w9{width:162.400000pt;}
.wa{width:176.640000pt;}
.wc{width:259.040000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.xa{left:95.999983pt;}
.x12{left:98.879988pt;}
.x5{left:108.479988pt;}
.xc{left:125.920000pt;}
.x2{left:179.146655pt;}
.xd{left:227.866667pt;}
.xe{left:271.786667pt;}
.x7{left:291.946655pt;}
.x8{left:343.226650pt;}
.xf{left:434.826667pt;}
.x6{left:576.053322pt;}
.x10{left:612.106667pt;}
.x3{left:704.053322pt;}
.x11{left:766.613333pt;}
.x9{left:996.773317pt;}
}




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