
    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_e0d4d9149662447957b52fc9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fbf440cd35a30d151aa57b2a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e9d717e3248fbb788af02e46.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e802b31cf3e5a310e464e02e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056152;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ea62332e744f95c6260c358b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d5e931c578a4a00894743c8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c93cdf062596eed181d0fa8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0480bced75e3cabc9b5a89be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ade54e92c55ef0a7c067260f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.056152;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:23.760000px;}
.ls7{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.208200px;}
.ls9{letter-spacing:-0.206400px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.513600px;}
.ls1b{letter-spacing:0.540000px;}
.lse{letter-spacing:7.866720px;}
.ls18{letter-spacing:11.466720px;}
.ls11{letter-spacing:15.066720px;}
.ls1{letter-spacing:31.626720px;}
.ls16{letter-spacing:41.706720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.093600px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._38{margin-left:-952.976880px;}
._39{margin-left:-662.543280px;}
._30{margin-left:-620.004960px;}
._2e{margin-left:-613.311840px;}
._6{margin-left:-576.348480px;}
._3d{margin-left:-533.531520px;}
._32{margin-left:-526.898160px;}
._31{margin-left:-520.205040px;}
._3a{margin-left:-513.571680px;}
._29{margin-left:-468.691920px;}
._2d{margin-left:-467.138160px;}
._2a{margin-left:-453.751920px;}
._37{margin-left:-450.465120px;}
._3b{margin-left:-417.358080px;}
._35{margin-left:-403.971840px;}
._1e{margin-left:-392.318640px;}
._34{margin-left:-332.618400px;}
._20{margin-left:-317.678400px;}
._36{margin-left:-282.838320px;}
._25{margin-left:-243.466560px;}
._2f{margin-left:-213.526800px;}
._1d{margin-left:-199.831680px;}
._26{margin-left:-178.686720px;}
._23{margin-left:-166.664880px;}
._28{margin-left:-163.746720px;}
._2c{margin-left:-160.459920px;}
._1c{margin-left:-155.440080px;}
._33{margin-left:-140.559840px;}
._1f{margin-left:-125.619840px;}
._1b{margin-left:-118.926720px;}
._27{margin-left:-105.660000px;}
._3c{margin-left:-91.440000px;}
._21{margin-left:-76.680000px;}
._2b{margin-left:-60.840000px;}
._22{margin-left:-57.493440px;}
._24{margin-left:-50.860080px;}
._1a{margin-left:-15.312480px;}
._7{margin-left:-9.325680px;}
._8{margin-left:-4.743840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.349600px;}
._e{width:3.645600px;}
._10{width:4.656240px;}
._f{width:5.856480px;}
._19{width:6.920640px;}
._14{width:7.922160px;}
._13{width:9.322560px;}
._15{width:10.995840px;}
._12{width:12.728880px;}
._11{width:13.744800px;}
._17{width:16.623360px;}
._18{width:17.868240px;}
._3f{width:18.993600px;}
._9{width:20.109600px;}
._a{width:21.271680px;}
._16{width:22.363200px;}
._3e{width:23.378400px;}
._d{width:24.696480px;}
._c{width:25.701120px;}
._40{width:26.799360px;}
._41{width:28.081200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:5.760000px;}
.y6d{bottom:5.940000px;}
.yef{bottom:10.800000px;}
.y7f{bottom:30.600000px;}
.y6b{bottom:30.645000px;}
.yec{bottom:34.740000px;}
.yee{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.yed{bottom:70.230000px;}
.y69{bottom:94.140000px;}
.yc1{bottom:94.680000px;}
.y93{bottom:98.280000px;}
.y32{bottom:100.800000px;}
.yea{bottom:104.940000px;}
.y95{bottom:107.820000px;}
.y68{bottom:113.940000px;}
.yc0{bottom:114.660000px;}
.yeb{bottom:116.280000px;}
.y92{bottom:118.260000px;}
.y31{bottom:120.600000px;}
.ye9{bottom:124.740000px;}
.y94{bottom:128.520000px;}
.y67{bottom:133.740000px;}
.ybf{bottom:134.460000px;}
.y91{bottom:138.060000px;}
.y30{bottom:140.580000px;}
.ye8{bottom:144.540000px;}
.y66{bottom:153.570000px;}
.y90{bottom:157.890000px;}
.y2f{bottom:160.410000px;}
.ybe{bottom:163.290000px;}
.ye7{bottom:164.370000px;}
.y65{bottom:173.370000px;}
.y8f{bottom:177.690000px;}
.y2e{bottom:180.210000px;}
.ybd{bottom:183.090000px;}
.ye6{bottom:184.350000px;}
.y64{bottom:193.350000px;}
.y8e{bottom:197.490000px;}
.y2d{bottom:200.010000px;}
.ybc{bottom:202.890000px;}
.ye5{bottom:204.150000px;}
.y63{bottom:213.150000px;}
.y2c{bottom:219.810000px;}
.ybb{bottom:222.870000px;}
.ye4{bottom:223.950000px;}
.y8d{bottom:226.470000px;}
.y62{bottom:232.950000px;}
.y2b{bottom:239.790000px;}
.yba{bottom:242.670000px;}
.ye3{bottom:243.750000px;}
.y8c{bottom:246.270000px;}
.y61{bottom:252.750000px;}
.y2a{bottom:259.590000px;}
.yb9{bottom:262.470000px;}
.ye2{bottom:263.550000px;}
.y8b{bottom:266.070000px;}
.y60{bottom:272.550000px;}
.yb8{bottom:277.230000px;}
.y29{bottom:279.390000px;}
.ye1{bottom:283.530000px;}
.y8a{bottom:285.870000px;}
.y5f{bottom:292.530000px;}
.yb7{bottom:297.930000px;}
.y28{bottom:299.190000px;}
.ye0{bottom:303.330000px;}
.y89{bottom:305.670000px;}
.y5e{bottom:312.330000px;}
.yb6{bottom:318.450000px;}
.y27{bottom:318.990000px;}
.y88{bottom:320.610000px;}
.ydf{bottom:323.130000px;}
.y5d{bottom:332.130000px;}
.y26{bottom:338.970000px;}
.y87{bottom:341.130000px;}
.yde{bottom:342.930000px;}
.yb5{bottom:344.730000px;}
.y5c{bottom:351.930000px;}
.y25{bottom:358.770000px;}
.y86{bottom:361.650000px;}
.ydd{bottom:362.730000px;}
.yb4{bottom:364.710000px;}
.y5b{bottom:371.730000px;}
.y24{bottom:378.570000px;}
.y85{bottom:382.350000px;}
.ydc{bottom:382.710000px;}
.yb3{bottom:384.510000px;}
.y5a{bottom:391.710000px;}
.y23{bottom:398.370000px;}
.ydb{bottom:402.555000px;}
.y84{bottom:402.915000px;}
.yb2{bottom:404.355000px;}
.y59{bottom:411.555000px;}
.y22{bottom:418.215000px;}
.yda{bottom:422.355000px;}
.y83{bottom:423.435000px;}
.yb1{bottom:424.155000px;}
.y58{bottom:431.355000px;}
.y21{bottom:438.195000px;}
.yd9{bottom:442.155000px;}
.yb0{bottom:443.955000px;}
.y82{bottom:444.135000px;}
.y57{bottom:451.155000px;}
.y20{bottom:457.995000px;}
.yd8{bottom:461.955000px;}
.yaf{bottom:463.935000px;}
.y81{bottom:464.655000px;}
.y56{bottom:470.955000px;}
.y1f{bottom:477.795000px;}
.yd7{bottom:481.935000px;}
.yae{bottom:483.735000px;}
.y80{bottom:485.175000px;}
.y55{bottom:490.935000px;}
.y1e{bottom:497.595000px;}
.yad{bottom:498.495000px;}
.yd6{bottom:501.735000px;}
.y7e{bottom:505.875000px;}
.y54{bottom:510.735000px;}
.y1d{bottom:517.395000px;}
.yac{bottom:519.015000px;}
.yd5{bottom:521.535000px;}
.y53{bottom:530.535000px;}
.y1c{bottom:537.375000px;}
.yab{bottom:539.715000px;}
.yd4{bottom:541.335000px;}
.y52{bottom:550.335000px;}
.y7d{bottom:556.995000px;}
.y1b{bottom:557.175000px;}
.yaa{bottom:560.235000px;}
.yd3{bottom:561.135000px;}
.y51{bottom:570.135000px;}
.y7c{bottom:576.795000px;}
.y1a{bottom:576.975000px;}
.ya9{bottom:580.755000px;}
.yd2{bottom:581.115000px;}
.y50{bottom:590.115000px;}
.y7b{bottom:596.595000px;}
.yd1{bottom:600.915000px;}
.ya8{bottom:607.215000px;}
.y4f{bottom:609.915000px;}
.y7a{bottom:616.575000px;}
.y19{bottom:618.915000px;}
.yd0{bottom:620.715000px;}
.ya7{bottom:627.015000px;}
.y4e{bottom:629.715000px;}
.y79{bottom:636.375000px;}
.ycf{bottom:640.515000px;}
.ya6{bottom:646.815000px;}
.y18{bottom:647.715000px;}
.y4d{bottom:649.545000px;}
.y78{bottom:656.205000px;}
.yce{bottom:660.345000px;}
.ya5{bottom:666.825000px;}
.y17{bottom:667.545000px;}
.y4c{bottom:669.345000px;}
.y77{bottom:676.005000px;}
.ycd{bottom:680.325000px;}
.y16{bottom:687.525000px;}
.y4b{bottom:689.325000px;}
.y76{bottom:690.765000px;}
.ya4{bottom:695.625000px;}
.ycc{bottom:700.125000px;}
.y15{bottom:707.325000px;}
.y4a{bottom:709.125000px;}
.y75{bottom:711.465000px;}
.ya3{bottom:715.425000px;}
.ycb{bottom:719.925000px;}
.y14{bottom:727.125000px;}
.y49{bottom:728.925000px;}
.y74{bottom:731.985000px;}
.ya2{bottom:735.225000px;}
.yca{bottom:739.725000px;}
.y13{bottom:746.925000px;}
.y48{bottom:748.725000px;}
.y73{bottom:752.685000px;}
.ya1{bottom:755.025000px;}
.yc9{bottom:759.525000px;}
.y12{bottom:766.725000px;}
.y47{bottom:768.525000px;}
.ya0{bottom:769.965000px;}
.y72{bottom:773.205000px;}
.yc8{bottom:779.505000px;}
.y11{bottom:786.705000px;}
.y46{bottom:788.505000px;}
.y9f{bottom:790.485000px;}
.y71{bottom:793.725000px;}
.yc7{bottom:799.305000px;}
.y10{bottom:806.505000px;}
.y45{bottom:808.305000px;}
.y9e{bottom:811.005000px;}
.y70{bottom:814.425000px;}
.yc6{bottom:819.105000px;}
.yf{bottom:826.125000px;}
.y44{bottom:828.105000px;}
.y9d{bottom:831.705000px;}
.y6e{bottom:834.945000px;}
.yc5{bottom:838.905000px;}
.y43{bottom:847.905000px;}
.ye{bottom:848.445000px;}
.y9c{bottom:852.225000px;}
.y6c{bottom:855.465000px;}
.yc4{bottom:858.705000px;}
.y42{bottom:867.705000px;}
.yd{bottom:873.465000px;}
.y6a{bottom:876.165000px;}
.y9b{bottom:878.685000px;}
.y41{bottom:887.685000px;}
.yc{bottom:893.265000px;}
.y9a{bottom:898.530000px;}
.y40{bottom:907.530000px;}
.yb{bottom:908.430000px;}
.y99{bottom:918.330000px;}
.y3f{bottom:927.330000px;}
.ya{bottom:930.210000px;}
.y98{bottom:938.130000px;}
.y3e{bottom:947.130000px;}
.y9{bottom:951.630000px;}
.y97{bottom:957.930000px;}
.y3d{bottom:966.930000px;}
.y8{bottom:975.030000px;}
.y96{bottom:977.910000px;}
.y3c{bottom:986.910000px;}
.y7{bottom:1006.710000px;}
.y3b{bottom:1026.510000px;}
.yc3{bottom:1036.950000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.yc2{bottom:1057.470000px;}
.y39{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h12{height:2.010938px;}
.he{height:19.800000px;}
.h10{height:19.836000px;}
.hd{height:19.980000px;}
.h7{height:27.147656px;}
.h9{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.hf{height:44.640000px;}
.hc{height:44.676000px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h8{height:50.218242px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.h11{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:37.656000px;}
.w4{width:46.800000px;}
.w7{width:49.320000px;}
.w5{width:57.600000px;}
.w8{width:87.156000px;}
.we{width:90.936000px;}
.w11{width:93.816000px;}
.w6{width:105.876000px;}
.wc{width:124.776000px;}
.wa{width:130.320000px;}
.w9{width:137.736000px;}
.wf{width:141.336000px;}
.w13{width:144.360000px;}
.w10{width:153.930000px;}
.w12{width:157.530000px;}
.wb{width:163.110000px;}
.w14{width:210.810000px;}
.wd{width:246.315000px;}
.w15{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.x1c{left:9.765000px;}
.x22{left:14.220000px;}
.x11{left:16.200000px;}
.xa{left:18.000000px;}
.x12{left:20.520000px;}
.x10{left:26.280000px;}
.xc{left:27.900000px;}
.x1f{left:31.365000px;}
.x1e{left:33.660000px;}
.xf{left:36.720000px;}
.x2d{left:40.320000px;}
.xd{left:43.380000px;}
.x13{left:46.260000px;}
.x2a{left:52.020000px;}
.x1{left:54.179987px;}
.xe{left:64.470000px;}
.x3{left:70.199987px;}
.x30{left:73.799987px;}
.x2{left:75.599987px;}
.x26{left:80.865000px;}
.x1d{left:83.370000px;}
.x16{left:96.300000px;}
.x28{left:101.205000px;}
.x17{left:115.380000px;}
.x19{left:122.985000px;}
.x2f{left:129.240000px;}
.x2b{left:131.430000px;}
.x25{left:133.785000px;}
.x24{left:145.485000px;}
.x31{left:190.290000px;}
.x20{left:206.175000px;}
.x27{left:251.310000px;}
.x4{left:252.570000px;}
.x32{left:256.710000px;}
.x18{left:258.330000px;}
.x6{left:290.955000px;}
.x2c{left:295.275000px;}
.x14{left:312.195000px;}
.x7{left:338.475000px;}
.x29{left:393.375000px;}
.x8{left:396.795000px;}
.x1a{left:422.175000px;}
.x15{left:450.645000px;}
.x2e{left:453.525000px;}
.x21{left:499.605000px;}
.x9{left:503.385000px;}
.x1b{left:547.665000px;}
.x23{left:549.645000px;}
.xb{left:553.425000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.456533pt;}
.ls1b{letter-spacing:0.480000pt;}
.lse{letter-spacing:6.992640pt;}
.ls18{letter-spacing:10.192640pt;}
.ls11{letter-spacing:13.392640pt;}
.ls1{letter-spacing:28.112640pt;}
.ls16{letter-spacing:37.072640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._38{margin-left:-847.090560pt;}
._39{margin-left:-588.927360pt;}
._30{margin-left:-551.115520pt;}
._2e{margin-left:-545.166080pt;}
._6{margin-left:-512.309760pt;}
._3d{margin-left:-474.250240pt;}
._32{margin-left:-468.353920pt;}
._31{margin-left:-462.404480pt;}
._3a{margin-left:-456.508160pt;}
._29{margin-left:-416.615040pt;}
._2d{margin-left:-415.233920pt;}
._2a{margin-left:-403.335040pt;}
._37{margin-left:-400.413440pt;}
._3b{margin-left:-370.984960pt;}
._35{margin-left:-359.086080pt;}
._1e{margin-left:-348.727680pt;}
._34{margin-left:-295.660800pt;}
._20{margin-left:-282.380800pt;}
._36{margin-left:-251.411840pt;}
._25{margin-left:-216.414720pt;}
._2f{margin-left:-189.801600pt;}
._1d{margin-left:-177.628160pt;}
._26{margin-left:-158.832640pt;}
._23{margin-left:-148.146560pt;}
._28{margin-left:-145.552640pt;}
._2c{margin-left:-142.631040pt;}
._1c{margin-left:-138.168960pt;}
._33{margin-left:-124.942080pt;}
._1f{margin-left:-111.662080pt;}
._1b{margin-left:-105.712640pt;}
._27{margin-left:-93.920000pt;}
._3c{margin-left:-81.280000pt;}
._21{margin-left:-68.160000pt;}
._2b{margin-left:-54.080000pt;}
._22{margin-left:-51.105280pt;}
._24{margin-left:-45.208960pt;}
._1a{margin-left:-13.611093pt;}
._7{margin-left:-8.289493pt;}
._8{margin-left:-4.216747pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.088533pt;}
._e{width:3.240533pt;}
._10{width:4.138880pt;}
._f{width:5.205760pt;}
._19{width:6.151680pt;}
._14{width:7.041920pt;}
._13{width:8.286720pt;}
._15{width:9.774080pt;}
._12{width:11.314560pt;}
._11{width:12.217600pt;}
._17{width:14.776320pt;}
._18{width:15.882880pt;}
._3f{width:16.883200pt;}
._9{width:17.875200pt;}
._a{width:18.908160pt;}
._16{width:19.878400pt;}
._3e{width:20.780800pt;}
._d{width:21.952427pt;}
._c{width:22.845440pt;}
._40{width:23.821653pt;}
._41{width:24.961067pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:5.120000pt;}
.y6d{bottom:5.280000pt;}
.yef{bottom:9.600000pt;}
.y7f{bottom:27.200000pt;}
.y6b{bottom:27.240000pt;}
.yec{bottom:30.880000pt;}
.yee{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.yed{bottom:62.426667pt;}
.y69{bottom:83.680000pt;}
.yc1{bottom:84.160000pt;}
.y93{bottom:87.360000pt;}
.y32{bottom:89.600000pt;}
.yea{bottom:93.280000pt;}
.y95{bottom:95.840000pt;}
.y68{bottom:101.280000pt;}
.yc0{bottom:101.920000pt;}
.yeb{bottom:103.360000pt;}
.y92{bottom:105.120000pt;}
.y31{bottom:107.200000pt;}
.ye9{bottom:110.880000pt;}
.y94{bottom:114.240000pt;}
.y67{bottom:118.880000pt;}
.ybf{bottom:119.520000pt;}
.y91{bottom:122.720000pt;}
.y30{bottom:124.960000pt;}
.ye8{bottom:128.480000pt;}
.y66{bottom:136.506667pt;}
.y90{bottom:140.346667pt;}
.y2f{bottom:142.586667pt;}
.ybe{bottom:145.146667pt;}
.ye7{bottom:146.106667pt;}
.y65{bottom:154.106667pt;}
.y8f{bottom:157.946667pt;}
.y2e{bottom:160.186667pt;}
.ybd{bottom:162.746667pt;}
.ye6{bottom:163.866667pt;}
.y64{bottom:171.866667pt;}
.y8e{bottom:175.546667pt;}
.y2d{bottom:177.786667pt;}
.ybc{bottom:180.346667pt;}
.ye5{bottom:181.466667pt;}
.y63{bottom:189.466667pt;}
.y2c{bottom:195.386667pt;}
.ybb{bottom:198.106667pt;}
.ye4{bottom:199.066667pt;}
.y8d{bottom:201.306667pt;}
.y62{bottom:207.066667pt;}
.y2b{bottom:213.146667pt;}
.yba{bottom:215.706667pt;}
.ye3{bottom:216.666667pt;}
.y8c{bottom:218.906667pt;}
.y61{bottom:224.666667pt;}
.y2a{bottom:230.746667pt;}
.yb9{bottom:233.306667pt;}
.ye2{bottom:234.266667pt;}
.y8b{bottom:236.506667pt;}
.y60{bottom:242.266667pt;}
.yb8{bottom:246.426667pt;}
.y29{bottom:248.346667pt;}
.ye1{bottom:252.026667pt;}
.y8a{bottom:254.106667pt;}
.y5f{bottom:260.026667pt;}
.yb7{bottom:264.826667pt;}
.y28{bottom:265.946667pt;}
.ye0{bottom:269.626667pt;}
.y89{bottom:271.706667pt;}
.y5e{bottom:277.626667pt;}
.yb6{bottom:283.066667pt;}
.y27{bottom:283.546667pt;}
.y88{bottom:284.986667pt;}
.ydf{bottom:287.226667pt;}
.y5d{bottom:295.226667pt;}
.y26{bottom:301.306667pt;}
.y87{bottom:303.226667pt;}
.yde{bottom:304.826667pt;}
.yb5{bottom:306.426667pt;}
.y5c{bottom:312.826667pt;}
.y25{bottom:318.906667pt;}
.y86{bottom:321.466667pt;}
.ydd{bottom:322.426667pt;}
.yb4{bottom:324.186667pt;}
.y5b{bottom:330.426667pt;}
.y24{bottom:336.506667pt;}
.y85{bottom:339.866667pt;}
.ydc{bottom:340.186667pt;}
.yb3{bottom:341.786667pt;}
.y5a{bottom:348.186667pt;}
.y23{bottom:354.106667pt;}
.ydb{bottom:357.826667pt;}
.y84{bottom:358.146667pt;}
.yb2{bottom:359.426667pt;}
.y59{bottom:365.826667pt;}
.y22{bottom:371.746667pt;}
.yda{bottom:375.426667pt;}
.y83{bottom:376.386667pt;}
.yb1{bottom:377.026667pt;}
.y58{bottom:383.426667pt;}
.y21{bottom:389.506667pt;}
.yd9{bottom:393.026667pt;}
.yb0{bottom:394.626667pt;}
.y82{bottom:394.786667pt;}
.y57{bottom:401.026667pt;}
.y20{bottom:407.106667pt;}
.yd8{bottom:410.626667pt;}
.yaf{bottom:412.386667pt;}
.y81{bottom:413.026667pt;}
.y56{bottom:418.626667pt;}
.y1f{bottom:424.706667pt;}
.yd7{bottom:428.386667pt;}
.yae{bottom:429.986667pt;}
.y80{bottom:431.266667pt;}
.y55{bottom:436.386667pt;}
.y1e{bottom:442.306667pt;}
.yad{bottom:443.106667pt;}
.yd6{bottom:445.986667pt;}
.y7e{bottom:449.666667pt;}
.y54{bottom:453.986667pt;}
.y1d{bottom:459.906667pt;}
.yac{bottom:461.346667pt;}
.yd5{bottom:463.586667pt;}
.y53{bottom:471.586667pt;}
.y1c{bottom:477.666667pt;}
.yab{bottom:479.746667pt;}
.yd4{bottom:481.186667pt;}
.y52{bottom:489.186667pt;}
.y7d{bottom:495.106667pt;}
.y1b{bottom:495.266667pt;}
.yaa{bottom:497.986667pt;}
.yd3{bottom:498.786667pt;}
.y51{bottom:506.786667pt;}
.y7c{bottom:512.706667pt;}
.y1a{bottom:512.866667pt;}
.ya9{bottom:516.226667pt;}
.yd2{bottom:516.546667pt;}
.y50{bottom:524.546667pt;}
.y7b{bottom:530.306667pt;}
.yd1{bottom:534.146667pt;}
.ya8{bottom:539.746667pt;}
.y4f{bottom:542.146667pt;}
.y7a{bottom:548.066667pt;}
.y19{bottom:550.146667pt;}
.yd0{bottom:551.746667pt;}
.ya7{bottom:557.346667pt;}
.y4e{bottom:559.746667pt;}
.y79{bottom:565.666667pt;}
.ycf{bottom:569.346667pt;}
.ya6{bottom:574.946667pt;}
.y18{bottom:575.746667pt;}
.y4d{bottom:577.373333pt;}
.y78{bottom:583.293333pt;}
.yce{bottom:586.973333pt;}
.ya5{bottom:592.733333pt;}
.y17{bottom:593.373333pt;}
.y4c{bottom:594.973333pt;}
.y77{bottom:600.893333pt;}
.ycd{bottom:604.733333pt;}
.y16{bottom:611.133333pt;}
.y4b{bottom:612.733333pt;}
.y76{bottom:614.013333pt;}
.ya4{bottom:618.333333pt;}
.ycc{bottom:622.333333pt;}
.y15{bottom:628.733333pt;}
.y4a{bottom:630.333333pt;}
.y75{bottom:632.413333pt;}
.ya3{bottom:635.933333pt;}
.ycb{bottom:639.933333pt;}
.y14{bottom:646.333333pt;}
.y49{bottom:647.933333pt;}
.y74{bottom:650.653333pt;}
.ya2{bottom:653.533333pt;}
.yca{bottom:657.533333pt;}
.y13{bottom:663.933333pt;}
.y48{bottom:665.533333pt;}
.y73{bottom:669.053333pt;}
.ya1{bottom:671.133333pt;}
.yc9{bottom:675.133333pt;}
.y12{bottom:681.533333pt;}
.y47{bottom:683.133333pt;}
.ya0{bottom:684.413333pt;}
.y72{bottom:687.293333pt;}
.yc8{bottom:692.893333pt;}
.y11{bottom:699.293333pt;}
.y46{bottom:700.893333pt;}
.y9f{bottom:702.653333pt;}
.y71{bottom:705.533333pt;}
.yc7{bottom:710.493333pt;}
.y10{bottom:716.893333pt;}
.y45{bottom:718.493333pt;}
.y9e{bottom:720.893333pt;}
.y70{bottom:723.933333pt;}
.yc6{bottom:728.093333pt;}
.yf{bottom:734.333333pt;}
.y44{bottom:736.093333pt;}
.y9d{bottom:739.293333pt;}
.y6e{bottom:742.173333pt;}
.yc5{bottom:745.693333pt;}
.y43{bottom:753.693333pt;}
.ye{bottom:754.173333pt;}
.y9c{bottom:757.533333pt;}
.y6c{bottom:760.413333pt;}
.yc4{bottom:763.293333pt;}
.y42{bottom:771.293333pt;}
.yd{bottom:776.413333pt;}
.y6a{bottom:778.813333pt;}
.y9b{bottom:781.053333pt;}
.y41{bottom:789.053333pt;}
.yc{bottom:794.013333pt;}
.y9a{bottom:798.693333pt;}
.y40{bottom:806.693333pt;}
.yb{bottom:807.493333pt;}
.y99{bottom:816.293333pt;}
.y3f{bottom:824.293333pt;}
.ya{bottom:826.853333pt;}
.y98{bottom:833.893333pt;}
.y3e{bottom:841.893333pt;}
.y9{bottom:845.893333pt;}
.y97{bottom:851.493333pt;}
.y3d{bottom:859.493333pt;}
.y8{bottom:866.693333pt;}
.y96{bottom:869.253333pt;}
.y3c{bottom:877.253333pt;}
.y7{bottom:894.853333pt;}
.y3b{bottom:912.453333pt;}
.yc3{bottom:921.733333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.yc2{bottom:939.973333pt;}
.y39{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h12{height:1.787500pt;}
.he{height:17.600000pt;}
.h10{height:17.632000pt;}
.hd{height:17.760000pt;}
.h7{height:24.131250pt;}
.h9{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.hf{height:39.680000pt;}
.hc{height:39.712000pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h8{height:44.638438pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.h11{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:33.472000pt;}
.w4{width:41.600000pt;}
.w7{width:43.840000pt;}
.w5{width:51.200000pt;}
.w8{width:77.472000pt;}
.we{width:80.832000pt;}
.w11{width:83.392000pt;}
.w6{width:94.112000pt;}
.wc{width:110.912000pt;}
.wa{width:115.840000pt;}
.w9{width:122.432000pt;}
.wf{width:125.632000pt;}
.w13{width:128.320000pt;}
.w10{width:136.826667pt;}
.w12{width:140.026667pt;}
.wb{width:144.986667pt;}
.w14{width:187.386667pt;}
.wd{width:218.946667pt;}
.w15{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.x1c{left:8.680000pt;}
.x22{left:12.640000pt;}
.x11{left:14.400000pt;}
.xa{left:16.000000pt;}
.x12{left:18.240000pt;}
.x10{left:23.360000pt;}
.xc{left:24.800000pt;}
.x1f{left:27.880000pt;}
.x1e{left:29.920000pt;}
.xf{left:32.640000pt;}
.x2d{left:35.840000pt;}
.xd{left:38.560000pt;}
.x13{left:41.120000pt;}
.x2a{left:46.240000pt;}
.x1{left:48.159988pt;}
.xe{left:57.306667pt;}
.x3{left:62.399988pt;}
.x30{left:65.599988pt;}
.x2{left:67.199988pt;}
.x26{left:71.880000pt;}
.x1d{left:74.106667pt;}
.x16{left:85.600000pt;}
.x28{left:89.960000pt;}
.x17{left:102.560000pt;}
.x19{left:109.320000pt;}
.x2f{left:114.880000pt;}
.x2b{left:116.826667pt;}
.x25{left:118.920000pt;}
.x24{left:129.320000pt;}
.x31{left:169.146667pt;}
.x20{left:183.266667pt;}
.x27{left:223.386667pt;}
.x4{left:224.506667pt;}
.x32{left:228.186667pt;}
.x18{left:229.626667pt;}
.x6{left:258.626667pt;}
.x2c{left:262.466667pt;}
.x14{left:277.506667pt;}
.x7{left:300.866667pt;}
.x29{left:349.666667pt;}
.x8{left:352.706667pt;}
.x1a{left:375.266667pt;}
.x15{left:400.573333pt;}
.x2e{left:403.133333pt;}
.x21{left:444.093333pt;}
.x9{left:447.453333pt;}
.x1b{left:486.813333pt;}
.x23{left:488.573333pt;}
.xb{left:491.933333pt;}
}




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