
    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_0eff526a08f5c508776e10a2.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_01dbbc0fa97ead2ea7b3541a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.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_91c8436061f3bf3a0208b3b0.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_76691f18df3ef561d96c80fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce356b57e003979918ef3420.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4d709a0d20cf393bace4830.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_846c07dccefa7c3c3bf1ee27.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9e6ed8b0afea4a859ef90df6.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2e{letter-spacing:-1.854000px;}
.ls1b{letter-spacing:-1.494000px;}
.ls2a{letter-spacing:-1.260000px;}
.ls2d{letter-spacing:-1.182000px;}
.ls1a{letter-spacing:-1.134000px;}
.ls19{letter-spacing:-0.924000px;}
.ls30{letter-spacing:-0.822000px;}
.lsa{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.206400px;}
.ls28{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls31{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls29{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.900000px;}
.ls32{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.546560px;}
.ls20{letter-spacing:2.676000px;}
.ls16{letter-spacing:2.750400px;}
.ls8{letter-spacing:2.826000px;}
.ls14{letter-spacing:2.869920px;}
.ls24{letter-spacing:2.934000px;}
.ls7{letter-spacing:2.988000px;}
.ls6{letter-spacing:3.060000px;}
.ls21{letter-spacing:3.138000px;}
.ls18{letter-spacing:3.139920px;}
.ls22{letter-spacing:3.240000px;}
.ls26{letter-spacing:3.654000px;}
.ls25{letter-spacing:3.858000px;}
.ls23{letter-spacing:3.859920px;}
.ls2b{letter-spacing:10.260000px;}
.ls1d{letter-spacing:11.700000px;}
.ls34{letter-spacing:16.506720px;}
.lse{letter-spacing:16.650720px;}
.ls33{letter-spacing:46.026720px;}
.ls15{letter-spacing:61.146720px;}
.ls2c{letter-spacing:64.026720px;}
.ls1{letter-spacing:98.010720px;}
.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;}
}
.ws1d{word-spacing:-59.760000px;}
.ws11{word-spacing:-18.798000px;}
.ws12{word-spacing:-18.594000px;}
.ws13{word-spacing:-18.180000px;}
.wsf{word-spacing:-18.078000px;}
.ws3{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.874000px;}
.ws14{word-spacing:-17.766000px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.246600px;}
.ws18{word-spacing:-15.199800px;}
.ws1f{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws1e{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.479800px;}
.ws1b{word-spacing:-14.328000px;}
.ws15{word-spacing:-14.166000px;}
.ws1c{word-spacing:-14.118000px;}
.wsb{word-spacing:-13.806000px;}
.ws19{word-spacing:-13.758000px;}
.wsc{word-spacing:-13.446000px;}
.ws1a{word-spacing:-13.086000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._36{margin-left:-14.633280px;}
._26{margin-left:-10.440960px;}
._1c{margin-left:-4.585680px;}
._18{margin-left:-3.512400px;}
._b{margin-left:-2.441760px;}
._0{margin-left:-1.080000px;}
._12{width:1.095360px;}
._1{width:2.220000px;}
._13{width:3.855360px;}
._15{width:4.903200px;}
._14{width:5.968560px;}
._16{width:7.881600px;}
._17{width:8.967120px;}
._6{width:10.800000px;}
._1a{width:12.045360px;}
._19{width:13.326480px;}
._1f{width:16.188240px;}
._27{width:17.315280px;}
._10{width:18.948000px;}
._2d{width:19.980720px;}
._2b{width:21.461280px;}
._29{width:22.564560px;}
._28{width:24.034800px;}
._2a{width:25.308240px;}
._34{width:27.545760px;}
._35{width:28.784640px;}
._2c{width:31.311600px;}
._20{width:50.380320px;}
._21{width:51.841440px;}
._22{width:54.873600px;}
._2f{width:64.473120px;}
._30{width:67.676160px;}
._1d{width:72.504000px;}
._7{width:76.284960px;}
._31{width:80.009040px;}
._1e{width:81.684000px;}
._25{width:95.896080px;}
._11{width:99.660000px;}
._2e{width:124.313280px;}
._1b{width:126.504000px;}
._32{width:137.935680px;}
._33{width:140.311920px;}
._23{width:148.031040px;}
._24{width:149.704560px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1097.040000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.yb4{bottom:5.790000px;}
.y7e{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y7d{bottom:25.740000px;}
.yb3{bottom:26.670000px;}
.y5{bottom:40.320000px;}
.y7c{bottom:46.650000px;}
.yc{bottom:46.656000px;}
.yb2{bottom:47.550000px;}
.yad{bottom:52.950000px;}
.yb{bottom:66.996000px;}
.y7b{bottom:67.530000px;}
.y4{bottom:68.400000px;}
.yb1{bottom:68.610000px;}
.yac{bottom:72.930000px;}
.yd{bottom:83.916000px;}
.y7a{bottom:87.330000px;}
.ya{bottom:87.516000px;}
.yb0{bottom:89.490000px;}
.yab{bottom:92.730000px;}
.y3{bottom:96.330000px;}
.y79{bottom:107.310000px;}
.y72{bottom:109.296000px;}
.yaf{bottom:110.370000px;}
.y94{bottom:110.556000px;}
.yaa{bottom:112.530000px;}
.y3a{bottom:114.156000px;}
.ycd{bottom:115.596000px;}
.yc9{bottom:115.956000px;}
.y2{bottom:125.670000px;}
.y78{bottom:127.110000px;}
.y71{bottom:129.276000px;}
.y93{bottom:130.356000px;}
.yae{bottom:131.250000px;}
.ya9{bottom:132.330000px;}
.y39{bottom:133.956000px;}
.y9a{bottom:134.136000px;}
.ycc{bottom:134.316000px;}
.yc8{bottom:135.936000px;}
.y77{bottom:146.910000px;}
.y70{bottom:149.076000px;}
.y92{bottom:150.330000px;}
.ya8{bottom:152.130000px;}
.ycb{bottom:152.850000px;}
.y38{bottom:153.750000px;}
.y99{bottom:153.930000px;}
.yc7{bottom:155.730000px;}
.y76{bottom:166.710000px;}
.y6f{bottom:168.870000px;}
.y91{bottom:170.130000px;}
.yca{bottom:171.390000px;}
.ya7{bottom:172.110000px;}
.y37{bottom:173.730000px;}
.yc6{bottom:175.530000px;}
.y75{bottom:186.510000px;}
.y90{bottom:189.930000px;}
.y36{bottom:193.530000px;}
.yc5{bottom:195.330000px;}
.y6e{bottom:197.670000px;}
.y74{bottom:206.490000px;}
.y8f{bottom:209.730000px;}
.y35{bottom:213.330000px;}
.yc4{bottom:215.130000px;}
.y6d{bottom:217.470000px;}
.y8e{bottom:229.530000px;}
.y34{bottom:233.130000px;}
.y98{bottom:233.310000px;}
.yc3{bottom:235.110000px;}
.y6c{bottom:237.450000px;}
.y8d{bottom:249.510000px;}
.y33{bottom:252.930000px;}
.y97{bottom:253.110000px;}
.yc2{bottom:254.910000px;}
.y6b{bottom:257.250000px;}
.y8c{bottom:269.310000px;}
.y32{bottom:272.910000px;}
.yc1{bottom:274.710000px;}
.y6a{bottom:277.050000px;}
.y8b{bottom:289.110000px;}
.y31{bottom:292.710000px;}
.yc0{bottom:294.555000px;}
.y69{bottom:296.895000px;}
.y8a{bottom:308.955000px;}
.y30{bottom:312.555000px;}
.ybf{bottom:314.355000px;}
.y68{bottom:316.695000px;}
.y89{bottom:328.755000px;}
.y2f{bottom:332.355000px;}
.y96{bottom:332.535000px;}
.ybe{bottom:334.335000px;}
.y67{bottom:336.675000px;}
.y88{bottom:348.735000px;}
.y2e{bottom:352.155000px;}
.y95{bottom:352.335000px;}
.ybd{bottom:354.135000px;}
.y66{bottom:356.475000px;}
.y87{bottom:368.535000px;}
.y2d{bottom:372.135000px;}
.ybc{bottom:373.935000px;}
.y65{bottom:376.275000px;}
.y86{bottom:388.335000px;}
.y2c{bottom:391.935000px;}
.ybb{bottom:393.735000px;}
.y64{bottom:396.075000px;}
.y85{bottom:408.135000px;}
.y2b{bottom:411.735000px;}
.yba{bottom:413.535000px;}
.y63{bottom:415.875000px;}
.y84{bottom:427.935000px;}
.y2a{bottom:431.535000px;}
.y57{bottom:431.715000px;}
.yb9{bottom:433.515000px;}
.y62{bottom:435.855000px;}
.y83{bottom:447.915000px;}
.y29{bottom:451.335000px;}
.y56{bottom:451.515000px;}
.yb8{bottom:453.315000px;}
.y61{bottom:455.655000px;}
.y82{bottom:467.715000px;}
.y28{bottom:471.315000px;}
.yb7{bottom:473.115000px;}
.y60{bottom:475.455000px;}
.y81{bottom:487.515000px;}
.y27{bottom:491.115000px;}
.yb6{bottom:492.915000px;}
.y5f{bottom:495.255000px;}
.y80{bottom:507.315000px;}
.y55{bottom:510.915000px;}
.y26{bottom:511.275000px;}
.yb5{bottom:512.715000px;}
.y5e{bottom:515.055000px;}
.y7f{bottom:527.115000px;}
.y54{bottom:530.895000px;}
.y25{bottom:532.695000px;}
.y5d{bottom:535.035000px;}
.y73{bottom:541.875000px;}
.y53{bottom:550.695000px;}
.y24{bottom:552.495000px;}
.y5c{bottom:554.835000px;}
.ya6{bottom:567.255000px;}
.y52{bottom:570.495000px;}
.y23{bottom:572.295000px;}
.y5b{bottom:574.665000px;}
.y51{bottom:590.325000px;}
.y22{bottom:592.125000px;}
.y5a{bottom:594.825000px;}
.y50{bottom:610.125000px;}
.y21{bottom:612.105000px;}
.y59{bottom:616.245000px;}
.y4f{bottom:630.105000px;}
.y20{bottom:631.905000px;}
.y58{bottom:632.805000px;}
.y4e{bottom:649.905000px;}
.y1f{bottom:651.705000px;}
.y4d{bottom:669.705000px;}
.y1e{bottom:671.505000px;}
.y4c{bottom:689.505000px;}
.y1d{bottom:691.305000px;}
.y4b{bottom:709.305000px;}
.y1c{bottom:711.285000px;}
.y4a{bottom:729.285000px;}
.y1b{bottom:731.085000px;}
.y49{bottom:749.085000px;}
.y1a{bottom:750.885000px;}
.ya5{bottom:759.885000px;}
.y48{bottom:768.885000px;}
.y19{bottom:770.685000px;}
.ya4{bottom:779.685000px;}
.y47{bottom:788.685000px;}
.y18{bottom:795.705000px;}
.ya3{bottom:799.485000px;}
.y46{bottom:808.485000px;}
.y17{bottom:815.685000px;}
.ya2{bottom:819.465000px;}
.y45{bottom:828.465000px;}
.y16{bottom:830.265000px;}
.ya1{bottom:839.265000px;}
.y44{bottom:848.265000px;}
.y15{bottom:855.330000px;}
.ya0{bottom:859.110000px;}
.y43{bottom:868.110000px;}
.y14{bottom:870.450000px;}
.y9f{bottom:878.910000px;}
.y42{bottom:887.910000px;}
.y13{bottom:892.230000px;}
.y9e{bottom:898.710000px;}
.y41{bottom:907.710000px;}
.y12{bottom:913.650000px;}
.y9d{bottom:918.690000px;}
.y40{bottom:927.690000px;}
.y11{bottom:937.050000px;}
.y9c{bottom:938.490000px;}
.y3f{bottom:947.490000px;}
.y9b{bottom:958.290000px;}
.y3e{bottom:967.290000px;}
.y10{bottom:968.730000px;}
.y3d{bottom:987.090000px;}
.yf{bottom:1000.590000px;}
.y3c{bottom:1006.890000px;}
.y3b{bottom:1026.870000px;}
.y9{bottom:1045.410000px;}
.y1{bottom:1061.790000px;}
.y7{bottom:1095.990000px;}
.h6{height:2.082656px;}
.ha{height:21.240000px;}
.he{height:28.115859px;}
.h7{height:33.480000px;}
.hd{height:42.164648px;}
.hf{height:43.215117px;}
.h10{height:43.506914px;}
.h15{height:44.265586px;}
.h4{height:46.736719px;}
.hb{height:47.901094px;}
.h16{height:48.496641px;}
.h11{height:48.995859px;}
.h12{height:49.175859px;}
.h17{height:49.255313px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h13{height:67.824844px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h18{height:186.150000px;}
.h14{height:220.530000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:9.900000px;}
.w3{width:137.376000px;}
.w6{width:228.450000px;}
.w7{width:446.685000px;}
.w8{width:479.085000px;}
.w2{width:649.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x19{left:12.600000px;}
.x1b{left:39.600000px;}
.x1{left:53.280000px;}
.x6{left:64.979987px;}
.xa{left:66.599987px;}
.x1c{left:81.035987px;}
.xb{left:87.335987px;}
.x7{left:90.575987px;}
.x18{left:92.556000px;}
.x15{left:101.010000px;}
.x12{left:108.035987px;}
.x16{left:110.730000px;}
.x4{left:118.470000px;}
.x17{left:137.730000px;}
.xc{left:140.255987px;}
.x13{left:162.029987px;}
.x11{left:166.529987px;}
.xe{left:223.769987px;}
.x8{left:258.194987px;}
.xf{left:285.734987px;}
.x1a{left:321.735000px;}
.x14{left:337.935000px;}
.xd{left:351.434987px;}
.x9{left:446.684987px;}
.x10{left:697.829987px;}
.x3{left:702.690000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2e{letter-spacing:-1.648000pt;}
.ls1b{letter-spacing:-1.328000pt;}
.ls2a{letter-spacing:-1.120000pt;}
.ls2d{letter-spacing:-1.050667pt;}
.ls1a{letter-spacing:-1.008000pt;}
.ls19{letter-spacing:-0.821333pt;}
.ls30{letter-spacing:-0.730667pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.183467pt;}
.ls28{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls31{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls29{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.374720pt;}
.ls20{letter-spacing:2.378667pt;}
.ls16{letter-spacing:2.444800pt;}
.ls8{letter-spacing:2.512000pt;}
.ls14{letter-spacing:2.551040pt;}
.ls24{letter-spacing:2.608000pt;}
.ls7{letter-spacing:2.656000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls21{letter-spacing:2.789333pt;}
.ls18{letter-spacing:2.791040pt;}
.ls22{letter-spacing:2.880000pt;}
.ls26{letter-spacing:3.248000pt;}
.ls25{letter-spacing:3.429333pt;}
.ls23{letter-spacing:3.431040pt;}
.ls2b{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls34{letter-spacing:14.672640pt;}
.lse{letter-spacing:14.800640pt;}
.ls33{letter-spacing:40.912640pt;}
.ls15{letter-spacing:54.352640pt;}
.ls2c{letter-spacing:56.912640pt;}
.ls1{letter-spacing:87.120640pt;}
.ws1d{word-spacing:-53.120000pt;}
.ws11{word-spacing:-16.709333pt;}
.ws12{word-spacing:-16.528000pt;}
.ws13{word-spacing:-16.160000pt;}
.wsf{word-spacing:-16.069333pt;}
.ws3{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.888000pt;}
.ws14{word-spacing:-15.792000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.552533pt;}
.ws18{word-spacing:-13.510933pt;}
.ws1f{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1e{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.185067pt;}
.ws17{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.870933pt;}
.ws1b{word-spacing:-12.736000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws1c{word-spacing:-12.549333pt;}
.wsb{word-spacing:-12.272000pt;}
.ws19{word-spacing:-12.229333pt;}
.wsc{word-spacing:-11.952000pt;}
.ws1a{word-spacing:-11.632000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._36{margin-left:-13.007360pt;}
._26{margin-left:-9.280853pt;}
._1c{margin-left:-4.076160pt;}
._18{margin-left:-3.122133pt;}
._b{margin-left:-2.170453pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.973653pt;}
._1{width:1.973333pt;}
._13{width:3.426987pt;}
._15{width:4.358400pt;}
._14{width:5.305387pt;}
._16{width:7.005867pt;}
._17{width:7.970773pt;}
._6{width:9.600000pt;}
._1a{width:10.706987pt;}
._19{width:11.845760pt;}
._1f{width:14.389547pt;}
._27{width:15.391360pt;}
._10{width:16.842667pt;}
._2d{width:17.760640pt;}
._2b{width:19.076693pt;}
._29{width:20.057387pt;}
._28{width:21.364267pt;}
._2a{width:22.496213pt;}
._34{width:24.485120pt;}
._35{width:25.586347pt;}
._2c{width:27.832533pt;}
._20{width:44.782507pt;}
._21{width:46.081280pt;}
._22{width:48.776533pt;}
._2f{width:57.309440pt;}
._30{width:60.156587pt;}
._1d{width:64.448000pt;}
._7{width:67.808853pt;}
._31{width:71.119147pt;}
._1e{width:72.608000pt;}
._25{width:85.240960pt;}
._11{width:88.586667pt;}
._2e{width:110.500693pt;}
._1b{width:112.448000pt;}
._32{width:122.609493pt;}
._33{width:124.721707pt;}
._23{width:131.583147pt;}
._24{width:133.070720pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:975.146667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.yb4{bottom:5.146667pt;}
.y7e{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y7d{bottom:22.880000pt;}
.yb3{bottom:23.706667pt;}
.y5{bottom:35.840000pt;}
.y7c{bottom:41.466667pt;}
.yc{bottom:41.472000pt;}
.yb2{bottom:42.266667pt;}
.yad{bottom:47.066667pt;}
.yb{bottom:59.552000pt;}
.y7b{bottom:60.026667pt;}
.y4{bottom:60.800000pt;}
.yb1{bottom:60.986667pt;}
.yac{bottom:64.826667pt;}
.yd{bottom:74.592000pt;}
.y7a{bottom:77.626667pt;}
.ya{bottom:77.792000pt;}
.yb0{bottom:79.546667pt;}
.yab{bottom:82.426667pt;}
.y3{bottom:85.626667pt;}
.y79{bottom:95.386667pt;}
.y72{bottom:97.152000pt;}
.yaf{bottom:98.106667pt;}
.y94{bottom:98.272000pt;}
.yaa{bottom:100.026667pt;}
.y3a{bottom:101.472000pt;}
.ycd{bottom:102.752000pt;}
.yc9{bottom:103.072000pt;}
.y2{bottom:111.706667pt;}
.y78{bottom:112.986667pt;}
.y71{bottom:114.912000pt;}
.y93{bottom:115.872000pt;}
.yae{bottom:116.666667pt;}
.ya9{bottom:117.626667pt;}
.y39{bottom:119.072000pt;}
.y9a{bottom:119.232000pt;}
.ycc{bottom:119.392000pt;}
.yc8{bottom:120.832000pt;}
.y77{bottom:130.586667pt;}
.y70{bottom:132.512000pt;}
.y92{bottom:133.626667pt;}
.ya8{bottom:135.226667pt;}
.ycb{bottom:135.866667pt;}
.y38{bottom:136.666667pt;}
.y99{bottom:136.826667pt;}
.yc7{bottom:138.426667pt;}
.y76{bottom:148.186667pt;}
.y6f{bottom:150.106667pt;}
.y91{bottom:151.226667pt;}
.yca{bottom:152.346667pt;}
.ya7{bottom:152.986667pt;}
.y37{bottom:154.426667pt;}
.yc6{bottom:156.026667pt;}
.y75{bottom:165.786667pt;}
.y90{bottom:168.826667pt;}
.y36{bottom:172.026667pt;}
.yc5{bottom:173.626667pt;}
.y6e{bottom:175.706667pt;}
.y74{bottom:183.546667pt;}
.y8f{bottom:186.426667pt;}
.y35{bottom:189.626667pt;}
.yc4{bottom:191.226667pt;}
.y6d{bottom:193.306667pt;}
.y8e{bottom:204.026667pt;}
.y34{bottom:207.226667pt;}
.y98{bottom:207.386667pt;}
.yc3{bottom:208.986667pt;}
.y6c{bottom:211.066667pt;}
.y8d{bottom:221.786667pt;}
.y33{bottom:224.826667pt;}
.y97{bottom:224.986667pt;}
.yc2{bottom:226.586667pt;}
.y6b{bottom:228.666667pt;}
.y8c{bottom:239.386667pt;}
.y32{bottom:242.586667pt;}
.yc1{bottom:244.186667pt;}
.y6a{bottom:246.266667pt;}
.y8b{bottom:256.986667pt;}
.y31{bottom:260.186667pt;}
.yc0{bottom:261.826667pt;}
.y69{bottom:263.906667pt;}
.y8a{bottom:274.626667pt;}
.y30{bottom:277.826667pt;}
.ybf{bottom:279.426667pt;}
.y68{bottom:281.506667pt;}
.y89{bottom:292.226667pt;}
.y2f{bottom:295.426667pt;}
.y96{bottom:295.586667pt;}
.ybe{bottom:297.186667pt;}
.y67{bottom:299.266667pt;}
.y88{bottom:309.986667pt;}
.y2e{bottom:313.026667pt;}
.y95{bottom:313.186667pt;}
.ybd{bottom:314.786667pt;}
.y66{bottom:316.866667pt;}
.y87{bottom:327.586667pt;}
.y2d{bottom:330.786667pt;}
.ybc{bottom:332.386667pt;}
.y65{bottom:334.466667pt;}
.y86{bottom:345.186667pt;}
.y2c{bottom:348.386667pt;}
.ybb{bottom:349.986667pt;}
.y64{bottom:352.066667pt;}
.y85{bottom:362.786667pt;}
.y2b{bottom:365.986667pt;}
.yba{bottom:367.586667pt;}
.y63{bottom:369.666667pt;}
.y84{bottom:380.386667pt;}
.y2a{bottom:383.586667pt;}
.y57{bottom:383.746667pt;}
.yb9{bottom:385.346667pt;}
.y62{bottom:387.426667pt;}
.y83{bottom:398.146667pt;}
.y29{bottom:401.186667pt;}
.y56{bottom:401.346667pt;}
.yb8{bottom:402.946667pt;}
.y61{bottom:405.026667pt;}
.y82{bottom:415.746667pt;}
.y28{bottom:418.946667pt;}
.yb7{bottom:420.546667pt;}
.y60{bottom:422.626667pt;}
.y81{bottom:433.346667pt;}
.y27{bottom:436.546667pt;}
.yb6{bottom:438.146667pt;}
.y5f{bottom:440.226667pt;}
.y80{bottom:450.946667pt;}
.y55{bottom:454.146667pt;}
.y26{bottom:454.466667pt;}
.yb5{bottom:455.746667pt;}
.y5e{bottom:457.826667pt;}
.y7f{bottom:468.546667pt;}
.y54{bottom:471.906667pt;}
.y25{bottom:473.506667pt;}
.y5d{bottom:475.586667pt;}
.y73{bottom:481.666667pt;}
.y53{bottom:489.506667pt;}
.y24{bottom:491.106667pt;}
.y5c{bottom:493.186667pt;}
.ya6{bottom:504.226667pt;}
.y52{bottom:507.106667pt;}
.y23{bottom:508.706667pt;}
.y5b{bottom:510.813333pt;}
.y51{bottom:524.733333pt;}
.y22{bottom:526.333333pt;}
.y5a{bottom:528.733333pt;}
.y50{bottom:542.333333pt;}
.y21{bottom:544.093333pt;}
.y59{bottom:547.773333pt;}
.y4f{bottom:560.093333pt;}
.y20{bottom:561.693333pt;}
.y58{bottom:562.493333pt;}
.y4e{bottom:577.693333pt;}
.y1f{bottom:579.293333pt;}
.y4d{bottom:595.293333pt;}
.y1e{bottom:596.893333pt;}
.y4c{bottom:612.893333pt;}
.y1d{bottom:614.493333pt;}
.y4b{bottom:630.493333pt;}
.y1c{bottom:632.253333pt;}
.y4a{bottom:648.253333pt;}
.y1b{bottom:649.853333pt;}
.y49{bottom:665.853333pt;}
.y1a{bottom:667.453333pt;}
.ya5{bottom:675.453333pt;}
.y48{bottom:683.453333pt;}
.y19{bottom:685.053333pt;}
.ya4{bottom:693.053333pt;}
.y47{bottom:701.053333pt;}
.y18{bottom:707.293333pt;}
.ya3{bottom:710.653333pt;}
.y46{bottom:718.653333pt;}
.y17{bottom:725.053333pt;}
.ya2{bottom:728.413333pt;}
.y45{bottom:736.413333pt;}
.y16{bottom:738.013333pt;}
.ya1{bottom:746.013333pt;}
.y44{bottom:754.013333pt;}
.y15{bottom:760.293333pt;}
.ya0{bottom:763.653333pt;}
.y43{bottom:771.653333pt;}
.y14{bottom:773.733333pt;}
.y9f{bottom:781.253333pt;}
.y42{bottom:789.253333pt;}
.y13{bottom:793.093333pt;}
.y9e{bottom:798.853333pt;}
.y41{bottom:806.853333pt;}
.y12{bottom:812.133333pt;}
.y9d{bottom:816.613333pt;}
.y40{bottom:824.613333pt;}
.y11{bottom:832.933333pt;}
.y9c{bottom:834.213333pt;}
.y3f{bottom:842.213333pt;}
.y9b{bottom:851.813333pt;}
.y3e{bottom:859.813333pt;}
.y10{bottom:861.093333pt;}
.y3d{bottom:877.413333pt;}
.yf{bottom:889.413333pt;}
.y3c{bottom:895.013333pt;}
.y3b{bottom:912.773333pt;}
.y9{bottom:929.253333pt;}
.y1{bottom:943.813333pt;}
.y7{bottom:974.213333pt;}
.h6{height:1.851250pt;}
.ha{height:18.880000pt;}
.he{height:24.991875pt;}
.h7{height:29.760000pt;}
.hd{height:37.479688pt;}
.hf{height:38.413438pt;}
.h10{height:38.672812pt;}
.h15{height:39.347188pt;}
.h4{height:41.543750pt;}
.hb{height:42.578750pt;}
.h16{height:43.108125pt;}
.h11{height:43.551875pt;}
.h12{height:43.711875pt;}
.h17{height:43.782500pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h13{height:60.288750pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h18{height:165.466667pt;}
.h14{height:196.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:8.800000pt;}
.w3{width:122.112000pt;}
.w6{width:203.066667pt;}
.w7{width:397.053333pt;}
.w8{width:425.853333pt;}
.w2{width:577.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x19{left:11.200000pt;}
.x1b{left:35.200000pt;}
.x1{left:47.360000pt;}
.x6{left:57.759988pt;}
.xa{left:59.199988pt;}
.x1c{left:72.031988pt;}
.xb{left:77.631988pt;}
.x7{left:80.511988pt;}
.x18{left:82.272000pt;}
.x15{left:89.786667pt;}
.x12{left:96.031988pt;}
.x16{left:98.426667pt;}
.x4{left:105.306667pt;}
.x17{left:122.426667pt;}
.xc{left:124.671988pt;}
.x13{left:144.026655pt;}
.x11{left:148.026655pt;}
.xe{left:198.906655pt;}
.x8{left:229.506655pt;}
.xf{left:253.986655pt;}
.x1a{left:285.986667pt;}
.x14{left:300.386667pt;}
.xd{left:312.386655pt;}
.x9{left:397.053322pt;}
.x10{left:620.293322pt;}
.x3{left:624.613333pt;}
.x5{left:737.280000pt;}
}




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