
    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_f6500151d1737ac3c73269c5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_af988be6d9126b7815e7715f.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_6af8eb02b3730a242650ad4c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3c072d35a4c2fa307969cfeb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_2aa9fd96a199e7fccaaf1ec7.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_23c3b38b10caa05726c5c3af.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_14229e369dd1b95d38cce674.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_004a81f7691d0e1244b5b7ba.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5095c57ce663b85ed6d7d77f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_de6e670c499f4c3b5f7ab0c1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.600000px;}
.v1{vertical-align:21.600000px;}
.v7{vertical-align:36.000000px;}
.v6{vertical-align:42.120000px;}
.v5{vertical-align:45.780000px;}
.lsa{letter-spacing:-1.410000px;}
.lsc{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.208800px;}
.lse{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.075000px;}
.ls4{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.186000px;}
.ls8{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.525600px;}
.ls1c{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.780000px;}
.ls20{letter-spacing:1.800000px;}
.ls18{letter-spacing:2.160000px;}
.ls19{letter-spacing:3.300000px;}
.ls3{letter-spacing:11.460000px;}
.ls1f{letter-spacing:15.720000px;}
.ls1e{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws10{word-spacing:-18.024000px;}
.wsf{word-spacing:-18.000000px;}
.ws11{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.540000px;}
.ws9{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws16{word-spacing:-15.180000px;}
.ws17{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.880000px;}
.ws15{word-spacing:-14.580000px;}
.ws7{word-spacing:-12.900000px;}
.wse{word-spacing:-11.352000px;}
.ws3{word-spacing:-9.900000px;}
.ws4{word-spacing:-9.691200px;}
.ws5{word-spacing:-8.490000px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:4.062000px;}
.wsd{word-spacing:11.136000px;}
.wsc{word-spacing:28.788000px;}
.wsb{word-spacing:66.156000px;}
.wsa{word-spacing:83.898000px;}
.ws13{word-spacing:401.200800px;}
._19{margin-left:-7.359300px;}
._b{margin-left:-2.256000px;}
._1{margin-left:-1.206000px;}
._0{width:1.056000px;}
._6{width:2.130000px;}
._5{width:3.336000px;}
._8{width:4.740000px;}
._a{width:5.832000px;}
._9{width:6.960000px;}
._7{width:8.880000px;}
._c{width:10.704000px;}
._d{width:12.102000px;}
._e{width:13.590000px;}
._24{width:16.896000px;}
._22{width:19.182000px;}
._4{width:20.454000px;}
._25{width:21.546000px;}
._f{width:27.480000px;}
._1b{width:31.464000px;}
._1c{width:33.732000px;}
._1a{width:35.508000px;}
._1f{width:41.304000px;}
._20{width:43.656000px;}
._1e{width:49.332000px;}
._1d{width:55.416000px;}
._11{width:86.544000px;}
._12{width:88.692000px;}
._10{width:90.528000px;}
._15{width:96.384000px;}
._16{width:98.436000px;}
._14{width:104.472000px;}
._23{width:109.416000px;}
._13{width:110.436000px;}
._21{width:225.641100px;}
._17{width:227.075850px;}
._18{width:262.133100px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.600000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.y0{bottom:0.000000px;}
.y119{bottom:3.300000px;}
.y130{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.yaf{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3d{bottom:6.600000px;}
.y12f{bottom:6.900000px;}
.yb0{bottom:7.200000px;}
.yad{bottom:7.800000px;}
.ya9{bottom:11.445000px;}
.yb5{bottom:11.700000px;}
.ybd{bottom:11.707500px;}
.y120{bottom:11.715000px;}
.yae{bottom:12.000000px;}
.ybc{bottom:12.015000px;}
.y11e{bottom:12.030000px;}
.y5{bottom:12.337500px;}
.y12c{bottom:13.800000px;}
.ycf{bottom:14.370000px;}
.yab{bottom:15.345000px;}
.y8f{bottom:17.400000px;}
.y117{bottom:20.400000px;}
.y118{bottom:20.700000px;}
.y12e{bottom:24.000000px;}
.yb4{bottom:24.900000px;}
.yba{bottom:24.907500px;}
.yb6{bottom:25.200000px;}
.y3c{bottom:26.115000px;}
.ya8{bottom:28.845000px;}
.yaa{bottom:33.045000px;}
.yb2{bottom:37.800000px;}
.y3b{bottom:40.815000px;}
.y4{bottom:46.800000px;}
.ycd{bottom:48.600000px;}
.y8e{bottom:51.000000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:57.915000px;}
.yce{bottom:67.800000px;}
.yc0{bottom:69.750000px;}
.y81{bottom:72.150000px;}
.y3f{bottom:74.137500px;}
.y39{bottom:75.300000px;}
.y3{bottom:81.337500px;}
.y38{bottom:92.415000px;}
.yc1{bottom:98.700000px;}
.y37{bottom:109.800000px;}
.y136{bottom:111.637500px;}
.y166{bottom:112.837500px;}
.yca{bottom:113.145000px;}
.y88{bottom:120.225000px;}
.y24{bottom:120.637500px;}
.ybe{bottom:121.237500px;}
.y7f{bottom:121.537500px;}
.y36{bottom:126.915000px;}
.yc2{bottom:127.620000px;}
.y82{bottom:128.205000px;}
.y135{bottom:129.037500px;}
.y165{bottom:130.237500px;}
.y101{bottom:136.237500px;}
.y185{bottom:137.437500px;}
.y7e{bottom:138.337500px;}
.yb9{bottom:138.637500px;}
.y80{bottom:138.900000px;}
.y23{bottom:141.337500px;}
.y35{bottom:144.300000px;}
.y134{bottom:146.137500px;}
.y164{bottom:147.337500px;}
.y100{bottom:153.345000px;}
.yc3{bottom:156.570000px;}
.y184{bottom:157.830000px;}
.y34{bottom:161.445000px;}
.y22{bottom:162.030000px;}
.y133{bottom:163.245000px;}
.y163{bottom:164.745000px;}
.ybb{bottom:165.030000px;}
.y89{bottom:168.300000px;}
.yff{bottom:170.745000px;}
.y183{bottom:174.930000px;}
.y33{bottom:178.845000px;}
.y162{bottom:181.875000px;}
.y21{bottom:182.775000px;}
.y83{bottom:184.305000px;}
.yc4{bottom:185.520000px;}
.yfe{bottom:187.875000px;}
.y74{bottom:189.075000px;}
.y132{bottom:189.975000px;}
.y182{bottom:192.375000px;}
.yb8{bottom:194.475000px;}
.y32{bottom:195.945000px;}
.y161{bottom:199.275000px;}
.ycb{bottom:199.950000px;}
.y20{bottom:203.475000px;}
.yfd{bottom:205.275000px;}
.y73{bottom:206.475000px;}
.y181{bottom:209.475000px;}
.y31{bottom:213.345000px;}
.yc5{bottom:214.425000px;}
.y8a{bottom:216.330000px;}
.y160{bottom:216.375000px;}
.y131{bottom:216.675000px;}
.yfc{bottom:222.375000px;}
.y72{bottom:223.575000px;}
.y1f{bottom:224.175000px;}
.y180{bottom:226.875000px;}
.y30{bottom:230.445000px;}
.y15f{bottom:233.775000px;}
.yfb{bottom:239.775000px;}
.y84{bottom:240.375000px;}
.y71{bottom:240.975000px;}
.yc6{bottom:243.375000px;}
.y17f{bottom:243.975000px;}
.y1e{bottom:244.875000px;}
.y12b{bottom:245.775000px;}
.y2f{bottom:247.845000px;}
.yb7{bottom:250.275000px;}
.y15e{bottom:250.875000px;}
.yfa{bottom:256.875000px;}
.y70{bottom:258.675000px;}
.y17e{bottom:261.375000px;}
.y8b{bottom:264.420000px;}
.y2e{bottom:264.945000px;}
.y1d{bottom:265.575000px;}
.y12d{bottom:266.475000px;}
.y15d{bottom:268.275000px;}
.yc7{bottom:272.325000px;}
.yf9{bottom:274.275000px;}
.y17d{bottom:278.475000px;}
.y6f{bottom:279.375000px;}
.yb1{bottom:279.675000px;}
.y2d{bottom:282.345000px;}
.y15c{bottom:285.375000px;}
.ycc{bottom:286.770000px;}
.yf8{bottom:291.975000px;}
.y12a{bottom:294.075000px;}
.y17c{bottom:295.875000px;}
.y85{bottom:296.475000px;}
.y2c{bottom:299.445000px;}
.yc8{bottom:301.245000px;}
.y15b{bottom:302.775000px;}
.yb3{bottom:306.075000px;}
.y6e{bottom:311.175000px;}
.yf7{bottom:311.475000px;}
.y8c{bottom:312.480000px;}
.y17b{bottom:312.975000px;}
.y129{bottom:313.575000px;}
.y2b{bottom:316.845000px;}
.y15a{bottom:319.875000px;}
.yf6{bottom:325.875000px;}
.y128{bottom:327.975000px;}
.y6d{bottom:328.875000px;}
.yc9{bottom:330.195000px;}
.y17a{bottom:330.375000px;}
.y2a{bottom:333.990000px;}
.ya7{bottom:335.475000px;}
.y159{bottom:337.275000px;}
.yf5{bottom:343.275000px;}
.y127{bottom:345.375000px;}
.y6c{bottom:346.005000px;}
.y179{bottom:347.505000px;}
.y29{bottom:351.375000px;}
.y86{bottom:352.545000px;}
.y158{bottom:354.405000px;}
.yac{bottom:359.820000px;}
.yf4{bottom:360.420000px;}
.y8d{bottom:360.555000px;}
.y126{bottom:362.520000px;}
.y25{bottom:363.405000px;}
.y6b{bottom:363.420000px;}
.y178{bottom:364.905000px;}
.y28{bottom:368.475000px;}
.y157{bottom:371.820000px;}
.yf3{bottom:377.820000px;}
.y125{bottom:380.205000px;}
.y177{bottom:382.020000px;}
.y27{bottom:385.890000px;}
.y156{bottom:388.920000px;}
.y6a{bottom:392.205000px;}
.yf2{bottom:395.520000px;}
.y176{bottom:399.420000px;}
.y124{bottom:399.705000px;}
.ya6{bottom:400.920000px;}
.y26{bottom:403.590000px;}
.y155{bottom:406.320000px;}
.y87{bottom:408.630000px;}
.y69{bottom:409.920000px;}
.y123{bottom:414.420000px;}
.yf1{bottom:415.005000px;}
.y175{bottom:416.505000px;}
.ya5{bottom:420.420000px;}
.y154{bottom:423.420000px;}
.y68{bottom:427.005000px;}
.yf0{bottom:429.420000px;}
.y122{bottom:431.505000px;}
.y174{bottom:433.920000px;}
.ya4{bottom:434.820000px;}
.y153{bottom:440.820000px;}
.y67{bottom:444.405000px;}
.y121{bottom:446.205000px;}
.yef{bottom:446.820000px;}
.y173{bottom:451.005000px;}
.ya3{bottom:452.205000px;}
.y152{bottom:457.905000px;}
.y66{bottom:461.505000px;}
.yee{bottom:463.920000px;}
.y172{bottom:468.420000px;}
.ya2{bottom:469.320000px;}
.y151{bottom:475.320000px;}
.y11f{bottom:478.905000px;}
.y65{bottom:478.920000px;}
.yed{bottom:481.320000px;}
.y171{bottom:485.505000px;}
.ya1{bottom:486.705000px;}
.y150{bottom:492.420000px;}
.yec{bottom:498.405000px;}
.y170{bottom:502.920000px;}
.ya0{bottom:504.420000px;}
.y11d{bottom:505.320000px;}
.y64{bottom:507.705000px;}
.y14f{bottom:509.820000px;}
.yeb{bottom:515.850000px;}
.y16f{bottom:520.050000px;}
.y9f{bottom:523.950000px;}
.y63{bottom:525.450000px;}
.y14e{bottom:526.950000px;}
.yea{bottom:532.950000px;}
.y11c{bottom:534.750000px;}
.y16e{bottom:537.450000px;}
.y9e{bottom:538.350000px;}
.y62{bottom:542.550000px;}
.y14d{bottom:544.350000px;}
.ye9{bottom:550.350000px;}
.y16d{bottom:554.550000px;}
.y9d{bottom:555.750000px;}
.y61{bottom:559.950000px;}
.y11b{bottom:561.450000px;}
.ye8{bottom:567.450000px;}
.y16c{bottom:571.950000px;}
.y9c{bottom:572.850000px;}
.y7d{bottom:574.050000px;}
.y60{bottom:577.050000px;}
.y14c{bottom:578.850000px;}
.ye7{bottom:584.850000px;}
.y11a{bottom:587.850000px;}
.y16b{bottom:589.050000px;}
.y9b{bottom:590.550000px;}
.y7c{bottom:591.150000px;}
.y5f{bottom:594.450000px;}
.y14b{bottom:595.950000px;}
.ye6{bottom:601.950000px;}
.y16a{bottom:606.450000px;}
.y7b{bottom:608.550000px;}
.y14a{bottom:613.350000px;}
.y116{bottom:617.250000px;}
.ye5{bottom:619.650000px;}
.y9a{bottom:622.650000px;}
.y5e{bottom:623.250000px;}
.y169{bottom:623.550000px;}
.y7a{bottom:625.650000px;}
.y149{bottom:630.450000px;}
.y99{bottom:640.050000px;}
.ye4{bottom:640.350000px;}
.y5d{bottom:640.950000px;}
.y79{bottom:643.350000px;}
.y148{bottom:647.850000px;}
.y98{bottom:657.450000px;}
.y5c{bottom:658.050000px;}
.ye3{bottom:661.050000px;}
.y115{bottom:661.950000px;}
.y78{bottom:663.750000px;}
.y147{bottom:664.950000px;}
.y5b{bottom:675.450000px;}
.ye2{bottom:680.550000px;}
.y77{bottom:680.850000px;}
.y146{bottom:682.380000px;}
.y114{bottom:682.695000px;}
.y97{bottom:686.280000px;}
.y5a{bottom:692.595000px;}
.y76{bottom:695.295000px;}
.y75{bottom:697.980000px;}
.y145{bottom:699.495000px;}
.y113{bottom:702.195000px;}
.y96{bottom:703.995000px;}
.y59{bottom:709.980000px;}
.ye1{bottom:712.395000px;}
.y112{bottom:716.880000px;}
.y95{bottom:721.095000px;}
.y58{bottom:727.080000px;}
.ye0{bottom:729.780000px;}
.y111{bottom:733.995000px;}
.y94{bottom:738.480000px;}
.y57{bottom:744.495000px;}
.ydf{bottom:746.880000px;}
.y110{bottom:751.395000px;}
.y93{bottom:756.195000px;}
.y56{bottom:761.595000px;}
.yde{bottom:764.295000px;}
.y10f{bottom:768.495000px;}
.y92{bottom:775.695000px;}
.y55{bottom:778.980000px;}
.ydd{bottom:781.995000px;}
.y10e{bottom:784.995000px;}
.y144{bottom:786.195000px;}
.y91{bottom:790.080000px;}
.y54{bottom:796.080000px;}
.y10d{bottom:799.695000px;}
.ydc{bottom:802.080000px;}
.y90{bottom:803.880000px;}
.ybf{bottom:805.800000px;}
.y143{bottom:806.580000px;}
.y53{bottom:813.495000px;}
.y1c{bottom:816.795000px;}
.ydb{bottom:819.480000px;}
.y142{bottom:823.695000px;}
.y52{bottom:830.580000px;}
.y1b{bottom:833.880000px;}
.y10c{bottom:834.195000px;}
.yda{bottom:836.580000px;}
.y141{bottom:841.080000px;}
.y51{bottom:847.995000px;}
.y1a{bottom:851.325000px;}
.yd9{bottom:854.025000px;}
.y140{bottom:858.225000px;}
.y50{bottom:865.125000px;}
.y10b{bottom:868.725000px;}
.y19{bottom:871.125000px;}
.yd8{bottom:871.725000px;}
.y13f{bottom:875.625000px;}
.y4f{bottom:882.525000px;}
.y10a{bottom:885.825000px;}
.y18{bottom:889.425000px;}
.yd7{bottom:892.425000px;}
.y13e{bottom:892.725000px;}
.y4e{bottom:899.625000px;}
.y109{bottom:902.325000px;}
.y17{bottom:908.025000px;}
.yd6{bottom:909.225000px;}
.y13d{bottom:910.125000px;}
.y4d{bottom:917.025000px;}
.yd5{bottom:918.225000px;}
.y13c{bottom:927.825000px;}
.y16{bottom:932.025000px;}
.y4c{bottom:934.125000px;}
.yd4{bottom:944.325000px;}
.y13b{bottom:947.925000px;}
.y15{bottom:949.725000px;}
.y4b{bottom:951.525000px;}
.y14{bottom:961.125000px;}
.yd3{bottom:961.725000px;}
.y13a{bottom:965.325000px;}
.y4a{bottom:968.625000px;}
.y13{bottom:977.025000px;}
.yd2{bottom:979.425000px;}
.y139{bottom:982.425000px;}
.y49{bottom:986.025000px;}
.y12{bottom:994.725000px;}
.yd1{bottom:998.925000px;}
.y138{bottom:999.825000px;}
.y48{bottom:1003.125000px;}
.yd0{bottom:1007.925000px;}
.y11{bottom:1015.425000px;}
.y137{bottom:1016.955000px;}
.y47{bottom:1019.670000px;}
.y108{bottom:1020.570000px;}
.y10{bottom:1033.755000px;}
.y46{bottom:1034.370000px;}
.y107{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y45{bottom:1051.455000px;}
.y168{bottom:1055.070000px;}
.y106{bottom:1055.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y44{bottom:1068.870000px;}
.y167{bottom:1072.170000px;}
.y105{bottom:1074.870000px;}
.ya{bottom:1083.570000px;}
.y43{bottom:1085.955000px;}
.y104{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y42{bottom:1103.370000px;}
.y103{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y41{bottom:1120.455000px;}
.y102{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y40{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.ha{height:8.677734px;}
.h5{height:12.700195px;}
.h2e{height:17.100000px;}
.h2f{height:17.400000px;}
.hb{height:21.000000px;}
.h1f{height:21.037500px;}
.hc{height:21.694336px;}
.h22{height:25.800000px;}
.h1e{height:26.100000px;}
.h24{height:26.137500px;}
.hf{height:28.636523px;}
.h8{height:33.867188px;}
.h2b{height:34.500000px;}
.h17{height:34.664062px;}
.h19{height:34.710938px;}
.h3{height:36.000000px;}
.h2d{height:37.800000px;}
.h10{height:38.100586px;}
.h11{height:38.997070px;}
.h9{height:39.049805px;}
.h4{height:42.333984px;}
.h7{height:43.388672px;}
.h30{height:43.681641px;}
.h18{height:44.507812px;}
.h13{height:49.453125px;}
.h2c{height:49.540430px;}
.h20{height:49.660430px;}
.h1c{height:50.176523px;}
.he{height:50.236523px;}
.h27{height:50.296523px;}
.h1d{height:50.437500px;}
.h6{height:50.800781px;}
.h1b{height:50.906616px;}
.h15{height:51.996094px;}
.hd{height:52.066406px;}
.h21{height:52.500000px;}
.h23{height:52.537500px;}
.h16{height:54.239063px;}
.h26{height:54.506616px;}
.h12{height:59.343750px;}
.h1{height:65.645508px;}
.h29{height:86.800781px;}
.h2a{height:89.087109px;}
.h28{height:89.267109px;}
.h2{height:97.200000px;}
.h25{height:349.200000px;}
.h14{height:420.375000px;}
.h1a{height:431.700000px;}
.h0{height:1263.000000px;}
.w19{width:30.300000px;}
.w1a{width:45.937500px;}
.w1c{width:54.037500px;}
.w1e{width:60.337500px;}
.w1b{width:66.300000px;}
.w1d{width:69.000000px;}
.w21{width:70.537500px;}
.w1f{width:71.700000px;}
.w4{width:72.300000px;}
.w22{width:77.137500px;}
.w20{width:86.737500px;}
.w9{width:95.437500px;}
.wa{width:100.200000px;}
.w14{width:100.837500px;}
.w17{width:101.737500px;}
.w3{width:108.000000px;}
.w15{width:115.537500px;}
.wf{width:118.537500px;}
.w23{width:120.937500px;}
.w13{width:130.837500px;}
.w10{width:136.537500px;}
.wd{width:136.575000px;}
.we{width:136.837500px;}
.w16{width:142.237500px;}
.w18{width:160.845000px;}
.w11{width:198.945000px;}
.w24{width:220.275000px;}
.w6{width:252.975000px;}
.wc{width:255.975000px;}
.wb{width:274.320000px;}
.w5{width:483.450000px;}
.w12{width:682.200000px;}
.w7{width:731.025000px;}
.w8{width:744.300000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.300000px;}
.x43{left:7.800000px;}
.x1a{left:9.787500px;}
.x2{left:10.799998px;}
.x46{left:13.500000px;}
.x4e{left:15.000000px;}
.x11{left:16.200000px;}
.x4c{left:17.700000px;}
.x19{left:18.787500px;}
.x48{left:19.830000px;}
.x3{left:22.200000px;}
.x21{left:24.000000px;}
.x27{left:25.800000px;}
.x4{left:27.600000px;}
.x4d{left:29.100000px;}
.x1e{left:30.300000px;}
.x2b{left:32.100000px;}
.x32{left:33.600000px;}
.x3a{left:35.700000px;}
.x28{left:36.945000px;}
.x29{left:38.400000px;}
.x2c{left:40.830000px;}
.x2a{left:42.000000px;}
.x2e{left:43.800000px;}
.x2d{left:45.900000px;}
.x24{left:47.445000px;}
.x39{left:48.600000px;}
.x22{left:49.800000px;}
.x3e{left:53.100000px;}
.x38{left:54.900000px;}
.x3f{left:57.600000px;}
.x3c{left:61.185000px;}
.x1b{left:65.137500px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x10{left:82.237500px;}
.x40{left:85.237500px;}
.x2f{left:104.400000px;}
.x31{left:105.600000px;}
.x4f{left:108.037487px;}
.xf{left:116.445000px;}
.x17{left:133.237487px;}
.x33{left:136.095000px;}
.xa{left:153.629987px;}
.x20{left:181.575000px;}
.x37{left:218.175000px;}
.x35{left:226.274987px;}
.xd{left:241.567500px;}
.x41{left:246.975000px;}
.x34{left:248.220000px;}
.x1d{left:266.474987px;}
.x42{left:278.175000px;}
.x23{left:285.075000px;}
.x44{left:325.020000px;}
.x36{left:346.019987px;}
.x15{left:350.504987px;}
.x7{left:363.419987px;}
.x5{left:388.619987px;}
.x45{left:391.905000px;}
.x25{left:422.550000px;}
.x14{left:446.549987px;}
.x3b{left:451.650000px;}
.x47{left:516.450000px;}
.xe{left:561.780000px;}
.x12{left:568.694987px;}
.x49{left:577.695000px;}
.x9{left:614.879987px;}
.x30{left:629.505000px;}
.x8{left:648.194987px;}
.x4a{left:649.995000px;}
.x26{left:682.125000px;}
.x6{left:696.524987px;}
.x3d{left:710.925000px;}
.x18{left:716.820000px;}
.x4b{left:737.625000px;}
.x13{left:751.424987px;}
.x1c{left:788.669987px;}
.xb{left:812.369987px;}
.x16{left:825.869987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.200000pt;}
.v1{vertical-align:19.200000pt;}
.v7{vertical-align:32.000000pt;}
.v6{vertical-align:37.440000pt;}
.v5{vertical-align:40.693333pt;}
.lsa{letter-spacing:-1.253333pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.185600pt;}
.lse{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.066667pt;}
.ls4{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.165333pt;}
.ls8{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.467200pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.693333pt;}
.ls20{letter-spacing:1.600000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.933333pt;}
.ls3{letter-spacing:10.186667pt;}
.ls1f{letter-spacing:13.973333pt;}
.ls1e{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws10{word-spacing:-16.021333pt;}
.wsf{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.813333pt;}
.ws9{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws16{word-spacing:-13.493333pt;}
.ws17{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.226667pt;}
.ws15{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.466667pt;}
.wse{word-spacing:-10.090667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws4{word-spacing:-8.614400pt;}
.ws5{word-spacing:-7.546667pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:3.610667pt;}
.wsd{word-spacing:9.898667pt;}
.wsc{word-spacing:25.589333pt;}
.wsb{word-spacing:58.805333pt;}
.wsa{word-spacing:74.576000pt;}
.ws13{word-spacing:356.622933pt;}
._19{margin-left:-6.541600pt;}
._b{margin-left:-2.005333pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.938667pt;}
._6{width:1.893333pt;}
._5{width:2.965333pt;}
._8{width:4.213333pt;}
._a{width:5.184000pt;}
._9{width:6.186667pt;}
._7{width:7.893333pt;}
._c{width:9.514667pt;}
._d{width:10.757333pt;}
._e{width:12.080000pt;}
._24{width:15.018667pt;}
._22{width:17.050667pt;}
._4{width:18.181333pt;}
._25{width:19.152000pt;}
._f{width:24.426667pt;}
._1b{width:27.968000pt;}
._1c{width:29.984000pt;}
._1a{width:31.562667pt;}
._1f{width:36.714667pt;}
._20{width:38.805333pt;}
._1e{width:43.850667pt;}
._1d{width:49.258667pt;}
._11{width:76.928000pt;}
._12{width:78.837333pt;}
._10{width:80.469333pt;}
._15{width:85.674667pt;}
._16{width:87.498667pt;}
._14{width:92.864000pt;}
._23{width:97.258667pt;}
._13{width:98.165333pt;}
._21{width:200.569867pt;}
._17{width:201.845200pt;}
._18{width:233.007200pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.866667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:2.933333pt;}
.y130{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.yaf{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3d{bottom:5.866667pt;}
.y12f{bottom:6.133333pt;}
.yb0{bottom:6.400000pt;}
.yad{bottom:6.933333pt;}
.ya9{bottom:10.173333pt;}
.yb5{bottom:10.400000pt;}
.ybd{bottom:10.406667pt;}
.y120{bottom:10.413333pt;}
.yae{bottom:10.666667pt;}
.ybc{bottom:10.680000pt;}
.y11e{bottom:10.693333pt;}
.y5{bottom:10.966667pt;}
.y12c{bottom:12.266667pt;}
.ycf{bottom:12.773333pt;}
.yab{bottom:13.640000pt;}
.y8f{bottom:15.466667pt;}
.y117{bottom:18.133333pt;}
.y118{bottom:18.400000pt;}
.y12e{bottom:21.333333pt;}
.yb4{bottom:22.133333pt;}
.yba{bottom:22.140000pt;}
.yb6{bottom:22.400000pt;}
.y3c{bottom:23.213333pt;}
.ya8{bottom:25.640000pt;}
.yaa{bottom:29.373333pt;}
.yb2{bottom:33.600000pt;}
.y3b{bottom:36.280000pt;}
.y4{bottom:41.600000pt;}
.ycd{bottom:43.200000pt;}
.y8e{bottom:45.333333pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:51.480000pt;}
.yce{bottom:60.266667pt;}
.yc0{bottom:62.000000pt;}
.y81{bottom:64.133333pt;}
.y3f{bottom:65.900000pt;}
.y39{bottom:66.933333pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:82.146667pt;}
.yc1{bottom:87.733333pt;}
.y37{bottom:97.600000pt;}
.y136{bottom:99.233333pt;}
.y166{bottom:100.300000pt;}
.yca{bottom:100.573333pt;}
.y88{bottom:106.866667pt;}
.y24{bottom:107.233333pt;}
.ybe{bottom:107.766667pt;}
.y7f{bottom:108.033333pt;}
.y36{bottom:112.813333pt;}
.yc2{bottom:113.440000pt;}
.y82{bottom:113.960000pt;}
.y135{bottom:114.700000pt;}
.y165{bottom:115.766667pt;}
.y101{bottom:121.100000pt;}
.y185{bottom:122.166667pt;}
.y7e{bottom:122.966667pt;}
.yb9{bottom:123.233333pt;}
.y80{bottom:123.466667pt;}
.y23{bottom:125.633333pt;}
.y35{bottom:128.266667pt;}
.y134{bottom:129.900000pt;}
.y164{bottom:130.966667pt;}
.y100{bottom:136.306667pt;}
.yc3{bottom:139.173333pt;}
.y184{bottom:140.293333pt;}
.y34{bottom:143.506667pt;}
.y22{bottom:144.026667pt;}
.y133{bottom:145.106667pt;}
.y163{bottom:146.440000pt;}
.ybb{bottom:146.693333pt;}
.y89{bottom:149.600000pt;}
.yff{bottom:151.773333pt;}
.y183{bottom:155.493333pt;}
.y33{bottom:158.973333pt;}
.y162{bottom:161.666667pt;}
.y21{bottom:162.466667pt;}
.y83{bottom:163.826667pt;}
.yc4{bottom:164.906667pt;}
.yfe{bottom:167.000000pt;}
.y74{bottom:168.066667pt;}
.y132{bottom:168.866667pt;}
.y182{bottom:171.000000pt;}
.yb8{bottom:172.866667pt;}
.y32{bottom:174.173333pt;}
.y161{bottom:177.133333pt;}
.ycb{bottom:177.733333pt;}
.y20{bottom:180.866667pt;}
.yfd{bottom:182.466667pt;}
.y73{bottom:183.533333pt;}
.y181{bottom:186.200000pt;}
.y31{bottom:189.640000pt;}
.yc5{bottom:190.600000pt;}
.y8a{bottom:192.293333pt;}
.y160{bottom:192.333333pt;}
.y131{bottom:192.600000pt;}
.yfc{bottom:197.666667pt;}
.y72{bottom:198.733333pt;}
.y1f{bottom:199.266667pt;}
.y180{bottom:201.666667pt;}
.y30{bottom:204.840000pt;}
.y15f{bottom:207.800000pt;}
.yfb{bottom:213.133333pt;}
.y84{bottom:213.666667pt;}
.y71{bottom:214.200000pt;}
.yc6{bottom:216.333333pt;}
.y17f{bottom:216.866667pt;}
.y1e{bottom:217.666667pt;}
.y12b{bottom:218.466667pt;}
.y2f{bottom:220.306667pt;}
.yb7{bottom:222.466667pt;}
.y15e{bottom:223.000000pt;}
.yfa{bottom:228.333333pt;}
.y70{bottom:229.933333pt;}
.y17e{bottom:232.333333pt;}
.y8b{bottom:235.040000pt;}
.y2e{bottom:235.506667pt;}
.y1d{bottom:236.066667pt;}
.y12d{bottom:236.866667pt;}
.y15d{bottom:238.466667pt;}
.yc7{bottom:242.066667pt;}
.yf9{bottom:243.800000pt;}
.y17d{bottom:247.533333pt;}
.y6f{bottom:248.333333pt;}
.yb1{bottom:248.600000pt;}
.y2d{bottom:250.973333pt;}
.y15c{bottom:253.666667pt;}
.ycc{bottom:254.906667pt;}
.yf8{bottom:259.533333pt;}
.y12a{bottom:261.400000pt;}
.y17c{bottom:263.000000pt;}
.y85{bottom:263.533333pt;}
.y2c{bottom:266.173333pt;}
.yc8{bottom:267.773333pt;}
.y15b{bottom:269.133333pt;}
.yb3{bottom:272.066667pt;}
.y6e{bottom:276.600000pt;}
.yf7{bottom:276.866667pt;}
.y8c{bottom:277.760000pt;}
.y17b{bottom:278.200000pt;}
.y129{bottom:278.733333pt;}
.y2b{bottom:281.640000pt;}
.y15a{bottom:284.333333pt;}
.yf6{bottom:289.666667pt;}
.y128{bottom:291.533333pt;}
.y6d{bottom:292.333333pt;}
.yc9{bottom:293.506667pt;}
.y17a{bottom:293.666667pt;}
.y2a{bottom:296.880000pt;}
.ya7{bottom:298.200000pt;}
.y159{bottom:299.800000pt;}
.yf5{bottom:305.133333pt;}
.y127{bottom:307.000000pt;}
.y6c{bottom:307.560000pt;}
.y179{bottom:308.893333pt;}
.y29{bottom:312.333333pt;}
.y86{bottom:313.373333pt;}
.y158{bottom:315.026667pt;}
.yac{bottom:319.840000pt;}
.yf4{bottom:320.373333pt;}
.y8d{bottom:320.493333pt;}
.y126{bottom:322.240000pt;}
.y25{bottom:323.026667pt;}
.y6b{bottom:323.040000pt;}
.y178{bottom:324.360000pt;}
.y28{bottom:327.533333pt;}
.y157{bottom:330.506667pt;}
.yf3{bottom:335.840000pt;}
.y125{bottom:337.960000pt;}
.y177{bottom:339.573333pt;}
.y27{bottom:343.013333pt;}
.y156{bottom:345.706667pt;}
.y6a{bottom:348.626667pt;}
.yf2{bottom:351.573333pt;}
.y176{bottom:355.040000pt;}
.y124{bottom:355.293333pt;}
.ya6{bottom:356.373333pt;}
.y26{bottom:358.746667pt;}
.y155{bottom:361.173333pt;}
.y87{bottom:363.226667pt;}
.y69{bottom:364.373333pt;}
.y123{bottom:368.373333pt;}
.yf1{bottom:368.893333pt;}
.y175{bottom:370.226667pt;}
.ya5{bottom:373.706667pt;}
.y154{bottom:376.373333pt;}
.y68{bottom:379.560000pt;}
.yf0{bottom:381.706667pt;}
.y122{bottom:383.560000pt;}
.y174{bottom:385.706667pt;}
.ya4{bottom:386.506667pt;}
.y153{bottom:391.840000pt;}
.y67{bottom:395.026667pt;}
.y121{bottom:396.626667pt;}
.yef{bottom:397.173333pt;}
.y173{bottom:400.893333pt;}
.ya3{bottom:401.960000pt;}
.y152{bottom:407.026667pt;}
.y66{bottom:410.226667pt;}
.yee{bottom:412.373333pt;}
.y172{bottom:416.373333pt;}
.ya2{bottom:417.173333pt;}
.y151{bottom:422.506667pt;}
.y11f{bottom:425.693333pt;}
.y65{bottom:425.706667pt;}
.yed{bottom:427.840000pt;}
.y171{bottom:431.560000pt;}
.ya1{bottom:432.626667pt;}
.y150{bottom:437.706667pt;}
.yec{bottom:443.026667pt;}
.y170{bottom:447.040000pt;}
.ya0{bottom:448.373333pt;}
.y11d{bottom:449.173333pt;}
.y64{bottom:451.293333pt;}
.y14f{bottom:453.173333pt;}
.yeb{bottom:458.533333pt;}
.y16f{bottom:462.266667pt;}
.y9f{bottom:465.733333pt;}
.y63{bottom:467.066667pt;}
.y14e{bottom:468.400000pt;}
.yea{bottom:473.733333pt;}
.y11c{bottom:475.333333pt;}
.y16e{bottom:477.733333pt;}
.y9e{bottom:478.533333pt;}
.y62{bottom:482.266667pt;}
.y14d{bottom:483.866667pt;}
.ye9{bottom:489.200000pt;}
.y16d{bottom:492.933333pt;}
.y9d{bottom:494.000000pt;}
.y61{bottom:497.733333pt;}
.y11b{bottom:499.066667pt;}
.ye8{bottom:504.400000pt;}
.y16c{bottom:508.400000pt;}
.y9c{bottom:509.200000pt;}
.y7d{bottom:510.266667pt;}
.y60{bottom:512.933333pt;}
.y14c{bottom:514.533333pt;}
.ye7{bottom:519.866667pt;}
.y11a{bottom:522.533333pt;}
.y16b{bottom:523.600000pt;}
.y9b{bottom:524.933333pt;}
.y7c{bottom:525.466667pt;}
.y5f{bottom:528.400000pt;}
.y14b{bottom:529.733333pt;}
.ye6{bottom:535.066667pt;}
.y16a{bottom:539.066667pt;}
.y7b{bottom:540.933333pt;}
.y14a{bottom:545.200000pt;}
.y116{bottom:548.666667pt;}
.ye5{bottom:550.800000pt;}
.y9a{bottom:553.466667pt;}
.y5e{bottom:554.000000pt;}
.y169{bottom:554.266667pt;}
.y7a{bottom:556.133333pt;}
.y149{bottom:560.400000pt;}
.y99{bottom:568.933333pt;}
.ye4{bottom:569.200000pt;}
.y5d{bottom:569.733333pt;}
.y79{bottom:571.866667pt;}
.y148{bottom:575.866667pt;}
.y98{bottom:584.400000pt;}
.y5c{bottom:584.933333pt;}
.ye3{bottom:587.600000pt;}
.y115{bottom:588.400000pt;}
.y78{bottom:590.000000pt;}
.y147{bottom:591.066667pt;}
.y5b{bottom:600.400000pt;}
.ye2{bottom:604.933333pt;}
.y77{bottom:605.200000pt;}
.y146{bottom:606.560000pt;}
.y114{bottom:606.840000pt;}
.y97{bottom:610.026667pt;}
.y5a{bottom:615.640000pt;}
.y76{bottom:618.040000pt;}
.y75{bottom:620.426667pt;}
.y145{bottom:621.773333pt;}
.y113{bottom:624.173333pt;}
.y96{bottom:625.773333pt;}
.y59{bottom:631.093333pt;}
.ye1{bottom:633.240000pt;}
.y112{bottom:637.226667pt;}
.y95{bottom:640.973333pt;}
.y58{bottom:646.293333pt;}
.ye0{bottom:648.693333pt;}
.y111{bottom:652.440000pt;}
.y94{bottom:656.426667pt;}
.y57{bottom:661.773333pt;}
.ydf{bottom:663.893333pt;}
.y110{bottom:667.906667pt;}
.y93{bottom:672.173333pt;}
.y56{bottom:676.973333pt;}
.yde{bottom:679.373333pt;}
.y10f{bottom:683.106667pt;}
.y92{bottom:689.506667pt;}
.y55{bottom:692.426667pt;}
.ydd{bottom:695.106667pt;}
.y10e{bottom:697.773333pt;}
.y144{bottom:698.840000pt;}
.y91{bottom:702.293333pt;}
.y54{bottom:707.626667pt;}
.y10d{bottom:710.840000pt;}
.ydc{bottom:712.960000pt;}
.y90{bottom:714.560000pt;}
.ybf{bottom:716.266667pt;}
.y143{bottom:716.960000pt;}
.y53{bottom:723.106667pt;}
.y1c{bottom:726.040000pt;}
.ydb{bottom:728.426667pt;}
.y142{bottom:732.173333pt;}
.y52{bottom:738.293333pt;}
.y1b{bottom:741.226667pt;}
.y10c{bottom:741.506667pt;}
.yda{bottom:743.626667pt;}
.y141{bottom:747.626667pt;}
.y51{bottom:753.773333pt;}
.y1a{bottom:756.733333pt;}
.yd9{bottom:759.133333pt;}
.y140{bottom:762.866667pt;}
.y50{bottom:769.000000pt;}
.y10b{bottom:772.200000pt;}
.y19{bottom:774.333333pt;}
.yd8{bottom:774.866667pt;}
.y13f{bottom:778.333333pt;}
.y4f{bottom:784.466667pt;}
.y10a{bottom:787.400000pt;}
.y18{bottom:790.600000pt;}
.yd7{bottom:793.266667pt;}
.y13e{bottom:793.533333pt;}
.y4e{bottom:799.666667pt;}
.y109{bottom:802.066667pt;}
.y17{bottom:807.133333pt;}
.yd6{bottom:808.200000pt;}
.y13d{bottom:809.000000pt;}
.y4d{bottom:815.133333pt;}
.yd5{bottom:816.200000pt;}
.y13c{bottom:824.733333pt;}
.y16{bottom:828.466667pt;}
.y4c{bottom:830.333333pt;}
.yd4{bottom:839.400000pt;}
.y13b{bottom:842.600000pt;}
.y15{bottom:844.200000pt;}
.y4b{bottom:845.800000pt;}
.y14{bottom:854.333333pt;}
.yd3{bottom:854.866667pt;}
.y13a{bottom:858.066667pt;}
.y4a{bottom:861.000000pt;}
.y13{bottom:868.466667pt;}
.yd2{bottom:870.600000pt;}
.y139{bottom:873.266667pt;}
.y49{bottom:876.466667pt;}
.y12{bottom:884.200000pt;}
.yd1{bottom:887.933333pt;}
.y138{bottom:888.733333pt;}
.y48{bottom:891.666667pt;}
.yd0{bottom:895.933333pt;}
.y11{bottom:902.600000pt;}
.y137{bottom:903.960000pt;}
.y47{bottom:906.373333pt;}
.y108{bottom:907.173333pt;}
.y10{bottom:918.893333pt;}
.y46{bottom:919.440000pt;}
.y107{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y45{bottom:934.626667pt;}
.y168{bottom:937.840000pt;}
.y106{bottom:938.106667pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y44{bottom:950.106667pt;}
.y167{bottom:953.040000pt;}
.y105{bottom:955.440000pt;}
.ya{bottom:963.173333pt;}
.y43{bottom:965.293333pt;}
.y104{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y42{bottom:980.773333pt;}
.y103{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y41{bottom:995.960000pt;}
.y102{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y40{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.ha{height:7.713542pt;}
.h5{height:11.289062pt;}
.h2e{height:15.200000pt;}
.h2f{height:15.466667pt;}
.hb{height:18.666667pt;}
.h1f{height:18.700000pt;}
.hc{height:19.283854pt;}
.h22{height:22.933333pt;}
.h1e{height:23.200000pt;}
.h24{height:23.233333pt;}
.hf{height:25.454687pt;}
.h8{height:30.104167pt;}
.h2b{height:30.666667pt;}
.h17{height:30.812500pt;}
.h19{height:30.854167pt;}
.h3{height:32.000000pt;}
.h2d{height:33.600000pt;}
.h10{height:33.867188pt;}
.h11{height:34.664062pt;}
.h9{height:34.710938pt;}
.h4{height:37.630208pt;}
.h7{height:38.567708pt;}
.h30{height:38.828125pt;}
.h18{height:39.562500pt;}
.h13{height:43.958333pt;}
.h2c{height:44.035938pt;}
.h20{height:44.142604pt;}
.h1c{height:44.601354pt;}
.he{height:44.654688pt;}
.h27{height:44.708021pt;}
.h1d{height:44.833333pt;}
.h6{height:45.156250pt;}
.h1b{height:45.250326pt;}
.h15{height:46.218750pt;}
.hd{height:46.281250pt;}
.h21{height:46.666667pt;}
.h23{height:46.700000pt;}
.h16{height:48.212500pt;}
.h26{height:48.450326pt;}
.h12{height:52.750000pt;}
.h1{height:58.351562pt;}
.h29{height:77.156250pt;}
.h2a{height:79.188542pt;}
.h28{height:79.348542pt;}
.h2{height:86.400000pt;}
.h25{height:310.400000pt;}
.h14{height:373.666667pt;}
.h1a{height:383.733333pt;}
.h0{height:1122.666667pt;}
.w19{width:26.933333pt;}
.w1a{width:40.833333pt;}
.w1c{width:48.033333pt;}
.w1e{width:53.633333pt;}
.w1b{width:58.933333pt;}
.w1d{width:61.333333pt;}
.w21{width:62.700000pt;}
.w1f{width:63.733333pt;}
.w4{width:64.266667pt;}
.w22{width:68.566667pt;}
.w20{width:77.100000pt;}
.w9{width:84.833333pt;}
.wa{width:89.066667pt;}
.w14{width:89.633333pt;}
.w17{width:90.433333pt;}
.w3{width:96.000000pt;}
.w15{width:102.700000pt;}
.wf{width:105.366667pt;}
.w23{width:107.500000pt;}
.w13{width:116.300000pt;}
.w10{width:121.366667pt;}
.wd{width:121.400000pt;}
.we{width:121.633333pt;}
.w16{width:126.433333pt;}
.w18{width:142.973333pt;}
.w11{width:176.840000pt;}
.w24{width:195.800000pt;}
.w6{width:224.866667pt;}
.wc{width:227.533333pt;}
.wb{width:243.840000pt;}
.w5{width:429.733333pt;}
.w12{width:606.400000pt;}
.w7{width:649.800000pt;}
.w8{width:661.600000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:5.600000pt;}
.x43{left:6.933333pt;}
.x1a{left:8.700000pt;}
.x2{left:9.599999pt;}
.x46{left:12.000000pt;}
.x4e{left:13.333333pt;}
.x11{left:14.400000pt;}
.x4c{left:15.733333pt;}
.x19{left:16.700000pt;}
.x48{left:17.626667pt;}
.x3{left:19.733333pt;}
.x21{left:21.333333pt;}
.x27{left:22.933333pt;}
.x4{left:24.533333pt;}
.x4d{left:25.866667pt;}
.x1e{left:26.933333pt;}
.x2b{left:28.533333pt;}
.x32{left:29.866667pt;}
.x3a{left:31.733333pt;}
.x28{left:32.840000pt;}
.x29{left:34.133333pt;}
.x2c{left:36.293333pt;}
.x2a{left:37.333333pt;}
.x2e{left:38.933333pt;}
.x2d{left:40.800000pt;}
.x24{left:42.173333pt;}
.x39{left:43.200000pt;}
.x22{left:44.266667pt;}
.x3e{left:47.200000pt;}
.x38{left:48.800000pt;}
.x3f{left:51.200000pt;}
.x3c{left:54.386667pt;}
.x1b{left:57.900000pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x10{left:73.100000pt;}
.x40{left:75.766667pt;}
.x2f{left:92.800000pt;}
.x31{left:93.866667pt;}
.x4f{left:96.033322pt;}
.xf{left:103.506667pt;}
.x17{left:118.433322pt;}
.x33{left:120.973333pt;}
.xa{left:136.559988pt;}
.x20{left:161.400000pt;}
.x37{left:193.933333pt;}
.x35{left:201.133322pt;}
.xd{left:214.726667pt;}
.x41{left:219.533333pt;}
.x34{left:220.640000pt;}
.x1d{left:236.866655pt;}
.x42{left:247.266667pt;}
.x23{left:253.400000pt;}
.x44{left:288.906667pt;}
.x36{left:307.573322pt;}
.x15{left:311.559988pt;}
.x7{left:323.039988pt;}
.x5{left:345.439988pt;}
.x45{left:348.360000pt;}
.x25{left:375.600000pt;}
.x14{left:396.933322pt;}
.x3b{left:401.466667pt;}
.x47{left:459.066667pt;}
.xe{left:499.360000pt;}
.x12{left:505.506655pt;}
.x49{left:513.506667pt;}
.x9{left:546.559988pt;}
.x30{left:559.560000pt;}
.x8{left:576.173322pt;}
.x4a{left:577.773333pt;}
.x26{left:606.333333pt;}
.x6{left:619.133322pt;}
.x3d{left:631.933333pt;}
.x18{left:637.173333pt;}
.x4b{left:655.666667pt;}
.x13{left:667.933322pt;}
.x1c{left:701.039988pt;}
.xb{left:722.106655pt;}
.x16{left:734.106655pt;}
}




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