
    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_d90faf34748747e1bc513d17.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_ea146165cadfda6dca9a04e1.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0a906d8f37d60e0c27800c46.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bdbf8ffa4f126d298112c6ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_3344dba395b1e4d9c7c6ae3c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.649414;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_27bd88c595baf3060edcded8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.745605;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_f53e79e114b5f7f64ea9efbb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_157fc8c1c911b27ce90ea5c3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v14{vertical-align:-23.040000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-12.240000px;}
.ve{vertical-align:-10.800000px;}
.v6{vertical-align:-5.736000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.880000px;}
.vf{vertical-align:10.800000px;}
.v4{vertical-align:12.240000px;}
.v13{vertical-align:16.560000px;}
.v5{vertical-align:20.880000px;}
.v15{vertical-align:22.320000px;}
.vb{vertical-align:25.200000px;}
.v1{vertical-align:27.360000px;}
.v11{vertical-align:30.240000px;}
.v10{vertical-align:35.280000px;}
.va{vertical-align:37.440000px;}
.vc{vertical-align:39.600000px;}
.v9{vertical-align:72.720000px;}
.vd{vertical-align:77.760000px;}
.v12{vertical-align:82.800000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls37{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.053280px;}
.ls29{letter-spacing:-0.033120px;}
.ls34{letter-spacing:-0.010080px;}
.ls7{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.047520px;}
.lsc{letter-spacing:0.053280px;}
.ls38{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.078480px;}
.ls28{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.115200px;}
.ls2d{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.159120px;}
.ls1{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.195120px;}
.ls5{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.226200px;}
.ls30{letter-spacing:0.227400px;}
.ls2b{letter-spacing:0.237600px;}
.ls6{letter-spacing:0.258000px;}
.ls1f{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.263400px;}
.ls21{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.341400px;}
.ls36{letter-spacing:0.352800px;}
.ls0{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.399600px;}
.ls3a{letter-spacing:0.460200px;}
.ls13{letter-spacing:0.666000px;}
.lsb{letter-spacing:0.828000px;}
.ls1a{letter-spacing:1.041120px;}
.ls1d{letter-spacing:1.190880px;}
.ls32{letter-spacing:2.927520px;}
.ls33{letter-spacing:3.366720px;}
.ls10{letter-spacing:3.546720px;}
.ls12{letter-spacing:3.666720px;}
.ls11{letter-spacing:3.670560px;}
.ls17{letter-spacing:6.660000px;}
.ls26{letter-spacing:9.039600px;}
.ls2c{letter-spacing:16.683840px;}
.ls19{letter-spacing:16.739280px;}
.ls1c{letter-spacing:17.279280px;}
.ls1b{letter-spacing:20.543040px;}
.ls18{letter-spacing:20.826720px;}
.ls2a{letter-spacing:22.986720px;}
.ls2{letter-spacing:33.984000px;}
.ls23{letter-spacing:34.559280px;}
.ls39{letter-spacing:849.216000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws13{word-spacing:-15.606000px;}
.ws2c{word-spacing:-15.400200px;}
.wse{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.199800px;}
.ws3{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws1f{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.328000px;}
.ws26{word-spacing:-13.860000px;}
.ws2a{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.410600px;}
.ws29{word-spacing:-13.284000px;}
.ws1c{word-spacing:-13.243200px;}
.ws7{word-spacing:-13.147200px;}
.ws2b{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.880000px;}
.ws12{word-spacing:-11.835480px;}
.wsc{word-spacing:-9.732960px;}
.ws18{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.711360px;}
.ws1a{word-spacing:-9.528600px;}
.ws6{word-spacing:-9.445200px;}
.ws25{word-spacing:-9.302400px;}
.ws5{word-spacing:-9.187200px;}
.ws24{word-spacing:-9.177120px;}
.ws19{word-spacing:-9.000000px;}
.ws28{word-spacing:-8.906400px;}
.ws27{word-spacing:-8.553600px;}
.ws1e{word-spacing:-8.520480px;}
.wsd{word-spacing:0.000000px;}
.ws22{word-spacing:2.945640px;}
.ws9{word-spacing:3.412080px;}
.ws4{word-spacing:4.132080px;}
.ws23{word-spacing:9.881280px;}
.ws20{word-spacing:10.212480px;}
.ws1b{word-spacing:10.382400px;}
.ws8{word-spacing:11.041920px;}
._d{margin-left:-8.725920px;}
._11{margin-left:-7.491360px;}
._10{margin-left:-5.978640px;}
._0{margin-left:-4.633200px;}
._7{margin-left:-2.743200px;}
._1{margin-left:-1.600560px;}
._2{width:1.072560px;}
._5{width:2.288400px;}
._4{width:3.735120px;}
._3{width:4.986000px;}
._a{width:6.610560px;}
._e{width:7.686240px;}
._6{width:8.694000px;}
._9{width:10.383840px;}
._8{width:11.689920px;}
._b{width:13.546320px;}
._f{width:15.949200px;}
._c{width:18.744720px;}
._13{width:23.333760px;}
._12{width:25.099200px;}
.fc2{color:transparent;}
.fc1{color:rgb(148,54,52);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.360000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y64{bottom:2.130000px;}
.y68{bottom:2.160000px;}
.y9a{bottom:3.240000px;}
.y66{bottom:3.705000px;}
.y86{bottom:3.780000px;}
.ydf{bottom:5.220000px;}
.ydd{bottom:5.400000px;}
.ydb{bottom:7.020000px;}
.yf4{bottom:11.520000px;}
.y85{bottom:17.640000px;}
.y11d{bottom:18.354000px;}
.y37{bottom:20.190000px;}
.y167{bottom:20.340000px;}
.y99{bottom:20.520000px;}
.y165{bottom:20.565000px;}
.y11f{bottom:21.054000px;}
.yf5{bottom:21.060000px;}
.y121{bottom:21.240000px;}
.yf2{bottom:21.600000px;}
.y11c{bottom:25.914000px;}
.yf3{bottom:30.420000px;}
.y11e{bottom:31.674000px;}
.y36{bottom:37.470000px;}
.y170{bottom:37.620000px;}
.y16d{bottom:37.650000px;}
.y160{bottom:37.800000px;}
.y164{bottom:37.845000px;}
.y35{bottom:54.750000px;}
.y2{bottom:106.920000px;}
.y1{bottom:122.580000px;}
.y11b{bottom:135.756000px;}
.y62{bottom:147.096000px;}
.yd3{bottom:150.150000px;}
.y33{bottom:151.950000px;}
.y108{bottom:153.570000px;}
.y14f{bottom:158.970000px;}
.y61{bottom:164.370000px;}
.y83{bottom:166.170000px;}
.yd2{bottom:167.430000px;}
.y32{bottom:169.230000px;}
.y107{bottom:170.670000px;}
.y14e{bottom:176.250000px;}
.y60{bottom:181.650000px;}
.y82{bottom:182.010000px;}
.yd1{bottom:184.710000px;}
.y31{bottom:186.510000px;}
.y106{bottom:188.130000px;}
.yf0{bottom:191.550000px;}
.y14d{bottom:193.530000px;}
.y81{bottom:197.490000px;}
.y5f{bottom:198.930000px;}
.yd0{bottom:201.810000px;}
.y30{bottom:203.790000px;}
.y105{bottom:205.590000px;}
.y11a{bottom:205.770000px;}
.yef{bottom:208.830000px;}
.y14c{bottom:210.810000px;}
.y80{bottom:212.970000px;}
.y5e{bottom:216.210000px;}
.ycf{bottom:219.090000px;}
.y2f{bottom:220.890000px;}
.y104{bottom:222.870000px;}
.y119{bottom:223.050000px;}
.y7f{bottom:225.570000px;}
.yee{bottom:226.110000px;}
.y14b{bottom:228.090000px;}
.y5d{bottom:233.310000px;}
.yce{bottom:236.370000px;}
.y2e{bottom:238.170000px;}
.y103{bottom:240.150000px;}
.y118{bottom:240.330000px;}
.yed{bottom:243.390000px;}
.y14a{bottom:245.190000px;}
.y5c{bottom:250.590000px;}
.ycd{bottom:253.650000px;}
.y2d{bottom:255.450000px;}
.y102{bottom:257.250000px;}
.yec{bottom:260.670000px;}
.y149{bottom:262.470000px;}
.y5b{bottom:267.870000px;}
.ycc{bottom:270.930000px;}
.y117{bottom:272.370000px;}
.y2c{bottom:272.730000px;}
.y101{bottom:274.530000px;}
.yeb{bottom:277.770000px;}
.y148{bottom:279.750000px;}
.y5a{bottom:285.150000px;}
.ycb{bottom:288.030000px;}
.y2b{bottom:290.010000px;}
.y100{bottom:291.810000px;}
.yea{bottom:295.050000px;}
.y147{bottom:297.030000px;}
.y177{bottom:299.730000px;}
.y59{bottom:302.430000px;}
.y116{bottom:303.510000px;}
.yca{bottom:305.310000px;}
.y2a{bottom:307.290000px;}
.yff{bottom:309.270000px;}
.ye9{bottom:312.330000px;}
.y146{bottom:314.310000px;}
.y176{bottom:317.010000px;}
.y58{bottom:319.710000px;}
.yc9{bottom:322.590000px;}
.y29{bottom:324.930000px;}
.yfe{bottom:326.730000px;}
.y115{bottom:331.050000px;}
.y145{bottom:331.590000px;}
.y175{bottom:334.110000px;}
.y57{bottom:336.810000px;}
.yc8{bottom:339.870000px;}
.y28{bottom:343.650000px;}
.yfd{bottom:343.830000px;}
.ye8{bottom:344.010000px;}
.y144{bottom:348.690000px;}
.y174{bottom:351.570000px;}
.y56{bottom:354.090000px;}
.yae{bottom:355.350000px;}
.yc7{bottom:357.150000px;}
.ye7{bottom:359.850000px;}
.y27{bottom:361.110000px;}
.y143{bottom:365.970000px;}
.y55{bottom:371.370000px;}
.ye6{bottom:372.450000px;}
.yad{bottom:372.630000px;}
.yc6{bottom:374.430000px;}
.y26{bottom:378.390000px;}
.y142{bottom:383.295000px;}
.y54{bottom:388.695000px;}
.yac{bottom:389.775000px;}
.y173{bottom:390.675000px;}
.yc5{bottom:391.575000px;}
.y25{bottom:395.715000px;}
.y141{bottom:400.575000px;}
.y15b{bottom:402.375000px;}
.y53{bottom:405.975000px;}
.yab{bottom:407.055000px;}
.yc4{bottom:408.855000px;}
.yfc{bottom:410.475000px;}
.y24{bottom:412.815000px;}
.y140{bottom:417.855000px;}
.y52{bottom:423.075000px;}
.yaa{bottom:424.335000px;}
.yc3{bottom:426.135000px;}
.y172{bottom:429.555000px;}
.y23{bottom:430.095000px;}
.y15a{bottom:434.595000px;}
.y13f{bottom:435.135000px;}
.yfb{bottom:438.735000px;}
.ya9{bottom:441.615000px;}
.y22{bottom:447.375000px;}
.y13e{bottom:452.235000px;}
.y51{bottom:456.015000px;}
.ya8{bottom:459.075000px;}
.y21{bottom:464.655000px;}
.y171{bottom:468.615000px;}
.y13d{bottom:469.515000px;}
.ya7{bottom:476.355000px;}
.y20{bottom:481.935000px;}
.y13c{bottom:486.795000px;}
.ya6{bottom:493.635000px;}
.y159{bottom:499.035000px;}
.y1f{bottom:499.215000px;}
.y50{bottom:506.055000px;}
.y16f{bottom:507.675000px;}
.yc2{bottom:509.115000px;}
.y84{bottom:510.555000px;}
.ya5{bottom:510.915000px;}
.y1e{bottom:516.315000px;}
.y13b{bottom:519.735000px;}
.y4f{bottom:523.335000px;}
.yc1{bottom:526.395000px;}
.ya4{bottom:528.195000px;}
.y1d{bottom:533.595000px;}
.y4e{bottom:540.615000px;}
.yc0{bottom:543.675000px;}
.ya3{bottom:545.475000px;}
.y1c{bottom:550.875000px;}
.y4d{bottom:557.895000px;}
.ybf{bottom:560.775000px;}
.ya2{bottom:562.755000px;}
.y16e{bottom:563.835000px;}
.y7e{bottom:566.355000px;}
.y158{bottom:568.155000px;}
.y13a{bottom:569.235000px;}
.y4c{bottom:575.175000px;}
.ybe{bottom:578.055000px;}
.ya1{bottom:579.855000px;}
.y7d{bottom:583.635000px;}
.y1b{bottom:583.815000px;}
.y139{bottom:585.075000px;}
.y157{bottom:585.435000px;}
.y4b{bottom:592.275000px;}
.ybd{bottom:595.335000px;}
.ya0{bottom:597.135000px;}
.y138{bottom:600.735000px;}
.y7c{bottom:600.915000px;}
.y156{bottom:602.535000px;}
.y16c{bottom:602.895000px;}
.y4a{bottom:609.555000px;}
.ybc{bottom:612.615000px;}
.y137{bottom:613.335000px;}
.y9f{bottom:614.415000px;}
.y7b{bottom:618.375000px;}
.y155{bottom:619.815000px;}
.ye5{bottom:620.895000px;}
.y136{bottom:621.795000px;}
.y114{bottom:624.675000px;}
.y49{bottom:626.835000px;}
.ybb{bottom:629.895000px;}
.y1a{bottom:633.525000px;}
.ye4{bottom:634.965000px;}
.y7a{bottom:635.865000px;}
.y135{bottom:639.105000px;}
.y113{bottom:641.985000px;}
.y48{bottom:644.145000px;}
.yba{bottom:647.205000px;}
.y9e{bottom:647.385000px;}
.y154{bottom:652.785000px;}
.y79{bottom:653.325000px;}
.ye3{bottom:656.205000px;}
.y19{bottom:658.005000px;}
.y16b{bottom:659.085000px;}
.y112{bottom:659.265000px;}
.y47{bottom:661.425000px;}
.yb9{bottom:664.305000px;}
.y78{bottom:670.605000px;}
.y134{bottom:673.485000px;}
.y18{bottom:673.665000px;}
.y111{bottom:676.545000px;}
.ye2{bottom:677.445000px;}
.yb8{bottom:681.585000px;}
.y77{bottom:688.065000px;}
.y17{bottom:689.145000px;}
.y133{bottom:690.765000px;}
.y46{bottom:693.105000px;}
.y110{bottom:693.825000px;}
.y9d{bottom:694.185000px;}
.y16a{bottom:698.145000px;}
.ye1{bottom:698.685000px;}
.yb7{bottom:698.865000px;}
.y153{bottom:702.285000px;}
.y16{bottom:704.625000px;}
.y76{bottom:705.525000px;}
.y132{bottom:708.045000px;}
.y45{bottom:708.765000px;}
.y10f{bottom:710.925000px;}
.y9c{bottom:711.465000px;}
.yfa{bottom:714.345000px;}
.yb6{bottom:716.145000px;}
.y152{bottom:718.125000px;}
.ye0{bottom:719.925000px;}
.y15{bottom:720.105000px;}
.y75{bottom:723.165000px;}
.y131{bottom:725.325000px;}
.y10e{bottom:728.205000px;}
.y9b{bottom:728.565000px;}
.yb5{bottom:733.425000px;}
.y151{bottom:733.605000px;}
.y14{bottom:735.765000px;}
.y169{bottom:737.025000px;}
.y44{bottom:739.365000px;}
.y74{bottom:740.625000px;}
.yde{bottom:741.165000px;}
.y130{bottom:742.605000px;}
.y150{bottom:746.205000px;}
.yf9{bottom:746.385000px;}
.y98{bottom:746.565000px;}
.y10d{bottom:749.985000px;}
.yb4{bottom:750.525000px;}
.y73{bottom:757.905000px;}
.y12f{bottom:759.705000px;}
.y13{bottom:760.245000px;}
.yf8{bottom:762.045000px;}
.ydc{bottom:762.225000px;}
.yb3{bottom:767.805000px;}
.yf7{bottom:774.645000px;}
.y72{bottom:775.005000px;}
.y12{bottom:775.725000px;}
.y12e{bottom:776.985000px;}
.y97{bottom:784.005000px;}
.yda{bottom:784.365000px;}
.yb2{bottom:785.085000px;}
.y10c{bottom:785.265000px;}
.y11{bottom:791.205000px;}
.y71{bottom:792.285000px;}
.y168{bottom:793.365000px;}
.y12d{bottom:794.265000px;}
.y67{bottom:794.445000px;}
.y96{bottom:799.665000px;}
.y10{bottom:806.865000px;}
.y70{bottom:809.745000px;}
.y12c{bottom:811.545000px;}
.yd9{bottom:812.265000px;}
.y69{bottom:812.445000px;}
.y95{bottom:815.145000px;}
.yb1{bottom:816.945000px;}
.y10b{bottom:817.305000px;}
.yf{bottom:822.345000px;}
.y6f{bottom:827.385000px;}
.yd8{bottom:828.105000px;}
.y12b{bottom:828.825000px;}
.y94{bottom:830.625000px;}
.y166{bottom:832.425000px;}
.yb0{bottom:832.605000px;}
.y10a{bottom:833.145000px;}
.y65{bottom:835.920000px;}
.ye{bottom:837.825000px;}
.y6e{bottom:844.665000px;}
.yaf{bottom:845.205000px;}
.yd7{bottom:845.385000px;}
.y109{bottom:845.925000px;}
.y93{bottom:846.105000px;}
.yd{bottom:853.305000px;}
.y6d{bottom:861.945000px;}
.yd6{bottom:862.665000px;}
.y12a{bottom:863.205000px;}
.yc{bottom:868.785000px;}
.y163{bottom:871.305000px;}
.y92{bottom:879.225000px;}
.y6c{bottom:879.405000px;}
.yd5{bottom:879.945000px;}
.y129{bottom:880.485000px;}
.yb{bottom:893.670000px;}
.y91{bottom:896.550000px;}
.y6b{bottom:897.090000px;}
.yd4{bottom:897.270000px;}
.y63{bottom:909.000000px;}
.y128{bottom:913.470000px;}
.y90{bottom:913.830000px;}
.y6a{bottom:914.550000px;}
.ya{bottom:915.270000px;}
.y162{bottom:927.690000px;}
.y9{bottom:930.750000px;}
.y8f{bottom:931.110000px;}
.y43{bottom:931.650000px;}
.y8{bottom:946.230000px;}
.y8e{bottom:948.210000px;}
.y42{bottom:948.930000px;}
.y7{bottom:961.710000px;}
.y127{bottom:963.510000px;}
.y8d{bottom:965.490000px;}
.y41{bottom:966.210000px;}
.y161{bottom:966.570000px;}
.y6{bottom:973.770000px;}
.y126{bottom:980.790000px;}
.y8c{bottom:982.770000px;}
.y40{bottom:983.490000px;}
.y5{bottom:994.470000px;}
.y125{bottom:998.070000px;}
.y8b{bottom:1000.050000px;}
.y3f{bottom:1000.770000px;}
.y15f{bottom:1005.630000px;}
.y124{bottom:1015.350000px;}
.y8a{bottom:1017.330000px;}
.y3e{bottom:1017.870000px;}
.y123{bottom:1032.450000px;}
.y4{bottom:1034.430000px;}
.y89{bottom:1034.790000px;}
.y3d{bottom:1035.150000px;}
.y122{bottom:1049.910000px;}
.yf6{bottom:1050.270000px;}
.y88{bottom:1052.070000px;}
.y3c{bottom:1052.430000px;}
.y3{bottom:1060.530000px;}
.y15e{bottom:1061.970000px;}
.y120{bottom:1064.130000px;}
.yf1{bottom:1064.310000px;}
.y87{bottom:1069.530000px;}
.y3b{bottom:1069.710000px;}
.y15d{bottom:1085.730000px;}
.y3a{bottom:1086.990000px;}
.y39{bottom:1104.270000px;}
.y15c{bottom:1118.670000px;}
.y38{bottom:1121.370000px;}
.y34{bottom:1122.810000px;}
.he{height:10.260000px;}
.h17{height:17.100000px;}
.h16{height:17.280000px;}
.hc{height:19.440000px;}
.h10{height:20.340000px;}
.hf{height:20.520000px;}
.h1a{height:21.060000px;}
.h19{height:21.240000px;}
.h18{height:25.020000px;}
.h5{height:26.033203px;}
.h12{height:28.800000px;}
.hd{height:30.422812px;}
.h6{height:34.066406px;}
.h2b{height:34.380000px;}
.h14{height:34.560000px;}
.h2f{height:34.596000px;}
.h13{height:35.143594px;}
.h2{height:39.049805px;}
.h15{height:42.164648px;}
.h7{height:43.215117px;}
.h20{height:43.506914px;}
.h11{height:44.507812px;}
.h24{height:46.388672px;}
.hb{height:48.995859px;}
.h2a{height:49.255313px;}
.h27{height:50.800781px;}
.h2e{height:51.660000px;}
.h2d{height:51.696000px;}
.h29{height:51.840000px;}
.h2c{height:51.876000px;}
.h28{height:52.066406px;}
.h8{height:52.417969px;}
.h25{height:54.000000px;}
.h3{height:59.436914px;}
.h1f{height:59.985352px;}
.h4{height:62.244492px;}
.h9{height:66.383789px;}
.h21{height:66.780000px;}
.h26{height:68.708672px;}
.ha{height:68.796000px;}
.h1b{height:71.100000px;}
.h22{height:81.668672px;}
.h1d{height:105.983789px;}
.h1e{height:120.975117px;}
.h23{height:129.188672px;}
.h1c{height:139.103789px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:34.380000px;}
.w7{width:34.416000px;}
.w19{width:48.600000px;}
.w6{width:55.656000px;}
.w4{width:58.500000px;}
.w5{width:60.480000px;}
.w18{width:63.180000px;}
.w11{width:77.616000px;}
.w9{width:88.956000px;}
.wd{width:95.616000px;}
.we{width:106.200000px;}
.w13{width:112.896000px;}
.w12{width:113.760000px;}
.wf{width:116.640000px;}
.wb{width:116.856000px;}
.wa{width:117.000000px;}
.w14{width:117.036000px;}
.w15{width:127.440000px;}
.wc{width:127.656000px;}
.w16{width:137.880000px;}
.w10{width:138.240000px;}
.w17{width:616.425000px;}
.w1a{width:625.065000px;}
.w3{width:690.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:1.080000px;}
.x16{left:2.955000px;}
.x1a{left:6.300000px;}
.x21{left:8.100000px;}
.x23{left:9.360000px;}
.x10{left:10.800000px;}
.x25{left:13.500000px;}
.x2b{left:16.380000px;}
.x15{left:17.895000px;}
.x2e{left:20.340000px;}
.x2f{left:22.140000px;}
.x1f{left:24.660000px;}
.x38{left:26.100000px;}
.x26{left:29.550000px;}
.xf{left:32.040000px;}
.x1e{left:34.380000px;}
.x2c{left:36.720000px;}
.x28{left:39.780000px;}
.x31{left:41.580000px;}
.x2d{left:46.650000px;}
.x30{left:49.170000px;}
.x3f{left:52.020000px;}
.x29{left:53.280000px;}
.x3d{left:54.585000px;}
.x3e{left:59.790000px;}
.x40{left:61.965000px;}
.x3a{left:72.900000px;}
.x3c{left:74.160000px;}
.xe{left:105.336000px;}
.xd{left:106.415987px;}
.x57{left:108.576000px;}
.x42{left:117.215987px;}
.x33{left:123.695987px;}
.xa{left:127.655987px;}
.x1{left:131.975987px;}
.x34{left:136.835987px;}
.xc{left:148.895987px;}
.x2{left:151.769987px;}
.x53{left:154.649987px;}
.x58{left:159.510000px;}
.x4{left:164.189987px;}
.x52{left:168.869987px;}
.xb{left:170.309987px;}
.x4b{left:173.189987px;}
.x55{left:174.629987px;}
.x56{left:197.669987px;}
.x1c{left:205.229987px;}
.x3{left:206.849987px;}
.x43{left:213.519000px;}
.x4a{left:216.209987px;}
.x49{left:218.369987px;}
.x20{left:223.410000px;}
.x50{left:229.359000px;}
.x4d{left:230.619000px;}
.x47{left:231.869987px;}
.x4c{left:236.369987px;}
.x35{left:244.650000px;}
.x18{left:266.970000px;}
.x12{left:269.669987px;}
.x44{left:279.039000px;}
.x13{left:281.729987px;}
.x45{left:285.699000px;}
.x48{left:295.454987px;}
.x8{left:314.894987px;}
.x9{left:318.674987px;}
.x36{left:322.275000px;}
.x5{left:325.334987px;}
.x4e{left:336.999000px;}
.x22{left:340.275000px;}
.x7{left:341.894987px;}
.x6{left:365.294987px;}
.x4f{left:387.969000px;}
.x14{left:426.600000px;}
.x17{left:429.915000px;}
.x37{left:436.035000px;}
.x1d{left:449.535000px;}
.x24{left:457.275000px;}
.x39{left:548.925000px;}
.x27{left:584.925000px;}
.x19{left:609.045000px;}
.x11{left:640.544987px;}
.x3b{left:665.970000px;}
.x2a{left:680.550000px;}
.x54{left:706.469987px;}
.x46{left:722.850000px;}
.x51{left:772.889987px;}
.x32{left:775.589987px;}
.x1b{left:784.409987px;}
.x41{left:786.749987px;}
@media print{
.v14{vertical-align:-20.480000pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-10.880000pt;}
.ve{vertical-align:-9.600000pt;}
.v6{vertical-align:-5.098667pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.560000pt;}
.vf{vertical-align:9.600000pt;}
.v4{vertical-align:10.880000pt;}
.v13{vertical-align:14.720000pt;}
.v5{vertical-align:18.560000pt;}
.v15{vertical-align:19.840000pt;}
.vb{vertical-align:22.400000pt;}
.v1{vertical-align:24.320000pt;}
.v11{vertical-align:26.880000pt;}
.v10{vertical-align:31.360000pt;}
.va{vertical-align:33.280000pt;}
.vc{vertical-align:35.200000pt;}
.v9{vertical-align:64.640000pt;}
.vd{vertical-align:69.120000pt;}
.v12{vertical-align:73.600000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls37{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls29{letter-spacing:-0.029440pt;}
.ls34{letter-spacing:-0.008960pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.042240pt;}
.lsc{letter-spacing:0.047360pt;}
.ls38{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.069760pt;}
.ls28{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.102400pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.141440pt;}
.ls1{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.173440pt;}
.ls5{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.201067pt;}
.ls30{letter-spacing:0.202133pt;}
.ls2b{letter-spacing:0.211200pt;}
.ls6{letter-spacing:0.229333pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.234133pt;}
.ls21{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.303467pt;}
.ls36{letter-spacing:0.313600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.355200pt;}
.ls3a{letter-spacing:0.409067pt;}
.ls13{letter-spacing:0.592000pt;}
.lsb{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.925440pt;}
.ls1d{letter-spacing:1.058560pt;}
.ls32{letter-spacing:2.602240pt;}
.ls33{letter-spacing:2.992640pt;}
.ls10{letter-spacing:3.152640pt;}
.ls12{letter-spacing:3.259307pt;}
.ls11{letter-spacing:3.262720pt;}
.ls17{letter-spacing:5.920000pt;}
.ls26{letter-spacing:8.035200pt;}
.ls2c{letter-spacing:14.830080pt;}
.ls19{letter-spacing:14.879360pt;}
.ls1c{letter-spacing:15.359360pt;}
.ls1b{letter-spacing:18.260480pt;}
.ls18{letter-spacing:18.512640pt;}
.ls2a{letter-spacing:20.432640pt;}
.ls2{letter-spacing:30.208000pt;}
.ls23{letter-spacing:30.719360pt;}
.ls39{letter-spacing:754.858667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws13{word-spacing:-13.872000pt;}
.ws2c{word-spacing:-13.689067pt;}
.wse{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws1f{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.736000pt;}
.ws26{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.920533pt;}
.ws29{word-spacing:-11.808000pt;}
.ws1c{word-spacing:-11.771733pt;}
.ws7{word-spacing:-11.686400pt;}
.ws2b{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.560000pt;}
.ws12{word-spacing:-10.520427pt;}
.wsc{word-spacing:-8.651520pt;}
.ws18{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.632320pt;}
.ws1a{word-spacing:-8.469867pt;}
.ws6{word-spacing:-8.395733pt;}
.ws25{word-spacing:-8.268800pt;}
.ws5{word-spacing:-8.166400pt;}
.ws24{word-spacing:-8.157440pt;}
.ws19{word-spacing:-8.000000pt;}
.ws28{word-spacing:-7.916800pt;}
.ws27{word-spacing:-7.603200pt;}
.ws1e{word-spacing:-7.573760pt;}
.wsd{word-spacing:0.000000pt;}
.ws22{word-spacing:2.618347pt;}
.ws9{word-spacing:3.032960pt;}
.ws4{word-spacing:3.672960pt;}
.ws23{word-spacing:8.783360pt;}
.ws20{word-spacing:9.077760pt;}
.ws1b{word-spacing:9.228800pt;}
.ws8{word-spacing:9.815040pt;}
._d{margin-left:-7.756373pt;}
._11{margin-left:-6.658987pt;}
._10{margin-left:-5.314347pt;}
._0{margin-left:-4.118400pt;}
._7{margin-left:-2.438400pt;}
._1{margin-left:-1.422720pt;}
._2{width:0.953387pt;}
._5{width:2.034133pt;}
._4{width:3.320107pt;}
._3{width:4.432000pt;}
._a{width:5.876053pt;}
._e{width:6.832213pt;}
._6{width:7.728000pt;}
._9{width:9.230080pt;}
._8{width:10.391040pt;}
._b{width:12.041173pt;}
._f{width:14.177067pt;}
._c{width:16.661973pt;}
._13{width:20.741120pt;}
._12{width:22.310400pt;}
.fs8{font-size:24.320000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.893333pt;}
.y68{bottom:1.920000pt;}
.y9a{bottom:2.880000pt;}
.y66{bottom:3.293333pt;}
.y86{bottom:3.360000pt;}
.ydf{bottom:4.640000pt;}
.ydd{bottom:4.800000pt;}
.ydb{bottom:6.240000pt;}
.yf4{bottom:10.240000pt;}
.y85{bottom:15.680000pt;}
.y11d{bottom:16.314667pt;}
.y37{bottom:17.946667pt;}
.y167{bottom:18.080000pt;}
.y99{bottom:18.240000pt;}
.y165{bottom:18.280000pt;}
.y11f{bottom:18.714667pt;}
.yf5{bottom:18.720000pt;}
.y121{bottom:18.880000pt;}
.yf2{bottom:19.200000pt;}
.y11c{bottom:23.034667pt;}
.yf3{bottom:27.040000pt;}
.y11e{bottom:28.154667pt;}
.y36{bottom:33.306667pt;}
.y170{bottom:33.440000pt;}
.y16d{bottom:33.466667pt;}
.y160{bottom:33.600000pt;}
.y164{bottom:33.640000pt;}
.y35{bottom:48.666667pt;}
.y2{bottom:95.040000pt;}
.y1{bottom:108.960000pt;}
.y11b{bottom:120.672000pt;}
.y62{bottom:130.752000pt;}
.yd3{bottom:133.466667pt;}
.y33{bottom:135.066667pt;}
.y108{bottom:136.506667pt;}
.y14f{bottom:141.306667pt;}
.y61{bottom:146.106667pt;}
.y83{bottom:147.706667pt;}
.yd2{bottom:148.826667pt;}
.y32{bottom:150.426667pt;}
.y107{bottom:151.706667pt;}
.y14e{bottom:156.666667pt;}
.y60{bottom:161.466667pt;}
.y82{bottom:161.786667pt;}
.yd1{bottom:164.186667pt;}
.y31{bottom:165.786667pt;}
.y106{bottom:167.226667pt;}
.yf0{bottom:170.266667pt;}
.y14d{bottom:172.026667pt;}
.y81{bottom:175.546667pt;}
.y5f{bottom:176.826667pt;}
.yd0{bottom:179.386667pt;}
.y30{bottom:181.146667pt;}
.y105{bottom:182.746667pt;}
.y11a{bottom:182.906667pt;}
.yef{bottom:185.626667pt;}
.y14c{bottom:187.386667pt;}
.y80{bottom:189.306667pt;}
.y5e{bottom:192.186667pt;}
.ycf{bottom:194.746667pt;}
.y2f{bottom:196.346667pt;}
.y104{bottom:198.106667pt;}
.y119{bottom:198.266667pt;}
.y7f{bottom:200.506667pt;}
.yee{bottom:200.986667pt;}
.y14b{bottom:202.746667pt;}
.y5d{bottom:207.386667pt;}
.yce{bottom:210.106667pt;}
.y2e{bottom:211.706667pt;}
.y103{bottom:213.466667pt;}
.y118{bottom:213.626667pt;}
.yed{bottom:216.346667pt;}
.y14a{bottom:217.946667pt;}
.y5c{bottom:222.746667pt;}
.ycd{bottom:225.466667pt;}
.y2d{bottom:227.066667pt;}
.y102{bottom:228.666667pt;}
.yec{bottom:231.706667pt;}
.y149{bottom:233.306667pt;}
.y5b{bottom:238.106667pt;}
.ycc{bottom:240.826667pt;}
.y117{bottom:242.106667pt;}
.y2c{bottom:242.426667pt;}
.y101{bottom:244.026667pt;}
.yeb{bottom:246.906667pt;}
.y148{bottom:248.666667pt;}
.y5a{bottom:253.466667pt;}
.ycb{bottom:256.026667pt;}
.y2b{bottom:257.786667pt;}
.y100{bottom:259.386667pt;}
.yea{bottom:262.266667pt;}
.y147{bottom:264.026667pt;}
.y177{bottom:266.426667pt;}
.y59{bottom:268.826667pt;}
.y116{bottom:269.786667pt;}
.yca{bottom:271.386667pt;}
.y2a{bottom:273.146667pt;}
.yff{bottom:274.906667pt;}
.ye9{bottom:277.626667pt;}
.y146{bottom:279.386667pt;}
.y176{bottom:281.786667pt;}
.y58{bottom:284.186667pt;}
.yc9{bottom:286.746667pt;}
.y29{bottom:288.826667pt;}
.yfe{bottom:290.426667pt;}
.y115{bottom:294.266667pt;}
.y145{bottom:294.746667pt;}
.y175{bottom:296.986667pt;}
.y57{bottom:299.386667pt;}
.yc8{bottom:302.106667pt;}
.y28{bottom:305.466667pt;}
.yfd{bottom:305.626667pt;}
.ye8{bottom:305.786667pt;}
.y144{bottom:309.946667pt;}
.y174{bottom:312.506667pt;}
.y56{bottom:314.746667pt;}
.yae{bottom:315.866667pt;}
.yc7{bottom:317.466667pt;}
.ye7{bottom:319.866667pt;}
.y27{bottom:320.986667pt;}
.y143{bottom:325.306667pt;}
.y55{bottom:330.106667pt;}
.ye6{bottom:331.066667pt;}
.yad{bottom:331.226667pt;}
.yc6{bottom:332.826667pt;}
.y26{bottom:336.346667pt;}
.y142{bottom:340.706667pt;}
.y54{bottom:345.506667pt;}
.yac{bottom:346.466667pt;}
.y173{bottom:347.266667pt;}
.yc5{bottom:348.066667pt;}
.y25{bottom:351.746667pt;}
.y141{bottom:356.066667pt;}
.y15b{bottom:357.666667pt;}
.y53{bottom:360.866667pt;}
.yab{bottom:361.826667pt;}
.yc4{bottom:363.426667pt;}
.yfc{bottom:364.866667pt;}
.y24{bottom:366.946667pt;}
.y140{bottom:371.426667pt;}
.y52{bottom:376.066667pt;}
.yaa{bottom:377.186667pt;}
.yc3{bottom:378.786667pt;}
.y172{bottom:381.826667pt;}
.y23{bottom:382.306667pt;}
.y15a{bottom:386.306667pt;}
.y13f{bottom:386.786667pt;}
.yfb{bottom:389.986667pt;}
.ya9{bottom:392.546667pt;}
.y22{bottom:397.666667pt;}
.y13e{bottom:401.986667pt;}
.y51{bottom:405.346667pt;}
.ya8{bottom:408.066667pt;}
.y21{bottom:413.026667pt;}
.y171{bottom:416.546667pt;}
.y13d{bottom:417.346667pt;}
.ya7{bottom:423.426667pt;}
.y20{bottom:428.386667pt;}
.y13c{bottom:432.706667pt;}
.ya6{bottom:438.786667pt;}
.y159{bottom:443.586667pt;}
.y1f{bottom:443.746667pt;}
.y50{bottom:449.826667pt;}
.y16f{bottom:451.266667pt;}
.yc2{bottom:452.546667pt;}
.y84{bottom:453.826667pt;}
.ya5{bottom:454.146667pt;}
.y1e{bottom:458.946667pt;}
.y13b{bottom:461.986667pt;}
.y4f{bottom:465.186667pt;}
.yc1{bottom:467.906667pt;}
.ya4{bottom:469.506667pt;}
.y1d{bottom:474.306667pt;}
.y4e{bottom:480.546667pt;}
.yc0{bottom:483.266667pt;}
.ya3{bottom:484.866667pt;}
.y1c{bottom:489.666667pt;}
.y4d{bottom:495.906667pt;}
.ybf{bottom:498.466667pt;}
.ya2{bottom:500.226667pt;}
.y16e{bottom:501.186667pt;}
.y7e{bottom:503.426667pt;}
.y158{bottom:505.026667pt;}
.y13a{bottom:505.986667pt;}
.y4c{bottom:511.266667pt;}
.ybe{bottom:513.826667pt;}
.ya1{bottom:515.426667pt;}
.y7d{bottom:518.786667pt;}
.y1b{bottom:518.946667pt;}
.y139{bottom:520.066667pt;}
.y157{bottom:520.386667pt;}
.y4b{bottom:526.466667pt;}
.ybd{bottom:529.186667pt;}
.ya0{bottom:530.786667pt;}
.y138{bottom:533.986667pt;}
.y7c{bottom:534.146667pt;}
.y156{bottom:535.586667pt;}
.y16c{bottom:535.906667pt;}
.y4a{bottom:541.826667pt;}
.ybc{bottom:544.546667pt;}
.y137{bottom:545.186667pt;}
.y9f{bottom:546.146667pt;}
.y7b{bottom:549.666667pt;}
.y155{bottom:550.946667pt;}
.ye5{bottom:551.906667pt;}
.y136{bottom:552.706667pt;}
.y114{bottom:555.266667pt;}
.y49{bottom:557.186667pt;}
.ybb{bottom:559.906667pt;}
.y1a{bottom:563.133333pt;}
.ye4{bottom:564.413333pt;}
.y7a{bottom:565.213333pt;}
.y135{bottom:568.093333pt;}
.y113{bottom:570.653333pt;}
.y48{bottom:572.573333pt;}
.yba{bottom:575.293333pt;}
.y9e{bottom:575.453333pt;}
.y154{bottom:580.253333pt;}
.y79{bottom:580.733333pt;}
.ye3{bottom:583.293333pt;}
.y19{bottom:584.893333pt;}
.y16b{bottom:585.853333pt;}
.y112{bottom:586.013333pt;}
.y47{bottom:587.933333pt;}
.yb9{bottom:590.493333pt;}
.y78{bottom:596.093333pt;}
.y134{bottom:598.653333pt;}
.y18{bottom:598.813333pt;}
.y111{bottom:601.373333pt;}
.ye2{bottom:602.173333pt;}
.yb8{bottom:605.853333pt;}
.y77{bottom:611.613333pt;}
.y17{bottom:612.573333pt;}
.y133{bottom:614.013333pt;}
.y46{bottom:616.093333pt;}
.y110{bottom:616.733333pt;}
.y9d{bottom:617.053333pt;}
.y16a{bottom:620.573333pt;}
.ye1{bottom:621.053333pt;}
.yb7{bottom:621.213333pt;}
.y153{bottom:624.253333pt;}
.y16{bottom:626.333333pt;}
.y76{bottom:627.133333pt;}
.y132{bottom:629.373333pt;}
.y45{bottom:630.013333pt;}
.y10f{bottom:631.933333pt;}
.y9c{bottom:632.413333pt;}
.yfa{bottom:634.973333pt;}
.yb6{bottom:636.573333pt;}
.y152{bottom:638.333333pt;}
.ye0{bottom:639.933333pt;}
.y15{bottom:640.093333pt;}
.y75{bottom:642.813333pt;}
.y131{bottom:644.733333pt;}
.y10e{bottom:647.293333pt;}
.y9b{bottom:647.613333pt;}
.yb5{bottom:651.933333pt;}
.y151{bottom:652.093333pt;}
.y14{bottom:654.013333pt;}
.y169{bottom:655.133333pt;}
.y44{bottom:657.213333pt;}
.y74{bottom:658.333333pt;}
.yde{bottom:658.813333pt;}
.y130{bottom:660.093333pt;}
.y150{bottom:663.293333pt;}
.yf9{bottom:663.453333pt;}
.y98{bottom:663.613333pt;}
.y10d{bottom:666.653333pt;}
.yb4{bottom:667.133333pt;}
.y73{bottom:673.693333pt;}
.y12f{bottom:675.293333pt;}
.y13{bottom:675.773333pt;}
.yf8{bottom:677.373333pt;}
.ydc{bottom:677.533333pt;}
.yb3{bottom:682.493333pt;}
.yf7{bottom:688.573333pt;}
.y72{bottom:688.893333pt;}
.y12{bottom:689.533333pt;}
.y12e{bottom:690.653333pt;}
.y97{bottom:696.893333pt;}
.yda{bottom:697.213333pt;}
.yb2{bottom:697.853333pt;}
.y10c{bottom:698.013333pt;}
.y11{bottom:703.293333pt;}
.y71{bottom:704.253333pt;}
.y168{bottom:705.213333pt;}
.y12d{bottom:706.013333pt;}
.y67{bottom:706.173333pt;}
.y96{bottom:710.813333pt;}
.y10{bottom:717.213333pt;}
.y70{bottom:719.773333pt;}
.y12c{bottom:721.373333pt;}
.yd9{bottom:722.013333pt;}
.y69{bottom:722.173333pt;}
.y95{bottom:724.573333pt;}
.yb1{bottom:726.173333pt;}
.y10b{bottom:726.493333pt;}
.yf{bottom:730.973333pt;}
.y6f{bottom:735.453333pt;}
.yd8{bottom:736.093333pt;}
.y12b{bottom:736.733333pt;}
.y94{bottom:738.333333pt;}
.y166{bottom:739.933333pt;}
.yb0{bottom:740.093333pt;}
.y10a{bottom:740.573333pt;}
.y65{bottom:743.040000pt;}
.ye{bottom:744.733333pt;}
.y6e{bottom:750.813333pt;}
.yaf{bottom:751.293333pt;}
.yd7{bottom:751.453333pt;}
.y109{bottom:751.933333pt;}
.y93{bottom:752.093333pt;}
.yd{bottom:758.493333pt;}
.y6d{bottom:766.173333pt;}
.yd6{bottom:766.813333pt;}
.y12a{bottom:767.293333pt;}
.yc{bottom:772.253333pt;}
.y163{bottom:774.493333pt;}
.y92{bottom:781.533333pt;}
.y6c{bottom:781.693333pt;}
.yd5{bottom:782.173333pt;}
.y129{bottom:782.653333pt;}
.yb{bottom:794.373333pt;}
.y91{bottom:796.933333pt;}
.y6b{bottom:797.413333pt;}
.yd4{bottom:797.573333pt;}
.y63{bottom:808.000000pt;}
.y128{bottom:811.973333pt;}
.y90{bottom:812.293333pt;}
.y6a{bottom:812.933333pt;}
.ya{bottom:813.573333pt;}
.y162{bottom:824.613333pt;}
.y9{bottom:827.333333pt;}
.y8f{bottom:827.653333pt;}
.y43{bottom:828.133333pt;}
.y8{bottom:841.093333pt;}
.y8e{bottom:842.853333pt;}
.y42{bottom:843.493333pt;}
.y7{bottom:854.853333pt;}
.y127{bottom:856.453333pt;}
.y8d{bottom:858.213333pt;}
.y41{bottom:858.853333pt;}
.y161{bottom:859.173333pt;}
.y6{bottom:865.573333pt;}
.y126{bottom:871.813333pt;}
.y8c{bottom:873.573333pt;}
.y40{bottom:874.213333pt;}
.y5{bottom:883.973333pt;}
.y125{bottom:887.173333pt;}
.y8b{bottom:888.933333pt;}
.y3f{bottom:889.573333pt;}
.y15f{bottom:893.893333pt;}
.y124{bottom:902.533333pt;}
.y8a{bottom:904.293333pt;}
.y3e{bottom:904.773333pt;}
.y123{bottom:917.733333pt;}
.y4{bottom:919.493333pt;}
.y89{bottom:919.813333pt;}
.y3d{bottom:920.133333pt;}
.y122{bottom:933.253333pt;}
.yf6{bottom:933.573333pt;}
.y88{bottom:935.173333pt;}
.y3c{bottom:935.493333pt;}
.y3{bottom:942.693333pt;}
.y15e{bottom:943.973333pt;}
.y120{bottom:945.893333pt;}
.yf1{bottom:946.053333pt;}
.y87{bottom:950.693333pt;}
.y3b{bottom:950.853333pt;}
.y15d{bottom:965.093333pt;}
.y3a{bottom:966.213333pt;}
.y39{bottom:981.573333pt;}
.y15c{bottom:994.373333pt;}
.y38{bottom:996.773333pt;}
.y34{bottom:998.053333pt;}
.he{height:9.120000pt;}
.h17{height:15.200000pt;}
.h16{height:15.360000pt;}
.hc{height:17.280000pt;}
.h10{height:18.080000pt;}
.hf{height:18.240000pt;}
.h1a{height:18.720000pt;}
.h19{height:18.880000pt;}
.h18{height:22.240000pt;}
.h5{height:23.140625pt;}
.h12{height:25.600000pt;}
.hd{height:27.042500pt;}
.h6{height:30.281250pt;}
.h2b{height:30.560000pt;}
.h14{height:30.720000pt;}
.h2f{height:30.752000pt;}
.h13{height:31.238750pt;}
.h2{height:34.710938pt;}
.h15{height:37.479688pt;}
.h7{height:38.413438pt;}
.h20{height:38.672812pt;}
.h11{height:39.562500pt;}
.h24{height:41.234375pt;}
.hb{height:43.551875pt;}
.h2a{height:43.782500pt;}
.h27{height:45.156250pt;}
.h2e{height:45.920000pt;}
.h2d{height:45.952000pt;}
.h29{height:46.080000pt;}
.h2c{height:46.112000pt;}
.h28{height:46.281250pt;}
.h8{height:46.593750pt;}
.h25{height:48.000000pt;}
.h3{height:52.832812pt;}
.h1f{height:53.320312pt;}
.h4{height:55.328437pt;}
.h9{height:59.007812pt;}
.h21{height:59.360000pt;}
.h26{height:61.074375pt;}
.ha{height:61.152000pt;}
.h1b{height:63.200000pt;}
.h22{height:72.594375pt;}
.h1d{height:94.207812pt;}
.h1e{height:107.533437pt;}
.h23{height:114.834375pt;}
.h1c{height:123.647813pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:30.560000pt;}
.w7{width:30.592000pt;}
.w19{width:43.200000pt;}
.w6{width:49.472000pt;}
.w4{width:52.000000pt;}
.w5{width:53.760000pt;}
.w18{width:56.160000pt;}
.w11{width:68.992000pt;}
.w9{width:79.072000pt;}
.wd{width:84.992000pt;}
.we{width:94.400000pt;}
.w13{width:100.352000pt;}
.w12{width:101.120000pt;}
.wf{width:103.680000pt;}
.wb{width:103.872000pt;}
.wa{width:104.000000pt;}
.w14{width:104.032000pt;}
.w15{width:113.280000pt;}
.wc{width:113.472000pt;}
.w16{width:122.560000pt;}
.w10{width:122.880000pt;}
.w17{width:547.933333pt;}
.w1a{width:555.613333pt;}
.w3{width:614.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:0.960000pt;}
.x16{left:2.626667pt;}
.x1a{left:5.600000pt;}
.x21{left:7.200000pt;}
.x23{left:8.320000pt;}
.x10{left:9.600000pt;}
.x25{left:12.000000pt;}
.x2b{left:14.560000pt;}
.x15{left:15.906667pt;}
.x2e{left:18.080000pt;}
.x2f{left:19.680000pt;}
.x1f{left:21.920000pt;}
.x38{left:23.200000pt;}
.x26{left:26.266667pt;}
.xf{left:28.480000pt;}
.x1e{left:30.560000pt;}
.x2c{left:32.640000pt;}
.x28{left:35.360000pt;}
.x31{left:36.960000pt;}
.x2d{left:41.466667pt;}
.x30{left:43.706667pt;}
.x3f{left:46.240000pt;}
.x29{left:47.360000pt;}
.x3d{left:48.520000pt;}
.x3e{left:53.146667pt;}
.x40{left:55.080000pt;}
.x3a{left:64.800000pt;}
.x3c{left:65.920000pt;}
.xe{left:93.632000pt;}
.xd{left:94.591988pt;}
.x57{left:96.512000pt;}
.x42{left:104.191988pt;}
.x33{left:109.951988pt;}
.xa{left:113.471988pt;}
.x1{left:117.311988pt;}
.x34{left:121.631988pt;}
.xc{left:132.351988pt;}
.x2{left:134.906655pt;}
.x53{left:137.466655pt;}
.x58{left:141.786667pt;}
.x4{left:145.946655pt;}
.x52{left:150.106655pt;}
.xb{left:151.386655pt;}
.x4b{left:153.946655pt;}
.x55{left:155.226655pt;}
.x56{left:175.706655pt;}
.x1c{left:182.426655pt;}
.x3{left:183.866655pt;}
.x43{left:189.794667pt;}
.x4a{left:192.186655pt;}
.x49{left:194.106655pt;}
.x20{left:198.586667pt;}
.x50{left:203.874667pt;}
.x4d{left:204.994667pt;}
.x47{left:206.106655pt;}
.x4c{left:210.106655pt;}
.x35{left:217.466667pt;}
.x18{left:237.306667pt;}
.x12{left:239.706655pt;}
.x44{left:248.034667pt;}
.x13{left:250.426655pt;}
.x45{left:253.954667pt;}
.x48{left:262.626655pt;}
.x8{left:279.906655pt;}
.x9{left:283.266655pt;}
.x36{left:286.466667pt;}
.x5{left:289.186655pt;}
.x4e{left:299.554667pt;}
.x22{left:302.466667pt;}
.x7{left:303.906655pt;}
.x6{left:324.706655pt;}
.x4f{left:344.861333pt;}
.x14{left:379.200000pt;}
.x17{left:382.146667pt;}
.x37{left:387.586667pt;}
.x1d{left:399.586667pt;}
.x24{left:406.466667pt;}
.x39{left:487.933333pt;}
.x27{left:519.933333pt;}
.x19{left:541.373333pt;}
.x11{left:569.373322pt;}
.x3b{left:591.973333pt;}
.x2a{left:604.933333pt;}
.x54{left:627.973322pt;}
.x46{left:642.533333pt;}
.x51{left:687.013322pt;}
.x32{left:689.413322pt;}
.x1b{left:697.253322pt;}
.x41{left:699.333322pt;}
}




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