
    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_e19a1bd79c6f34334192da76.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_45462773c5ec435faff06cea.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_51442113bf04df0fb70be192.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_87775102fc20e27b2d30490c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.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_1cf91231fec9cefbd2bcece1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_79e3cf292d6e80c26b13787c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4b336f3be9f4947b717f36b2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cb3b52e2fd61d488bf10403a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b55ff1a65c9294baf45ed24c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_3d28c110f5d5bde27ccba38f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_ce40647b3ad9d696361cf49e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls19{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.483600px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls21{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.127200px;}
.ls17{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.lsd{letter-spacing:0.087600px;}
.ls1a{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.900000px;}
.ls10{letter-spacing:6.660000px;}
.lsf{letter-spacing:10.260000px;}
.ls20{letter-spacing:16.506720px;}
.ls12{letter-spacing:18.180000px;}
.ls1d{letter-spacing:34.784640px;}
.ls1f{letter-spacing:46.026720px;}
.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:-33.704640px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.137520px;}
.ws15{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.328000px;}
.ws17{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.854880px;}
.ws8{word-spacing:-12.816720px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.496000px;}
.ws5{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._6{margin-left:-5.538000px;}
._4{margin-left:-3.703680px;}
._5{margin-left:-2.665920px;}
._0{margin-left:-1.356000px;}
._1{width:1.080000px;}
._2{width:2.088000px;}
._c{width:3.180960px;}
._3{width:4.680000px;}
._9{width:6.215040px;}
._b{width:7.648080px;}
._8{width:8.669760px;}
._7{width:10.124880px;}
._10{width:11.244000px;}
._d{width:12.485520px;}
._f{width:13.556400px;}
._a{width:16.429680px;}
._11{width:17.445600px;}
._e{width:18.879840px;}
._18{width:20.513040px;}
._12{width:22.584960px;}
._15{width:23.724720px;}
._14{width:24.740640px;}
._13{width:25.953600px;}
._17{width:27.547680px;}
._16{width:36.442320px;}
.fc9{color:rgb(0,93,161);}
.fc6{color:transparent;}
.fca{color:rgb(26,68,128);}
.fc4{color:rgb(227,108,10);}
.fc7{color:rgb(33,36,40);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc8{color:rgb(33,33,33);}
.fc5{color:rgb(26,26,26);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.180000px;}
.y53{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.ye{bottom:4.140000px;}
.y9f{bottom:4.500000px;}
.yb3{bottom:4.680000px;}
.y1f{bottom:4.860000px;}
.y85{bottom:5.580000px;}
.y8a{bottom:5.760000px;}
.y89{bottom:8.820000px;}
.y22{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y56{bottom:14.616000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y52{bottom:20.520000px;}
.y1e{bottom:25.560000px;}
.y88{bottom:26.100000px;}
.y57{bottom:26.136000px;}
.y55{bottom:29.190000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y51{bottom:37.800000px;}
.y1d{bottom:45.720000px;}
.ya{bottom:46.620000px;}
.y95{bottom:49.350000px;}
.y1{bottom:52.380000px;}
.y50{bottom:54.900000px;}
.y1c{bottom:58.500000px;}
.y94{bottom:66.630000px;}
.y4f{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y1b{bottom:78.660000px;}
.y4e{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y1a{bottom:95.220000px;}
.y110{bottom:99.360000px;}
.y4d{bottom:106.740000px;}
.y98{bottom:106.920000px;}
.y58{bottom:107.640000px;}
.y19{bottom:107.820000px;}
.yd2{bottom:110.520000px;}
.y7{bottom:111.450000px;}
.y10f{bottom:116.460000px;}
.y54{bottom:121.680000px;}
.y4c{bottom:124.020000px;}
.yd1{bottom:127.800000px;}
.y18{bottom:128.160000px;}
.y10e{bottom:133.740000px;}
.y17{bottom:140.760000px;}
.y4b{bottom:141.300000px;}
.y97{bottom:142.056000px;}
.yd0{bottom:145.116000px;}
.y10d{bottom:151.050000px;}
.y4a{bottom:158.400000px;}
.y16{bottom:161.145000px;}
.y23{bottom:162.210000px;}
.y96{bottom:162.390000px;}
.y10c{bottom:168.330000px;}
.y49{bottom:175.680000px;}
.y15{bottom:176.985000px;}
.ycf{bottom:179.670000px;}
.y93{bottom:182.730000px;}
.y10b{bottom:185.610000px;}
.y14{bottom:187.425000px;}
.y48{bottom:192.960000px;}
.yce{bottom:196.770000px;}
.y10a{bottom:202.710000px;}
.y92{bottom:203.070000px;}
.y13{bottom:205.785000px;}
.y47{bottom:210.240000px;}
.ycd{bottom:214.050000px;}
.y109{bottom:219.990000px;}
.y12{bottom:224.685000px;}
.y91{bottom:226.650000px;}
.y46{bottom:227.565000px;}
.ycc{bottom:231.330000px;}
.y108{bottom:237.270000px;}
.y90{bottom:243.750000px;}
.y45{bottom:244.845000px;}
.ycb{bottom:248.610000px;}
.y11{bottom:250.425000px;}
.y107{bottom:254.550000px;}
.y8f{bottom:258.510000px;}
.y44{bottom:261.945000px;}
.yca{bottom:265.890000px;}
.y33{bottom:268.245000px;}
.y106{bottom:271.830000px;}
.y10{bottom:274.905000px;}
.y8e{bottom:279.030000px;}
.y43{bottom:279.225000px;}
.yc9{bottom:283.170000px;}
.y32{bottom:283.545000px;}
.y105{bottom:289.110000px;}
.y42{bottom:296.505000px;}
.y8d{bottom:299.370000px;}
.yc8{bottom:300.270000px;}
.y31{bottom:301.185000px;}
.y104{bottom:306.210000px;}
.y41{bottom:313.785000px;}
.yc7{bottom:317.550000px;}
.y30{bottom:318.465000px;}
.y8c{bottom:322.950000px;}
.y103{bottom:323.490000px;}
.y40{bottom:331.065000px;}
.yc6{bottom:334.830000px;}
.y2f{bottom:335.565000px;}
.y8b{bottom:340.230000px;}
.y102{bottom:340.770000px;}
.y3f{bottom:348.165000px;}
.yc5{bottom:352.110000px;}
.y2e{bottom:353.385000px;}
.y87{bottom:354.990000px;}
.y101{bottom:358.050000px;}
.y3e{bottom:365.445000px;}
.yc4{bottom:369.390000px;}
.y2d{bottom:370.845000px;}
.y100{bottom:375.330000px;}
.y86{bottom:375.510000px;}
.y3d{bottom:382.725000px;}
.yc3{bottom:386.490000px;}
.y2c{bottom:388.305000px;}
.yff{bottom:392.655000px;}
.y84{bottom:395.895000px;}
.y3c{bottom:400.005000px;}
.yc2{bottom:403.815000px;}
.y2b{bottom:405.585000px;}
.yfe{bottom:409.755000px;}
.y3b{bottom:417.285000px;}
.y83{bottom:419.475000px;}
.yc1{bottom:421.095000px;}
.y2a{bottom:423.045000px;}
.yfd{bottom:427.035000px;}
.y3a{bottom:434.565000px;}
.y82{bottom:436.755000px;}
.yc0{bottom:438.375000px;}
.y29{bottom:440.505000px;}
.yfc{bottom:444.315000px;}
.y39{bottom:451.665000px;}
.y81{bottom:454.035000px;}
.ybf{bottom:455.655000px;}
.y28{bottom:457.785000px;}
.yfb{bottom:461.595000px;}
.y38{bottom:468.945000px;}
.y80{bottom:471.315000px;}
.ybe{bottom:472.935000px;}
.y27{bottom:475.245000px;}
.yfa{bottom:478.875000px;}
.y37{bottom:486.255000px;}
.y7f{bottom:488.415000px;}
.ybd{bottom:490.035000px;}
.y26{bottom:495.435000px;}
.yf9{bottom:496.155000px;}
.y36{bottom:503.535000px;}
.y7e{bottom:505.695000px;}
.ybc{bottom:507.315000px;}
.yf8{bottom:513.255000px;}
.y35{bottom:520.815000px;}
.y25{bottom:522.975000px;}
.ybb{bottom:524.595000px;}
.yf7{bottom:530.535000px;}
.y34{bottom:538.095000px;}
.y7d{bottom:540.255000px;}
.y24{bottom:540.615000px;}
.yba{bottom:541.875000px;}
.yf6{bottom:547.815000px;}
.y7c{bottom:557.535000px;}
.yb9{bottom:559.155000px;}
.yf5{bottom:565.095000px;}
.y7b{bottom:574.815000px;}
.yb8{bottom:576.435000px;}
.yf4{bottom:582.375000px;}
.y7a{bottom:591.915000px;}
.yb7{bottom:593.535000px;}
.yf3{bottom:599.475000px;}
.y79{bottom:609.195000px;}
.yb6{bottom:610.815000px;}
.yf2{bottom:616.755000px;}
.y78{bottom:626.475000px;}
.yb5{bottom:628.095000px;}
.yf1{bottom:634.035000px;}
.y77{bottom:643.785000px;}
.yb4{bottom:645.405000px;}
.yf0{bottom:651.345000px;}
.yb2{bottom:660.885000px;}
.y76{bottom:661.065000px;}
.yef{bottom:668.625000px;}
.y75{bottom:678.345000px;}
.yb1{bottom:681.045000px;}
.yee{bottom:685.905000px;}
.y74{bottom:695.445000px;}
.yb0{bottom:701.025000px;}
.yed{bottom:703.005000px;}
.y73{bottom:712.725000px;}
.y20{bottom:714.165000px;}
.yec{bottom:720.285000px;}
.yaf{bottom:721.185000px;}
.y72{bottom:730.005000px;}
.yeb{bottom:737.565000px;}
.yae{bottom:741.165000px;}
.yf{bottom:743.865000px;}
.y71{bottom:747.285000px;}
.yea{bottom:754.845000px;}
.yad{bottom:761.145000px;}
.y70{bottom:764.565000px;}
.ye9{bottom:772.125000px;}
.yac{bottom:781.125000px;}
.y6f{bottom:781.845000px;}
.ye8{bottom:791.745000px;}
.y6e{bottom:798.945000px;}
.yab{bottom:801.285000px;}
.ye7{bottom:809.025000px;}
.y6d{bottom:816.225000px;}
.yaa{bottom:821.265000px;}
.ye6{bottom:826.305000px;}
.y6c{bottom:833.505000px;}
.ya9{bottom:841.245000px;}
.ye5{bottom:843.405000px;}
.y6b{bottom:850.785000px;}
.ye4{bottom:860.685000px;}
.ya8{bottom:861.225000px;}
.y6a{bottom:868.065000px;}
.ye3{bottom:877.965000px;}
.ya7{bottom:881.385000px;}
.y69{bottom:885.165000px;}
.ye2{bottom:895.290000px;}
.ya6{bottom:901.410000px;}
.y68{bottom:902.490000px;}
.ye1{bottom:912.570000px;}
.y67{bottom:919.770000px;}
.ya5{bottom:921.390000px;}
.ye0{bottom:932.190000px;}
.y66{bottom:937.050000px;}
.ya4{bottom:941.370000px;}
.ydf{bottom:949.470000px;}
.y65{bottom:954.330000px;}
.ya3{bottom:961.530000px;}
.yde{bottom:966.750000px;}
.y64{bottom:971.610000px;}
.ya2{bottom:981.510000px;}
.ydd{bottom:984.030000px;}
.y63{bottom:988.710000px;}
.ydc{bottom:1001.130000px;}
.ya1{bottom:1001.490000px;}
.y62{bottom:1005.990000px;}
.ydb{bottom:1018.410000px;}
.ya0{bottom:1021.470000px;}
.y61{bottom:1023.270000px;}
.yd{bottom:1033.890000px;}
.yda{bottom:1038.030000px;}
.y60{bottom:1040.550000px;}
.y9e{bottom:1041.630000px;}
.y6{bottom:1053.690000px;}
.yd9{bottom:1055.310000px;}
.y5f{bottom:1057.830000px;}
.y9d{bottom:1064.850000px;}
.yd8{bottom:1072.590000px;}
.y5e{bottom:1075.110000px;}
.y9c{bottom:1082.130000px;}
.yd7{bottom:1089.870000px;}
.y5d{bottom:1092.210000px;}
.y9b{bottom:1096.890000px;}
.yd6{bottom:1107.150000px;}
.y5c{bottom:1109.490000px;}
.y9a{bottom:1117.230000px;}
.yd5{bottom:1124.430000px;}
.y5b{bottom:1126.770000px;}
.y99{bottom:1137.570000px;}
.yd4{bottom:1141.530000px;}
.y5a{bottom:1144.050000px;}
.yd3{bottom:1158.840000px;}
.y59{bottom:1161.360000px;}
.h25{height:18.540000px;}
.h26{height:18.576000px;}
.h27{height:18.720000px;}
.hc{height:19.440000px;}
.h1f{height:19.620000px;}
.h20{height:19.656000px;}
.h22{height:19.800000px;}
.h24{height:19.836000px;}
.h13{height:28.968750px;}
.h14{height:29.700000px;}
.h2{height:32.940000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1b{height:38.818125px;}
.h21{height:40.176000px;}
.h1e{height:40.536000px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1a{height:42.281367px;}
.h4{height:43.453125px;}
.h29{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h28{height:68.748750px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h23{height:80.496000px;}
.h7{height:121.536000px;}
.hd{height:290.010000px;}
.h16{height:551.955000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:74.736000px;}
.wa{width:114.120000px;}
.we{width:125.316000px;}
.w13{width:146.736000px;}
.w5{width:155.370000px;}
.wb{width:156.630000px;}
.wd{width:156.810000px;}
.wc{width:175.710000px;}
.w15{width:193.530000px;}
.w14{width:193.710000px;}
.w12{width:195.150000px;}
.w8{width:221.115000px;}
.w10{width:242.850000px;}
.w17{width:243.210000px;}
.w11{width:243.255000px;}
.w16{width:243.390000px;}
.w18{width:243.435000px;}
.wf{width:243.930000px;}
.w19{width:364.935000px;}
.w1a{width:365.115000px;}
.w9{width:526.605000px;}
.w6{width:592.170000px;}
.w2{width:673.890000px;}
.w7{width:747.720000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x10{left:10.476000px;}
.x18{left:12.600000px;}
.x12{left:15.156000px;}
.xf{left:19.116000px;}
.x13{left:25.596000px;}
.x15{left:33.156000px;}
.xd{left:50.616000px;}
.x1{left:72.360000px;}
.x4{left:81.035987px;}
.x5{left:98.130000px;}
.x27{left:108.035987px;}
.x1a{left:195.870000px;}
.x16{left:215.175000px;}
.x6{left:228.270000px;}
.x14{left:233.535000px;}
.x1e{left:255.314987px;}
.x25{left:263.774987px;}
.x11{left:269.535000px;}
.x21{left:276.915000px;}
.x9{left:285.375000px;}
.x17{left:293.835000px;}
.x24{left:305.714987px;}
.x19{left:318.134987px;}
.x1f{left:325.695000px;}
.xe{left:328.575000px;}
.x7{left:343.335000px;}
.x1b{left:353.235000px;}
.x8{left:364.620000px;}
.xb{left:366.960000px;}
.xc{left:373.785000px;}
.x22{left:424.365000px;}
.x26{left:447.405000px;}
.xa{left:452.640000px;}
.x1c{left:529.665000px;}
.x20{left:569.265000px;}
.x23{left:618.990000px;}
.x1d{left:687.210000px;}
.x3{left:746.250000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.429867pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls21{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.lsd{letter-spacing:0.077867pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.800000pt;}
.ls10{letter-spacing:5.920000pt;}
.lsf{letter-spacing:9.120000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls12{letter-spacing:16.160000pt;}
.ls1d{letter-spacing:30.919680pt;}
.ls1f{letter-spacing:40.912640pt;}
.wsc{word-spacing:-29.959680pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.455573pt;}
.ws15{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.736000pt;}
.ws17{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.426560pt;}
.ws8{word-spacing:-11.392640pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.552000pt;}
.ws5{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._6{margin-left:-4.922667pt;}
._4{margin-left:-3.292160pt;}
._5{margin-left:-2.369707pt;}
._0{margin-left:-1.205333pt;}
._1{width:0.960000pt;}
._2{width:1.856000pt;}
._c{width:2.827520pt;}
._3{width:4.160000pt;}
._9{width:5.524480pt;}
._b{width:6.798293pt;}
._8{width:7.706453pt;}
._7{width:8.999893pt;}
._10{width:9.994667pt;}
._d{width:11.098240pt;}
._f{width:12.050133pt;}
._a{width:14.604160pt;}
._11{width:15.507200pt;}
._e{width:16.782080pt;}
._18{width:18.233813pt;}
._12{width:20.075520pt;}
._15{width:21.088640pt;}
._14{width:21.991680pt;}
._13{width:23.069867pt;}
._17{width:24.486827pt;}
._16{width:32.393173pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.160000pt;}
.y53{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.ye{bottom:3.680000pt;}
.y9f{bottom:4.000000pt;}
.yb3{bottom:4.160000pt;}
.y1f{bottom:4.320000pt;}
.y85{bottom:4.960000pt;}
.y8a{bottom:5.120000pt;}
.y89{bottom:7.840000pt;}
.y22{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y56{bottom:12.992000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y52{bottom:18.240000pt;}
.y1e{bottom:22.720000pt;}
.y88{bottom:23.200000pt;}
.y57{bottom:23.232000pt;}
.y55{bottom:25.946667pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y51{bottom:33.600000pt;}
.y1d{bottom:40.640000pt;}
.ya{bottom:41.440000pt;}
.y95{bottom:43.866667pt;}
.y1{bottom:46.560000pt;}
.y50{bottom:48.800000pt;}
.y1c{bottom:52.000000pt;}
.y94{bottom:59.226667pt;}
.y4f{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y1b{bottom:69.920000pt;}
.y4e{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y1a{bottom:84.640000pt;}
.y110{bottom:88.320000pt;}
.y4d{bottom:94.880000pt;}
.y98{bottom:95.040000pt;}
.y58{bottom:95.680000pt;}
.y19{bottom:95.840000pt;}
.yd2{bottom:98.240000pt;}
.y7{bottom:99.066667pt;}
.y10f{bottom:103.520000pt;}
.y54{bottom:108.160000pt;}
.y4c{bottom:110.240000pt;}
.yd1{bottom:113.600000pt;}
.y18{bottom:113.920000pt;}
.y10e{bottom:118.880000pt;}
.y17{bottom:125.120000pt;}
.y4b{bottom:125.600000pt;}
.y97{bottom:126.272000pt;}
.yd0{bottom:128.992000pt;}
.y10d{bottom:134.266667pt;}
.y4a{bottom:140.800000pt;}
.y16{bottom:143.240000pt;}
.y23{bottom:144.186667pt;}
.y96{bottom:144.346667pt;}
.y10c{bottom:149.626667pt;}
.y49{bottom:156.160000pt;}
.y15{bottom:157.320000pt;}
.ycf{bottom:159.706667pt;}
.y93{bottom:162.426667pt;}
.y10b{bottom:164.986667pt;}
.y14{bottom:166.600000pt;}
.y48{bottom:171.520000pt;}
.yce{bottom:174.906667pt;}
.y10a{bottom:180.186667pt;}
.y92{bottom:180.506667pt;}
.y13{bottom:182.920000pt;}
.y47{bottom:186.880000pt;}
.ycd{bottom:190.266667pt;}
.y109{bottom:195.546667pt;}
.y12{bottom:199.720000pt;}
.y91{bottom:201.466667pt;}
.y46{bottom:202.280000pt;}
.ycc{bottom:205.626667pt;}
.y108{bottom:210.906667pt;}
.y90{bottom:216.666667pt;}
.y45{bottom:217.640000pt;}
.ycb{bottom:220.986667pt;}
.y11{bottom:222.600000pt;}
.y107{bottom:226.266667pt;}
.y8f{bottom:229.786667pt;}
.y44{bottom:232.840000pt;}
.yca{bottom:236.346667pt;}
.y33{bottom:238.440000pt;}
.y106{bottom:241.626667pt;}
.y10{bottom:244.360000pt;}
.y8e{bottom:248.026667pt;}
.y43{bottom:248.200000pt;}
.yc9{bottom:251.706667pt;}
.y32{bottom:252.040000pt;}
.y105{bottom:256.986667pt;}
.y42{bottom:263.560000pt;}
.y8d{bottom:266.106667pt;}
.yc8{bottom:266.906667pt;}
.y31{bottom:267.720000pt;}
.y104{bottom:272.186667pt;}
.y41{bottom:278.920000pt;}
.yc7{bottom:282.266667pt;}
.y30{bottom:283.080000pt;}
.y8c{bottom:287.066667pt;}
.y103{bottom:287.546667pt;}
.y40{bottom:294.280000pt;}
.yc6{bottom:297.626667pt;}
.y2f{bottom:298.280000pt;}
.y8b{bottom:302.426667pt;}
.y102{bottom:302.906667pt;}
.y3f{bottom:309.480000pt;}
.yc5{bottom:312.986667pt;}
.y2e{bottom:314.120000pt;}
.y87{bottom:315.546667pt;}
.y101{bottom:318.266667pt;}
.y3e{bottom:324.840000pt;}
.yc4{bottom:328.346667pt;}
.y2d{bottom:329.640000pt;}
.y100{bottom:333.626667pt;}
.y86{bottom:333.786667pt;}
.y3d{bottom:340.200000pt;}
.yc3{bottom:343.546667pt;}
.y2c{bottom:345.160000pt;}
.yff{bottom:349.026667pt;}
.y84{bottom:351.906667pt;}
.y3c{bottom:355.560000pt;}
.yc2{bottom:358.946667pt;}
.y2b{bottom:360.520000pt;}
.yfe{bottom:364.226667pt;}
.y3b{bottom:370.920000pt;}
.y83{bottom:372.866667pt;}
.yc1{bottom:374.306667pt;}
.y2a{bottom:376.040000pt;}
.yfd{bottom:379.586667pt;}
.y3a{bottom:386.280000pt;}
.y82{bottom:388.226667pt;}
.yc0{bottom:389.666667pt;}
.y29{bottom:391.560000pt;}
.yfc{bottom:394.946667pt;}
.y39{bottom:401.480000pt;}
.y81{bottom:403.586667pt;}
.ybf{bottom:405.026667pt;}
.y28{bottom:406.920000pt;}
.yfb{bottom:410.306667pt;}
.y38{bottom:416.840000pt;}
.y80{bottom:418.946667pt;}
.ybe{bottom:420.386667pt;}
.y27{bottom:422.440000pt;}
.yfa{bottom:425.666667pt;}
.y37{bottom:432.226667pt;}
.y7f{bottom:434.146667pt;}
.ybd{bottom:435.586667pt;}
.y26{bottom:440.386667pt;}
.yf9{bottom:441.026667pt;}
.y36{bottom:447.586667pt;}
.y7e{bottom:449.506667pt;}
.ybc{bottom:450.946667pt;}
.yf8{bottom:456.226667pt;}
.y35{bottom:462.946667pt;}
.y25{bottom:464.866667pt;}
.ybb{bottom:466.306667pt;}
.yf7{bottom:471.586667pt;}
.y34{bottom:478.306667pt;}
.y7d{bottom:480.226667pt;}
.y24{bottom:480.546667pt;}
.yba{bottom:481.666667pt;}
.yf6{bottom:486.946667pt;}
.y7c{bottom:495.586667pt;}
.yb9{bottom:497.026667pt;}
.yf5{bottom:502.306667pt;}
.y7b{bottom:510.946667pt;}
.yb8{bottom:512.386667pt;}
.yf4{bottom:517.666667pt;}
.y7a{bottom:526.146667pt;}
.yb7{bottom:527.586667pt;}
.yf3{bottom:532.866667pt;}
.y79{bottom:541.506667pt;}
.yb6{bottom:542.946667pt;}
.yf2{bottom:548.226667pt;}
.y78{bottom:556.866667pt;}
.yb5{bottom:558.306667pt;}
.yf1{bottom:563.586667pt;}
.y77{bottom:572.253333pt;}
.yb4{bottom:573.693333pt;}
.yf0{bottom:578.973333pt;}
.yb2{bottom:587.453333pt;}
.y76{bottom:587.613333pt;}
.yef{bottom:594.333333pt;}
.y75{bottom:602.973333pt;}
.yb1{bottom:605.373333pt;}
.yee{bottom:609.693333pt;}
.y74{bottom:618.173333pt;}
.yb0{bottom:623.133333pt;}
.yed{bottom:624.893333pt;}
.y73{bottom:633.533333pt;}
.y20{bottom:634.813333pt;}
.yec{bottom:640.253333pt;}
.yaf{bottom:641.053333pt;}
.y72{bottom:648.893333pt;}
.yeb{bottom:655.613333pt;}
.yae{bottom:658.813333pt;}
.yf{bottom:661.213333pt;}
.y71{bottom:664.253333pt;}
.yea{bottom:670.973333pt;}
.yad{bottom:676.573333pt;}
.y70{bottom:679.613333pt;}
.ye9{bottom:686.333333pt;}
.yac{bottom:694.333333pt;}
.y6f{bottom:694.973333pt;}
.ye8{bottom:703.773333pt;}
.y6e{bottom:710.173333pt;}
.yab{bottom:712.253333pt;}
.ye7{bottom:719.133333pt;}
.y6d{bottom:725.533333pt;}
.yaa{bottom:730.013333pt;}
.ye6{bottom:734.493333pt;}
.y6c{bottom:740.893333pt;}
.ya9{bottom:747.773333pt;}
.ye5{bottom:749.693333pt;}
.y6b{bottom:756.253333pt;}
.ye4{bottom:765.053333pt;}
.ya8{bottom:765.533333pt;}
.y6a{bottom:771.613333pt;}
.ye3{bottom:780.413333pt;}
.ya7{bottom:783.453333pt;}
.y69{bottom:786.813333pt;}
.ye2{bottom:795.813333pt;}
.ya6{bottom:801.253333pt;}
.y68{bottom:802.213333pt;}
.ye1{bottom:811.173333pt;}
.y67{bottom:817.573333pt;}
.ya5{bottom:819.013333pt;}
.ye0{bottom:828.613333pt;}
.y66{bottom:832.933333pt;}
.ya4{bottom:836.773333pt;}
.ydf{bottom:843.973333pt;}
.y65{bottom:848.293333pt;}
.ya3{bottom:854.693333pt;}
.yde{bottom:859.333333pt;}
.y64{bottom:863.653333pt;}
.ya2{bottom:872.453333pt;}
.ydd{bottom:874.693333pt;}
.y63{bottom:878.853333pt;}
.ydc{bottom:889.893333pt;}
.ya1{bottom:890.213333pt;}
.y62{bottom:894.213333pt;}
.ydb{bottom:905.253333pt;}
.ya0{bottom:907.973333pt;}
.y61{bottom:909.573333pt;}
.yd{bottom:919.013333pt;}
.yda{bottom:922.693333pt;}
.y60{bottom:924.933333pt;}
.y9e{bottom:925.893333pt;}
.y6{bottom:936.613333pt;}
.yd9{bottom:938.053333pt;}
.y5f{bottom:940.293333pt;}
.y9d{bottom:946.533333pt;}
.yd8{bottom:953.413333pt;}
.y5e{bottom:955.653333pt;}
.y9c{bottom:961.893333pt;}
.yd7{bottom:968.773333pt;}
.y5d{bottom:970.853333pt;}
.y9b{bottom:975.013333pt;}
.yd6{bottom:984.133333pt;}
.y5c{bottom:986.213333pt;}
.y9a{bottom:993.093333pt;}
.yd5{bottom:999.493333pt;}
.y5b{bottom:1001.573333pt;}
.y99{bottom:1011.173333pt;}
.yd4{bottom:1014.693333pt;}
.y5a{bottom:1016.933333pt;}
.yd3{bottom:1030.080000pt;}
.y59{bottom:1032.320000pt;}
.h25{height:16.480000pt;}
.h26{height:16.512000pt;}
.h27{height:16.640000pt;}
.hc{height:17.280000pt;}
.h1f{height:17.440000pt;}
.h20{height:17.472000pt;}
.h22{height:17.600000pt;}
.h24{height:17.632000pt;}
.h13{height:25.750000pt;}
.h14{height:26.400000pt;}
.h2{height:29.280000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h21{height:35.712000pt;}
.h1e{height:36.032000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h4{height:38.625000pt;}
.h29{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h28{height:61.110000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h23{height:71.552000pt;}
.h7{height:108.032000pt;}
.hd{height:257.786667pt;}
.h16{height:490.626667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:66.432000pt;}
.wa{width:101.440000pt;}
.we{width:111.392000pt;}
.w13{width:130.432000pt;}
.w5{width:138.106667pt;}
.wb{width:139.226667pt;}
.wd{width:139.386667pt;}
.wc{width:156.186667pt;}
.w15{width:172.026667pt;}
.w14{width:172.186667pt;}
.w12{width:173.466667pt;}
.w8{width:196.546667pt;}
.w10{width:215.866667pt;}
.w17{width:216.186667pt;}
.w11{width:216.226667pt;}
.w16{width:216.346667pt;}
.w18{width:216.386667pt;}
.wf{width:216.826667pt;}
.w19{width:324.386667pt;}
.w1a{width:324.546667pt;}
.w9{width:468.093333pt;}
.w6{width:526.373333pt;}
.w2{width:599.013333pt;}
.w7{width:664.640000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x10{left:9.312000pt;}
.x18{left:11.200000pt;}
.x12{left:13.472000pt;}
.xf{left:16.992000pt;}
.x13{left:22.752000pt;}
.x15{left:29.472000pt;}
.xd{left:44.992000pt;}
.x1{left:64.320000pt;}
.x4{left:72.031988pt;}
.x5{left:87.226667pt;}
.x27{left:96.031988pt;}
.x1a{left:174.106667pt;}
.x16{left:191.266667pt;}
.x6{left:202.906667pt;}
.x14{left:207.586667pt;}
.x1e{left:226.946655pt;}
.x25{left:234.466655pt;}
.x11{left:239.586667pt;}
.x21{left:246.146667pt;}
.x9{left:253.666667pt;}
.x17{left:261.186667pt;}
.x24{left:271.746655pt;}
.x19{left:282.786655pt;}
.x1f{left:289.506667pt;}
.xe{left:292.066667pt;}
.x7{left:305.186667pt;}
.x1b{left:313.986667pt;}
.x8{left:324.106667pt;}
.xb{left:326.186667pt;}
.xc{left:332.253333pt;}
.x22{left:377.213333pt;}
.x26{left:397.693333pt;}
.xa{left:402.346667pt;}
.x1c{left:470.813333pt;}
.x20{left:506.013333pt;}
.x23{left:550.213333pt;}
.x1d{left:610.853333pt;}
.x3{left:663.333333pt;}
}




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