
    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_6314548bc2b197e9536ab763.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f51c4794550fb61c70323b27.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7ecf3496cb6fd71ba16b1ef7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_6858766f0dd25d8b23fcc816.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_10a7a625be7dedceab2cd57e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_3d68ae82f920d6a8e815621c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d12cb95fd271f1bcb2b624d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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:ffc;src:url('chunks/assets/font_b63c262c5c57463361e7df03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_3de49800c044b9d0298ca11d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1c4f01d0db8739268666aa6b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d52981ad2c39771a39ba34ff.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4732b4a7097372f85a98d477.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_f1e6a04d6834a9be94158771.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.983398;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:ff12;src:url('chunks/assets/font_ab77e79408b4afc8697aa41c.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.010080px;}
.lsa{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.136200px;}
.ls10{letter-spacing:0.152640px;}
.lsc{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.lse{letter-spacing:64.170720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws6{word-spacing:-34.063200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.wse{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.186000px;}
.wsf{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.118000px;}
.ws9{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.000000px;}
.ws11{word-spacing:-7.570080px;}
.ws12{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-5.497200px;}
._5{margin-left:-3.954720px;}
._2{margin-left:-2.903520px;}
._0{margin-left:-1.140000px;}
._1{width:1.134000px;}
._4{width:2.616000px;}
._9{width:3.656640px;}
._d{width:4.823040px;}
._e{width:5.824800px;}
._12{width:6.872640px;}
._10{width:7.947840px;}
._7{width:9.446880px;}
._6{width:11.354400px;}
._13{width:13.027680px;}
._8{width:15.954960px;}
._11{width:16.974240px;}
._c{width:18.168480px;}
._f{width:20.260080px;}
._14{width:21.634560px;}
._a{width:23.007600px;}
._b{width:24.800400px;}
._15{width:382.620000px;}
._16{width:495.720000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs8{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:2.520000px;}
.yb9{bottom:2.880000px;}
.ybd{bottom:3.060000px;}
.y4f{bottom:3.240000px;}
.y56{bottom:3.960000px;}
.y11b{bottom:4.140000px;}
.y120{bottom:4.185000px;}
.y11d{bottom:4.320000px;}
.y17{bottom:5.040000px;}
.yd{bottom:9.540000px;}
.y19{bottom:12.420000px;}
.yb{bottom:13.860000px;}
.y3{bottom:15.516000px;}
.y2{bottom:18.216000px;}
.y4e{bottom:20.520000px;}
.y55{bottom:22.320000px;}
.y16{bottom:25.740000px;}
.ya{bottom:30.240000px;}
.y4{bottom:33.120000px;}
.y4d{bottom:37.800000px;}
.y54{bottom:40.494000px;}
.y15{bottom:42.120000px;}
.y9{bottom:46.620000px;}
.y52{bottom:47.334000px;}
.y4c{bottom:54.900000px;}
.y1{bottom:55.620000px;}
.y14{bottom:58.680000px;}
.y53{bottom:58.854000px;}
.y51{bottom:61.914000px;}
.y4b{bottom:72.180000px;}
.y8{bottom:73.470000px;}
.y13{bottom:75.060000px;}
.y4a{bottom:89.460000px;}
.y12{bottom:91.980000px;}
.y7{bottom:93.090000px;}
.y57{bottom:100.476000px;}
.y152{bottom:104.796000px;}
.y49{bottom:106.740000px;}
.y14d{bottom:108.216000px;}
.y11{bottom:110.160000px;}
.yd5{bottom:111.096000px;}
.y6{bottom:111.450000px;}
.y50{bottom:114.516000px;}
.y95{bottom:122.076000px;}
.y48{bottom:124.020000px;}
.yff{bottom:125.316000px;}
.y14c{bottom:125.496000px;}
.yd4{bottom:128.376000px;}
.y10{bottom:129.240000px;}
.yfe{bottom:138.636000px;}
.y94{bottom:139.356000px;}
.y47{bottom:141.300000px;}
.y14b{bottom:142.596000px;}
.yd3{bottom:145.656000px;}
.yfd{bottom:153.210000px;}
.yf{bottom:153.540000px;}
.y93{bottom:156.630000px;}
.y46{bottom:158.445000px;}
.y14a{bottom:159.870000px;}
.yd2{bottom:162.930000px;}
.yfc{bottom:167.790000px;}
.y92{bottom:173.910000px;}
.y45{bottom:175.725000px;}
.y149{bottom:177.150000px;}
.y151{bottom:179.130000px;}
.yd1{bottom:180.210000px;}
.yfb{bottom:182.370000px;}
.y1a{bottom:187.770000px;}
.y91{bottom:191.010000px;}
.y44{bottom:193.005000px;}
.y148{bottom:194.430000px;}
.yfa{bottom:196.950000px;}
.yd0{bottom:197.490000px;}
.y90{bottom:208.290000px;}
.y43{bottom:210.285000px;}
.yf9{bottom:211.350000px;}
.y147{bottom:211.710000px;}
.ycf{bottom:214.590000px;}
.y8f{bottom:225.570000px;}
.yf8{bottom:225.930000px;}
.y42{bottom:227.565000px;}
.y146{bottom:228.990000px;}
.yce{bottom:231.870000px;}
.yf7{bottom:242.130000px;}
.y8e{bottom:242.850000px;}
.y41{bottom:244.845000px;}
.y145{bottom:246.090000px;}
.ycd{bottom:249.150000px;}
.yf6{bottom:252.030000px;}
.y8d{bottom:260.130000px;}
.y40{bottom:261.945000px;}
.y144{bottom:263.370000px;}
.yf5{bottom:267.870000px;}
.ycc{bottom:271.650000px;}
.y8c{bottom:277.410000px;}
.y3f{bottom:279.225000px;}
.y143{bottom:280.650000px;}
.y123{bottom:283.350000px;}
.ycb{bottom:283.710000px;}
.yf4{bottom:285.150000px;}
.y8b{bottom:294.510000px;}
.y3e{bottom:296.505000px;}
.y142{bottom:297.930000px;}
.y122{bottom:298.110000px;}
.yca{bottom:300.810000px;}
.yf3{bottom:302.430000px;}
.y8a{bottom:311.790000px;}
.y3d{bottom:313.785000px;}
.y141{bottom:315.210000px;}
.y121{bottom:315.930000px;}
.yc9{bottom:318.090000px;}
.yf2{bottom:319.710000px;}
.y89{bottom:329.070000px;}
.y3c{bottom:331.065000px;}
.y140{bottom:332.490000px;}
.y11f{bottom:333.750000px;}
.yc8{bottom:335.010000px;}
.yf1{bottom:337.035000px;}
.y88{bottom:346.395000px;}
.y3b{bottom:348.165000px;}
.y13f{bottom:349.635000px;}
.yc7{bottom:350.715000px;}
.y11e{bottom:351.435000px;}
.yf0{bottom:354.135000px;}
.y87{bottom:363.675000px;}
.yc6{bottom:364.035000px;}
.y3a{bottom:365.445000px;}
.y13e{bottom:366.915000px;}
.y11c{bottom:369.255000px;}
.yef{bottom:371.415000px;}
.yc5{bottom:380.235000px;}
.y86{bottom:380.775000px;}
.y39{bottom:382.725000px;}
.y11a{bottom:387.075000px;}
.yee{bottom:388.695000px;}
.y29{bottom:389.205000px;}
.y13d{bottom:389.415000px;}
.yc4{bottom:396.615000px;}
.y85{bottom:398.055000px;}
.y38{bottom:400.005000px;}
.y13c{bottom:401.475000px;}
.y28{bottom:404.505000px;}
.yed{bottom:405.975000px;}
.y119{bottom:406.515000px;}
.yc3{bottom:412.815000px;}
.y84{bottom:415.335000px;}
.y118{bottom:416.415000px;}
.y37{bottom:417.315000px;}
.y13b{bottom:418.755000px;}
.y150{bottom:420.555000px;}
.y27{bottom:421.995000px;}
.yec{bottom:423.255000px;}
.yc2{bottom:429.015000px;}
.y117{bottom:432.255000px;}
.y83{bottom:432.615000px;}
.y36{bottom:434.595000px;}
.y13a{bottom:436.035000px;}
.y26{bottom:439.275000px;}
.yeb{bottom:440.535000px;}
.yc1{bottom:445.395000px;}
.y116{bottom:449.535000px;}
.y82{bottom:449.895000px;}
.y35{bottom:451.695000px;}
.y139{bottom:453.135000px;}
.y25{bottom:456.555000px;}
.yea{bottom:457.635000px;}
.yc0{bottom:461.595000px;}
.y115{bottom:466.635000px;}
.y81{bottom:467.175000px;}
.y34{bottom:468.975000px;}
.y138{bottom:470.415000px;}
.y24{bottom:474.375000px;}
.ye9{bottom:474.915000px;}
.ybf{bottom:477.975000px;}
.y114{bottom:483.915000px;}
.y80{bottom:484.275000px;}
.y33{bottom:486.255000px;}
.y137{bottom:487.695000px;}
.y23{bottom:491.835000px;}
.ye8{bottom:492.195000px;}
.ybe{bottom:494.175000px;}
.y113{bottom:501.195000px;}
.y14f{bottom:501.555000px;}
.y32{bottom:503.535000px;}
.y136{bottom:504.975000px;}
.y7f{bottom:506.775000px;}
.y22{bottom:509.115000px;}
.ybc{bottom:510.375000px;}
.ye7{bottom:514.695000px;}
.y112{bottom:518.475000px;}
.y7e{bottom:518.835000px;}
.y31{bottom:520.815000px;}
.y135{bottom:522.255000px;}
.y21{bottom:526.575000px;}
.ybb{bottom:526.755000px;}
.y111{bottom:535.755000px;}
.y7d{bottom:536.115000px;}
.y30{bottom:538.095000px;}
.y134{bottom:539.355000px;}
.yba{bottom:542.955000px;}
.y20{bottom:543.855000px;}
.y110{bottom:552.855000px;}
.y7c{bottom:553.395000px;}
.y2f{bottom:555.195000px;}
.y133{bottom:556.635000px;}
.yb8{bottom:559.335000px;}
.ye6{bottom:561.135000px;}
.y1f{bottom:561.315000px;}
.y10f{bottom:570.135000px;}
.y7b{bottom:570.675000px;}
.y2e{bottom:572.475000px;}
.y132{bottom:573.915000px;}
.yb7{bottom:577.155000px;}
.ye5{bottom:578.415000px;}
.y1e{bottom:578.775000px;}
.yb6{bottom:587.055000px;}
.y10e{bottom:587.415000px;}
.y7a{bottom:587.775000px;}
.y2d{bottom:589.755000px;}
.y131{bottom:591.195000px;}
.ye4{bottom:595.695000px;}
.y1d{bottom:598.935000px;}
.yb5{bottom:602.895000px;}
.y10d{bottom:604.725000px;}
.y79{bottom:605.085000px;}
.y2c{bottom:607.035000px;}
.y130{bottom:608.505000px;}
.ye3{bottom:613.005000px;}
.yb4{bottom:620.205000px;}
.y10c{bottom:622.005000px;}
.y78{bottom:622.365000px;}
.y2b{bottom:624.315000px;}
.y12f{bottom:625.785000px;}
.y1c{bottom:626.475000px;}
.ye2{bottom:630.285000px;}
.yb3{bottom:637.485000px;}
.y10b{bottom:639.285000px;}
.y77{bottom:639.645000px;}
.y2a{bottom:641.415000px;}
.y12e{bottom:642.885000px;}
.y1b{bottom:644.115000px;}
.ye1{bottom:645.765000px;}
.ye0{bottom:652.785000px;}
.yb2{bottom:654.765000px;}
.y10a{bottom:656.385000px;}
.y76{bottom:656.925000px;}
.y12d{bottom:660.165000px;}
.yb1{bottom:672.045000px;}
.y109{bottom:673.665000px;}
.y75{bottom:674.025000px;}
.y12c{bottom:677.445000px;}
.yb0{bottom:689.145000px;}
.y108{bottom:690.945000px;}
.y74{bottom:691.305000px;}
.y12b{bottom:694.725000px;}
.yaf{bottom:706.425000px;}
.y107{bottom:708.225000px;}
.y73{bottom:708.585000px;}
.y12a{bottom:712.005000px;}
.yae{bottom:723.705000px;}
.y106{bottom:725.505000px;}
.y72{bottom:725.865000px;}
.y129{bottom:729.285000px;}
.yad{bottom:740.985000px;}
.y105{bottom:742.785000px;}
.y71{bottom:743.145000px;}
.y128{bottom:746.385000px;}
.yac{bottom:758.265000px;}
.y104{bottom:759.885000px;}
.y70{bottom:760.425000px;}
.y127{bottom:763.665000px;}
.yab{bottom:775.365000px;}
.y103{bottom:777.165000px;}
.y6f{bottom:777.525000px;}
.y126{bottom:780.945000px;}
.yaa{bottom:792.645000px;}
.y102{bottom:794.445000px;}
.y6e{bottom:794.805000px;}
.y125{bottom:796.605000px;}
.y124{bottom:803.625000px;}
.ya9{bottom:809.925000px;}
.y101{bottom:810.105000px;}
.y6d{bottom:812.085000px;}
.y100{bottom:817.125000px;}
.ya8{bottom:827.205000px;}
.y6c{bottom:829.365000px;}
.y18{bottom:843.225000px;}
.ya7{bottom:844.485000px;}
.y6b{bottom:846.645000px;}
.y14e{bottom:851.865000px;}
.ya6{bottom:861.765000px;}
.y6a{bottom:863.925000px;}
.ye{bottom:872.790000px;}
.ya5{bottom:878.910000px;}
.y69{bottom:881.070000px;}
.ya4{bottom:896.190000px;}
.y68{bottom:898.350000px;}
.ya3{bottom:913.470000px;}
.y67{bottom:915.630000px;}
.ya2{bottom:930.750000px;}
.y66{bottom:932.910000px;}
.ya1{bottom:948.030000px;}
.y65{bottom:950.190000px;}
.ya0{bottom:965.310000px;}
.y64{bottom:967.470000px;}
.y9f{bottom:982.410000px;}
.y63{bottom:984.570000px;}
.ydf{bottom:995.910000px;}
.y9e{bottom:999.690000px;}
.y62{bottom:1001.850000px;}
.yde{bottom:1010.670000px;}
.y9d{bottom:1016.970000px;}
.y61{bottom:1019.130000px;}
.ydd{bottom:1025.250000px;}
.y9c{bottom:1034.250000px;}
.y60{bottom:1036.410000px;}
.ydc{bottom:1039.650000px;}
.yc{bottom:1041.450000px;}
.y9b{bottom:1051.530000px;}
.y5f{bottom:1053.690000px;}
.ydb{bottom:1054.230000px;}
.y5{bottom:1066.830000px;}
.y9a{bottom:1068.810000px;}
.y5e{bottom:1070.790000px;}
.yda{bottom:1083.390000px;}
.y99{bottom:1085.910000px;}
.y5d{bottom:1088.070000px;}
.yd8{bottom:1097.970000px;}
.y98{bottom:1103.190000px;}
.y5c{bottom:1105.350000px;}
.yd7{bottom:1114.170000px;}
.y97{bottom:1120.470000px;}
.y5b{bottom:1122.630000px;}
.yd6{bottom:1124.070000px;}
.y96{bottom:1138.860000px;}
.y5a{bottom:1139.940000px;}
.y59{bottom:1157.220000px;}
.y58{bottom:1174.320000px;}
.h24{height:13.680000px;}
.h26{height:13.860000px;}
.h2a{height:13.860150px;}
.h21{height:15.480000px;}
.h23{height:15.660000px;}
.h2b{height:16.920000px;}
.h2d{height:16.956000px;}
.h2c{height:17.100000px;}
.h29{height:21.336328px;}
.h20{height:21.867891px;}
.ha{height:25.020000px;}
.h1d{height:28.115859px;}
.h11{height:29.556000px;}
.h2{height:31.176000px;}
.h25{height:34.036523px;}
.h27{height:34.884492px;}
.h7{height:36.180000px;}
.h22{height:38.100586px;}
.h18{height:38.818125px;}
.h1f{height:39.049805px;}
.h28{height:39.867891px;}
.h1b{height:42.164648px;}
.h17{height:42.281367px;}
.h19{height:43.215117px;}
.h1e{height:43.506914px;}
.hc{height:44.002969px;}
.h9{height:44.820000px;}
.h16{height:45.770625px;}
.h14{height:47.980898px;}
.h1c{height:48.995859px;}
.h10{height:53.709961px;}
.h8{height:54.000000px;}
.h3{height:55.291992px;}
.h15{height:56.574492px;}
.he{height:59.439023px;}
.hf{height:61.189805px;}
.hd{height:63.180000px;}
.h4{height:67.824844px;}
.h5{height:71.613281px;}
.h1a{height:73.260000px;}
.h12{height:73.722656px;}
.h6{height:121.536000px;}
.hb{height:168.660000px;}
.h13{height:655.455000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:46.800000px;}
.w11{width:48.600000px;}
.wd{width:49.860000px;}
.w19{width:50.580000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w13{width:181.470000px;}
.wf{width:188.670000px;}
.wb{width:192.990000px;}
.w17{width:195.870000px;}
.w14{width:204.150000px;}
.w10{width:212.430000px;}
.w8{width:216.075000px;}
.wc{width:217.290000px;}
.w18{width:220.530000px;}
.w16{width:260.535000px;}
.wa{width:267.375000px;}
.we{width:277.815000px;}
.w12{width:295.095000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:3.420000px;}
.x2d{left:5.220000px;}
.x30{left:7.380000px;}
.x2{left:8.676000px;}
.x33{left:10.800000px;}
.x12{left:12.600000px;}
.xd{left:14.616000px;}
.x3a{left:16.740000px;}
.x25{left:18.396000px;}
.x47{left:19.656000px;}
.xe{left:20.916000px;}
.x2b{left:22.860000px;}
.x3f{left:27.216000px;}
.x24{left:29.196000px;}
.x35{left:30.456000px;}
.x4a{left:33.876000px;}
.x23{left:35.496000px;}
.x22{left:36.936000px;}
.x1f{left:38.016000px;}
.x34{left:39.096000px;}
.x1e{left:44.136000px;}
.x45{left:47.736000px;}
.x2f{left:49.536000px;}
.x2e{left:51.516000px;}
.x31{left:60.336000px;}
.x1c{left:65.376000px;}
.x19{left:68.256000px;}
.x32{left:69.480000px;}
.x1a{left:71.640000px;}
.x48{left:73.080000px;}
.x1d{left:74.730000px;}
.x20{left:75.780000px;}
.x3d{left:78.660000px;}
.x46{left:79.920000px;}
.x1{left:81.000000px;}
.x1b{left:83.880000px;}
.x49{left:85.500000px;}
.x21{left:88.020000px;}
.x3e{left:90.000000px;}
.xb{left:91.650000px;}
.x4{left:98.130000px;}
.x13{left:108.035987px;}
.x28{left:111.450000px;}
.x38{left:124.230000px;}
.x14{left:196.409987px;}
.xc{left:206.175000px;}
.x10{left:215.175000px;}
.x5{left:232.950000px;}
.x42{left:253.829987px;}
.x26{left:262.289987px;}
.x8{left:272.235000px;}
.x37{left:289.694987px;}
.x11{left:297.075000px;}
.x41{left:301.214987px;}
.x6{left:331.995000px;}
.xf{left:333.975000px;}
.x43{left:342.975000px;}
.x15{left:349.815000px;}
.x7{left:351.255000px;}
.x29{left:360.255000px;}
.xa{left:365.475000px;}
.x39{left:377.535000px;}
.x9{left:439.500000px;}
.x27{left:446.474987px;}
.x44{left:539.565000px;}
.x16{left:543.525000px;}
.x2a{left:549.645000px;}
.x3b{left:559.725000px;}
.x36{left:731.129987px;}
.x3{left:739.050000px;}
.x17{left:761.550000px;}
.x2c{left:762.810000px;}
.x3c{left:764.610000px;}
.x40{left:773.969987px;}
.x4b{left:787.469987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.008960pt;}
.lsa{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.121067pt;}
.ls10{letter-spacing:0.135680pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.lse{letter-spacing:57.040640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws6{word-spacing:-30.278400pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.005120pt;}
.wsd{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.882667pt;}
.ws9{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws11{word-spacing:-6.728960pt;}
.ws12{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-4.886400pt;}
._5{margin-left:-3.515307pt;}
._2{margin-left:-2.580907pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.008000pt;}
._4{width:2.325333pt;}
._9{width:3.250347pt;}
._d{width:4.287147pt;}
._e{width:5.177600pt;}
._12{width:6.109013pt;}
._10{width:7.064747pt;}
._7{width:8.397227pt;}
._6{width:10.092800pt;}
._13{width:11.580160pt;}
._8{width:14.182187pt;}
._11{width:15.088213pt;}
._c{width:16.149760pt;}
._f{width:18.008960pt;}
._14{width:19.230720pt;}
._a{width:20.451200pt;}
._b{width:22.044800pt;}
._15{width:340.106667pt;}
._16{width:440.640000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.240000pt;}
.yb9{bottom:2.560000pt;}
.ybd{bottom:2.720000pt;}
.y4f{bottom:2.880000pt;}
.y56{bottom:3.520000pt;}
.y11b{bottom:3.680000pt;}
.y120{bottom:3.720000pt;}
.y11d{bottom:3.840000pt;}
.y17{bottom:4.480000pt;}
.yd{bottom:8.480000pt;}
.y19{bottom:11.040000pt;}
.yb{bottom:12.320000pt;}
.y3{bottom:13.792000pt;}
.y2{bottom:16.192000pt;}
.y4e{bottom:18.240000pt;}
.y55{bottom:19.840000pt;}
.y16{bottom:22.880000pt;}
.ya{bottom:26.880000pt;}
.y4{bottom:29.440000pt;}
.y4d{bottom:33.600000pt;}
.y54{bottom:35.994667pt;}
.y15{bottom:37.440000pt;}
.y9{bottom:41.440000pt;}
.y52{bottom:42.074667pt;}
.y4c{bottom:48.800000pt;}
.y1{bottom:49.440000pt;}
.y14{bottom:52.160000pt;}
.y53{bottom:52.314667pt;}
.y51{bottom:55.034667pt;}
.y4b{bottom:64.160000pt;}
.y8{bottom:65.306667pt;}
.y13{bottom:66.720000pt;}
.y4a{bottom:79.520000pt;}
.y12{bottom:81.760000pt;}
.y7{bottom:82.746667pt;}
.y57{bottom:89.312000pt;}
.y152{bottom:93.152000pt;}
.y49{bottom:94.880000pt;}
.y14d{bottom:96.192000pt;}
.y11{bottom:97.920000pt;}
.yd5{bottom:98.752000pt;}
.y6{bottom:99.066667pt;}
.y50{bottom:101.792000pt;}
.y95{bottom:108.512000pt;}
.y48{bottom:110.240000pt;}
.yff{bottom:111.392000pt;}
.y14c{bottom:111.552000pt;}
.yd4{bottom:114.112000pt;}
.y10{bottom:114.880000pt;}
.yfe{bottom:123.232000pt;}
.y94{bottom:123.872000pt;}
.y47{bottom:125.600000pt;}
.y14b{bottom:126.752000pt;}
.yd3{bottom:129.472000pt;}
.yfd{bottom:136.186667pt;}
.yf{bottom:136.480000pt;}
.y93{bottom:139.226667pt;}
.y46{bottom:140.840000pt;}
.y14a{bottom:142.106667pt;}
.yd2{bottom:144.826667pt;}
.yfc{bottom:149.146667pt;}
.y92{bottom:154.586667pt;}
.y45{bottom:156.200000pt;}
.y149{bottom:157.466667pt;}
.y151{bottom:159.226667pt;}
.yd1{bottom:160.186667pt;}
.yfb{bottom:162.106667pt;}
.y1a{bottom:166.906667pt;}
.y91{bottom:169.786667pt;}
.y44{bottom:171.560000pt;}
.y148{bottom:172.826667pt;}
.yfa{bottom:175.066667pt;}
.yd0{bottom:175.546667pt;}
.y90{bottom:185.146667pt;}
.y43{bottom:186.920000pt;}
.yf9{bottom:187.866667pt;}
.y147{bottom:188.186667pt;}
.ycf{bottom:190.746667pt;}
.y8f{bottom:200.506667pt;}
.yf8{bottom:200.826667pt;}
.y42{bottom:202.280000pt;}
.y146{bottom:203.546667pt;}
.yce{bottom:206.106667pt;}
.yf7{bottom:215.226667pt;}
.y8e{bottom:215.866667pt;}
.y41{bottom:217.640000pt;}
.y145{bottom:218.746667pt;}
.ycd{bottom:221.466667pt;}
.yf6{bottom:224.026667pt;}
.y8d{bottom:231.226667pt;}
.y40{bottom:232.840000pt;}
.y144{bottom:234.106667pt;}
.yf5{bottom:238.106667pt;}
.ycc{bottom:241.466667pt;}
.y8c{bottom:246.586667pt;}
.y3f{bottom:248.200000pt;}
.y143{bottom:249.466667pt;}
.y123{bottom:251.866667pt;}
.ycb{bottom:252.186667pt;}
.yf4{bottom:253.466667pt;}
.y8b{bottom:261.786667pt;}
.y3e{bottom:263.560000pt;}
.y142{bottom:264.826667pt;}
.y122{bottom:264.986667pt;}
.yca{bottom:267.386667pt;}
.yf3{bottom:268.826667pt;}
.y8a{bottom:277.146667pt;}
.y3d{bottom:278.920000pt;}
.y141{bottom:280.186667pt;}
.y121{bottom:280.826667pt;}
.yc9{bottom:282.746667pt;}
.yf2{bottom:284.186667pt;}
.y89{bottom:292.506667pt;}
.y3c{bottom:294.280000pt;}
.y140{bottom:295.546667pt;}
.y11f{bottom:296.666667pt;}
.yc8{bottom:297.786667pt;}
.yf1{bottom:299.586667pt;}
.y88{bottom:307.906667pt;}
.y3b{bottom:309.480000pt;}
.y13f{bottom:310.786667pt;}
.yc7{bottom:311.746667pt;}
.y11e{bottom:312.386667pt;}
.yf0{bottom:314.786667pt;}
.y87{bottom:323.266667pt;}
.yc6{bottom:323.586667pt;}
.y3a{bottom:324.840000pt;}
.y13e{bottom:326.146667pt;}
.y11c{bottom:328.226667pt;}
.yef{bottom:330.146667pt;}
.yc5{bottom:337.986667pt;}
.y86{bottom:338.466667pt;}
.y39{bottom:340.200000pt;}
.y11a{bottom:344.066667pt;}
.yee{bottom:345.506667pt;}
.y29{bottom:345.960000pt;}
.y13d{bottom:346.146667pt;}
.yc4{bottom:352.546667pt;}
.y85{bottom:353.826667pt;}
.y38{bottom:355.560000pt;}
.y13c{bottom:356.866667pt;}
.y28{bottom:359.560000pt;}
.yed{bottom:360.866667pt;}
.y119{bottom:361.346667pt;}
.yc3{bottom:366.946667pt;}
.y84{bottom:369.186667pt;}
.y118{bottom:370.146667pt;}
.y37{bottom:370.946667pt;}
.y13b{bottom:372.226667pt;}
.y150{bottom:373.826667pt;}
.y27{bottom:375.106667pt;}
.yec{bottom:376.226667pt;}
.yc2{bottom:381.346667pt;}
.y117{bottom:384.226667pt;}
.y83{bottom:384.546667pt;}
.y36{bottom:386.306667pt;}
.y13a{bottom:387.586667pt;}
.y26{bottom:390.466667pt;}
.yeb{bottom:391.586667pt;}
.yc1{bottom:395.906667pt;}
.y116{bottom:399.586667pt;}
.y82{bottom:399.906667pt;}
.y35{bottom:401.506667pt;}
.y139{bottom:402.786667pt;}
.y25{bottom:405.826667pt;}
.yea{bottom:406.786667pt;}
.yc0{bottom:410.306667pt;}
.y115{bottom:414.786667pt;}
.y81{bottom:415.266667pt;}
.y34{bottom:416.866667pt;}
.y138{bottom:418.146667pt;}
.y24{bottom:421.666667pt;}
.ye9{bottom:422.146667pt;}
.ybf{bottom:424.866667pt;}
.y114{bottom:430.146667pt;}
.y80{bottom:430.466667pt;}
.y33{bottom:432.226667pt;}
.y137{bottom:433.506667pt;}
.y23{bottom:437.186667pt;}
.ye8{bottom:437.506667pt;}
.ybe{bottom:439.266667pt;}
.y113{bottom:445.506667pt;}
.y14f{bottom:445.826667pt;}
.y32{bottom:447.586667pt;}
.y136{bottom:448.866667pt;}
.y7f{bottom:450.466667pt;}
.y22{bottom:452.546667pt;}
.ybc{bottom:453.666667pt;}
.ye7{bottom:457.506667pt;}
.y112{bottom:460.866667pt;}
.y7e{bottom:461.186667pt;}
.y31{bottom:462.946667pt;}
.y135{bottom:464.226667pt;}
.y21{bottom:468.066667pt;}
.ybb{bottom:468.226667pt;}
.y111{bottom:476.226667pt;}
.y7d{bottom:476.546667pt;}
.y30{bottom:478.306667pt;}
.y134{bottom:479.426667pt;}
.yba{bottom:482.626667pt;}
.y20{bottom:483.426667pt;}
.y110{bottom:491.426667pt;}
.y7c{bottom:491.906667pt;}
.y2f{bottom:493.506667pt;}
.y133{bottom:494.786667pt;}
.yb8{bottom:497.186667pt;}
.ye6{bottom:498.786667pt;}
.y1f{bottom:498.946667pt;}
.y10f{bottom:506.786667pt;}
.y7b{bottom:507.266667pt;}
.y2e{bottom:508.866667pt;}
.y132{bottom:510.146667pt;}
.yb7{bottom:513.026667pt;}
.ye5{bottom:514.146667pt;}
.y1e{bottom:514.466667pt;}
.yb6{bottom:521.826667pt;}
.y10e{bottom:522.146667pt;}
.y7a{bottom:522.466667pt;}
.y2d{bottom:524.226667pt;}
.y131{bottom:525.506667pt;}
.ye4{bottom:529.506667pt;}
.y1d{bottom:532.386667pt;}
.yb5{bottom:535.906667pt;}
.y10d{bottom:537.533333pt;}
.y79{bottom:537.853333pt;}
.y2c{bottom:539.586667pt;}
.y130{bottom:540.893333pt;}
.ye3{bottom:544.893333pt;}
.yb4{bottom:551.293333pt;}
.y10c{bottom:552.893333pt;}
.y78{bottom:553.213333pt;}
.y2b{bottom:554.946667pt;}
.y12f{bottom:556.253333pt;}
.y1c{bottom:556.866667pt;}
.ye2{bottom:560.253333pt;}
.yb3{bottom:566.653333pt;}
.y10b{bottom:568.253333pt;}
.y77{bottom:568.573333pt;}
.y2a{bottom:570.146667pt;}
.y12e{bottom:571.453333pt;}
.y1b{bottom:572.546667pt;}
.ye1{bottom:574.013333pt;}
.ye0{bottom:580.253333pt;}
.yb2{bottom:582.013333pt;}
.y10a{bottom:583.453333pt;}
.y76{bottom:583.933333pt;}
.y12d{bottom:586.813333pt;}
.yb1{bottom:597.373333pt;}
.y109{bottom:598.813333pt;}
.y75{bottom:599.133333pt;}
.y12c{bottom:602.173333pt;}
.yb0{bottom:612.573333pt;}
.y108{bottom:614.173333pt;}
.y74{bottom:614.493333pt;}
.y12b{bottom:617.533333pt;}
.yaf{bottom:627.933333pt;}
.y107{bottom:629.533333pt;}
.y73{bottom:629.853333pt;}
.y12a{bottom:632.893333pt;}
.yae{bottom:643.293333pt;}
.y106{bottom:644.893333pt;}
.y72{bottom:645.213333pt;}
.y129{bottom:648.253333pt;}
.yad{bottom:658.653333pt;}
.y105{bottom:660.253333pt;}
.y71{bottom:660.573333pt;}
.y128{bottom:663.453333pt;}
.yac{bottom:674.013333pt;}
.y104{bottom:675.453333pt;}
.y70{bottom:675.933333pt;}
.y127{bottom:678.813333pt;}
.yab{bottom:689.213333pt;}
.y103{bottom:690.813333pt;}
.y6f{bottom:691.133333pt;}
.y126{bottom:694.173333pt;}
.yaa{bottom:704.573333pt;}
.y102{bottom:706.173333pt;}
.y6e{bottom:706.493333pt;}
.y125{bottom:708.093333pt;}
.y124{bottom:714.333333pt;}
.ya9{bottom:719.933333pt;}
.y101{bottom:720.093333pt;}
.y6d{bottom:721.853333pt;}
.y100{bottom:726.333333pt;}
.ya8{bottom:735.293333pt;}
.y6c{bottom:737.213333pt;}
.y18{bottom:749.533333pt;}
.ya7{bottom:750.653333pt;}
.y6b{bottom:752.573333pt;}
.y14e{bottom:757.213333pt;}
.ya6{bottom:766.013333pt;}
.y6a{bottom:767.933333pt;}
.ye{bottom:775.813333pt;}
.ya5{bottom:781.253333pt;}
.y69{bottom:783.173333pt;}
.ya4{bottom:796.613333pt;}
.y68{bottom:798.533333pt;}
.ya3{bottom:811.973333pt;}
.y67{bottom:813.893333pt;}
.ya2{bottom:827.333333pt;}
.y66{bottom:829.253333pt;}
.ya1{bottom:842.693333pt;}
.y65{bottom:844.613333pt;}
.ya0{bottom:858.053333pt;}
.y64{bottom:859.973333pt;}
.y9f{bottom:873.253333pt;}
.y63{bottom:875.173333pt;}
.ydf{bottom:885.253333pt;}
.y9e{bottom:888.613333pt;}
.y62{bottom:890.533333pt;}
.yde{bottom:898.373333pt;}
.y9d{bottom:903.973333pt;}
.y61{bottom:905.893333pt;}
.ydd{bottom:911.333333pt;}
.y9c{bottom:919.333333pt;}
.y60{bottom:921.253333pt;}
.ydc{bottom:924.133333pt;}
.yc{bottom:925.733333pt;}
.y9b{bottom:934.693333pt;}
.y5f{bottom:936.613333pt;}
.ydb{bottom:937.093333pt;}
.y5{bottom:948.293333pt;}
.y9a{bottom:950.053333pt;}
.y5e{bottom:951.813333pt;}
.yda{bottom:963.013333pt;}
.y99{bottom:965.253333pt;}
.y5d{bottom:967.173333pt;}
.yd8{bottom:975.973333pt;}
.y98{bottom:980.613333pt;}
.y5c{bottom:982.533333pt;}
.yd7{bottom:990.373333pt;}
.y97{bottom:995.973333pt;}
.y5b{bottom:997.893333pt;}
.yd6{bottom:999.173333pt;}
.y96{bottom:1012.320000pt;}
.y5a{bottom:1013.280000pt;}
.y59{bottom:1028.640000pt;}
.y58{bottom:1043.840000pt;}
.h24{height:12.160000pt;}
.h26{height:12.320000pt;}
.h2a{height:12.320133pt;}
.h21{height:13.760000pt;}
.h23{height:13.920000pt;}
.h2b{height:15.040000pt;}
.h2d{height:15.072000pt;}
.h2c{height:15.200000pt;}
.h29{height:18.965625pt;}
.h20{height:19.438125pt;}
.ha{height:22.240000pt;}
.h1d{height:24.991875pt;}
.h11{height:26.272000pt;}
.h2{height:27.712000pt;}
.h25{height:30.254687pt;}
.h27{height:31.008437pt;}
.h7{height:32.160000pt;}
.h22{height:33.867188pt;}
.h18{height:34.505000pt;}
.h1f{height:34.710938pt;}
.h28{height:35.438125pt;}
.h1b{height:37.479688pt;}
.h17{height:37.583438pt;}
.h19{height:38.413438pt;}
.h1e{height:38.672812pt;}
.hc{height:39.113750pt;}
.h9{height:39.840000pt;}
.h16{height:40.685000pt;}
.h14{height:42.649687pt;}
.h1c{height:43.551875pt;}
.h10{height:47.742188pt;}
.h8{height:48.000000pt;}
.h3{height:49.148438pt;}
.h15{height:50.288438pt;}
.he{height:52.834688pt;}
.hf{height:54.390938pt;}
.hd{height:56.160000pt;}
.h4{height:60.288750pt;}
.h5{height:63.656250pt;}
.h1a{height:65.120000pt;}
.h12{height:65.531250pt;}
.h6{height:108.032000pt;}
.hb{height:149.920000pt;}
.h13{height:582.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:41.600000pt;}
.w11{width:43.200000pt;}
.wd{width:44.320000pt;}
.w19{width:44.960000pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w13{width:161.306667pt;}
.wf{width:167.706667pt;}
.wb{width:171.546667pt;}
.w17{width:174.106667pt;}
.w14{width:181.466667pt;}
.w10{width:188.826667pt;}
.w8{width:192.066667pt;}
.wc{width:193.146667pt;}
.w18{width:196.026667pt;}
.w16{width:231.586667pt;}
.wa{width:237.666667pt;}
.we{width:246.946667pt;}
.w12{width:262.306667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:3.040000pt;}
.x2d{left:4.640000pt;}
.x30{left:6.560000pt;}
.x2{left:7.712000pt;}
.x33{left:9.600000pt;}
.x12{left:11.200000pt;}
.xd{left:12.992000pt;}
.x3a{left:14.880000pt;}
.x25{left:16.352000pt;}
.x47{left:17.472000pt;}
.xe{left:18.592000pt;}
.x2b{left:20.320000pt;}
.x3f{left:24.192000pt;}
.x24{left:25.952000pt;}
.x35{left:27.072000pt;}
.x4a{left:30.112000pt;}
.x23{left:31.552000pt;}
.x22{left:32.832000pt;}
.x1f{left:33.792000pt;}
.x34{left:34.752000pt;}
.x1e{left:39.232000pt;}
.x45{left:42.432000pt;}
.x2f{left:44.032000pt;}
.x2e{left:45.792000pt;}
.x31{left:53.632000pt;}
.x1c{left:58.112000pt;}
.x19{left:60.672000pt;}
.x32{left:61.760000pt;}
.x1a{left:63.680000pt;}
.x48{left:64.960000pt;}
.x1d{left:66.426667pt;}
.x20{left:67.360000pt;}
.x3d{left:69.920000pt;}
.x46{left:71.040000pt;}
.x1{left:72.000000pt;}
.x1b{left:74.560000pt;}
.x49{left:76.000000pt;}
.x21{left:78.240000pt;}
.x3e{left:80.000000pt;}
.xb{left:81.466667pt;}
.x4{left:87.226667pt;}
.x13{left:96.031988pt;}
.x28{left:99.066667pt;}
.x38{left:110.426667pt;}
.x14{left:174.586655pt;}
.xc{left:183.266667pt;}
.x10{left:191.266667pt;}
.x5{left:207.066667pt;}
.x42{left:225.626655pt;}
.x26{left:233.146655pt;}
.x8{left:241.986667pt;}
.x37{left:257.506655pt;}
.x11{left:264.066667pt;}
.x41{left:267.746655pt;}
.x6{left:295.106667pt;}
.xf{left:296.866667pt;}
.x43{left:304.866667pt;}
.x15{left:310.946667pt;}
.x7{left:312.226667pt;}
.x29{left:320.226667pt;}
.xa{left:324.866667pt;}
.x39{left:335.586667pt;}
.x9{left:390.666667pt;}
.x27{left:396.866655pt;}
.x44{left:479.613333pt;}
.x16{left:483.133333pt;}
.x2a{left:488.573333pt;}
.x3b{left:497.533333pt;}
.x36{left:649.893322pt;}
.x3{left:656.933333pt;}
.x17{left:676.933333pt;}
.x2c{left:678.053333pt;}
.x3c{left:679.653333pt;}
.x40{left:687.973322pt;}
.x4b{left:699.973322pt;}
}




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