
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_2d642aefa32f09cff395379a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c30b4778b8ce8ec1282d4ec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8df5d159087be1cbd743a05f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b6aad61d916113d34245811.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8a1279cc95dab2fd7a906994.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1cbaad1071ee13a5cc17c588.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9ed6703d981851070e41bbfa.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m6{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:48.240000px;}
.lsb{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-1.698000px;}
.ls13{letter-spacing:-1.386000px;}
.ls11{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.924000px;}
.ls20{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls28{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.163800px;}
.ls5{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.562800px;}
.lsf{letter-spacing:0.582600px;}
.ls25{letter-spacing:0.900000px;}
.ls27{letter-spacing:2.340000px;}
.ls21{letter-spacing:9.540000px;}
.ls1a{letter-spacing:10.980000px;}
.ls1d{letter-spacing:11.700000px;}
.ls1c{letter-spacing:12.420000px;}
.ls18{letter-spacing:16.740000px;}
.ls1e{letter-spacing:21.060000px;}
.ls16{letter-spacing:21.780000px;}
.ls17{letter-spacing:24.660000px;}
.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;}
}
.ws18{word-spacing:-33.704640px;}
.ws3{word-spacing:-24.300000px;}
.ws4{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.146400px;}
.ws19{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.733600px;}
.ws13{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.328000px;}
.ws16{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.554000px;}
.ws14{word-spacing:-13.242000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._1c{margin-left:-5.160720px;}
._18{margin-left:-3.279600px;}
._12{margin-left:-2.168880px;}
._0{margin-left:-1.080000px;}
._11{width:1.085520px;}
._1{width:2.220000px;}
._15{width:3.256560px;}
._14{width:5.147280px;}
._13{width:6.390720px;}
._17{width:7.523520px;}
._1b{width:8.831040px;}
._6{width:10.800000px;}
._16{width:11.898960px;}
._19{width:13.505760px;}
._1d{width:15.946080px;}
._1a{width:17.031600px;}
._f{width:18.948000px;}
._36{width:20.617200px;}
._3a{width:21.742800px;}
._3e{width:23.953920px;}
._25{width:25.764240px;}
._2b{width:27.360240px;}
._46{width:29.162880px;}
._3b{width:30.288480px;}
._5e{width:31.394400px;}
._30{width:32.497440px;}
._27{width:33.537360px;}
._3d{width:35.547360px;}
._2a{width:36.632880px;}
._50{width:37.808400px;}
._32{width:39.013440px;}
._4d{width:43.086960px;}
._29{width:44.999280px;}
._28{width:46.134720px;}
._42{width:47.150640px;}
._37{width:48.584880px;}
._45{width:50.676480px;}
._22{width:52.233120px;}
._39{width:54.441360px;}
._38{width:55.756080px;}
._51{width:56.891520px;}
._41{width:59.033040px;}
._5f{width:61.040160px;}
._59{width:62.170080px;}
._43{width:63.276000px;}
._4f{width:64.762080px;}
._4c{width:66.220800px;}
._31{width:67.588560px;}
._3c{width:68.714160px;}
._4b{width:70.506960px;}
._4e{width:72.966960px;}
._56{width:74.233440px;}
._7{width:76.284960px;}
._26{width:80.026560px;}
._48{width:83.424960px;}
._2e{width:84.968880px;}
._2f{width:87.070320px;}
._52{width:89.640000px;}
._53{width:92.902080px;}
._5b{width:96.049920px;}
._2d{width:97.279440px;}
._2c{width:98.604000px;}
._49{width:100.327200px;}
._40{width:103.444560px;}
._3f{width:104.699520px;}
._24{width:106.910640px;}
._20{width:117.055920px;}
._21{width:118.982160px;}
._54{width:129.870000px;}
._10{width:132.780000px;}
._35{width:136.790640px;}
._57{width:139.993200px;}
._44{width:142.163520px;}
._4a{width:146.880240px;}
._34{width:147.960000px;}
._55{width:150.739920px;}
._8{width:154.080000px;}
._5c{width:162.653280px;}
._33{width:163.667040px;}
._1f{width:167.400000px;}
._5d{width:174.678480px;}
._1e{width:186.015360px;}
._58{width:187.885440px;}
._5a{width:190.166640px;}
._47{width:191.327760px;}
._c{width:195.240000px;}
._e{width:199.584000px;}
._23{width:203.004720px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.174560px;}
._5{width:436.320000px;}
._9{width:604.364160px;}
._d{width:637.380000px;}
._a{width:1097.040000px;}
._b{width:1176.060000px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y11{bottom:5.760000px;}
.yaf{bottom:5.940000px;}
.y10d{bottom:11.700000px;}
.y8{bottom:12.420000px;}
.y10f{bottom:16.020000px;}
.y113{bottom:16.200000px;}
.y111{bottom:16.245000px;}
.ya{bottom:18.180000px;}
.yc3{bottom:25.560000px;}
.ydd{bottom:25.590000px;}
.yae{bottom:25.740000px;}
.yeb{bottom:25.785000px;}
.y9f{bottom:31.005000px;}
.yf{bottom:36.000000px;}
.y7{bottom:40.320000px;}
.yd0{bottom:43.770000px;}
.yc2{bottom:45.360000px;}
.yad{bottom:45.540000px;}
.ydc{bottom:45.570000px;}
.yea{bottom:45.585000px;}
.ye{bottom:57.780000px;}
.ycf{bottom:63.570000px;}
.yac{bottom:65.340000px;}
.ydb{bottom:65.370000px;}
.ye9{bottom:65.385000px;}
.y6{bottom:68.400000px;}
.y1{bottom:72.540000px;}
.y10{bottom:75.960000px;}
.yd{bottom:79.560000px;}
.yce{bottom:83.370000px;}
.yab{bottom:85.140000px;}
.yda{bottom:85.170000px;}
.ye8{bottom:85.185000px;}
.y5{bottom:96.330000px;}
.y137{bottom:102.240000px;}
.ycd{bottom:103.170000px;}
.yb8{bottom:104.940000px;}
.yd9{bottom:104.970000px;}
.yaa{bottom:105.150000px;}
.ye7{bottom:105.165000px;}
.yec{bottom:105.660000px;}
.y3d{bottom:108.180000px;}
.y6c{bottom:113.760000px;}
.y13b{bottom:115.200000px;}
.y85{bottom:115.560000px;}
.y10b{bottom:116.640000px;}
.ya0{bottom:120.780000px;}
.y136{bottom:122.220000px;}
.ycc{bottom:122.970000px;}
.yc1{bottom:124.740000px;}
.yd8{bottom:124.770000px;}
.yb7{bottom:124.920000px;}
.ya9{bottom:124.950000px;}
.ye6{bottom:124.965000px;}
.y4{bottom:125.670000px;}
.y3c{bottom:127.980000px;}
.y6b{bottom:133.560000px;}
.y13a{bottom:134.100000px;}
.y84{bottom:135.360000px;}
.y10a{bottom:136.440000px;}
.y135{bottom:142.020000px;}
.ycb{bottom:142.950000px;}
.yc0{bottom:144.540000px;}
.yd3{bottom:144.720000px;}
.ya8{bottom:144.750000px;}
.yb6{bottom:144.765000px;}
.y3b{bottom:147.960000px;}
.y139{bottom:152.820000px;}
.y6a{bottom:153.360000px;}
.y83{bottom:155.160000px;}
.y109{bottom:156.240000px;}
.y134{bottom:161.820000px;}
.yca{bottom:162.750000px;}
.ybf{bottom:164.520000px;}
.ya7{bottom:164.550000px;}
.yb5{bottom:164.565000px;}
.y3a{bottom:167.760000px;}
.y138{bottom:171.540000px;}
.y69{bottom:173.160000px;}
.y82{bottom:175.140000px;}
.y108{bottom:176.040000px;}
.y133{bottom:181.620000px;}
.yc9{bottom:182.550000px;}
.ybe{bottom:184.320000px;}
.ya6{bottom:184.350000px;}
.yb4{bottom:184.365000px;}
.yd4{bottom:185.040000px;}
.yc4{bottom:186.840000px;}
.y39{bottom:187.560000px;}
.y68{bottom:193.140000px;}
.y81{bottom:194.940000px;}
.y107{bottom:196.020000px;}
.y132{bottom:201.420000px;}
.yc8{bottom:202.350000px;}
.ybd{bottom:204.120000px;}
.yd2{bottom:204.150000px;}
.yb3{bottom:204.165000px;}
.ya5{bottom:204.330000px;}
.ye5{bottom:204.345000px;}
.y38{bottom:207.360000px;}
.y67{bottom:212.970000px;}
.y80{bottom:214.770000px;}
.y106{bottom:215.850000px;}
.y131{bottom:221.430000px;}
.yc7{bottom:222.150000px;}
.ybc{bottom:223.950000px;}
.ye2{bottom:223.965000px;}
.ya4{bottom:224.130000px;}
.yb2{bottom:224.145000px;}
.y37{bottom:227.190000px;}
.y66{bottom:232.770000px;}
.y7f{bottom:234.570000px;}
.y105{bottom:235.650000px;}
.y130{bottom:241.230000px;}
.yc6{bottom:242.130000px;}
.ybb{bottom:243.750000px;}
.ye1{bottom:243.765000px;}
.ya3{bottom:243.930000px;}
.yb1{bottom:243.945000px;}
.y36{bottom:247.170000px;}
.y65{bottom:252.570000px;}
.y9d{bottom:254.370000px;}
.y104{bottom:255.450000px;}
.y12f{bottom:261.030000px;}
.yc5{bottom:261.975000px;}
.y7e{bottom:263.370000px;}
.ya2{bottom:263.730000px;}
.ye0{bottom:263.745000px;}
.yd7{bottom:263.775000px;}
.y35{bottom:266.970000px;}
.y64{bottom:272.370000px;}
.y9c{bottom:274.350000px;}
.y103{bottom:275.250000px;}
.y12e{bottom:280.830000px;}
.y7d{bottom:283.350000px;}
.ya1{bottom:283.530000px;}
.ydf{bottom:283.545000px;}
.yd6{bottom:283.575000px;}
.y34{bottom:286.770000px;}
.y63{bottom:292.350000px;}
.y9b{bottom:294.150000px;}
.y102{bottom:296.310000px;}
.y12d{bottom:300.630000px;}
.y7c{bottom:303.150000px;}
.yba{bottom:303.330000px;}
.yd5{bottom:303.375000px;}
.ye4{bottom:303.555000px;}
.y33{bottom:306.570000px;}
.y62{bottom:312.150000px;}
.y9a{bottom:313.950000px;}
.y101{bottom:317.190000px;}
.y7b{bottom:322.950000px;}
.y32{bottom:326.370000px;}
.y12c{bottom:329.610000px;}
.y61{bottom:331.950000px;}
.y99{bottom:333.750000px;}
.y100{bottom:338.070000px;}
.y7a{bottom:342.750000px;}
.y31{bottom:346.350000px;}
.y12b{bottom:349.410000px;}
.y60{bottom:351.750000px;}
.y98{bottom:353.550000px;}
.yff{bottom:357.870000px;}
.y79{bottom:362.550000px;}
.y30{bottom:366.150000px;}
.y12a{bottom:369.210000px;}
.y5f{bottom:371.550000px;}
.y97{bottom:373.530000px;}
.yfe{bottom:378.750000px;}
.y78{bottom:382.530000px;}
.y2f{bottom:385.950000px;}
.y129{bottom:389.010000px;}
.y5e{bottom:391.530000px;}
.y96{bottom:393.330000px;}
.yfd{bottom:399.630000px;}
.y77{bottom:402.330000px;}
.y2e{bottom:405.750000px;}
.y128{bottom:408.810000px;}
.y5d{bottom:411.330000px;}
.y95{bottom:413.130000px;}
.y9e{bottom:419.250000px;}
.yfc{bottom:420.690000px;}
.y76{bottom:422.130000px;}
.ye3{bottom:423.750000px;}
.y2d{bottom:425.550000px;}
.y127{bottom:429.870000px;}
.y5c{bottom:431.130000px;}
.y94{bottom:432.930000px;}
.yfb{bottom:440.490000px;}
.y75{bottom:441.930000px;}
.y2c{bottom:445.575000px;}
.y126{bottom:450.795000px;}
.y5b{bottom:450.975000px;}
.y93{bottom:452.775000px;}
.yfa{bottom:460.335000px;}
.y74{bottom:461.775000px;}
.yb9{bottom:463.575000px;}
.y2b{bottom:465.375000px;}
.y5a{bottom:470.775000px;}
.y125{bottom:471.675000px;}
.y92{bottom:472.755000px;}
.y73{bottom:481.755000px;}
.y2a{bottom:485.175000px;}
.yf9{bottom:489.135000px;}
.y59{bottom:490.755000px;}
.y124{bottom:491.475000px;}
.y72{bottom:501.555000px;}
.yd1{bottom:503.175000px;}
.y29{bottom:504.975000px;}
.yf8{bottom:508.935000px;}
.y58{bottom:510.555000px;}
.y123{bottom:512.355000px;}
.y71{bottom:521.355000px;}
.y28{bottom:524.775000px;}
.yf7{bottom:528.915000px;}
.y57{bottom:530.355000px;}
.y122{bottom:533.235000px;}
.y70{bottom:541.155000px;}
.y27{bottom:544.755000px;}
.yf6{bottom:548.715000px;}
.y56{bottom:550.155000px;}
.y121{bottom:554.295000px;}
.y6f{bottom:560.955000px;}
.y26{bottom:564.555000px;}
.yf5{bottom:568.515000px;}
.y55{bottom:569.955000px;}
.y120{bottom:575.175000px;}
.y6e{bottom:580.935000px;}
.y25{bottom:584.355000px;}
.yf4{bottom:588.315000px;}
.y54{bottom:589.935000px;}
.y11f{bottom:594.975000px;}
.y6d{bottom:600.735000px;}
.y24{bottom:604.155000px;}
.yf3{bottom:608.115000px;}
.y53{bottom:609.735000px;}
.y11e{bottom:614.775000px;}
.y91{bottom:620.535000px;}
.y23{bottom:623.955000px;}
.yf2{bottom:628.095000px;}
.y52{bottom:629.535000px;}
.y11d{bottom:634.575000px;}
.y90{bottom:640.335000px;}
.y22{bottom:643.935000px;}
.yf1{bottom:647.895000px;}
.y51{bottom:649.335000px;}
.y11c{bottom:654.555000px;}
.y8f{bottom:660.135000px;}
.y21{bottom:663.735000px;}
.yf0{bottom:667.695000px;}
.y50{bottom:669.135000px;}
.y8e{bottom:680.115000px;}
.y11b{bottom:683.385000px;}
.y20{bottom:683.565000px;}
.yef{bottom:687.525000px;}
.y4f{bottom:689.145000px;}
.y8d{bottom:699.945000px;}
.y11a{bottom:703.185000px;}
.y1f{bottom:703.365000px;}
.yee{bottom:707.325000px;}
.y4e{bottom:708.945000px;}
.y8c{bottom:719.745000px;}
.y119{bottom:722.985000px;}
.y1e{bottom:723.165000px;}
.yed{bottom:727.305000px;}
.y4d{bottom:728.745000px;}
.y8b{bottom:739.545000px;}
.yde{bottom:742.065000px;}
.y118{bottom:742.785000px;}
.y1d{bottom:743.145000px;}
.y4c{bottom:748.545000px;}
.y117{bottom:757.725000px;}
.y8a{bottom:759.345000px;}
.y1c{bottom:762.945000px;}
.y4b{bottom:768.345000px;}
.y89{bottom:779.325000px;}
.yb0{bottom:781.665000px;}
.y1b{bottom:782.745000px;}
.y4a{bottom:788.325000px;}
.y116{bottom:788.505000px;}
.y88{bottom:799.125000px;}
.y1a{bottom:802.545000px;}
.y49{bottom:808.125000px;}
.y87{bottom:818.925000px;}
.y115{bottom:819.465000px;}
.y19{bottom:822.345000px;}
.y48{bottom:827.925000px;}
.y86{bottom:838.725000px;}
.y18{bottom:844.845000px;}
.y47{bottom:847.725000px;}
.y114{bottom:850.425000px;}
.y17{bottom:860.145000px;}
.y46{bottom:867.525000px;}
.y112{bottom:881.205000px;}
.y16{bottom:881.385000px;}
.y45{bottom:887.505000px;}
.y15{bottom:904.785000px;}
.y44{bottom:907.305000px;}
.y110{bottom:912.165000px;}
.y43{bottom:927.150000px;}
.y14{bottom:936.510000px;}
.y10e{bottom:943.170000px;}
.y42{bottom:946.950000px;}
.y41{bottom:966.750000px;}
.y13{bottom:968.370000px;}
.y10c{bottom:974.130000px;}
.y40{bottom:986.730000px;}
.y12{bottom:1000.050000px;}
.y3f{bottom:1006.530000px;}
.y3e{bottom:1026.330000px;}
.yc{bottom:1040.550000px;}
.yb{bottom:1045.950000px;}
.y3{bottom:1062.330000px;}
.y9{bottom:1096.530000px;}
.h8{height:2.010938px;}
.h2{height:18.000000px;}
.hd{height:21.240000px;}
.h1e{height:25.740000px;}
.h11{height:27.147656px;}
.h1f{height:30.060000px;}
.h21{height:30.240000px;}
.h20{height:30.276000px;}
.h9{height:33.480000px;}
.h1d{height:41.493516px;}
.hb{height:41.726953px;}
.h12{height:42.164648px;}
.h14{height:43.506914px;}
.h15{height:45.036000px;}
.h13{height:45.549492px;}
.h22{height:46.159453px;}
.he{height:46.251562px;}
.h6{height:46.736719px;}
.hc{height:53.224453px;}
.h3{height:59.439023px;}
.h5{height:63.500977px;}
.ha{height:65.884219px;}
.hf{height:67.565039px;}
.h10{height:77.704453px;}
.h7{height:112.536000px;}
.h4{height:146.736000px;}
.h17{height:257.970000px;}
.h19{height:276.015000px;}
.h1a{height:277.770000px;}
.h16{height:297.570000px;}
.h18{height:317.370000px;}
.h1b{height:317.415000px;}
.h1c{height:317.595000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:9.900000px;}
.w2{width:21.240000px;}
.w7{width:39.816000px;}
.w9{width:84.636000px;}
.wb{width:110.376000px;}
.wa{width:119.160000px;}
.w4{width:130.896000px;}
.wf{width:141.156000px;}
.w8{width:221.250000px;}
.wc{width:228.450000px;}
.wd{width:253.830000px;}
.we{width:291.495000px;}
.w3{width:649.410000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x13{left:-13.680000px;}
.x0{left:0.000000px;}
.x2{left:4.500000px;}
.x4{left:8.100000px;}
.x17{left:43.199987px;}
.x1{left:49.500000px;}
.x7{left:53.999987px;}
.x3{left:56.520000px;}
.xa{left:58.859987px;}
.x1d{left:60.839987px;}
.xb{left:63.899987px;}
.x10{left:68.399987px;}
.x1e{left:69.479987px;}
.x11{left:75.239987px;}
.x1c{left:81.035987px;}
.x18{left:86.075987px;}
.x1f{left:88.055987px;}
.x9{left:92.735987px;}
.xf{left:96.515987px;}
.x19{left:104.256000px;}
.x6{left:118.290000px;}
.xd{left:261.974987px;}
.x12{left:318.495000px;}
.x1a{left:358.815000px;}
.xe{left:375.554987px;}
.x14{left:403.845000px;}
.xc{left:446.684987px;}
.x15{left:523.725000px;}
.x16{left:634.830000px;}
.x1b{left:651.030000px;}
.x5{left:705.930000px;}
.x8{left:829.620000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:42.880000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-1.509333pt;}
.ls13{letter-spacing:-1.232000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls20{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.145600pt;}
.ls5{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.500267pt;}
.lsf{letter-spacing:0.517867pt;}
.ls25{letter-spacing:0.800000pt;}
.ls27{letter-spacing:2.080000pt;}
.ls21{letter-spacing:8.480000pt;}
.ls1a{letter-spacing:9.760000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls1c{letter-spacing:11.040000pt;}
.ls18{letter-spacing:14.880000pt;}
.ls1e{letter-spacing:18.720000pt;}
.ls16{letter-spacing:19.360000pt;}
.ls17{letter-spacing:21.920000pt;}
.ws18{word-spacing:-29.959680pt;}
.ws3{word-spacing:-21.600000pt;}
.ws4{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws19{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.096533pt;}
.ws13{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.736000pt;}
.ws16{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.048000pt;}
.ws14{word-spacing:-11.770667pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._1c{margin-left:-4.587307pt;}
._18{margin-left:-2.915200pt;}
._12{margin-left:-1.927893pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.964907pt;}
._1{width:1.973333pt;}
._15{width:2.894720pt;}
._14{width:4.575360pt;}
._13{width:5.680640pt;}
._17{width:6.687573pt;}
._1b{width:7.849813pt;}
._6{width:9.600000pt;}
._16{width:10.576853pt;}
._19{width:12.005120pt;}
._1d{width:14.174293pt;}
._1a{width:15.139200pt;}
._f{width:16.842667pt;}
._36{width:18.326400pt;}
._3a{width:19.326933pt;}
._3e{width:21.292373pt;}
._25{width:22.901547pt;}
._2b{width:24.320213pt;}
._46{width:25.922560pt;}
._3b{width:26.923093pt;}
._5e{width:27.906133pt;}
._30{width:28.886613pt;}
._27{width:29.810987pt;}
._3d{width:31.597653pt;}
._2a{width:32.562560pt;}
._50{width:33.607467pt;}
._32{width:34.678613pt;}
._4d{width:38.299520pt;}
._29{width:39.999360pt;}
._28{width:41.008640pt;}
._42{width:41.911680pt;}
._37{width:43.186560pt;}
._45{width:45.045760pt;}
._22{width:46.429440pt;}
._39{width:48.392320pt;}
._38{width:49.560960pt;}
._51{width:50.570240pt;}
._41{width:52.473813pt;}
._5f{width:54.257920pt;}
._59{width:55.262293pt;}
._43{width:56.245333pt;}
._4f{width:57.566293pt;}
._4c{width:58.862933pt;}
._31{width:60.078720pt;}
._3c{width:61.079253pt;}
._4b{width:62.672853pt;}
._4e{width:64.859520pt;}
._56{width:65.985280pt;}
._7{width:67.808853pt;}
._26{width:71.134720pt;}
._48{width:74.155520pt;}
._2e{width:75.527893pt;}
._2f{width:77.395840pt;}
._52{width:79.680000pt;}
._53{width:82.579627pt;}
._5b{width:85.377707pt;}
._2d{width:86.470613pt;}
._2c{width:87.648000pt;}
._49{width:89.179733pt;}
._40{width:91.950720pt;}
._3f{width:93.066240pt;}
._24{width:95.031680pt;}
._20{width:104.049707pt;}
._21{width:105.761920pt;}
._54{width:115.440000pt;}
._10{width:118.026667pt;}
._35{width:121.591680pt;}
._57{width:124.438400pt;}
._44{width:126.367573pt;}
._4a{width:130.560213pt;}
._34{width:131.520000pt;}
._55{width:133.991040pt;}
._8{width:136.960000pt;}
._5c{width:144.580693pt;}
._33{width:145.481813pt;}
._1f{width:148.800000pt;}
._5d{width:155.269760pt;}
._1e{width:165.346987pt;}
._58{width:167.009280pt;}
._5a{width:169.037013pt;}
._47{width:170.069120pt;}
._c{width:173.546667pt;}
._e{width:177.408000pt;}
._23{width:180.448640pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:345.044053pt;}
._5{width:387.840000pt;}
._9{width:537.212587pt;}
._d{width:566.560000pt;}
._a{width:975.146667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y11{bottom:5.120000pt;}
.yaf{bottom:5.280000pt;}
.y10d{bottom:10.400000pt;}
.y8{bottom:11.040000pt;}
.y10f{bottom:14.240000pt;}
.y113{bottom:14.400000pt;}
.y111{bottom:14.440000pt;}
.ya{bottom:16.160000pt;}
.yc3{bottom:22.720000pt;}
.ydd{bottom:22.746667pt;}
.yae{bottom:22.880000pt;}
.yeb{bottom:22.920000pt;}
.y9f{bottom:27.560000pt;}
.yf{bottom:32.000000pt;}
.y7{bottom:35.840000pt;}
.yd0{bottom:38.906667pt;}
.yc2{bottom:40.320000pt;}
.yad{bottom:40.480000pt;}
.ydc{bottom:40.506667pt;}
.yea{bottom:40.520000pt;}
.ye{bottom:51.360000pt;}
.ycf{bottom:56.506667pt;}
.yac{bottom:58.080000pt;}
.ydb{bottom:58.106667pt;}
.ye9{bottom:58.120000pt;}
.y6{bottom:60.800000pt;}
.y1{bottom:64.480000pt;}
.y10{bottom:67.520000pt;}
.yd{bottom:70.720000pt;}
.yce{bottom:74.106667pt;}
.yab{bottom:75.680000pt;}
.yda{bottom:75.706667pt;}
.ye8{bottom:75.720000pt;}
.y5{bottom:85.626667pt;}
.y137{bottom:90.880000pt;}
.ycd{bottom:91.706667pt;}
.yb8{bottom:93.280000pt;}
.yd9{bottom:93.306667pt;}
.yaa{bottom:93.466667pt;}
.ye7{bottom:93.480000pt;}
.yec{bottom:93.920000pt;}
.y3d{bottom:96.160000pt;}
.y6c{bottom:101.120000pt;}
.y13b{bottom:102.400000pt;}
.y85{bottom:102.720000pt;}
.y10b{bottom:103.680000pt;}
.ya0{bottom:107.360000pt;}
.y136{bottom:108.640000pt;}
.ycc{bottom:109.306667pt;}
.yc1{bottom:110.880000pt;}
.yd8{bottom:110.906667pt;}
.yb7{bottom:111.040000pt;}
.ya9{bottom:111.066667pt;}
.ye6{bottom:111.080000pt;}
.y4{bottom:111.706667pt;}
.y3c{bottom:113.760000pt;}
.y6b{bottom:118.720000pt;}
.y13a{bottom:119.200000pt;}
.y84{bottom:120.320000pt;}
.y10a{bottom:121.280000pt;}
.y135{bottom:126.240000pt;}
.ycb{bottom:127.066667pt;}
.yc0{bottom:128.480000pt;}
.yd3{bottom:128.640000pt;}
.ya8{bottom:128.666667pt;}
.yb6{bottom:128.680000pt;}
.y3b{bottom:131.520000pt;}
.y139{bottom:135.840000pt;}
.y6a{bottom:136.320000pt;}
.y83{bottom:137.920000pt;}
.y109{bottom:138.880000pt;}
.y134{bottom:143.840000pt;}
.yca{bottom:144.666667pt;}
.ybf{bottom:146.240000pt;}
.ya7{bottom:146.266667pt;}
.yb5{bottom:146.280000pt;}
.y3a{bottom:149.120000pt;}
.y138{bottom:152.480000pt;}
.y69{bottom:153.920000pt;}
.y82{bottom:155.680000pt;}
.y108{bottom:156.480000pt;}
.y133{bottom:161.440000pt;}
.yc9{bottom:162.266667pt;}
.ybe{bottom:163.840000pt;}
.ya6{bottom:163.866667pt;}
.yb4{bottom:163.880000pt;}
.yd4{bottom:164.480000pt;}
.yc4{bottom:166.080000pt;}
.y39{bottom:166.720000pt;}
.y68{bottom:171.680000pt;}
.y81{bottom:173.280000pt;}
.y107{bottom:174.240000pt;}
.y132{bottom:179.040000pt;}
.yc8{bottom:179.866667pt;}
.ybd{bottom:181.440000pt;}
.yd2{bottom:181.466667pt;}
.yb3{bottom:181.480000pt;}
.ya5{bottom:181.626667pt;}
.ye5{bottom:181.640000pt;}
.y38{bottom:184.320000pt;}
.y67{bottom:189.306667pt;}
.y80{bottom:190.906667pt;}
.y106{bottom:191.866667pt;}
.y131{bottom:196.826667pt;}
.yc7{bottom:197.466667pt;}
.ybc{bottom:199.066667pt;}
.ye2{bottom:199.080000pt;}
.ya4{bottom:199.226667pt;}
.yb2{bottom:199.240000pt;}
.y37{bottom:201.946667pt;}
.y66{bottom:206.906667pt;}
.y7f{bottom:208.506667pt;}
.y105{bottom:209.466667pt;}
.y130{bottom:214.426667pt;}
.yc6{bottom:215.226667pt;}
.ybb{bottom:216.666667pt;}
.ye1{bottom:216.680000pt;}
.ya3{bottom:216.826667pt;}
.yb1{bottom:216.840000pt;}
.y36{bottom:219.706667pt;}
.y65{bottom:224.506667pt;}
.y9d{bottom:226.106667pt;}
.y104{bottom:227.066667pt;}
.y12f{bottom:232.026667pt;}
.yc5{bottom:232.866667pt;}
.y7e{bottom:234.106667pt;}
.ya2{bottom:234.426667pt;}
.ye0{bottom:234.440000pt;}
.yd7{bottom:234.466667pt;}
.y35{bottom:237.306667pt;}
.y64{bottom:242.106667pt;}
.y9c{bottom:243.866667pt;}
.y103{bottom:244.666667pt;}
.y12e{bottom:249.626667pt;}
.y7d{bottom:251.866667pt;}
.ya1{bottom:252.026667pt;}
.ydf{bottom:252.040000pt;}
.yd6{bottom:252.066667pt;}
.y34{bottom:254.906667pt;}
.y63{bottom:259.866667pt;}
.y9b{bottom:261.466667pt;}
.y102{bottom:263.386667pt;}
.y12d{bottom:267.226667pt;}
.y7c{bottom:269.466667pt;}
.yba{bottom:269.626667pt;}
.yd5{bottom:269.666667pt;}
.ye4{bottom:269.826667pt;}
.y33{bottom:272.506667pt;}
.y62{bottom:277.466667pt;}
.y9a{bottom:279.066667pt;}
.y101{bottom:281.946667pt;}
.y7b{bottom:287.066667pt;}
.y32{bottom:290.106667pt;}
.y12c{bottom:292.986667pt;}
.y61{bottom:295.066667pt;}
.y99{bottom:296.666667pt;}
.y100{bottom:300.506667pt;}
.y7a{bottom:304.666667pt;}
.y31{bottom:307.866667pt;}
.y12b{bottom:310.586667pt;}
.y60{bottom:312.666667pt;}
.y98{bottom:314.266667pt;}
.yff{bottom:318.106667pt;}
.y79{bottom:322.266667pt;}
.y30{bottom:325.466667pt;}
.y12a{bottom:328.186667pt;}
.y5f{bottom:330.266667pt;}
.y97{bottom:332.026667pt;}
.yfe{bottom:336.666667pt;}
.y78{bottom:340.026667pt;}
.y2f{bottom:343.066667pt;}
.y129{bottom:345.786667pt;}
.y5e{bottom:348.026667pt;}
.y96{bottom:349.626667pt;}
.yfd{bottom:355.226667pt;}
.y77{bottom:357.626667pt;}
.y2e{bottom:360.666667pt;}
.y128{bottom:363.386667pt;}
.y5d{bottom:365.626667pt;}
.y95{bottom:367.226667pt;}
.y9e{bottom:372.666667pt;}
.yfc{bottom:373.946667pt;}
.y76{bottom:375.226667pt;}
.ye3{bottom:376.666667pt;}
.y2d{bottom:378.266667pt;}
.y127{bottom:382.106667pt;}
.y5c{bottom:383.226667pt;}
.y94{bottom:384.826667pt;}
.yfb{bottom:391.546667pt;}
.y75{bottom:392.826667pt;}
.y2c{bottom:396.066667pt;}
.y126{bottom:400.706667pt;}
.y5b{bottom:400.866667pt;}
.y93{bottom:402.466667pt;}
.yfa{bottom:409.186667pt;}
.y74{bottom:410.466667pt;}
.yb9{bottom:412.066667pt;}
.y2b{bottom:413.666667pt;}
.y5a{bottom:418.466667pt;}
.y125{bottom:419.266667pt;}
.y92{bottom:420.226667pt;}
.y73{bottom:428.226667pt;}
.y2a{bottom:431.266667pt;}
.yf9{bottom:434.786667pt;}
.y59{bottom:436.226667pt;}
.y124{bottom:436.866667pt;}
.y72{bottom:445.826667pt;}
.yd1{bottom:447.266667pt;}
.y29{bottom:448.866667pt;}
.yf8{bottom:452.386667pt;}
.y58{bottom:453.826667pt;}
.y123{bottom:455.426667pt;}
.y71{bottom:463.426667pt;}
.y28{bottom:466.466667pt;}
.yf7{bottom:470.146667pt;}
.y57{bottom:471.426667pt;}
.y122{bottom:473.986667pt;}
.y70{bottom:481.026667pt;}
.y27{bottom:484.226667pt;}
.yf6{bottom:487.746667pt;}
.y56{bottom:489.026667pt;}
.y121{bottom:492.706667pt;}
.y6f{bottom:498.626667pt;}
.y26{bottom:501.826667pt;}
.yf5{bottom:505.346667pt;}
.y55{bottom:506.626667pt;}
.y120{bottom:511.266667pt;}
.y6e{bottom:516.386667pt;}
.y25{bottom:519.426667pt;}
.yf4{bottom:522.946667pt;}
.y54{bottom:524.386667pt;}
.y11f{bottom:528.866667pt;}
.y6d{bottom:533.986667pt;}
.y24{bottom:537.026667pt;}
.yf3{bottom:540.546667pt;}
.y53{bottom:541.986667pt;}
.y11e{bottom:546.466667pt;}
.y91{bottom:551.586667pt;}
.y23{bottom:554.626667pt;}
.yf2{bottom:558.306667pt;}
.y52{bottom:559.586667pt;}
.y11d{bottom:564.066667pt;}
.y90{bottom:569.186667pt;}
.y22{bottom:572.386667pt;}
.yf1{bottom:575.906667pt;}
.y51{bottom:577.186667pt;}
.y11c{bottom:581.826667pt;}
.y8f{bottom:586.786667pt;}
.y21{bottom:589.986667pt;}
.yf0{bottom:593.506667pt;}
.y50{bottom:594.786667pt;}
.y8e{bottom:604.546667pt;}
.y11b{bottom:607.453333pt;}
.y20{bottom:607.613333pt;}
.yef{bottom:611.133333pt;}
.y4f{bottom:612.573333pt;}
.y8d{bottom:622.173333pt;}
.y11a{bottom:625.053333pt;}
.y1f{bottom:625.213333pt;}
.yee{bottom:628.733333pt;}
.y4e{bottom:630.173333pt;}
.y8c{bottom:639.773333pt;}
.y119{bottom:642.653333pt;}
.y1e{bottom:642.813333pt;}
.yed{bottom:646.493333pt;}
.y4d{bottom:647.773333pt;}
.y8b{bottom:657.373333pt;}
.yde{bottom:659.613333pt;}
.y118{bottom:660.253333pt;}
.y1d{bottom:660.573333pt;}
.y4c{bottom:665.373333pt;}
.y117{bottom:673.533333pt;}
.y8a{bottom:674.973333pt;}
.y1c{bottom:678.173333pt;}
.y4b{bottom:682.973333pt;}
.y89{bottom:692.733333pt;}
.yb0{bottom:694.813333pt;}
.y1b{bottom:695.773333pt;}
.y4a{bottom:700.733333pt;}
.y116{bottom:700.893333pt;}
.y88{bottom:710.333333pt;}
.y1a{bottom:713.373333pt;}
.y49{bottom:718.333333pt;}
.y87{bottom:727.933333pt;}
.y115{bottom:728.413333pt;}
.y19{bottom:730.973333pt;}
.y48{bottom:735.933333pt;}
.y86{bottom:745.533333pt;}
.y18{bottom:750.973333pt;}
.y47{bottom:753.533333pt;}
.y114{bottom:755.933333pt;}
.y17{bottom:764.573333pt;}
.y46{bottom:771.133333pt;}
.y112{bottom:783.293333pt;}
.y16{bottom:783.453333pt;}
.y45{bottom:788.893333pt;}
.y15{bottom:804.253333pt;}
.y44{bottom:806.493333pt;}
.y110{bottom:810.813333pt;}
.y43{bottom:824.133333pt;}
.y14{bottom:832.453333pt;}
.y10e{bottom:838.373333pt;}
.y42{bottom:841.733333pt;}
.y41{bottom:859.333333pt;}
.y13{bottom:860.773333pt;}
.y10c{bottom:865.893333pt;}
.y40{bottom:877.093333pt;}
.y12{bottom:888.933333pt;}
.y3f{bottom:894.693333pt;}
.y3e{bottom:912.293333pt;}
.yc{bottom:924.933333pt;}
.yb{bottom:929.733333pt;}
.y3{bottom:944.293333pt;}
.y9{bottom:974.693333pt;}
.h8{height:1.787500pt;}
.h2{height:16.000000pt;}
.hd{height:18.880000pt;}
.h1e{height:22.880000pt;}
.h11{height:24.131250pt;}
.h1f{height:26.720000pt;}
.h21{height:26.880000pt;}
.h20{height:26.912000pt;}
.h9{height:29.760000pt;}
.h1d{height:36.883125pt;}
.hb{height:37.090625pt;}
.h12{height:37.479688pt;}
.h14{height:38.672812pt;}
.h15{height:40.032000pt;}
.h13{height:40.488438pt;}
.h22{height:41.030625pt;}
.he{height:41.112500pt;}
.h6{height:41.543750pt;}
.hc{height:47.310625pt;}
.h3{height:52.834688pt;}
.h5{height:56.445312pt;}
.ha{height:58.563750pt;}
.hf{height:60.057813pt;}
.h10{height:69.070625pt;}
.h7{height:100.032000pt;}
.h4{height:130.432000pt;}
.h17{height:229.306667pt;}
.h19{height:245.346667pt;}
.h1a{height:246.906667pt;}
.h16{height:264.506667pt;}
.h18{height:282.106667pt;}
.h1b{height:282.146667pt;}
.h1c{height:282.306667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:8.800000pt;}
.w2{width:18.880000pt;}
.w7{width:35.392000pt;}
.w9{width:75.232000pt;}
.wb{width:98.112000pt;}
.wa{width:105.920000pt;}
.w4{width:116.352000pt;}
.wf{width:125.472000pt;}
.w8{width:196.666667pt;}
.wc{width:203.066667pt;}
.wd{width:225.626667pt;}
.we{width:259.106667pt;}
.w3{width:577.253333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x13{left:-12.160000pt;}
.x0{left:0.000000pt;}
.x2{left:4.000000pt;}
.x4{left:7.200000pt;}
.x17{left:38.399988pt;}
.x1{left:44.000000pt;}
.x7{left:47.999988pt;}
.x3{left:50.240000pt;}
.xa{left:52.319988pt;}
.x1d{left:54.079988pt;}
.xb{left:56.799988pt;}
.x10{left:60.799988pt;}
.x1e{left:61.759988pt;}
.x11{left:66.879988pt;}
.x1c{left:72.031988pt;}
.x18{left:76.511988pt;}
.x1f{left:78.271988pt;}
.x9{left:82.431988pt;}
.xf{left:85.791988pt;}
.x19{left:92.672000pt;}
.x6{left:105.146667pt;}
.xd{left:232.866655pt;}
.x12{left:283.106667pt;}
.x1a{left:318.946667pt;}
.xe{left:333.826655pt;}
.x14{left:358.973333pt;}
.xc{left:397.053321pt;}
.x15{left:465.533333pt;}
.x16{left:564.293333pt;}
.x1b{left:578.693333pt;}
.x5{left:627.493333pt;}
.x8{left:737.440000pt;}
}




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