
    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_988c69a231b4d6e7006896e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee295f17df2f505a11811b63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_80792253ef78db2c53e2f89f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_53170b1062cdcf7dcc6e4782.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_b09e3c903f3fa83fad986bbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_6ac71dc2d1259dd4d4c744fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925293;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_1959c8666afc294230194f63.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_a04fb83eb5bf42c5a2df2d5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b52a76aaa5dc705278fcda51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_6c832607c739c41e5c89a477.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_edb1b8d7ca965102e1f7f868.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919434;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;}
.m4{transform:matrix(0.000000,-0.249008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249008,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.177207,-0.176346,0.177207,0.176346,0,0);-ms-transform:matrix(0.177207,-0.176346,0.177207,0.176346,0,0);-webkit-transform:matrix(0.177207,-0.176346,0.177207,0.176346,0,0);}
.m2{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,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:-82.800000px;}
.v2{vertical-align:-72.000000px;}
.v4{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.ls10{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.201000px;}
.lsd{letter-spacing:0.255000px;}
.lse{letter-spacing:0.266400px;}
.lsa{letter-spacing:0.284400px;}
.ls6{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.864000px;}
.ls4{letter-spacing:128.304000px;}
.ls2{letter-spacing:194.376000px;}
.ls3{letter-spacing:567.336000px;}
.ls9{letter-spacing:712.236000px;}
.lsf{letter-spacing:816.636000px;}
.ls7{letter-spacing:858.396000px;}
.ls5{letter-spacing:1256.556000px;}
.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;}
}
.ws3{word-spacing:-18.864000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws4{word-spacing:-13.194227px;}
.wsb{word-spacing:-12.227316px;}
.ws2{word-spacing:-11.206939px;}
.ws6{word-spacing:-10.897200px;}
.ws9{word-spacing:-10.867800px;}
.ws7{word-spacing:-10.813800px;}
.ws8{word-spacing:-10.799400px;}
.ws5{word-spacing:-10.612800px;}
.wsa{word-spacing:-6.652800px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-3.384000px;}
._15{margin-left:-2.330647px;}
._0{margin-left:-1.296000px;}
._1{width:1.404000px;}
._4{width:2.688000px;}
._2{width:3.888000px;}
._3{width:4.968000px;}
._5{width:5.988000px;}
._6{width:7.872000px;}
._a{width:9.060000px;}
._9{width:10.728000px;}
._7{width:12.384000px;}
._8{width:14.148000px;}
._c{width:15.228000px;}
._13{width:16.284000px;}
._f{width:17.400000px;}
._14{width:19.416000px;}
._e{width:21.312000px;}
._d{width:22.464000px;}
._b{width:24.264000px;}
._17{width:26.208000px;}
._18{width:27.264000px;}
._10{width:29.376000px;}
._12{width:30.624000px;}
._11{width:31.680000px;}
._1a{width:34.272000px;}
._19{width:35.280000px;}
._1b{width:52.629840px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:49.588228px;}
.fsd{font-size:54.103170px;}
.fs4{font-size:58.344625px;}
.fs7{font-size:58.381533px;}
.fsc{font-size:58.443719px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fse{font-size:69.120000px;}
.fs3{font-size:71.920926px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.023201px;}
.fsb{font-size:72.061929px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.685000px;}
.yfd{bottom:2.700000px;}
.yef{bottom:2.880000px;}
.yde{bottom:3.045000px;}
.yea{bottom:3.060000px;}
.ye1{bottom:3.225000px;}
.yed{bottom:3.240000px;}
.yeb{bottom:3.420000px;}
.yd4{bottom:3.600000px;}
.yf9{bottom:3.780000px;}
.yd5{bottom:3.960000px;}
.yf3{bottom:4.320000px;}
.ycc{bottom:4.500000px;}
.y105{bottom:4.680000px;}
.y120{bottom:5.590917px;}
.y122{bottom:5.628190px;}
.ye3{bottom:6.120000px;}
.y102{bottom:6.300000px;}
.ye4{bottom:6.480000px;}
.yd1{bottom:6.660000px;}
.yd2{bottom:6.840000px;}
.yc5{bottom:7.020000px;}
.yd9{bottom:8.280000px;}
.ye6{bottom:9.705000px;}
.yfb{bottom:9.720000px;}
.ydc{bottom:10.065000px;}
.yfe{bottom:10.080000px;}
.ydf{bottom:10.245000px;}
.yc6{bottom:10.800000px;}
.yc8{bottom:11.160000px;}
.yaf{bottom:11.244402px;}
.yca{bottom:11.520000px;}
.ycd{bottom:11.700000px;}
.ycf{bottom:11.880000px;}
.yb1{bottom:12.361396px;}
.ye7{bottom:16.725000px;}
.yfc{bottom:16.740000px;}
.ydd{bottom:17.085000px;}
.ycb{bottom:18.540000px;}
.yd7{bottom:22.320000px;}
.yda{bottom:22.680000px;}
.yc2{bottom:25.230000px;}
.y8a{bottom:28.091072px;}
.y97{bottom:30.329357px;}
.y91{bottom:34.805926px;}
.yd8{bottom:36.360000px;}
.y8d{bottom:39.319801px;}
.yaa{bottom:40.435169px;}
.yc1{bottom:40.530000px;}
.y88{bottom:43.796370px;}
.y8e{bottom:44.915513px;}
.yc0{bottom:47.190000px;}
.y92{bottom:49.429387px;}
.y8f{bottom:51.667672px;}
.y8b{bottom:53.905957px;}
.y94{bottom:58.419831px;}
.y93{bottom:62.896401px;}
.y90{bottom:69.648560px;}
.yab{bottom:70.742929px;}
.y96{bottom:75.244272px;}
.y98{bottom:85.353859px;}
.y95{bottom:89.867733px;}
.y11d{bottom:89.901498px;}
.y8c{bottom:92.106018px;}
.y89{bottom:95.463445px;}
.yac{bottom:101.087923px;}
.y118{bottom:116.280000px;}
.y7e{bottom:118.440000px;}
.y64{bottom:122.220000px;}
.y32{bottom:123.660000px;}
.ybe{bottom:129.276000px;}
.y14a{bottom:130.896000px;}
.yad{bottom:131.395683px;}
.y117{bottom:137.016000px;}
.y82{bottom:140.415666px;}
.y63{bottom:143.316000px;}
.y31{bottom:144.756000px;}
.ybd{bottom:149.976000px;}
.y149{bottom:151.590000px;}
.y7d{bottom:153.750000px;}
.y116{bottom:157.710000px;}
.y83{bottom:161.756966px;}
.y62{bottom:164.010000px;}
.y30{bottom:165.990000px;}
.ybc{bottom:170.670000px;}
.y11e{bottom:170.826667px;}
.y148{bottom:172.290000px;}
.y7c{bottom:174.450000px;}
.y115{bottom:178.410000px;}
.y84{bottom:183.095282px;}
.y61{bottom:184.710000px;}
.y2f{bottom:187.050000px;}
.ya8{bottom:187.335797px;}
.ybb{bottom:191.370000px;}
.y147{bottom:192.990000px;}
.y7b{bottom:195.150000px;}
.y114{bottom:199.110000px;}
.y85{bottom:204.463441px;}
.y60{bottom:205.410000px;}
.y2e{bottom:208.470000px;}
.y11b{bottom:209.895950px;}
.yba{bottom:212.070000px;}
.y146{bottom:213.150000px;}
.y7a{bottom:215.850000px;}
.y113{bottom:219.810000px;}
.y86{bottom:225.801756px;}
.y5f{bottom:226.110000px;}
.y2d{bottom:229.710000px;}
.yb9{bottom:232.770000px;}
.y145{bottom:234.750000px;}
.y79{bottom:236.550000px;}
.y112{bottom:240.510000px;}
.y87{bottom:246.020929px;}
.y5e{bottom:246.810000px;}
.y2c{bottom:250.410000px;}
.yb8{bottom:253.470000px;}
.y144{bottom:255.450000px;}
.y78{bottom:257.250000px;}
.y111{bottom:261.210000px;}
.y5d{bottom:267.510000px;}
.y2b{bottom:271.110000px;}
.yb7{bottom:274.170000px;}
.y143{bottom:276.150000px;}
.y80{bottom:277.375038px;}
.y77{bottom:277.950000px;}
.y110{bottom:281.910000px;}
.y5c{bottom:288.210000px;}
.y2a{bottom:291.810000px;}
.yb6{bottom:294.870000px;}
.y142{bottom:296.850000px;}
.y76{bottom:298.650000px;}
.y10f{bottom:302.610000px;}
.y5b{bottom:308.910000px;}
.y29{bottom:312.510000px;}
.yb5{bottom:315.570000px;}
.y141{bottom:317.550000px;}
.y75{bottom:319.350000px;}
.y10e{bottom:323.310000px;}
.y5a{bottom:329.610000px;}
.yb4{bottom:331.770000px;}
.ya7{bottom:331.845000px;}
.y28{bottom:333.210000px;}
.ya9{bottom:337.542307px;}
.y140{bottom:338.250000px;}
.y74{bottom:340.050000px;}
.y10d{bottom:343.830000px;}
.y59{bottom:350.310000px;}
.y27{bottom:353.910000px;}
.y13f{bottom:358.950000px;}
.y73{bottom:360.750000px;}
.ybf{bottom:361.305000px;}
.y10c{bottom:364.530000px;}
.y58{bottom:371.010000px;}
.y26{bottom:374.250000px;}
.yb3{bottom:374.589262px;}
.y13e{bottom:379.695000px;}
.y72{bottom:381.495000px;}
.y10b{bottom:385.275000px;}
.y57{bottom:391.755000px;}
.y25{bottom:395.355000px;}
.y13d{bottom:400.395000px;}
.y71{bottom:402.195000px;}
.yb2{bottom:403.780029px;}
.y10a{bottom:405.975000px;}
.y56{bottom:412.455000px;}
.y24{bottom:416.055000px;}
.y13c{bottom:421.095000px;}
.y70{bottom:422.895000px;}
.y109{bottom:426.675000px;}
.yb0{bottom:433.008029px;}
.y55{bottom:433.155000px;}
.y23{bottom:436.755000px;}
.y13b{bottom:441.795000px;}
.y6f{bottom:443.595000px;}
.y108{bottom:443.775000px;}
.y54{bottom:453.855000px;}
.y22{bottom:457.455000px;}
.y107{bottom:458.355000px;}
.yae{bottom:462.198795px;}
.y13a{bottom:462.495000px;}
.y6e{bottom:464.295000px;}
.y106{bottom:472.935000px;}
.y53{bottom:474.555000px;}
.y21{bottom:478.155000px;}
.y139{bottom:483.195000px;}
.y6d{bottom:484.995000px;}
.y104{bottom:494.715000px;}
.y52{bottom:495.255000px;}
.y20{bottom:498.855000px;}
.y138{bottom:503.895000px;}
.y6c{bottom:505.695000px;}
.y103{bottom:511.995000px;}
.y51{bottom:515.955000px;}
.y1f{bottom:519.555000px;}
.y137{bottom:524.595000px;}
.y6b{bottom:526.395000px;}
.y101{bottom:526.575000px;}
.y50{bottom:536.655000px;}
.y1e{bottom:540.255000px;}
.y136{bottom:545.295000px;}
.y6a{bottom:547.095000px;}
.y100{bottom:547.635000px;}
.ya6{bottom:556.995000px;}
.y4f{bottom:557.355000px;}
.y1d{bottom:560.955000px;}
.yff{bottom:563.115000px;}
.y135{bottom:565.995000px;}
.y69{bottom:567.795000px;}
.ya5{bottom:577.695000px;}
.y4e{bottom:578.055000px;}
.y1c{bottom:581.655000px;}
.y134{bottom:586.695000px;}
.y68{bottom:588.495000px;}
.yfa{bottom:592.455000px;}
.ya4{bottom:598.395000px;}
.y4d{bottom:598.755000px;}
.y1b{bottom:602.355000px;}
.y133{bottom:607.395000px;}
.y67{bottom:609.195000px;}
.ya3{bottom:619.095000px;}
.y4c{bottom:619.455000px;}
.yf8{bottom:620.535000px;}
.y1a{bottom:623.055000px;}
.y66{bottom:625.395000px;}
.y132{bottom:628.095000px;}
.yf7{bottom:636.045000px;}
.ya2{bottom:639.825000px;}
.y4b{bottom:640.185000px;}
.y19{bottom:643.785000px;}
.y131{bottom:648.825000px;}
.yf6{bottom:650.625000px;}
.ya1{bottom:660.525000px;}
.y4a{bottom:660.885000px;}
.y18{bottom:664.485000px;}
.yf5{bottom:665.385000px;}
.y130{bottom:669.525000px;}
.yf4{bottom:679.965000px;}
.ya0{bottom:681.225000px;}
.y49{bottom:681.585000px;}
.y17{bottom:685.185000px;}
.y12f{bottom:690.225000px;}
.yf2{bottom:701.745000px;}
.y9f{bottom:701.925000px;}
.y48{bottom:702.285000px;}
.y16{bottom:705.885000px;}
.y12e{bottom:710.925000px;}
.yf1{bottom:719.025000px;}
.y47{bottom:722.625000px;}
.y15{bottom:726.585000px;}
.y12d{bottom:731.625000px;}
.yf0{bottom:733.605000px;}
.y46{bottom:743.325000px;}
.y14{bottom:747.285000px;}
.y159{bottom:751.065000px;}
.y12c{bottom:751.965000px;}
.yee{bottom:754.665000px;}
.y9e{bottom:764.025000px;}
.y45{bottom:764.385000px;}
.y13{bottom:767.985000px;}
.yec{bottom:769.245000px;}
.y158{bottom:771.045000px;}
.y12b{bottom:772.665000px;}
.ye9{bottom:783.825000px;}
.y44{bottom:784.545000px;}
.y9d{bottom:784.725000px;}
.y12{bottom:788.685000px;}
.y157{bottom:791.385000px;}
.y12a{bottom:793.365000px;}
.ye5{bottom:798.600000px;}
.y9c{bottom:805.425000px;}
.y43{bottom:805.785000px;}
.y11{bottom:809.385000px;}
.y156{bottom:811.545000px;}
.y129{bottom:814.065000px;}
.y9b{bottom:826.125000px;}
.ye2{bottom:826.665000px;}
.y42{bottom:826.845000px;}
.y10{bottom:830.085000px;}
.y11a{bottom:830.595000px;}
.y128{bottom:830.625000px;}
.y155{bottom:831.705000px;}
.y11c{bottom:836.318806px;}
.y9a{bottom:846.825000px;}
.ye0{bottom:847.560000px;}
.y41{bottom:847.905000px;}
.y125{bottom:849.811106px;}
.yf{bottom:850.785000px;}
.y154{bottom:852.045000px;}
.y123{bottom:859.949302px;}
.ydb{bottom:862.140000px;}
.y99{bottom:863.205000px;}
.y7f{bottom:863.220000px;}
.y124{bottom:866.658402px;}
.y121{bottom:868.932042px;}
.y40{bottom:868.965000px;}
.y81{bottom:869.005423px;}
.ye{bottom:871.485000px;}
.y153{bottom:872.205000px;}
.y126{bottom:872.286592px;}
.y11f{bottom:874.560231px;}
.y127{bottom:876.796598px;}
.y3f{bottom:890.250000px;}
.yd6{bottom:890.790000px;}
.yd{bottom:892.230000px;}
.y152{bottom:893.130000px;}
.y3e{bottom:911.850000px;}
.yc{bottom:912.930000px;}
.y151{bottom:913.830000px;}
.y3d{bottom:932.550000px;}
.yb{bottom:933.630000px;}
.y150{bottom:934.530000px;}
.yd3{bottom:944.250000px;}
.y3c{bottom:953.250000px;}
.ya{bottom:954.330000px;}
.y14f{bottom:955.230000px;}
.yd0{bottom:960.270000px;}
.y3b{bottom:973.950000px;}
.y9{bottom:974.670000px;}
.y65{bottom:975.030000px;}
.y14e{bottom:975.210000px;}
.yce{bottom:982.230000px;}
.y3a{bottom:994.110000px;}
.y14d{bottom:995.550000px;}
.y8{bottom:995.730000px;}
.y39{bottom:1013.010000px;}
.yc9{bottom:1014.270000px;}
.y7{bottom:1016.430000px;}
.y38{bottom:1034.070000px;}
.y6{bottom:1037.130000px;}
.yc7{bottom:1045.770000px;}
.y37{bottom:1055.310000px;}
.y5{bottom:1057.830000px;}
.yc4{bottom:1076.010000px;}
.y36{bottom:1076.370000px;}
.y119{bottom:1078.170000px;}
.y4{bottom:1078.530000px;}
.y35{bottom:1097.430000px;}
.y3{bottom:1099.230000px;}
.yc3{bottom:1102.650000px;}
.y34{bottom:1118.490000px;}
.y14c{bottom:1119.570000px;}
.y2{bottom:1119.930000px;}
.y33{bottom:1139.760000px;}
.y14b{bottom:1140.300000px;}
.y1{bottom:1140.660000px;}
.h16{height:8.367188px;}
.h23{height:14.565000px;}
.h27{height:14.580000px;}
.h2c{height:14.745000px;}
.h26{height:14.760000px;}
.h2b{height:15.510000px;}
.h20{height:16.005000px;}
.h2e{height:17.265000px;}
.h29{height:17.280000px;}
.h24{height:20.880000px;}
.h2d{height:21.045000px;}
.h28{height:21.060000px;}
.h2a{height:21.780000px;}
.h1f{height:21.945000px;}
.h18{height:22.125000px;}
.h12{height:25.839786px;}
.h13{height:26.956779px;}
.h25{height:28.065000px;}
.h22{height:28.641000px;}
.h1b{height:30.225000px;}
.h1d{height:31.485000px;}
.h1e{height:32.025000px;}
.h19{height:32.976562px;}
.h1a{height:33.730312px;}
.hd{height:33.898202px;}
.h1c{height:34.107187px;}
.h34{height:36.984589px;}
.hc{height:39.884021px;}
.h11{height:39.909251px;}
.h32{height:39.951761px;}
.h15{height:40.851562px;}
.h3b{height:48.870000px;}
.h5{height:50.906250px;}
.h3a{height:51.697346px;}
.h21{height:53.445000px;}
.h33{height:53.933713px;}
.h39{height:56.207352px;}
.h35{height:59.561902px;}
.h8{height:60.226875px;}
.h14{height:61.402500px;}
.h37{height:61.835542px;}
.h4{height:64.546875px;}
.h6{height:65.010937px;}
.h36{height:68.544642px;}
.ha{height:70.586456px;}
.h17{height:70.628906px;}
.h2{height:70.664062px;}
.hf{height:70.686833px;}
.h30{height:70.724842px;}
.h3{height:72.562500px;}
.h7{height:74.004654px;}
.h38{height:78.682839px;}
.h10{height:192.048436px;}
.he{height:203.553596px;}
.h31{height:214.661395px;}
.h2f{height:226.122469px;}
.hb{height:281.949281px;}
.h9{height:293.557246px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w16{width:49.515237px;}
.w10{width:51.762525px;}
.w15{width:54.047267px;}
.w9{width:54.531000px;}
.w11{width:57.418199px;}
.w13{width:59.665486px;}
.w12{width:66.407349px;}
.we{width:73.605000px;}
.wb{width:73.656000px;}
.wc{width:73.785000px;}
.wd{width:73.821000px;}
.w14{width:76.520143px;}
.w6{width:87.794036px;}
.w8{width:89.280000px;}
.w7{width:92.288611px;}
.wa{width:299.715000px;}
.w3{width:614.609376px;}
.w5{width:624.745957px;}
.w2{width:625.266149px;}
.w4{width:635.376626px;}
.wf{width:668.430000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:8.085000px;}
.x2a{left:11.145000px;}
.x32{left:17.271000px;}
.x36{left:19.110000px;}
.x35{left:20.511000px;}
.x33{left:22.350000px;}
.x28{left:26.265000px;}
.x37{left:33.510000px;}
.x34{left:36.885000px;}
.x25{left:38.278799px;}
.x23{left:47.305404px;}
.x24{left:68.692091px;}
.xd{left:72.060234px;}
.x29{left:78.465000px;}
.x38{left:79.928529px;}
.xe{left:101.311296px;}
.x2b{left:111.645000px;}
.xf{left:122.697155px;}
.x7{left:127.656000px;}
.xc{left:133.462879px;}
.x10{left:145.214105px;}
.x9{left:154.650000px;}
.x11{left:166.592474px;}
.x1{left:170.310000px;}
.x12{left:189.109425px;}
.x3f{left:191.550000px;}
.xa{left:208.650000px;}
.x13{left:211.611394px;}
.xb{left:229.890000px;}
.x14{left:232.989763px;}
.x15{left:255.506713px;}
.x39{left:271.933473px;}
.x16{left:276.900063px;}
.x17{left:299.446976px;}
.x18{left:320.825345px;}
.x3a{left:331.598959px;}
.x19{left:343.342295px;}
.x4{left:344.415000px;}
.x2{left:352.155000px;}
.x3{left:354.135000px;}
.x1a{left:365.844265px;}
.x5{left:381.315000px;}
.x1b{left:387.237615px;}
.x3b{left:407.002950px;}
.x1c{left:409.739584px;}
.x1d{left:431.117953px;}
.x6{left:446.295000px;}
.x1e{left:453.634903px;}
.x3c{left:457.671794px;}
.x2d{left:465.915000px;}
.x1f{left:475.013272px;}
.x20{left:497.530222px;}
.x21{left:520.047173px;}
.x2e{left:539.580000px;}
.x3d{left:548.836762px;}
.x2f{left:613.380000px;}
.x3e{left:622.023429px;}
.x26{left:625.394360px;}
.x30{left:687.210000px;}
.x22{left:753.090000px;}
.x8{left:756.510000px;}
.x31{left:761.010000px;}
.x27{left:763.170000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-64.000000pt;}
.v4{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.178667pt;}
.lsd{letter-spacing:0.226667pt;}
.lse{letter-spacing:0.236800pt;}
.lsa{letter-spacing:0.252800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls4{letter-spacing:114.048000pt;}
.ls2{letter-spacing:172.778667pt;}
.ls3{letter-spacing:504.298667pt;}
.ls9{letter-spacing:633.098667pt;}
.lsf{letter-spacing:725.898667pt;}
.ls7{letter-spacing:763.018667pt;}
.ls5{letter-spacing:1116.938667pt;}
.ws3{word-spacing:-16.768000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws4{word-spacing:-11.728201pt;}
.wsb{word-spacing:-10.868726pt;}
.ws2{word-spacing:-9.961724pt;}
.ws6{word-spacing:-9.686400pt;}
.ws9{word-spacing:-9.660267pt;}
.ws7{word-spacing:-9.612267pt;}
.ws8{word-spacing:-9.599467pt;}
.ws5{word-spacing:-9.433600pt;}
.wsa{word-spacing:-5.913600pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-3.008000pt;}
._15{margin-left:-2.071686pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.248000pt;}
._4{width:2.389333pt;}
._2{width:3.456000pt;}
._3{width:4.416000pt;}
._5{width:5.322667pt;}
._6{width:6.997333pt;}
._a{width:8.053333pt;}
._9{width:9.536000pt;}
._7{width:11.008000pt;}
._8{width:12.576000pt;}
._c{width:13.536000pt;}
._13{width:14.474667pt;}
._f{width:15.466667pt;}
._14{width:17.258667pt;}
._e{width:18.944000pt;}
._d{width:19.968000pt;}
._b{width:21.568000pt;}
._17{width:23.296000pt;}
._18{width:24.234667pt;}
._10{width:26.112000pt;}
._12{width:27.221333pt;}
._11{width:28.160000pt;}
._1a{width:30.464000pt;}
._19{width:31.360000pt;}
._1b{width:46.782080pt;}
.fs8{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:44.078424pt;}
.fsd{font-size:48.091707pt;}
.fs4{font-size:51.861889pt;}
.fs7{font-size:51.894696pt;}
.fsc{font-size:51.949972pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fse{font-size:61.440000pt;}
.fs3{font-size:63.929712pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.020623pt;}
.fsb{font-size:64.055048pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.386667pt;}
.yfd{bottom:2.400000pt;}
.yef{bottom:2.560000pt;}
.yde{bottom:2.706667pt;}
.yea{bottom:2.720000pt;}
.ye1{bottom:2.866667pt;}
.yed{bottom:2.880000pt;}
.yeb{bottom:3.040000pt;}
.yd4{bottom:3.200000pt;}
.yf9{bottom:3.360000pt;}
.yd5{bottom:3.520000pt;}
.yf3{bottom:3.840000pt;}
.ycc{bottom:4.000000pt;}
.y105{bottom:4.160000pt;}
.y120{bottom:4.969704pt;}
.y122{bottom:5.002835pt;}
.ye3{bottom:5.440000pt;}
.y102{bottom:5.600000pt;}
.ye4{bottom:5.760000pt;}
.yd1{bottom:5.920000pt;}
.yd2{bottom:6.080000pt;}
.yc5{bottom:6.240000pt;}
.yd9{bottom:7.360000pt;}
.ye6{bottom:8.626667pt;}
.yfb{bottom:8.640000pt;}
.ydc{bottom:8.946667pt;}
.yfe{bottom:8.960000pt;}
.ydf{bottom:9.106667pt;}
.yc6{bottom:9.600000pt;}
.yc8{bottom:9.920000pt;}
.yaf{bottom:9.995024pt;}
.yca{bottom:10.240000pt;}
.ycd{bottom:10.400000pt;}
.ycf{bottom:10.560000pt;}
.yb1{bottom:10.987908pt;}
.ye7{bottom:14.866667pt;}
.yfc{bottom:14.880000pt;}
.ydd{bottom:15.186667pt;}
.ycb{bottom:16.480000pt;}
.yd7{bottom:19.840000pt;}
.yda{bottom:20.160000pt;}
.yc2{bottom:22.426667pt;}
.y8a{bottom:24.969841pt;}
.y97{bottom:26.959428pt;}
.y91{bottom:30.938601pt;}
.yd8{bottom:32.320000pt;}
.y8d{bottom:34.950934pt;}
.yaa{bottom:35.942372pt;}
.yc1{bottom:36.026667pt;}
.y88{bottom:38.930107pt;}
.y8e{bottom:39.924900pt;}
.yc0{bottom:41.946667pt;}
.y92{bottom:43.937233pt;}
.y8f{bottom:45.926820pt;}
.y8b{bottom:47.916406pt;}
.y94{bottom:51.928739pt;}
.y93{bottom:55.907912pt;}
.y90{bottom:61.909831pt;}
.yab{bottom:62.882604pt;}
.y96{bottom:66.883798pt;}
.y98{bottom:75.870097pt;}
.y95{bottom:79.882430pt;}
.y11d{bottom:79.912443pt;}
.y8c{bottom:81.872016pt;}
.y89{bottom:84.856396pt;}
.yac{bottom:89.855931pt;}
.y118{bottom:103.360000pt;}
.y7e{bottom:105.280000pt;}
.y64{bottom:108.640000pt;}
.y32{bottom:109.920000pt;}
.ybe{bottom:114.912000pt;}
.y14a{bottom:116.352000pt;}
.yad{bottom:116.796163pt;}
.y117{bottom:121.792000pt;}
.y82{bottom:124.813925pt;}
.y63{bottom:127.392000pt;}
.y31{bottom:128.672000pt;}
.ybd{bottom:133.312000pt;}
.y149{bottom:134.746667pt;}
.y7d{bottom:136.666667pt;}
.y116{bottom:140.186667pt;}
.y83{bottom:143.783970pt;}
.y62{bottom:145.786667pt;}
.y30{bottom:147.546667pt;}
.ybc{bottom:151.706667pt;}
.y11e{bottom:151.845926pt;}
.y148{bottom:153.146667pt;}
.y7c{bottom:155.066667pt;}
.y115{bottom:158.586667pt;}
.y84{bottom:162.751361pt;}
.y61{bottom:164.186667pt;}
.y2f{bottom:166.266667pt;}
.ya8{bottom:166.520708pt;}
.ybb{bottom:170.106667pt;}
.y147{bottom:171.546667pt;}
.y7b{bottom:173.466667pt;}
.y114{bottom:176.986667pt;}
.y85{bottom:181.745281pt;}
.y60{bottom:182.586667pt;}
.y2e{bottom:185.306667pt;}
.y11b{bottom:186.574177pt;}
.yba{bottom:188.506667pt;}
.y146{bottom:189.466667pt;}
.y7a{bottom:191.866667pt;}
.y113{bottom:195.386667pt;}
.y86{bottom:200.712672pt;}
.y5f{bottom:200.986667pt;}
.y2d{bottom:204.186667pt;}
.yb9{bottom:206.906667pt;}
.y145{bottom:208.666667pt;}
.y79{bottom:210.266667pt;}
.y112{bottom:213.786667pt;}
.y87{bottom:218.685271pt;}
.y5e{bottom:219.386667pt;}
.y2c{bottom:222.586667pt;}
.yb8{bottom:225.306667pt;}
.y144{bottom:227.066667pt;}
.y78{bottom:228.666667pt;}
.y111{bottom:232.186667pt;}
.y5d{bottom:237.786667pt;}
.y2b{bottom:240.986667pt;}
.yb7{bottom:243.706667pt;}
.y143{bottom:245.466667pt;}
.y80{bottom:246.555589pt;}
.y77{bottom:247.066667pt;}
.y110{bottom:250.586667pt;}
.y5c{bottom:256.186667pt;}
.y2a{bottom:259.386667pt;}
.yb6{bottom:262.106667pt;}
.y142{bottom:263.866667pt;}
.y76{bottom:265.466667pt;}
.y10f{bottom:268.986667pt;}
.y5b{bottom:274.586667pt;}
.y29{bottom:277.786667pt;}
.yb5{bottom:280.506667pt;}
.y141{bottom:282.266667pt;}
.y75{bottom:283.866667pt;}
.y10e{bottom:287.386667pt;}
.y5a{bottom:292.986667pt;}
.yb4{bottom:294.906667pt;}
.ya7{bottom:294.973333pt;}
.y28{bottom:296.186667pt;}
.ya9{bottom:300.037607pt;}
.y140{bottom:300.666667pt;}
.y74{bottom:302.266667pt;}
.y10d{bottom:305.626667pt;}
.y59{bottom:311.386667pt;}
.y27{bottom:314.586667pt;}
.y13f{bottom:319.066667pt;}
.y73{bottom:320.666667pt;}
.ybf{bottom:321.160000pt;}
.y10c{bottom:324.026667pt;}
.y58{bottom:329.786667pt;}
.y26{bottom:332.666667pt;}
.yb3{bottom:332.968233pt;}
.y13e{bottom:337.506667pt;}
.y72{bottom:339.106667pt;}
.y10b{bottom:342.466667pt;}
.y57{bottom:348.226667pt;}
.y25{bottom:351.426667pt;}
.y13d{bottom:355.906667pt;}
.y71{bottom:357.506667pt;}
.yb2{bottom:358.915581pt;}
.y10a{bottom:360.866667pt;}
.y56{bottom:366.626667pt;}
.y24{bottom:369.826667pt;}
.y13c{bottom:374.306667pt;}
.y70{bottom:375.906667pt;}
.y109{bottom:379.266667pt;}
.yb0{bottom:384.896026pt;}
.y55{bottom:385.026667pt;}
.y23{bottom:388.226667pt;}
.y13b{bottom:392.706667pt;}
.y6f{bottom:394.306667pt;}
.y108{bottom:394.466667pt;}
.y54{bottom:403.426667pt;}
.y22{bottom:406.626667pt;}
.y107{bottom:407.426667pt;}
.yae{bottom:410.843374pt;}
.y13a{bottom:411.106667pt;}
.y6e{bottom:412.706667pt;}
.y106{bottom:420.386667pt;}
.y53{bottom:421.826667pt;}
.y21{bottom:425.026667pt;}
.y139{bottom:429.506667pt;}
.y6d{bottom:431.106667pt;}
.y104{bottom:439.746667pt;}
.y52{bottom:440.226667pt;}
.y20{bottom:443.426667pt;}
.y138{bottom:447.906667pt;}
.y6c{bottom:449.506667pt;}
.y103{bottom:455.106667pt;}
.y51{bottom:458.626667pt;}
.y1f{bottom:461.826667pt;}
.y137{bottom:466.306667pt;}
.y6b{bottom:467.906667pt;}
.y101{bottom:468.066667pt;}
.y50{bottom:477.026667pt;}
.y1e{bottom:480.226667pt;}
.y136{bottom:484.706667pt;}
.y6a{bottom:486.306667pt;}
.y100{bottom:486.786667pt;}
.ya6{bottom:495.106667pt;}
.y4f{bottom:495.426667pt;}
.y1d{bottom:498.626667pt;}
.yff{bottom:500.546667pt;}
.y135{bottom:503.106667pt;}
.y69{bottom:504.706667pt;}
.ya5{bottom:513.506667pt;}
.y4e{bottom:513.826667pt;}
.y1c{bottom:517.026667pt;}
.y134{bottom:521.506667pt;}
.y68{bottom:523.106667pt;}
.yfa{bottom:526.626667pt;}
.ya4{bottom:531.906667pt;}
.y4d{bottom:532.226667pt;}
.y1b{bottom:535.426667pt;}
.y133{bottom:539.906667pt;}
.y67{bottom:541.506667pt;}
.ya3{bottom:550.306667pt;}
.y4c{bottom:550.626667pt;}
.yf8{bottom:551.586667pt;}
.y1a{bottom:553.826667pt;}
.y66{bottom:555.906667pt;}
.y132{bottom:558.306667pt;}
.yf7{bottom:565.373333pt;}
.ya2{bottom:568.733333pt;}
.y4b{bottom:569.053333pt;}
.y19{bottom:572.253333pt;}
.y131{bottom:576.733333pt;}
.yf6{bottom:578.333333pt;}
.ya1{bottom:587.133333pt;}
.y4a{bottom:587.453333pt;}
.y18{bottom:590.653333pt;}
.yf5{bottom:591.453333pt;}
.y130{bottom:595.133333pt;}
.yf4{bottom:604.413333pt;}
.ya0{bottom:605.533333pt;}
.y49{bottom:605.853333pt;}
.y17{bottom:609.053333pt;}
.y12f{bottom:613.533333pt;}
.yf2{bottom:623.773333pt;}
.y9f{bottom:623.933333pt;}
.y48{bottom:624.253333pt;}
.y16{bottom:627.453333pt;}
.y12e{bottom:631.933333pt;}
.yf1{bottom:639.133333pt;}
.y47{bottom:642.333333pt;}
.y15{bottom:645.853333pt;}
.y12d{bottom:650.333333pt;}
.yf0{bottom:652.093333pt;}
.y46{bottom:660.733333pt;}
.y14{bottom:664.253333pt;}
.y159{bottom:667.613333pt;}
.y12c{bottom:668.413333pt;}
.yee{bottom:670.813333pt;}
.y9e{bottom:679.133333pt;}
.y45{bottom:679.453333pt;}
.y13{bottom:682.653333pt;}
.yec{bottom:683.773333pt;}
.y158{bottom:685.373333pt;}
.y12b{bottom:686.813333pt;}
.ye9{bottom:696.733333pt;}
.y44{bottom:697.373333pt;}
.y9d{bottom:697.533333pt;}
.y12{bottom:701.053333pt;}
.y157{bottom:703.453333pt;}
.y12a{bottom:705.213333pt;}
.ye5{bottom:709.866667pt;}
.y9c{bottom:715.933333pt;}
.y43{bottom:716.253333pt;}
.y11{bottom:719.453333pt;}
.y156{bottom:721.373333pt;}
.y129{bottom:723.613333pt;}
.y9b{bottom:734.333333pt;}
.ye2{bottom:734.813333pt;}
.y42{bottom:734.973333pt;}
.y10{bottom:737.853333pt;}
.y11a{bottom:738.306667pt;}
.y128{bottom:738.333333pt;}
.y155{bottom:739.293333pt;}
.y11c{bottom:743.394495pt;}
.y9a{bottom:752.733333pt;}
.ye0{bottom:753.386667pt;}
.y41{bottom:753.693333pt;}
.y125{bottom:755.387649pt;}
.yf{bottom:756.253333pt;}
.y154{bottom:757.373333pt;}
.y123{bottom:764.399379pt;}
.ydb{bottom:766.346667pt;}
.y99{bottom:767.293333pt;}
.y7f{bottom:767.306667pt;}
.y124{bottom:770.363024pt;}
.y121{bottom:772.384037pt;}
.y40{bottom:772.413333pt;}
.y81{bottom:772.449265pt;}
.ye{bottom:774.653333pt;}
.y153{bottom:775.293333pt;}
.y126{bottom:775.365859pt;}
.y11f{bottom:777.386872pt;}
.y127{bottom:779.374754pt;}
.y3f{bottom:791.333333pt;}
.yd6{bottom:791.813333pt;}
.yd{bottom:793.093333pt;}
.y152{bottom:793.893333pt;}
.y3e{bottom:810.533333pt;}
.yc{bottom:811.493333pt;}
.y151{bottom:812.293333pt;}
.y3d{bottom:828.933333pt;}
.yb{bottom:829.893333pt;}
.y150{bottom:830.693333pt;}
.yd3{bottom:839.333333pt;}
.y3c{bottom:847.333333pt;}
.ya{bottom:848.293333pt;}
.y14f{bottom:849.093333pt;}
.yd0{bottom:853.573333pt;}
.y3b{bottom:865.733333pt;}
.y9{bottom:866.373333pt;}
.y65{bottom:866.693333pt;}
.y14e{bottom:866.853333pt;}
.yce{bottom:873.093333pt;}
.y3a{bottom:883.653333pt;}
.y14d{bottom:884.933333pt;}
.y8{bottom:885.093333pt;}
.y39{bottom:900.453333pt;}
.yc9{bottom:901.573333pt;}
.y7{bottom:903.493333pt;}
.y38{bottom:919.173333pt;}
.y6{bottom:921.893333pt;}
.yc7{bottom:929.573333pt;}
.y37{bottom:938.053333pt;}
.y5{bottom:940.293333pt;}
.yc4{bottom:956.453333pt;}
.y36{bottom:956.773333pt;}
.y119{bottom:958.373333pt;}
.y4{bottom:958.693333pt;}
.y35{bottom:975.493333pt;}
.y3{bottom:977.093333pt;}
.yc3{bottom:980.133333pt;}
.y34{bottom:994.213333pt;}
.y14c{bottom:995.173333pt;}
.y2{bottom:995.493333pt;}
.y33{bottom:1013.120000pt;}
.y14b{bottom:1013.600000pt;}
.y1{bottom:1013.920000pt;}
.h16{height:7.437500pt;}
.h23{height:12.946667pt;}
.h27{height:12.960000pt;}
.h2c{height:13.106667pt;}
.h26{height:13.120000pt;}
.h2b{height:13.786667pt;}
.h20{height:14.226667pt;}
.h2e{height:15.346667pt;}
.h29{height:15.360000pt;}
.h24{height:18.560000pt;}
.h2d{height:18.706667pt;}
.h28{height:18.720000pt;}
.h2a{height:19.360000pt;}
.h1f{height:19.506667pt;}
.h18{height:19.666667pt;}
.h12{height:22.968698pt;}
.h13{height:23.961582pt;}
.h25{height:24.946667pt;}
.h22{height:25.458667pt;}
.h1b{height:26.866667pt;}
.h1d{height:27.986667pt;}
.h1e{height:28.466667pt;}
.h19{height:29.312500pt;}
.h1a{height:29.982500pt;}
.hd{height:30.131735pt;}
.h1c{height:30.317500pt;}
.h34{height:32.875190pt;}
.hc{height:35.452463pt;}
.h11{height:35.474890pt;}
.h32{height:35.512677pt;}
.h15{height:36.312500pt;}
.h3b{height:43.440000pt;}
.h5{height:45.250000pt;}
.h3a{height:45.953196pt;}
.h21{height:47.506667pt;}
.h33{height:47.941078pt;}
.h39{height:49.962091pt;}
.h35{height:52.943913pt;}
.h8{height:53.535000pt;}
.h14{height:54.580000pt;}
.h37{height:54.964926pt;}
.h4{height:57.375000pt;}
.h6{height:57.787500pt;}
.h36{height:60.928571pt;}
.ha{height:62.743516pt;}
.h17{height:62.781250pt;}
.h2{height:62.812500pt;}
.hf{height:62.832741pt;}
.h30{height:62.866526pt;}
.h3{height:64.500000pt;}
.h7{height:65.781915pt;}
.h38{height:69.940301pt;}
.h10{height:170.709721pt;}
.he{height:180.936530pt;}
.h31{height:190.810129pt;}
.h2f{height:200.997750pt;}
.hb{height:250.621583pt;}
.h9{height:260.939774pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w16{width:44.013544pt;}
.w10{width:46.011133pt;}
.w15{width:48.042015pt;}
.w9{width:48.472000pt;}
.w11{width:51.038399pt;}
.w13{width:53.035988pt;}
.w12{width:59.028755pt;}
.we{width:65.426667pt;}
.wb{width:65.472000pt;}
.wc{width:65.586667pt;}
.wd{width:65.618667pt;}
.w14{width:68.017905pt;}
.w6{width:78.039143pt;}
.w8{width:79.360000pt;}
.w7{width:82.034321pt;}
.wa{width:266.413333pt;}
.w3{width:546.319445pt;}
.w5{width:555.329739pt;}
.w2{width:555.792133pt;}
.w4{width:564.779223pt;}
.wf{width:594.160000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:7.186667pt;}
.x2a{left:9.906667pt;}
.x32{left:15.352000pt;}
.x36{left:16.986667pt;}
.x35{left:18.232000pt;}
.x33{left:19.866667pt;}
.x28{left:23.346667pt;}
.x37{left:29.786667pt;}
.x34{left:32.786667pt;}
.x25{left:34.025599pt;}
.x23{left:42.049248pt;}
.x24{left:61.059637pt;}
.xd{left:64.053541pt;}
.x29{left:69.746667pt;}
.x38{left:71.047582pt;}
.xe{left:90.054485pt;}
.x2b{left:99.240000pt;}
.xf{left:109.064138pt;}
.x7{left:113.472000pt;}
.xc{left:118.633670pt;}
.x10{left:129.079205pt;}
.x9{left:137.466667pt;}
.x11{left:148.082199pt;}
.x1{left:151.386667pt;}
.x12{left:168.097266pt;}
.x3f{left:170.266667pt;}
.xa{left:185.466667pt;}
.x13{left:188.099017pt;}
.xb{left:204.346667pt;}
.x14{left:207.102011pt;}
.x15{left:227.117078pt;}
.x39{left:241.718643pt;}
.x16{left:246.133389pt;}
.x17{left:266.175090pt;}
.x18{left:285.178084pt;}
.x3a{left:294.754630pt;}
.x19{left:305.193152pt;}
.x4{left:306.146667pt;}
.x2{left:313.026667pt;}
.x3{left:314.786667pt;}
.x1a{left:325.194902pt;}
.x5{left:338.946667pt;}
.x1b{left:344.211213pt;}
.x3b{left:361.780400pt;}
.x1c{left:364.212963pt;}
.x1d{left:383.215958pt;}
.x6{left:396.706667pt;}
.x1e{left:403.231025pt;}
.x3c{left:406.819373pt;}
.x2d{left:414.146667pt;}
.x1f{left:422.234019pt;}
.x20{left:442.249086pt;}
.x21{left:462.264153pt;}
.x2e{left:479.626667pt;}
.x3d{left:487.854899pt;}
.x2f{left:545.226667pt;}
.x3e{left:552.909714pt;}
.x26{left:555.906098pt;}
.x30{left:610.853333pt;}
.x22{left:669.413333pt;}
.x8{left:672.453333pt;}
.x31{left:676.453333pt;}
.x27{left:678.373333pt;}
}




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