
    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_ff4de38b5c95eb82dce40078.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_009028c1732f921f40fd6ac8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d9aebcb81a67af92a3901faa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_5d31f0ed45e0bbe736e20e02.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_20b52c2283824bc52590b421.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_90660cd939597f6e9b422af6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f982c03f3ba0b7d123c242aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_528893a7cb8e9378a61aa9a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0896ae75eb222abdc28b028e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_7f9c80202c934393733f8ea6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;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_fa445cb8ce4d0a8761b6eed4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d2f176a4cfa821554cca9cab.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9a6050a075098418f3891ded.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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_c2bed8802fe4a5d3edaa8ec3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;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_f421d7aa272fb911e727c1e8.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_7b170d8b6f3330dc77d5d00a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104492;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_f8c1fb09ff5e75e976a8f775.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.037440px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.053280px;}
.lse{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.377280px;}
.ls8{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.612000px;}
.ls15{letter-spacing:4.626000px;}
.ls1c{letter-spacing:13.110240px;}
.ls1a{letter-spacing:13.265280px;}
.lsa{letter-spacing:40.661280px;}
.ls17{letter-spacing:54.305280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.813280px;}
.wsb{word-spacing:-59.500200px;}
.wsd{word-spacing:-21.420000px;}
.ws14{word-spacing:-21.097440px;}
.ws13{word-spacing:-21.060000px;}
.ws15{word-spacing:-21.022560px;}
.ws10{word-spacing:-18.676920px;}
.ws11{word-spacing:-18.414720px;}
.wse{word-spacing:-18.305520px;}
.ws8{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.956920px;}
.ws12{word-spacing:-17.388720px;}
.ws1{word-spacing:-17.225280px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws3{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.808640px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-2.549280px;}
._1{margin-left:-1.047840px;}
._0{width:1.524960px;}
._b{width:2.963760px;}
._d{width:4.003920px;}
._8{width:5.079600px;}
._f{width:6.543600px;}
._e{width:7.649280px;}
._10{width:8.993040px;}
._1f{width:10.108800px;}
._9{width:11.175120px;}
._a{width:12.219840px;}
._14{width:14.142240px;}
._19{width:15.870240px;}
._16{width:17.186400px;}
._11{width:19.661040px;}
._2{width:21.155040px;}
._15{width:22.448160px;}
._1a{width:23.775360px;}
._1d{width:25.159200px;}
._1e{width:26.186400px;}
._c{width:27.653760px;}
._4{width:28.973280px;}
._3{width:30.238560px;}
._1b{width:32.237760px;}
._13{width:33.252480px;}
._12{width:34.344480px;}
._22{width:35.691360px;}
._21{width:36.883680px;}
._20{width:38.177280px;}
._17{width:40.936320px;}
._18{width:42.446400px;}
._1c{width:52.499520px;}
._7{width:80.985120px;}
._5{width:1090.409760px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y5{bottom:16.200000px;}
.y4{bottom:30.060000px;}
.y3a{bottom:72.396000px;}
.yc{bottom:82.656000px;}
.y39{bottom:90.936000px;}
.yb{bottom:102.456000px;}
.y38{bottom:106.416000px;}
.y37{bottom:122.076000px;}
.ya{bottom:122.436000px;}
.y5e{bottom:144.396000px;}
.y81{bottom:146.916000px;}
.y9{bottom:151.230000px;}
.y9f{bottom:155.010000px;}
.yd2{bottom:156.990000px;}
.yb5{bottom:158.970000px;}
.y8{bottom:168.510000px;}
.y5d{bottom:173.010000px;}
.ye6{bottom:173.910000px;}
.y80{bottom:175.350000px;}
.y9e{bottom:183.450000px;}
.y7{bottom:185.070000px;}
.yd1{bottom:185.430000px;}
.yf8{bottom:186.510000px;}
.yb4{bottom:187.410000px;}
.y3{bottom:197.130000px;}
.y5c{bottom:201.450000px;}
.y13e{bottom:201.630000px;}
.ye5{bottom:202.350000px;}
.y7f{bottom:203.790000px;}
.y113{bottom:208.290000px;}
.y9d{bottom:211.890000px;}
.yd0{bottom:213.870000px;}
.yf7{bottom:214.950000px;}
.yb3{bottom:216.030000px;}
.y5b{bottom:229.890000px;}
.ye4{bottom:230.790000px;}
.y7e{bottom:232.230000px;}
.y13d{bottom:236.730000px;}
.y9c{bottom:240.510000px;}
.ycf{bottom:242.310000px;}
.yf6{bottom:243.390000px;}
.y2f{bottom:247.890000px;}
.y112{bottom:251.670000px;}
.yb2{bottom:254.550000px;}
.y13c{bottom:256.530000px;}
.y5a{bottom:258.330000px;}
.ye3{bottom:259.230000px;}
.y7d{bottom:260.670000px;}
.y2e{bottom:267.690000px;}
.yf5{bottom:271.830000px;}
.y13b{bottom:276.330000px;}
.y9b{bottom:277.950000px;}
.yce{bottom:279.750000px;}
.y111{bottom:280.110000px;}
.yb1{bottom:282.990000px;}
.y59{bottom:286.770000px;}
.y2d{bottom:287.490000px;}
.ye2{bottom:287.670000px;}
.y7c{bottom:289.110000px;}
.y13a{bottom:296.130000px;}
.yf4{bottom:300.270000px;}
.y126{bottom:301.710000px;}
.y9a{bottom:306.390000px;}
.y2c{bottom:307.290000px;}
.ycd{bottom:308.190000px;}
.y110{bottom:308.550000px;}
.yb0{bottom:311.430000px;}
.ye1{bottom:316.110000px;}
.y7b{bottom:326.550000px;}
.y2b{bottom:327.090000px;}
.yf3{bottom:328.890000px;}
.y125{bottom:330.150000px;}
.y99{bottom:334.830000px;}
.ycc{bottom:336.675000px;}
.y10f{bottom:337.035000px;}
.y58{bottom:339.915000px;}
.y139{bottom:341.895000px;}
.y2a{bottom:347.115000px;}
.yaf{bottom:349.995000px;}
.ye0{bottom:353.595000px;}
.y7a{bottom:355.215000px;}
.y124{bottom:358.635000px;}
.y98{bottom:363.315000px;}
.ycb{bottom:365.295000px;}
.yf2{bottom:366.375000px;}
.y29{bottom:366.915000px;}
.y138{bottom:372.135000px;}
.yae{bottom:378.615000px;}
.ydf{bottom:382.215000px;}
.y79{bottom:383.655000px;}
.y28{bottom:386.715000px;}
.y10e{bottom:390.135000px;}
.y97{bottom:391.755000px;}
.y137{bottom:392.295000px;}
.yca{bottom:393.735000px;}
.yf1{bottom:394.815000px;}
.y123{bottom:402.195000px;}
.y57{bottom:403.095000px;}
.y27{bottom:406.515000px;}
.yad{bottom:407.055000px;}
.yde{bottom:410.655000px;}
.y78{bottom:412.095000px;}
.y10d{bottom:413.535000px;}
.yc9{bottom:422.175000px;}
.yf0{bottom:423.255000px;}
.y56{bottom:425.955000px;}
.y26{bottom:426.315000px;}
.y96{bottom:429.195000px;}
.y136{bottom:429.915000px;}
.y122{bottom:430.635000px;}
.yac{bottom:435.495000px;}
.ydd{bottom:439.095000px;}
.y77{bottom:440.535000px;}
.y25{bottom:445.755000px;}
.yc8{bottom:450.615000px;}
.yef{bottom:451.695000px;}
.y10c{bottom:452.415000px;}
.y55{bottom:452.955000px;}
.y95{bottom:457.635000px;}
.y24{bottom:463.575000px;}
.yab{bottom:463.935000px;}
.y135{bottom:467.355000px;}
.y121{bottom:474.015000px;}
.y10b{bottom:475.455000px;}
.ydc{bottom:476.535000px;}
.y76{bottom:477.975000px;}
.y23{bottom:479.055000px;}
.yee{bottom:480.135000px;}
.y54{bottom:482.655000px;}
.y94{bottom:486.075000px;}
.yaa{bottom:492.375000px;}
.y10a{bottom:498.675000px;}
.y22{bottom:503.715000px;}
.ydb{bottom:504.975000px;}
.y75{bottom:506.415000px;}
.yc7{bottom:507.495000px;}
.yed{bottom:508.575000px;}
.y53{bottom:511.275000px;}
.y93{bottom:514.695000px;}
.y120{bottom:517.575000px;}
.y109{bottom:521.715000px;}
.y52{bottom:528.555000px;}
.ya8{bottom:529.815000px;}
.yda{bottom:533.415000px;}
.y74{bottom:534.855000px;}
.ya9{bottom:535.755000px;}
.yec{bottom:537.015000px;}
.y134{bottom:542.415000px;}
.y21{bottom:544.215000px;}
.yc6{bottom:544.935000px;}
.y51{bottom:545.835000px;}
.y11f{bottom:546.015000px;}
.y92{bottom:552.135000px;}
.ya7{bottom:558.255000px;}
.yd9{bottom:561.855000px;}
.y73{bottom:563.295000px;}
.yeb{bottom:565.455000px;}
.y20{bottom:569.955000px;}
.yc5{bottom:573.375000px;}
.y11e{bottom:574.455000px;}
.y91{bottom:580.575000px;}
.y50{bottom:581.115000px;}
.y108{bottom:582.555000px;}
.y133{bottom:585.795000px;}
.ya6{bottom:586.695000px;}
.yd8{bottom:590.295000px;}
.y1f{bottom:595.875000px;}
.y4f{bottom:598.395000px;}
.yc4{bottom:601.815000px;}
.y11d{bottom:602.895000px;}
.y90{bottom:609.045000px;}
.y72{bottom:609.765000px;}
.y1e{bottom:613.365000px;}
.y132{bottom:614.265000px;}
.y4e{bottom:615.705000px;}
.y107{bottom:620.025000px;}
.yd7{bottom:627.765000px;}
.yc3{bottom:630.465000px;}
.y4d{bottom:632.805000px;}
.yea{bottom:637.485000px;}
.y71{bottom:638.385000px;}
.y1d{bottom:641.085000px;}
.ya5{bottom:645.945000px;}
.y8f{bottom:646.485000px;}
.y106{bottom:648.465000px;}
.y4c{bottom:650.085000px;}
.yd6{bottom:656.385000px;}
.y131{bottom:657.825000px;}
.y1c{bottom:665.925000px;}
.y70{bottom:666.825000px;}
.y4b{bottom:667.365000px;}
.yc2{bottom:667.905000px;}
.y8e{bottom:674.925000px;}
.y105{bottom:677.085000px;}
.ya4{bottom:682.125000px;}
.y4a{bottom:684.645000px;}
.yd5{bottom:684.825000px;}
.y130{bottom:686.265000px;}
.y11c{bottom:689.865000px;}
.ye9{bottom:694.365000px;}
.y1b{bottom:694.905000px;}
.y6f{bottom:695.265000px;}
.yc1{bottom:696.345000px;}
.y49{bottom:701.925000px;}
.y8d{bottom:703.365000px;}
.y104{bottom:705.525000px;}
.yd4{bottom:713.265000px;}
.ye8{bottom:722.805000px;}
.y6e{bottom:723.705000px;}
.yc0{bottom:724.785000px;}
.y12f{bottom:729.645000px;}
.y1a{bottom:729.825000px;}
.y8c{bottom:731.805000px;}
.y11b{bottom:733.245000px;}
.y103{bottom:733.965000px;}
.y48{bottom:737.025000px;}
.ya3{bottom:741.705000px;}
.ybf{bottom:753.225000px;}
.y12e{bottom:758.085000px;}
.ye7{bottom:760.245000px;}
.y6d{bottom:761.145000px;}
.y11a{bottom:761.865000px;}
.y19{bottom:762.405000px;}
.y8b{bottom:769.245000px;}
.ya2{bottom:770.145000px;}
.y47{bottom:772.305000px;}
.y12d{bottom:786.525000px;}
.y6c{bottom:789.585000px;}
.ybe{bottom:790.665000px;}
.y18{bottom:793.545000px;}
.y8a{bottom:797.865000px;}
.ya1{bottom:798.585000px;}
.y102{bottom:799.845000px;}
.y119{bottom:805.245000px;}
.y46{bottom:807.585000px;}
.y12c{bottom:815.145000px;}
.ybd{bottom:819.105000px;}
.y17{bottom:824.505000px;}
.y89{bottom:826.305000px;}
.yd3{bottom:827.025000px;}
.y101{bottom:828.285000px;}
.y118{bottom:833.685000px;}
.y6b{bottom:836.025000px;}
.y45{bottom:842.865000px;}
.y12b{bottom:843.585000px;}
.ybc{bottom:847.545000px;}
.y88{bottom:854.745000px;}
.y16{bottom:855.645000px;}
.y100{bottom:856.725000px;}
.y44{bottom:860.145000px;}
.y117{bottom:862.125000px;}
.y6a{bottom:864.465000px;}
.y12a{bottom:872.070000px;}
.y43{bottom:877.470000px;}
.y87{bottom:883.230000px;}
.yff{bottom:885.210000px;}
.y15{bottom:886.650000px;}
.y116{bottom:890.610000px;}
.ybb{bottom:891.150000px;}
.y69{bottom:892.950000px;}
.y42{bottom:894.750000px;}
.y41{bottom:911.850000px;}
.yfe{bottom:913.650000px;}
.y129{bottom:915.450000px;}
.y14{bottom:917.790000px;}
.yba{bottom:919.590000px;}
.y86{bottom:920.670000px;}
.y68{bottom:921.570000px;}
.y40{bottom:929.130000px;}
.y115{bottom:934.170000px;}
.yfd{bottom:942.270000px;}
.y128{bottom:943.890000px;}
.y3f{bottom:946.410000px;}
.yb9{bottom:948.030000px;}
.y13{bottom:948.750000px;}
.y85{bottom:949.110000px;}
.y67{bottom:950.010000px;}
.y114{bottom:962.610000px;}
.y3e{bottom:963.690000px;}
.yfc{bottom:970.710000px;}
.y127{bottom:972.330000px;}
.yb8{bottom:976.470000px;}
.y84{bottom:977.550000px;}
.y66{bottom:978.450000px;}
.y12{bottom:979.890000px;}
.y3d{bottom:980.970000px;}
.yfb{bottom:999.150000px;}
.y11{bottom:1000.590000px;}
.y3c{bottom:1000.770000px;}
.yb7{bottom:1004.910000px;}
.y83{bottom:1005.990000px;}
.y65{bottom:1006.890000px;}
.ya0{bottom:1015.890000px;}
.yfa{bottom:1027.590000px;}
.y10{bottom:1031.550000px;}
.yb6{bottom:1033.350000px;}
.y82{bottom:1034.430000px;}
.y3b{bottom:1035.870000px;}
.y64{bottom:1044.330000px;}
.y36{bottom:1057.470000px;}
.yf{bottom:1064.850000px;}
.yf9{bottom:1068.630000px;}
.y63{bottom:1072.770000px;}
.y35{bottom:1080.690000px;}
.ye{bottom:1087.890000px;}
.y62{bottom:1092.750000px;}
.y34{bottom:1103.910000px;}
.yd{bottom:1111.110000px;}
.y61{bottom:1112.910000px;}
.y33{bottom:1126.950000px;}
.y60{bottom:1133.070000px;}
.y32{bottom:1150.200000px;}
.y5f{bottom:1153.260000px;}
.y31{bottom:1173.420000px;}
.y2{bottom:1173.960000px;}
.y30{bottom:1193.040000px;}
.y1{bottom:1194.120000px;}
.h16{height:38.671172px;}
.h3{height:41.400000px;}
.h15{height:43.554375px;}
.he{height:44.327813px;}
.h5{height:50.312812px;}
.h10{height:52.971680px;}
.hf{height:56.320312px;}
.h14{height:59.383125px;}
.h17{height:59.439023px;}
.h6{height:60.226875px;}
.h4{height:62.327813px;}
.h2{height:65.884219px;}
.hd{height:66.082500px;}
.hc{height:69.086250px;}
.h9{height:70.628906px;}
.h8{height:70.664062px;}
.h11{height:71.613281px;}
.h7{height:72.562500px;}
.h12{height:75.093750px;}
.ha{height:81.101250px;}
.h13{height:84.898125px;}
.hb{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:667.365000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x17{left:98.675987px;}
.x2{left:101.196000px;}
.x1{left:109.295987px;}
.x19{left:136.295987px;}
.x8{left:141.875987px;}
.x1a{left:146.195987px;}
.x15{left:151.769987px;}
.x12{left:162.389987px;}
.xf{left:170.309987px;}
.x5{left:173.189987px;}
.xb{left:174.989987px;}
.x16{left:178.589987px;}
.x9{left:247.529987px;}
.xc{left:272.009987px;}
.x11{left:278.174987px;}
.x18{left:325.334987px;}
.xd{left:360.254987px;}
.x6{left:376.994987px;}
.x7{left:426.854987px;}
.xe{left:432.074987px;}
.x10{left:443.954987px;}
.xa{left:448.094987px;}
.x13{left:651.524973px;}
.x14{left:657.329987px;}
.x4{left:755.069987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.335360pt;}
.ls8{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.544000pt;}
.ls15{letter-spacing:4.112000pt;}
.ls1c{letter-spacing:11.653547pt;}
.ls1a{letter-spacing:11.791360pt;}
.lsa{letter-spacing:36.143360pt;}
.ls17{letter-spacing:48.271360pt;}
.ws5{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.167360pt;}
.wsb{word-spacing:-52.889067pt;}
.wsd{word-spacing:-19.040000pt;}
.ws14{word-spacing:-18.753280pt;}
.ws13{word-spacing:-18.720000pt;}
.ws15{word-spacing:-18.686720pt;}
.ws10{word-spacing:-16.601707pt;}
.ws11{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.271573pt;}
.ws8{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.961707pt;}
.ws12{word-spacing:-15.456640pt;}
.ws1{word-spacing:-15.311360pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws3{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.607680pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-2.266027pt;}
._1{margin-left:-0.931413pt;}
._0{width:1.355520pt;}
._b{width:2.634453pt;}
._d{width:3.559040pt;}
._8{width:4.515200pt;}
._f{width:5.816533pt;}
._e{width:6.799360pt;}
._10{width:7.993813pt;}
._1f{width:8.985600pt;}
._9{width:9.933440pt;}
._a{width:10.862080pt;}
._14{width:12.570880pt;}
._19{width:14.106880pt;}
._16{width:15.276800pt;}
._11{width:17.476480pt;}
._2{width:18.804480pt;}
._15{width:19.953920pt;}
._1a{width:21.133653pt;}
._1d{width:22.363733pt;}
._1e{width:23.276800pt;}
._c{width:24.581120pt;}
._4{width:25.754027pt;}
._3{width:26.878720pt;}
._1b{width:28.655787pt;}
._13{width:29.557760pt;}
._12{width:30.528427pt;}
._22{width:31.725653pt;}
._21{width:32.785493pt;}
._20{width:33.935360pt;}
._17{width:36.387840pt;}
._18{width:37.730133pt;}
._1c{width:46.666240pt;}
._7{width:71.986773pt;}
._5{width:969.253120pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y5{bottom:14.400000pt;}
.y4{bottom:26.720000pt;}
.y3a{bottom:64.352000pt;}
.yc{bottom:73.472000pt;}
.y39{bottom:80.832000pt;}
.yb{bottom:91.072000pt;}
.y38{bottom:94.592000pt;}
.y37{bottom:108.512000pt;}
.ya{bottom:108.832000pt;}
.y5e{bottom:128.352000pt;}
.y81{bottom:130.592000pt;}
.y9{bottom:134.426667pt;}
.y9f{bottom:137.786667pt;}
.yd2{bottom:139.546667pt;}
.yb5{bottom:141.306667pt;}
.y8{bottom:149.786667pt;}
.y5d{bottom:153.786667pt;}
.ye6{bottom:154.586667pt;}
.y80{bottom:155.866667pt;}
.y9e{bottom:163.066667pt;}
.y7{bottom:164.506667pt;}
.yd1{bottom:164.826667pt;}
.yf8{bottom:165.786667pt;}
.yb4{bottom:166.586667pt;}
.y3{bottom:175.226667pt;}
.y5c{bottom:179.066667pt;}
.y13e{bottom:179.226667pt;}
.ye5{bottom:179.866667pt;}
.y7f{bottom:181.146667pt;}
.y113{bottom:185.146667pt;}
.y9d{bottom:188.346667pt;}
.yd0{bottom:190.106667pt;}
.yf7{bottom:191.066667pt;}
.yb3{bottom:192.026667pt;}
.y5b{bottom:204.346667pt;}
.ye4{bottom:205.146667pt;}
.y7e{bottom:206.426667pt;}
.y13d{bottom:210.426667pt;}
.y9c{bottom:213.786667pt;}
.ycf{bottom:215.386667pt;}
.yf6{bottom:216.346667pt;}
.y2f{bottom:220.346667pt;}
.y112{bottom:223.706667pt;}
.yb2{bottom:226.266667pt;}
.y13c{bottom:228.026667pt;}
.y5a{bottom:229.626667pt;}
.ye3{bottom:230.426667pt;}
.y7d{bottom:231.706667pt;}
.y2e{bottom:237.946667pt;}
.yf5{bottom:241.626667pt;}
.y13b{bottom:245.626667pt;}
.y9b{bottom:247.066667pt;}
.yce{bottom:248.666667pt;}
.y111{bottom:248.986667pt;}
.yb1{bottom:251.546667pt;}
.y59{bottom:254.906667pt;}
.y2d{bottom:255.546667pt;}
.ye2{bottom:255.706667pt;}
.y7c{bottom:256.986667pt;}
.y13a{bottom:263.226667pt;}
.yf4{bottom:266.906667pt;}
.y126{bottom:268.186667pt;}
.y9a{bottom:272.346667pt;}
.y2c{bottom:273.146667pt;}
.ycd{bottom:273.946667pt;}
.y110{bottom:274.266667pt;}
.yb0{bottom:276.826667pt;}
.ye1{bottom:280.986667pt;}
.y7b{bottom:290.266667pt;}
.y2b{bottom:290.746667pt;}
.yf3{bottom:292.346667pt;}
.y125{bottom:293.466667pt;}
.y99{bottom:297.626667pt;}
.ycc{bottom:299.266667pt;}
.y10f{bottom:299.586667pt;}
.y58{bottom:302.146667pt;}
.y139{bottom:303.906667pt;}
.y2a{bottom:308.546667pt;}
.yaf{bottom:311.106667pt;}
.ye0{bottom:314.306667pt;}
.y7a{bottom:315.746667pt;}
.y124{bottom:318.786667pt;}
.y98{bottom:322.946667pt;}
.ycb{bottom:324.706667pt;}
.yf2{bottom:325.666667pt;}
.y29{bottom:326.146667pt;}
.y138{bottom:330.786667pt;}
.yae{bottom:336.546667pt;}
.ydf{bottom:339.746667pt;}
.y79{bottom:341.026667pt;}
.y28{bottom:343.746667pt;}
.y10e{bottom:346.786667pt;}
.y97{bottom:348.226667pt;}
.y137{bottom:348.706667pt;}
.yca{bottom:349.986667pt;}
.yf1{bottom:350.946667pt;}
.y123{bottom:357.506667pt;}
.y57{bottom:358.306667pt;}
.y27{bottom:361.346667pt;}
.yad{bottom:361.826667pt;}
.yde{bottom:365.026667pt;}
.y78{bottom:366.306667pt;}
.y10d{bottom:367.586667pt;}
.yc9{bottom:375.266667pt;}
.yf0{bottom:376.226667pt;}
.y56{bottom:378.626667pt;}
.y26{bottom:378.946667pt;}
.y96{bottom:381.506667pt;}
.y136{bottom:382.146667pt;}
.y122{bottom:382.786667pt;}
.yac{bottom:387.106667pt;}
.ydd{bottom:390.306667pt;}
.y77{bottom:391.586667pt;}
.y25{bottom:396.226667pt;}
.yc8{bottom:400.546667pt;}
.yef{bottom:401.506667pt;}
.y10c{bottom:402.146667pt;}
.y55{bottom:402.626667pt;}
.y95{bottom:406.786667pt;}
.y24{bottom:412.066667pt;}
.yab{bottom:412.386667pt;}
.y135{bottom:415.426667pt;}
.y121{bottom:421.346667pt;}
.y10b{bottom:422.626667pt;}
.ydc{bottom:423.586667pt;}
.y76{bottom:424.866667pt;}
.y23{bottom:425.826667pt;}
.yee{bottom:426.786667pt;}
.y54{bottom:429.026667pt;}
.y94{bottom:432.066667pt;}
.yaa{bottom:437.666667pt;}
.y10a{bottom:443.266667pt;}
.y22{bottom:447.746667pt;}
.ydb{bottom:448.866667pt;}
.y75{bottom:450.146667pt;}
.yc7{bottom:451.106667pt;}
.yed{bottom:452.066667pt;}
.y53{bottom:454.466667pt;}
.y93{bottom:457.506667pt;}
.y120{bottom:460.066667pt;}
.y109{bottom:463.746667pt;}
.y52{bottom:469.826667pt;}
.ya8{bottom:470.946667pt;}
.yda{bottom:474.146667pt;}
.y74{bottom:475.426667pt;}
.ya9{bottom:476.226667pt;}
.yec{bottom:477.346667pt;}
.y134{bottom:482.146667pt;}
.y21{bottom:483.746667pt;}
.yc6{bottom:484.386667pt;}
.y51{bottom:485.186667pt;}
.y11f{bottom:485.346667pt;}
.y92{bottom:490.786667pt;}
.ya7{bottom:496.226667pt;}
.yd9{bottom:499.426667pt;}
.y73{bottom:500.706667pt;}
.yeb{bottom:502.626667pt;}
.y20{bottom:506.626667pt;}
.yc5{bottom:509.666667pt;}
.y11e{bottom:510.626667pt;}
.y91{bottom:516.066667pt;}
.y50{bottom:516.546667pt;}
.y108{bottom:517.826667pt;}
.y133{bottom:520.706667pt;}
.ya6{bottom:521.506667pt;}
.yd8{bottom:524.706667pt;}
.y1f{bottom:529.666667pt;}
.y4f{bottom:531.906667pt;}
.yc4{bottom:534.946667pt;}
.y11d{bottom:535.906667pt;}
.y90{bottom:541.373333pt;}
.y72{bottom:542.013333pt;}
.y1e{bottom:545.213333pt;}
.y132{bottom:546.013333pt;}
.y4e{bottom:547.293333pt;}
.y107{bottom:551.133333pt;}
.yd7{bottom:558.013333pt;}
.yc3{bottom:560.413333pt;}
.y4d{bottom:562.493333pt;}
.yea{bottom:566.653333pt;}
.y71{bottom:567.453333pt;}
.y1d{bottom:569.853333pt;}
.ya5{bottom:574.173333pt;}
.y8f{bottom:574.653333pt;}
.y106{bottom:576.413333pt;}
.y4c{bottom:577.853333pt;}
.yd6{bottom:583.453333pt;}
.y131{bottom:584.733333pt;}
.y1c{bottom:591.933333pt;}
.y70{bottom:592.733333pt;}
.y4b{bottom:593.213333pt;}
.yc2{bottom:593.693333pt;}
.y8e{bottom:599.933333pt;}
.y105{bottom:601.853333pt;}
.ya4{bottom:606.333333pt;}
.y4a{bottom:608.573333pt;}
.yd5{bottom:608.733333pt;}
.y130{bottom:610.013333pt;}
.y11c{bottom:613.213333pt;}
.ye9{bottom:617.213333pt;}
.y1b{bottom:617.693333pt;}
.y6f{bottom:618.013333pt;}
.yc1{bottom:618.973333pt;}
.y49{bottom:623.933333pt;}
.y8d{bottom:625.213333pt;}
.y104{bottom:627.133333pt;}
.yd4{bottom:634.013333pt;}
.ye8{bottom:642.493333pt;}
.y6e{bottom:643.293333pt;}
.yc0{bottom:644.253333pt;}
.y12f{bottom:648.573333pt;}
.y1a{bottom:648.733333pt;}
.y8c{bottom:650.493333pt;}
.y11b{bottom:651.773333pt;}
.y103{bottom:652.413333pt;}
.y48{bottom:655.133333pt;}
.ya3{bottom:659.293333pt;}
.ybf{bottom:669.533333pt;}
.y12e{bottom:673.853333pt;}
.ye7{bottom:675.773333pt;}
.y6d{bottom:676.573333pt;}
.y11a{bottom:677.213333pt;}
.y19{bottom:677.693333pt;}
.y8b{bottom:683.773333pt;}
.ya2{bottom:684.573333pt;}
.y47{bottom:686.493333pt;}
.y12d{bottom:699.133333pt;}
.y6c{bottom:701.853333pt;}
.ybe{bottom:702.813333pt;}
.y18{bottom:705.373333pt;}
.y8a{bottom:709.213333pt;}
.ya1{bottom:709.853333pt;}
.y102{bottom:710.973333pt;}
.y119{bottom:715.773333pt;}
.y46{bottom:717.853333pt;}
.y12c{bottom:724.573333pt;}
.ybd{bottom:728.093333pt;}
.y17{bottom:732.893333pt;}
.y89{bottom:734.493333pt;}
.yd3{bottom:735.133333pt;}
.y101{bottom:736.253333pt;}
.y118{bottom:741.053333pt;}
.y6b{bottom:743.133333pt;}
.y45{bottom:749.213333pt;}
.y12b{bottom:749.853333pt;}
.ybc{bottom:753.373333pt;}
.y88{bottom:759.773333pt;}
.y16{bottom:760.573333pt;}
.y100{bottom:761.533333pt;}
.y44{bottom:764.573333pt;}
.y117{bottom:766.333333pt;}
.y6a{bottom:768.413333pt;}
.y12a{bottom:775.173333pt;}
.y43{bottom:779.973333pt;}
.y87{bottom:785.093333pt;}
.yff{bottom:786.853333pt;}
.y15{bottom:788.133333pt;}
.y116{bottom:791.653333pt;}
.ybb{bottom:792.133333pt;}
.y69{bottom:793.733333pt;}
.y42{bottom:795.333333pt;}
.y41{bottom:810.533333pt;}
.yfe{bottom:812.133333pt;}
.y129{bottom:813.733333pt;}
.y14{bottom:815.813333pt;}
.yba{bottom:817.413333pt;}
.y86{bottom:818.373333pt;}
.y68{bottom:819.173333pt;}
.y40{bottom:825.893333pt;}
.y115{bottom:830.373333pt;}
.yfd{bottom:837.573333pt;}
.y128{bottom:839.013333pt;}
.y3f{bottom:841.253333pt;}
.yb9{bottom:842.693333pt;}
.y13{bottom:843.333333pt;}
.y85{bottom:843.653333pt;}
.y67{bottom:844.453333pt;}
.y114{bottom:855.653333pt;}
.y3e{bottom:856.613333pt;}
.yfc{bottom:862.853333pt;}
.y127{bottom:864.293333pt;}
.yb8{bottom:867.973333pt;}
.y84{bottom:868.933333pt;}
.y66{bottom:869.733333pt;}
.y12{bottom:871.013333pt;}
.y3d{bottom:871.973333pt;}
.yfb{bottom:888.133333pt;}
.y11{bottom:889.413333pt;}
.y3c{bottom:889.573333pt;}
.yb7{bottom:893.253333pt;}
.y83{bottom:894.213333pt;}
.y65{bottom:895.013333pt;}
.ya0{bottom:903.013333pt;}
.yfa{bottom:913.413333pt;}
.y10{bottom:916.933333pt;}
.yb6{bottom:918.533333pt;}
.y82{bottom:919.493333pt;}
.y3b{bottom:920.773333pt;}
.y64{bottom:928.293333pt;}
.y36{bottom:939.973333pt;}
.yf{bottom:946.533333pt;}
.yf9{bottom:949.893333pt;}
.y63{bottom:953.573333pt;}
.y35{bottom:960.613333pt;}
.ye{bottom:967.013333pt;}
.y62{bottom:971.333333pt;}
.y34{bottom:981.253333pt;}
.yd{bottom:987.653333pt;}
.y61{bottom:989.253333pt;}
.y33{bottom:1001.733333pt;}
.y60{bottom:1007.173333pt;}
.y32{bottom:1022.400000pt;}
.y5f{bottom:1025.120000pt;}
.y31{bottom:1043.040000pt;}
.y2{bottom:1043.520000pt;}
.y30{bottom:1060.480000pt;}
.y1{bottom:1061.440000pt;}
.h16{height:34.374375pt;}
.h3{height:36.800000pt;}
.h15{height:38.715000pt;}
.he{height:39.402500pt;}
.h5{height:44.722500pt;}
.h10{height:47.085938pt;}
.hf{height:50.062500pt;}
.h14{height:52.785000pt;}
.h17{height:52.834688pt;}
.h6{height:53.535000pt;}
.h4{height:55.402500pt;}
.h2{height:58.563750pt;}
.hd{height:58.740000pt;}
.hc{height:61.410000pt;}
.h9{height:62.781250pt;}
.h8{height:62.812500pt;}
.h11{height:63.656250pt;}
.h7{height:64.500000pt;}
.h12{height:66.750000pt;}
.ha{height:72.090000pt;}
.h13{height:75.465000pt;}
.hb{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:593.213333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x17{left:87.711988pt;}
.x2{left:89.952000pt;}
.x1{left:97.151988pt;}
.x19{left:121.151988pt;}
.x8{left:126.111988pt;}
.x1a{left:129.951988pt;}
.x15{left:134.906655pt;}
.x12{left:144.346655pt;}
.xf{left:151.386655pt;}
.x5{left:153.946655pt;}
.xb{left:155.546655pt;}
.x16{left:158.746655pt;}
.x9{left:220.026655pt;}
.xc{left:241.786655pt;}
.x11{left:247.266655pt;}
.x18{left:289.186655pt;}
.xd{left:320.226655pt;}
.x6{left:335.106655pt;}
.x7{left:379.426655pt;}
.xe{left:384.066655pt;}
.x10{left:394.626655pt;}
.xa{left:398.306655pt;}
.x13{left:579.133310pt;}
.x14{left:584.293322pt;}
.x4{left:671.173322pt;}
}




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