
    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_ffb721633ecdc48b9cf7af08.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_40911b959272e8db05871e6c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_79eba43975679413aa7438d4.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_c036719fe962ca0ad21937d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_555b8840dbfce4203dafd274.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_2bc50e6fd411dcdc689f42c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_f0873c5a003ee4f6f2950e33.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_ee23a86cfe9014fafdd9d575.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9c4cf941cacb886e68feecd6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_74eda14007f92f44efb10fc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c131386e52a4f0c0d2f96ec0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:51.120000px;}
.ls16{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.513600px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.186480px;}
.ls19{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.206640px;}
.ls13{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.364800px;}
.lsd{letter-spacing:3.060000px;}
.ls1d{letter-spacing:4.500000px;}
.lsc{letter-spacing:8.100000px;}
.ls10{letter-spacing:12.420000px;}
.ls14{letter-spacing:16.020000px;}
.ls1e{letter-spacing:16.506720px;}
.ls3{letter-spacing:18.953280px;}
.ls1a{letter-spacing:21.780000px;}
.lse{letter-spacing:27.540000px;}
.ls1c{letter-spacing:46.026720px;}
.ls1b{letter-spacing:58.500000px;}
.lsb{letter-spacing:126.090720px;}
.lsa{letter-spacing:142.650720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.580000px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.715680px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-3.681360px;}
._6{margin-left:-2.293920px;}
._0{margin-left:-1.224000px;}
._4{width:1.111680px;}
._1{width:2.184000px;}
._a{width:3.687360px;}
._d{width:4.737600px;}
._8{width:5.743440px;}
._7{width:7.051680px;}
._14{width:8.059920px;}
._9{width:9.672000px;}
._e{width:11.479200px;}
._5{width:12.908160px;}
._23{width:13.924080px;}
._1e{width:16.277760px;}
._c{width:17.294400px;}
._b{width:19.123200px;}
._18{width:20.197200px;}
._15{width:21.931920px;}
._f{width:23.306400px;}
._1a{width:25.182720px;}
._19{width:26.990640px;}
._1d{width:28.290240px;}
._1c{width:29.401920px;}
._16{width:30.800160px;}
._24{width:32.294160px;}
._3{width:34.282080px;}
._11{width:36.252000px;}
._17{width:37.696320px;}
._26{width:38.724480px;}
._2f{width:40.122720px;}
._2a{width:41.424480px;}
._2b{width:42.549120px;}
._25{width:43.624800px;}
._1f{width:44.843760px;}
._29{width:46.278000px;}
._28{width:47.922240px;}
._22{width:49.302000px;}
._2c{width:50.503680px;}
._36{width:51.564720px;}
._35{width:52.628880px;}
._32{width:53.987040px;}
._34{width:55.779840px;}
._45{width:57.034800px;}
._2e{width:58.086720px;}
._2d{width:59.281920px;}
._38{width:60.513120px;}
._30{width:61.755840px;}
._27{width:63.429120px;}
._31{width:65.419920px;}
._47{width:66.715920px;}
._21{width:69.942960px;}
._20{width:71.018640px;}
._10{width:74.966400px;}
._13{width:76.860000px;}
._3a{width:78.628320px;}
._39{width:80.301600px;}
._33{width:81.536400px;}
._12{width:89.580240px;}
._37{width:93.060000px;}
._46{width:101.974320px;}
._43{width:105.320880px;}
._40{width:106.396560px;}
._3f{width:107.986320px;}
._41{width:137.388240px;}
._3e{width:138.427920px;}
._48{width:155.794320px;}
._3d{width:163.885680px;}
._3c{width:165.057120px;}
._3b{width:198.593280px;}
._42{width:272.326320px;}
._44{width:277.704720px;}
._2{width:303.508320px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y11f{bottom:5.580000px;}
.y26{bottom:5.760000px;}
.yba{bottom:5.940000px;}
.yca{bottom:6.480000px;}
.y11{bottom:7.560000px;}
.y120{bottom:13.140000px;}
.y11d{bottom:13.320000px;}
.y6{bottom:13.860000px;}
.yce{bottom:15.840000px;}
.y25{bottom:25.560000px;}
.ycc{bottom:25.740000px;}
.yc9{bottom:26.280000px;}
.y5{bottom:45.180000px;}
.y24{bottom:45.360000px;}
.yc8{bottom:46.260000px;}
.y9{bottom:58.680000px;}
.y23{bottom:65.160000px;}
.yc7{bottom:66.060000px;}
.y4{bottom:76.320000px;}
.y22{bottom:85.140000px;}
.y39{bottom:87.840000px;}
.yc5{bottom:88.020000px;}
.y3f{bottom:88.560000px;}
.y87{bottom:90.360000px;}
.y118{bottom:91.800000px;}
.ye9{bottom:97.920000px;}
.ya9{bottom:99.360000px;}
.y9c{bottom:101.160000px;}
.y21{bottom:104.940000px;}
.y38{bottom:106.560000px;}
.y3{bottom:107.670000px;}
.yc4{bottom:107.820000px;}
.y3e{bottom:108.360000px;}
.y86{bottom:110.160000px;}
.y117{bottom:111.600000px;}
.ye8{bottom:117.720000px;}
.ya8{bottom:119.160000px;}
.y9b{bottom:120.960000px;}
.y20{bottom:124.740000px;}
.y37{bottom:125.100000px;}
.yc3{bottom:127.800000px;}
.y3d{bottom:128.160000px;}
.y85{bottom:129.960000px;}
.y116{bottom:131.400000px;}
.ye7{bottom:137.700000px;}
.ya7{bottom:138.960000px;}
.y2{bottom:139.530000px;}
.y9a{bottom:140.760000px;}
.y36{bottom:143.820000px;}
.y1f{bottom:144.540000px;}
.yc2{bottom:147.600000px;}
.y3c{bottom:147.960000px;}
.y84{bottom:149.760000px;}
.y115{bottom:151.380000px;}
.ye6{bottom:158.250000px;}
.ya6{bottom:158.790000px;}
.y99{bottom:160.770000px;}
.y35{bottom:162.390000px;}
.y1e{bottom:164.340000px;}
.yc1{bottom:167.430000px;}
.y67{bottom:167.790000px;}
.y3b{bottom:167.970000px;}
.y83{bottom:169.770000px;}
.y114{bottom:171.210000px;}
.ya5{bottom:178.770000px;}
.y98{bottom:180.570000px;}
.y34{bottom:180.930000px;}
.y1d{bottom:184.320000px;}
.ye0{bottom:184.710000px;}
.yc0{bottom:187.230000px;}
.y3a{bottom:187.770000px;}
.y113{bottom:191.010000px;}
.y82{bottom:198.570000px;}
.y97{bottom:200.370000px;}
.y1c{bottom:204.150000px;}
.ydf{bottom:204.510000px;}
.ybf{bottom:207.030000px;}
.y33{bottom:207.570000px;}
.y112{bottom:210.810000px;}
.y81{bottom:218.370000px;}
.y96{bottom:220.170000px;}
.ybe{bottom:221.970000px;}
.y1b{bottom:223.950000px;}
.yde{bottom:224.310000px;}
.y32{bottom:227.370000px;}
.y111{bottom:230.610000px;}
.y80{bottom:238.170000px;}
.y95{bottom:239.970000px;}
.ybd{bottom:241.770000px;}
.y1a{bottom:243.750000px;}
.ydd{bottom:244.110000px;}
.y31{bottom:247.170000px;}
.y110{bottom:250.590000px;}
.y7f{bottom:257.970000px;}
.y94{bottom:259.950000px;}
.ybc{bottom:261.570000px;}
.y19{bottom:263.550000px;}
.ydc{bottom:264.090000px;}
.y66{bottom:266.970000px;}
.y30{bottom:267.150000px;}
.y10f{bottom:270.390000px;}
.y7e{bottom:277.950000px;}
.y93{bottom:279.750000px;}
.ybb{bottom:281.370000px;}
.y18{bottom:283.530000px;}
.ydb{bottom:283.890000px;}
.y2f{bottom:286.950000px;}
.y10e{bottom:290.190000px;}
.y7d{bottom:297.750000px;}
.yb9{bottom:301.170000px;}
.y17{bottom:303.330000px;}
.yda{bottom:303.690000px;}
.y2e{bottom:306.750000px;}
.y92{bottom:308.550000px;}
.y10d{bottom:309.990000px;}
.y7c{bottom:317.550000px;}
.yb8{bottom:321.870000px;}
.y16{bottom:323.130000px;}
.yd9{bottom:323.490000px;}
.y2d{bottom:326.550000px;}
.y91{bottom:328.350000px;}
.y10c{bottom:329.790000px;}
.y7b{bottom:337.350000px;}
.y15{bottom:342.930000px;}
.yd8{bottom:343.290000px;}
.y2c{bottom:346.350000px;}
.y90{bottom:348.150000px;}
.y10b{bottom:349.770000px;}
.y7a{bottom:357.150000px;}
.y14{bottom:362.730000px;}
.yd7{bottom:363.270000px;}
.y65{bottom:366.150000px;}
.y2b{bottom:366.330000px;}
.y8f{bottom:368.130000px;}
.y10a{bottom:369.570000px;}
.y79{bottom:377.130000px;}
.y13{bottom:382.710000px;}
.yd6{bottom:383.070000px;}
.y2a{bottom:386.130000px;}
.y8e{bottom:387.930000px;}
.y109{bottom:389.370000px;}
.y78{bottom:396.930000px;}
.yd5{bottom:402.915000px;}
.y29{bottom:405.975000px;}
.y8d{bottom:407.775000px;}
.y108{bottom:409.215000px;}
.y77{bottom:416.775000px;}
.yd4{bottom:422.715000px;}
.y28{bottom:425.775000px;}
.y8c{bottom:427.575000px;}
.y107{bottom:429.015000px;}
.y76{bottom:436.575000px;}
.yd3{bottom:442.515000px;}
.y27{bottom:445.575000px;}
.y8b{bottom:447.375000px;}
.y106{bottom:448.995000px;}
.y75{bottom:456.375000px;}
.y12{bottom:460.515000px;}
.yd2{bottom:462.495000px;}
.y64{bottom:465.375000px;}
.yb7{bottom:467.355000px;}
.y105{bottom:468.795000px;}
.y74{bottom:476.355000px;}
.yd1{bottom:482.295000px;}
.y63{bottom:485.355000px;}
.yb6{bottom:487.155000px;}
.y104{bottom:488.595000px;}
.y73{bottom:496.155000px;}
.yd0{bottom:502.095000px;}
.y62{bottom:505.155000px;}
.yb5{bottom:506.955000px;}
.y103{bottom:508.395000px;}
.y72{bottom:515.955000px;}
.ycd{bottom:516.855000px;}
.y61{bottom:524.955000px;}
.yb4{bottom:526.755000px;}
.y102{bottom:528.195000px;}
.y71{bottom:535.755000px;}
.ycf{bottom:536.655000px;}
.y60{bottom:544.755000px;}
.yb3{bottom:546.555000px;}
.y101{bottom:548.175000px;}
.y70{bottom:555.555000px;}
.yc6{bottom:557.355000px;}
.y5f{bottom:564.555000px;}
.yb2{bottom:566.355000px;}
.y100{bottom:567.975000px;}
.y6f{bottom:575.355000px;}
.y5e{bottom:584.355000px;}
.yb1{bottom:586.335000px;}
.yff{bottom:587.775000px;}
.y6e{bottom:595.335000px;}
.ycb{bottom:597.675000px;}
.y5d{bottom:604.335000px;}
.yfe{bottom:607.575000px;}
.y6d{bottom:615.135000px;}
.y5c{bottom:624.135000px;}
.yfd{bottom:627.375000px;}
.y6c{bottom:634.935000px;}
.y5b{bottom:643.935000px;}
.yfc{bottom:647.355000px;}
.y6b{bottom:654.765000px;}
.y5a{bottom:663.765000px;}
.yfb{bottom:667.185000px;}
.y6a{bottom:674.565000px;}
.y59{bottom:683.565000px;}
.yfa{bottom:686.985000px;}
.y69{bottom:694.545000px;}
.y58{bottom:703.545000px;}
.yf9{bottom:706.785000px;}
.y68{bottom:714.345000px;}
.y57{bottom:723.345000px;}
.yf8{bottom:726.585000px;}
.y8a{bottom:734.145000px;}
.y56{bottom:743.145000px;}
.yf7{bottom:746.565000px;}
.y89{bottom:753.945000px;}
.y55{bottom:762.945000px;}
.yf6{bottom:766.365000px;}
.y88{bottom:773.745000px;}
.y54{bottom:782.745000px;}
.yf5{bottom:786.165000px;}
.ya4{bottom:793.725000px;}
.y53{bottom:802.725000px;}
.yf4{bottom:805.965000px;}
.ya3{bottom:813.525000px;}
.y52{bottom:822.525000px;}
.yf3{bottom:825.765000px;}
.ya2{bottom:833.325000px;}
.y51{bottom:842.325000px;}
.yf2{bottom:845.745000px;}
.ya1{bottom:853.125000px;}
.y10{bottom:857.985000px;}
.y50{bottom:862.125000px;}
.yf1{bottom:865.545000px;}
.ya0{bottom:872.925000px;}
.y4f{bottom:881.925000px;}
.yf0{bottom:885.345000px;}
.yf{bottom:890.565000px;}
.y9f{bottom:892.905000px;}
.y4e{bottom:901.950000px;}
.yef{bottom:905.190000px;}
.ye{bottom:910.410000px;}
.y9e{bottom:912.750000px;}
.y4d{bottom:921.750000px;}
.yee{bottom:924.990000px;}
.yd{bottom:930.930000px;}
.y9d{bottom:932.550000px;}
.ye5{bottom:934.170000px;}
.y4c{bottom:941.550000px;}
.yed{bottom:944.970000px;}
.yc{bottom:952.170000px;}
.yb0{bottom:952.350000px;}
.ye4{bottom:953.970000px;}
.y4b{bottom:961.350000px;}
.yec{bottom:964.770000px;}
.yaf{bottom:972.150000px;}
.ye3{bottom:973.950000px;}
.yb{bottom:975.570000px;}
.y4a{bottom:981.150000px;}
.yeb{bottom:984.570000px;}
.yae{bottom:992.130000px;}
.ye2{bottom:993.750000px;}
.y49{bottom:1001.130000px;}
.yea{bottom:1004.370000px;}
.ya{bottom:1007.250000px;}
.yad{bottom:1011.930000px;}
.ye1{bottom:1013.550000px;}
.y121{bottom:1019.130000px;}
.y48{bottom:1020.930000px;}
.yac{bottom:1031.730000px;}
.y8{bottom:1034.070000px;}
.y11e{bottom:1039.110000px;}
.y47{bottom:1040.730000px;}
.y1{bottom:1050.450000px;}
.yab{bottom:1051.530000px;}
.y46{bottom:1060.530000px;}
.y11c{bottom:1066.290000px;}
.yaa{bottom:1071.330000px;}
.y45{bottom:1080.330000px;}
.y11b{bottom:1093.650000px;}
.y44{bottom:1100.310000px;}
.y11a{bottom:1113.630000px;}
.y43{bottom:1120.110000px;}
.y119{bottom:1133.430000px;}
.y42{bottom:1139.910000px;}
.y41{bottom:1169.820000px;}
.y40{bottom:1192.680000px;}
.h12{height:19.800000px;}
.h18{height:19.836000px;}
.h14{height:19.980000px;}
.hc{height:26.100000px;}
.h1b{height:27.180000px;}
.h19{height:27.360000px;}
.h17{height:39.600000px;}
.h16{height:39.780000px;}
.h9{height:42.164648px;}
.hf{height:45.024258px;}
.h7{height:47.933437px;}
.h4{height:48.774375px;}
.h13{height:49.255313px;}
.h11{height:51.706406px;}
.h3{height:53.015625px;}
.hb{height:53.573906px;}
.hd{height:55.735313px;}
.h10{height:55.987031px;}
.ha{height:59.383125px;}
.h5{height:62.028281px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h15{height:80.100000px;}
.h1a{height:83.165625px;}
.h2{height:158.430000px;}
.he{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:2.160000px;}
.wf{width:63.720000px;}
.w1c{width:74.340000px;}
.we{width:74.520000px;}
.w1d{width:84.960000px;}
.w10{width:84.996000px;}
.w17{width:85.176000px;}
.w18{width:95.580000px;}
.w16{width:95.616000px;}
.w11{width:95.760000px;}
.w1b{width:95.796000px;}
.w1a{width:106.200000px;}
.wd{width:106.236000px;}
.w15{width:106.380000px;}
.w3{width:146.736000px;}
.wa{width:148.860000px;}
.w9{width:148.896000px;}
.w7{width:163.290000px;}
.wc{width:180.750000px;}
.w14{width:231.330000px;}
.w19{width:231.510000px;}
.w13{width:264.090000px;}
.wb{width:266.250000px;}
.w8{width:372.495000px;}
.w6{width:616.830000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.180000px;}
.x6{left:56.520000px;}
.x22{left:80.999987px;}
.xd{left:100.836000px;}
.x13{left:102.996000px;}
.x19{left:106.956000px;}
.x5{left:108.035987px;}
.x9{left:111.456000px;}
.x4{left:138.630000px;}
.x14{left:333.075000px;}
.x1a{left:338.475000px;}
.xe{left:367.095000px;}
.x15{left:439.455000px;}
.x1b{left:444.675000px;}
.x12{left:452.085000px;}
.x8{left:473.504987px;}
.xa{left:483.945000px;}
.x20{left:500.504987px;}
.x21{left:527.504987px;}
.x16{left:535.065000px;}
.x1c{left:540.465000px;}
.xf{left:547.845000px;}
.x17{left:609.585000px;}
.x1d{left:614.805000px;}
.xb{left:632.850000px;}
.x10{left:654.090000px;}
.x7{left:673.350000px;}
.x3{left:692.070000px;}
.x18{left:694.770000px;}
.x1e{left:699.990000px;}
.x11{left:728.610000px;}
.x1f{left:799.709987px;}
.xc{left:804.929987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:45.440000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.456533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165760pt;}
.ls19{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.183680pt;}
.ls13{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.324267pt;}
.lsd{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:4.000000pt;}
.lsc{letter-spacing:7.200000pt;}
.ls10{letter-spacing:11.040000pt;}
.ls14{letter-spacing:14.240000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls3{letter-spacing:16.847360pt;}
.ls1a{letter-spacing:19.360000pt;}
.lse{letter-spacing:24.480000pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls1b{letter-spacing:52.000000pt;}
.lsb{letter-spacing:112.080640pt;}
.lsa{letter-spacing:126.800640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws3{word-spacing:-12.960000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.636160pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-3.272320pt;}
._6{margin-left:-2.039040pt;}
._0{margin-left:-1.088000pt;}
._4{width:0.988160pt;}
._1{width:1.941333pt;}
._a{width:3.277653pt;}
._d{width:4.211200pt;}
._8{width:5.105280pt;}
._7{width:6.268160pt;}
._14{width:7.164373pt;}
._9{width:8.597333pt;}
._e{width:10.203733pt;}
._5{width:11.473920pt;}
._23{width:12.376960pt;}
._1e{width:14.469120pt;}
._c{width:15.372800pt;}
._b{width:16.998400pt;}
._18{width:17.953067pt;}
._15{width:19.495040pt;}
._f{width:20.716800pt;}
._1a{width:22.384640pt;}
._19{width:23.991680pt;}
._1d{width:25.146880pt;}
._1c{width:26.135040pt;}
._16{width:27.377920pt;}
._24{width:28.705920pt;}
._3{width:30.472960pt;}
._11{width:32.224000pt;}
._17{width:33.507840pt;}
._26{width:34.421760pt;}
._2f{width:35.664640pt;}
._2a{width:36.821760pt;}
._2b{width:37.821440pt;}
._25{width:38.777600pt;}
._1f{width:39.861120pt;}
._29{width:41.136000pt;}
._28{width:42.597547pt;}
._22{width:43.824000pt;}
._2c{width:44.892160pt;}
._36{width:45.835307pt;}
._35{width:46.781227pt;}
._32{width:47.988480pt;}
._34{width:49.582080pt;}
._45{width:50.697600pt;}
._2e{width:51.632640pt;}
._2d{width:52.695040pt;}
._38{width:53.789440pt;}
._30{width:54.894080pt;}
._27{width:56.381440pt;}
._31{width:58.151040pt;}
._47{width:59.303040pt;}
._21{width:62.171520pt;}
._20{width:63.127680pt;}
._10{width:66.636800pt;}
._13{width:68.320000pt;}
._3a{width:69.891840pt;}
._39{width:71.379200pt;}
._33{width:72.476800pt;}
._12{width:79.626880pt;}
._37{width:82.720000pt;}
._46{width:90.643840pt;}
._43{width:93.618560pt;}
._40{width:94.574720pt;}
._3f{width:95.987840pt;}
._41{width:122.122880pt;}
._3e{width:123.047040pt;}
._48{width:138.483840pt;}
._3d{width:145.676160pt;}
._3c{width:146.717440pt;}
._3b{width:176.527360pt;}
._42{width:242.067840pt;}
._44{width:246.848640pt;}
._2{width:269.785173pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y11f{bottom:4.960000pt;}
.y26{bottom:5.120000pt;}
.yba{bottom:5.280000pt;}
.yca{bottom:5.760000pt;}
.y11{bottom:6.720000pt;}
.y120{bottom:11.680000pt;}
.y11d{bottom:11.840000pt;}
.y6{bottom:12.320000pt;}
.yce{bottom:14.080000pt;}
.y25{bottom:22.720000pt;}
.ycc{bottom:22.880000pt;}
.yc9{bottom:23.360000pt;}
.y5{bottom:40.160000pt;}
.y24{bottom:40.320000pt;}
.yc8{bottom:41.120000pt;}
.y9{bottom:52.160000pt;}
.y23{bottom:57.920000pt;}
.yc7{bottom:58.720000pt;}
.y4{bottom:67.840000pt;}
.y22{bottom:75.680000pt;}
.y39{bottom:78.080000pt;}
.yc5{bottom:78.240000pt;}
.y3f{bottom:78.720000pt;}
.y87{bottom:80.320000pt;}
.y118{bottom:81.600000pt;}
.ye9{bottom:87.040000pt;}
.ya9{bottom:88.320000pt;}
.y9c{bottom:89.920000pt;}
.y21{bottom:93.280000pt;}
.y38{bottom:94.720000pt;}
.y3{bottom:95.706667pt;}
.yc4{bottom:95.840000pt;}
.y3e{bottom:96.320000pt;}
.y86{bottom:97.920000pt;}
.y117{bottom:99.200000pt;}
.ye8{bottom:104.640000pt;}
.ya8{bottom:105.920000pt;}
.y9b{bottom:107.520000pt;}
.y20{bottom:110.880000pt;}
.y37{bottom:111.200000pt;}
.yc3{bottom:113.600000pt;}
.y3d{bottom:113.920000pt;}
.y85{bottom:115.520000pt;}
.y116{bottom:116.800000pt;}
.ye7{bottom:122.400000pt;}
.ya7{bottom:123.520000pt;}
.y2{bottom:124.026667pt;}
.y9a{bottom:125.120000pt;}
.y36{bottom:127.840000pt;}
.y1f{bottom:128.480000pt;}
.yc2{bottom:131.200000pt;}
.y3c{bottom:131.520000pt;}
.y84{bottom:133.120000pt;}
.y115{bottom:134.560000pt;}
.ye6{bottom:140.666667pt;}
.ya6{bottom:141.146667pt;}
.y99{bottom:142.906667pt;}
.y35{bottom:144.346667pt;}
.y1e{bottom:146.080000pt;}
.yc1{bottom:148.826667pt;}
.y67{bottom:149.146667pt;}
.y3b{bottom:149.306667pt;}
.y83{bottom:150.906667pt;}
.y114{bottom:152.186667pt;}
.ya5{bottom:158.906667pt;}
.y98{bottom:160.506667pt;}
.y34{bottom:160.826667pt;}
.y1d{bottom:163.840000pt;}
.ye0{bottom:164.186667pt;}
.yc0{bottom:166.426667pt;}
.y3a{bottom:166.906667pt;}
.y113{bottom:169.786667pt;}
.y82{bottom:176.506667pt;}
.y97{bottom:178.106667pt;}
.y1c{bottom:181.466667pt;}
.ydf{bottom:181.786667pt;}
.ybf{bottom:184.026667pt;}
.y33{bottom:184.506667pt;}
.y112{bottom:187.386667pt;}
.y81{bottom:194.106667pt;}
.y96{bottom:195.706667pt;}
.ybe{bottom:197.306667pt;}
.y1b{bottom:199.066667pt;}
.yde{bottom:199.386667pt;}
.y32{bottom:202.106667pt;}
.y111{bottom:204.986667pt;}
.y80{bottom:211.706667pt;}
.y95{bottom:213.306667pt;}
.ybd{bottom:214.906667pt;}
.y1a{bottom:216.666667pt;}
.ydd{bottom:216.986667pt;}
.y31{bottom:219.706667pt;}
.y110{bottom:222.746667pt;}
.y7f{bottom:229.306667pt;}
.y94{bottom:231.066667pt;}
.ybc{bottom:232.506667pt;}
.y19{bottom:234.266667pt;}
.ydc{bottom:234.746667pt;}
.y66{bottom:237.306667pt;}
.y30{bottom:237.466667pt;}
.y10f{bottom:240.346667pt;}
.y7e{bottom:247.066667pt;}
.y93{bottom:248.666667pt;}
.ybb{bottom:250.106667pt;}
.y18{bottom:252.026667pt;}
.ydb{bottom:252.346667pt;}
.y2f{bottom:255.066667pt;}
.y10e{bottom:257.946667pt;}
.y7d{bottom:264.666667pt;}
.yb9{bottom:267.706667pt;}
.y17{bottom:269.626667pt;}
.yda{bottom:269.946667pt;}
.y2e{bottom:272.666667pt;}
.y92{bottom:274.266667pt;}
.y10d{bottom:275.546667pt;}
.y7c{bottom:282.266667pt;}
.yb8{bottom:286.106667pt;}
.y16{bottom:287.226667pt;}
.yd9{bottom:287.546667pt;}
.y2d{bottom:290.266667pt;}
.y91{bottom:291.866667pt;}
.y10c{bottom:293.146667pt;}
.y7b{bottom:299.866667pt;}
.y15{bottom:304.826667pt;}
.yd8{bottom:305.146667pt;}
.y2c{bottom:307.866667pt;}
.y90{bottom:309.466667pt;}
.y10b{bottom:310.906667pt;}
.y7a{bottom:317.466667pt;}
.y14{bottom:322.426667pt;}
.yd7{bottom:322.906667pt;}
.y65{bottom:325.466667pt;}
.y2b{bottom:325.626667pt;}
.y8f{bottom:327.226667pt;}
.y10a{bottom:328.506667pt;}
.y79{bottom:335.226667pt;}
.y13{bottom:340.186667pt;}
.yd6{bottom:340.506667pt;}
.y2a{bottom:343.226667pt;}
.y8e{bottom:344.826667pt;}
.y109{bottom:346.106667pt;}
.y78{bottom:352.826667pt;}
.yd5{bottom:358.146667pt;}
.y29{bottom:360.866667pt;}
.y8d{bottom:362.466667pt;}
.y108{bottom:363.746667pt;}
.y77{bottom:370.466667pt;}
.yd4{bottom:375.746667pt;}
.y28{bottom:378.466667pt;}
.y8c{bottom:380.066667pt;}
.y107{bottom:381.346667pt;}
.y76{bottom:388.066667pt;}
.yd3{bottom:393.346667pt;}
.y27{bottom:396.066667pt;}
.y8b{bottom:397.666667pt;}
.y106{bottom:399.106667pt;}
.y75{bottom:405.666667pt;}
.y12{bottom:409.346667pt;}
.yd2{bottom:411.106667pt;}
.y64{bottom:413.666667pt;}
.yb7{bottom:415.426667pt;}
.y105{bottom:416.706667pt;}
.y74{bottom:423.426667pt;}
.yd1{bottom:428.706667pt;}
.y63{bottom:431.426667pt;}
.yb6{bottom:433.026667pt;}
.y104{bottom:434.306667pt;}
.y73{bottom:441.026667pt;}
.yd0{bottom:446.306667pt;}
.y62{bottom:449.026667pt;}
.yb5{bottom:450.626667pt;}
.y103{bottom:451.906667pt;}
.y72{bottom:458.626667pt;}
.ycd{bottom:459.426667pt;}
.y61{bottom:466.626667pt;}
.yb4{bottom:468.226667pt;}
.y102{bottom:469.506667pt;}
.y71{bottom:476.226667pt;}
.ycf{bottom:477.026667pt;}
.y60{bottom:484.226667pt;}
.yb3{bottom:485.826667pt;}
.y101{bottom:487.266667pt;}
.y70{bottom:493.826667pt;}
.yc6{bottom:495.426667pt;}
.y5f{bottom:501.826667pt;}
.yb2{bottom:503.426667pt;}
.y100{bottom:504.866667pt;}
.y6f{bottom:511.426667pt;}
.y5e{bottom:519.426667pt;}
.yb1{bottom:521.186667pt;}
.yff{bottom:522.466667pt;}
.y6e{bottom:529.186667pt;}
.ycb{bottom:531.266667pt;}
.y5d{bottom:537.186667pt;}
.yfe{bottom:540.066667pt;}
.y6d{bottom:546.786667pt;}
.y5c{bottom:554.786667pt;}
.yfd{bottom:557.666667pt;}
.y6c{bottom:564.386667pt;}
.y5b{bottom:572.386667pt;}
.yfc{bottom:575.426667pt;}
.y6b{bottom:582.013333pt;}
.y5a{bottom:590.013333pt;}
.yfb{bottom:593.053333pt;}
.y6a{bottom:599.613333pt;}
.y59{bottom:607.613333pt;}
.yfa{bottom:610.653333pt;}
.y69{bottom:617.373333pt;}
.y58{bottom:625.373333pt;}
.yf9{bottom:628.253333pt;}
.y68{bottom:634.973333pt;}
.y57{bottom:642.973333pt;}
.yf8{bottom:645.853333pt;}
.y8a{bottom:652.573333pt;}
.y56{bottom:660.573333pt;}
.yf7{bottom:663.613333pt;}
.y89{bottom:670.173333pt;}
.y55{bottom:678.173333pt;}
.yf6{bottom:681.213333pt;}
.y88{bottom:687.773333pt;}
.y54{bottom:695.773333pt;}
.yf5{bottom:698.813333pt;}
.ya4{bottom:705.533333pt;}
.y53{bottom:713.533333pt;}
.yf4{bottom:716.413333pt;}
.ya3{bottom:723.133333pt;}
.y52{bottom:731.133333pt;}
.yf3{bottom:734.013333pt;}
.ya2{bottom:740.733333pt;}
.y51{bottom:748.733333pt;}
.yf2{bottom:751.773333pt;}
.ya1{bottom:758.333333pt;}
.y10{bottom:762.653333pt;}
.y50{bottom:766.333333pt;}
.yf1{bottom:769.373333pt;}
.ya0{bottom:775.933333pt;}
.y4f{bottom:783.933333pt;}
.yf0{bottom:786.973333pt;}
.yf{bottom:791.613333pt;}
.y9f{bottom:793.693333pt;}
.y4e{bottom:801.733333pt;}
.yef{bottom:804.613333pt;}
.ye{bottom:809.253333pt;}
.y9e{bottom:811.333333pt;}
.y4d{bottom:819.333333pt;}
.yee{bottom:822.213333pt;}
.yd{bottom:827.493333pt;}
.y9d{bottom:828.933333pt;}
.ye5{bottom:830.373333pt;}
.y4c{bottom:836.933333pt;}
.yed{bottom:839.973333pt;}
.yc{bottom:846.373333pt;}
.yb0{bottom:846.533333pt;}
.ye4{bottom:847.973333pt;}
.y4b{bottom:854.533333pt;}
.yec{bottom:857.573333pt;}
.yaf{bottom:864.133333pt;}
.ye3{bottom:865.733333pt;}
.yb{bottom:867.173333pt;}
.y4a{bottom:872.133333pt;}
.yeb{bottom:875.173333pt;}
.yae{bottom:881.893333pt;}
.ye2{bottom:883.333333pt;}
.y49{bottom:889.893333pt;}
.yea{bottom:892.773333pt;}
.ya{bottom:895.333333pt;}
.yad{bottom:899.493333pt;}
.ye1{bottom:900.933333pt;}
.y121{bottom:905.893333pt;}
.y48{bottom:907.493333pt;}
.yac{bottom:917.093333pt;}
.y8{bottom:919.173333pt;}
.y11e{bottom:923.653333pt;}
.y47{bottom:925.093333pt;}
.y1{bottom:933.733333pt;}
.yab{bottom:934.693333pt;}
.y46{bottom:942.693333pt;}
.y11c{bottom:947.813333pt;}
.yaa{bottom:952.293333pt;}
.y45{bottom:960.293333pt;}
.y11b{bottom:972.133333pt;}
.y44{bottom:978.053333pt;}
.y11a{bottom:989.893333pt;}
.y43{bottom:995.653333pt;}
.y119{bottom:1007.493333pt;}
.y42{bottom:1013.253333pt;}
.y41{bottom:1039.840000pt;}
.y40{bottom:1060.160000pt;}
.h12{height:17.600000pt;}
.h18{height:17.632000pt;}
.h14{height:17.760000pt;}
.hc{height:23.200000pt;}
.h1b{height:24.160000pt;}
.h19{height:24.320000pt;}
.h17{height:35.200000pt;}
.h16{height:35.360000pt;}
.h9{height:37.479688pt;}
.hf{height:40.021563pt;}
.h7{height:42.607500pt;}
.h4{height:43.355000pt;}
.h13{height:43.782500pt;}
.h11{height:45.961250pt;}
.h3{height:47.125000pt;}
.hb{height:47.621250pt;}
.hd{height:49.542500pt;}
.h10{height:49.766250pt;}
.ha{height:52.785000pt;}
.h5{height:55.136250pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h15{height:71.200000pt;}
.h1a{height:73.925000pt;}
.h2{height:140.826667pt;}
.he{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:1.920000pt;}
.wf{width:56.640000pt;}
.w1c{width:66.080000pt;}
.we{width:66.240000pt;}
.w1d{width:75.520000pt;}
.w10{width:75.552000pt;}
.w17{width:75.712000pt;}
.w18{width:84.960000pt;}
.w16{width:84.992000pt;}
.w11{width:85.120000pt;}
.w1b{width:85.152000pt;}
.w1a{width:94.400000pt;}
.wd{width:94.432000pt;}
.w15{width:94.560000pt;}
.w3{width:130.432000pt;}
.wa{width:132.320000pt;}
.w9{width:132.352000pt;}
.w7{width:145.146667pt;}
.wc{width:160.666667pt;}
.w14{width:205.626667pt;}
.w19{width:205.786667pt;}
.w13{width:234.746667pt;}
.wb{width:236.666667pt;}
.w8{width:331.106667pt;}
.w6{width:548.293333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.160000pt;}
.x6{left:50.240000pt;}
.x22{left:71.999988pt;}
.xd{left:89.632000pt;}
.x13{left:91.552000pt;}
.x19{left:95.072000pt;}
.x5{left:96.031988pt;}
.x9{left:99.072000pt;}
.x4{left:123.226667pt;}
.x14{left:296.066667pt;}
.x1a{left:300.866667pt;}
.xe{left:326.306667pt;}
.x15{left:390.626667pt;}
.x1b{left:395.266667pt;}
.x12{left:401.853333pt;}
.x8{left:420.893322pt;}
.xa{left:430.173333pt;}
.x20{left:444.893322pt;}
.x21{left:468.893322pt;}
.x16{left:475.613333pt;}
.x1c{left:480.413333pt;}
.xf{left:486.973333pt;}
.x17{left:541.853333pt;}
.x1d{left:546.493333pt;}
.xb{left:562.533333pt;}
.x10{left:581.413333pt;}
.x7{left:598.533333pt;}
.x3{left:615.173333pt;}
.x18{left:617.573333pt;}
.x1e{left:622.213333pt;}
.x11{left:647.653333pt;}
.x1f{left:710.853322pt;}
.xc{left:715.493322pt;}
}




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