
    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_b52ddb9e69461d73e1fabcd3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fc6f507c7944dad90f147902.woff')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_05d7a8cf394ed33ef35ee9c3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_c02d4104e8f074e612df4003.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_ad3142280a2c7dfa6b433752.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_d4d5277c42c3529a5de327b3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_ffa86eb53122d4243b675956.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_dcd0161f94a9103d955f6af2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0886b6faad83c3cdd4413c34.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747070;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_b4fb87d3f2504597be1bc150.woff')format("woff");}.ffa{font-family:ffa;line-height:0.769531;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009104px;}
.ls4{letter-spacing:0.010075px;}
.ls5{letter-spacing:0.398474px;}
.ls0{letter-spacing:0.515242px;}
.ls2{letter-spacing:0.515712px;}
.ls6{letter-spacing:55.505101px;}
.ls7{letter-spacing:798.114602px;}
.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:-12.615983px;}
.ws5{word-spacing:-11.391919px;}
.ws3{word-spacing:-11.381845px;}
.ws1{word-spacing:-10.293835px;}
.ws0{word-spacing:-10.284731px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-4.463341px;}
._c{margin-left:-3.332975px;}
._9{margin-left:-2.184733px;}
._4{margin-left:-1.001113px;}
._1{width:1.616003px;}
._8{width:2.688459px;}
._3{width:3.794275px;}
._2{width:4.914379px;}
._12{width:6.352110px;}
._11{width:7.732545px;}
._13{width:8.824973px;}
._14{width:10.302856px;}
._18{width:11.482015px;}
._b{width:14.307323px;}
._a{width:15.725553px;}
._10{width:16.924662px;}
._f{width:17.928883px;}
._e{width:19.116176px;}
._d{width:20.639834px;}
._1c{width:21.984263px;}
._1b{width:23.916728px;}
._1a{width:25.169819px;}
._16{width:26.176077px;}
._17{width:28.016972px;}
._19{width:29.495396px;}
._5{width:30.707042px;}
._6{width:32.610800px;}
._7{width:34.866280px;}
._1d{width:38.088043px;}
._1e{width:39.251060px;}
._20{width:50.881287px;}
._1f{width:51.957587px;}
._0{width:956.080217px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:rgb(34,161,202);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(22,41,118);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:50.663700px;}
.fs5{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.fs3{font-size:67.551750px;}
.fs2{font-size:79.035746px;}
.fs4{font-size:101.327850px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.160006px;}
.y6f{bottom:3.779983px;}
.y30{bottom:3.779984px;}
.y71{bottom:3.780052px;}
.y23{bottom:4.319997px;}
.y8{bottom:54.539977px;}
.y3a{bottom:55.259994px;}
.y7{bottom:69.840019px;}
.y39{bottom:73.620002px;}
.y6{bottom:85.500000px;}
.y7a{bottom:99.179970px;}
.yc0{bottom:99.539977px;}
.y5{bottom:100.799973px;}
.yaa{bottom:102.059967px;}
.y98{bottom:104.580025px;}
.y123{bottom:109.799973px;}
.y4{bottom:116.460022px;}
.y79{bottom:127.620002px;}
.ybf{bottom:127.980011px;}
.y5c{bottom:130.320030px;}
.ya9{bottom:130.500000px;}
.yf5{bottom:131.220017px;}
.y3{bottom:131.759994px;}
.y97{bottom:133.019989px;}
.y2{bottom:146.700027px;}
.y122{bottom:150.840019px;}
.yf4{bottom:151.559967px;}
.y78{bottom:156.059967px;}
.ybe{bottom:156.240006px;}
.y5b{bottom:158.580025px;}
.ya8{bottom:158.940033px;}
.ycf{bottom:160.200027px;}
.y96{bottom:161.460022px;}
.y121{bottom:171.360008px;}
.yf3{bottom:172.080025px;}
.y21{bottom:183.960022px;}
.y77{bottom:184.320030px;}
.ybd{bottom:184.679970px;}
.y5a{bottom:187.019989px;}
.ya7{bottom:187.200027px;}
.yce{bottom:188.639992px;}
.y95{bottom:189.899986px;}
.y120{bottom:191.519989px;}
.yf2{bottom:192.600013px;}
.y11f{bottom:212.039977px;}
.y20{bottom:212.399986px;}
.y76{bottom:212.759994px;}
.yf1{bottom:212.940033px;}
.ybc{bottom:213.120002px;}
.y59{bottom:215.460022px;}
.ya6{bottom:215.639992px;}
.ycd{bottom:217.080025px;}
.y94{bottom:218.340019px;}
.y11e{bottom:232.559967px;}
.yf0{bottom:233.279983px;}
.y1f{bottom:240.840019px;}
.ybb{bottom:241.559967px;}
.y75{bottom:242.279983px;}
.y58{bottom:243.899986px;}
.ya5{bottom:244.080025px;}
.ycc{bottom:245.340019px;}
.y93{bottom:246.600013px;}
.y11d{bottom:253.080025px;}
.yef{bottom:253.799973px;}
.y1e{bottom:269.279983px;}
.yba{bottom:270.000000px;}
.y74{bottom:272.159981px;}
.y57{bottom:272.340019px;}
.ya4{bottom:272.519989px;}
.y11c{bottom:273.240006px;}
.ycb{bottom:273.779983px;}
.yee{bottom:274.320030px;}
.y92{bottom:275.039977px;}
.y11b{bottom:293.759994px;}
.yed{bottom:294.659981px;}
.y1d{bottom:297.720017px;}
.yb9{bottom:298.259994px;}
.y73{bottom:300.600013px;}
.y56{bottom:300.779983px;}
.ya3{bottom:300.960022px;}
.yca{bottom:302.220017px;}
.y91{bottom:303.480011px;}
.y11a{bottom:314.279983px;}
.yec{bottom:315.179970px;}
.y1c{bottom:326.159981px;}
.yb8{bottom:326.519989px;}
.y72{bottom:329.039977px;}
.y55{bottom:329.220017px;}
.yc9{bottom:330.659981px;}
.y90{bottom:331.919975px;}
.y119{bottom:334.799973px;}
.yeb{bottom:335.519989px;}
.y1b{bottom:354.419975px;}
.yb7{bottom:354.960022px;}
.y118{bottom:355.139992px;}
.yea{bottom:356.039977px;}
.y54{bottom:357.480011px;}
.ya2{bottom:357.659981px;}
.yc8{bottom:359.100013px;}
.y8f{bottom:360.179970px;}
.y117{bottom:375.480011px;}
.ye9{bottom:376.379998px;}
.y1a{bottom:382.860008px;}
.yb6{bottom:383.399986px;}
.y53{bottom:385.740006px;}
.ya1{bottom:385.919975px;}
.yc7{bottom:387.539977px;}
.y8e{bottom:388.620002px;}
.y116{bottom:396.000000px;}
.ye8{bottom:396.899986px;}
.y19{bottom:411.120002px;}
.yb5{bottom:411.840019px;}
.y52{bottom:414.179970px;}
.ya0{bottom:414.360008px;}
.yc6{bottom:415.799973px;}
.y115{bottom:416.519989px;}
.y8d{bottom:417.059967px;}
.ye7{bottom:417.240006px;}
.y114{bottom:436.860008px;}
.ye6{bottom:437.759994px;}
.y18{bottom:439.559967px;}
.yb4{bottom:440.279983px;}
.y51{bottom:442.620002px;}
.y9f{bottom:442.799973px;}
.yc5{bottom:444.240006px;}
.y8c{bottom:445.320030px;}
.y70{bottom:448.919975px;}
.y113{bottom:457.200027px;}
.ye5{bottom:458.100013px;}
.y17{bottom:468.000000px;}
.yb3{bottom:468.720017px;}
.y50{bottom:471.059967px;}
.y9e{bottom:471.240006px;}
.yc4{bottom:472.679970px;}
.y8b{bottom:473.759994px;}
.y112{bottom:477.720017px;}
.ye4{bottom:478.620002px;}
.y6e{bottom:486.000000px;}
.yb2{bottom:497.159981px;}
.y16{bottom:497.700027px;}
.y111{bottom:498.240006px;}
.ye3{bottom:498.960022px;}
.y4f{bottom:499.500000px;}
.y9d{bottom:499.679970px;}
.yc3{bottom:501.120002px;}
.y8a{bottom:502.200027px;}
.y110{bottom:518.580025px;}
.ye2{bottom:519.480011px;}
.y6d{bottom:523.620002px;}
.yb1{bottom:525.419975px;}
.y4e{bottom:527.759994px;}
.y9c{bottom:528.120002px;}
.y15{bottom:528.659981px;}
.yc2{bottom:529.379998px;}
.y89{bottom:530.639992px;}
.y10f{bottom:538.919975px;}
.ye1{bottom:539.820030px;}
.yb0{bottom:553.860008px;}
.y4d{bottom:556.200027px;}
.y9b{bottom:556.379998px;}
.y6c{bottom:558.899986px;}
.y88{bottom:559.080025px;}
.y10e{bottom:559.440033px;}
.y14{bottom:559.620002px;}
.ye0{bottom:560.340019px;}
.y10d{bottom:579.960022px;}
.ydf{bottom:580.679970px;}
.yaf{bottom:582.299973px;}
.y4c{bottom:584.639992px;}
.y6b{bottom:584.820030px;}
.y2e{bottom:586.620002px;}
.y35{bottom:586.980011px;}
.yc1{bottom:587.340019px;}
.y87{bottom:587.519989px;}
.y10c{bottom:600.299973px;}
.yde{bottom:601.200027px;}
.y2d{bottom:605.519989px;}
.yae{bottom:610.740006px;}
.y4b{bottom:613.079990px;}
.y6a{bottom:613.259994px;}
.y86{bottom:615.779983px;}
.y10b{bottom:620.639992px;}
.ydd{bottom:621.540012px;}
.y34{bottom:624.060001px;}
.y2c{bottom:624.600013px;}
.yad{bottom:639.180004px;}
.y10a{bottom:641.160015px;}
.y4a{bottom:641.519989px;}
.y69{bottom:641.699993px;}
.ydc{bottom:642.060001px;}
.y33{bottom:642.600013px;}
.y2b{bottom:643.319995px;}
.y85{bottom:644.220017px;}
.y32{bottom:661.319995px;}
.y109{bottom:661.680004px;}
.y2a{bottom:662.220017px;}
.ydb{bottom:662.399986px;}
.yac{bottom:668.699993px;}
.y49{bottom:669.959988px;}
.y68{bottom:670.139992px;}
.y9a{bottom:671.220017px;}
.y84{bottom:672.660015px;}
.y12d{bottom:677.699993px;}
.y31{bottom:679.860008px;}
.y29{bottom:681.300007px;}
.y108{bottom:682.019989px;}
.yda{bottom:682.920010px;}
.y2f{bottom:693.360008px;}
.y48{bottom:698.399986px;}
.y67{bottom:698.579990px;}
.yab{bottom:699.660015px;}
.y28{bottom:700.199993px;}
.y83{bottom:701.100013px;}
.y107{bottom:702.360008px;}
.yd9{bottom:703.259994px;}
.y12c{bottom:706.139992px;}
.y27{bottom:719.100013px;}
.y106{bottom:722.879998px;}
.yd8{bottom:723.779983px;}
.y47{bottom:726.660015px;}
.y66{bottom:726.839985px;}
.y82{bottom:729.540012px;}
.y12b{bottom:734.579990px;}
.y26{bottom:738.180004px;}
.y105{bottom:743.399986px;}
.yd7{bottom:744.120002px;}
.y65{bottom:755.100013px;}
.y46{bottom:756.180004px;}
.y25{bottom:757.079990px;}
.y81{bottom:757.800007px;}
.y12a{bottom:762.839985px;}
.y104{bottom:763.740006px;}
.yd6{bottom:764.639992px;}
.y24{bottom:775.980011px;}
.y64{bottom:783.540012px;}
.y103{bottom:784.079990px;}
.yd5{bottom:784.980011px;}
.y45{bottom:786.060001px;}
.y80{bottom:786.240006px;}
.y22{bottom:790.560001px;}
.y129{bottom:791.279983px;}
.y102{bottom:804.600013px;}
.y63{bottom:811.980011px;}
.y44{bottom:814.319995px;}
.y7f{bottom:814.500000px;}
.yd4{bottom:814.680004px;}
.y128{bottom:819.720017px;}
.y101{bottom:825.120002px;}
.y13{bottom:833.579990px;}
.y62{bottom:840.420010px;}
.y43{bottom:842.759994px;}
.y7e{bottom:842.939999px;}
.yd3{bottom:844.379998px;}
.y100{bottom:845.459988px;}
.y127{bottom:851.399986px;}
.y12{bottom:853.740006px;}
.yff{bottom:865.800007px;}
.y61{bottom:868.860008px;}
.y42{bottom:871.199993px;}
.y7d{bottom:871.379998px;}
.y11{bottom:872.819996px;}
.y126{bottom:879.660015px;}
.yfe{bottom:886.319996px;}
.y10{bottom:891.720017px;}
.y60{bottom:897.300007px;}
.y41{bottom:899.639992px;}
.y7c{bottom:899.819996px;}
.yd2{bottom:901.259994px;}
.yfd{bottom:906.840002px;}
.y125{bottom:908.099997px;}
.yf{bottom:920.159998px;}
.y5f{bottom:925.560001px;}
.yfc{bottom:927.180004px;}
.y124{bottom:927.539996px;}
.y40{bottom:928.080008px;}
.y7b{bottom:928.259994px;}
.yd1{bottom:929.699993px;}
.ye{bottom:946.259994px;}
.yfb{bottom:947.520006px;}
.y5e{bottom:954.000000px;}
.yd0{bottom:956.520006px;}
.y3f{bottom:956.699993px;}
.yfa{bottom:968.039995px;}
.yd{bottom:981.900003px;}
.y5d{bottom:983.520006px;}
.y99{bottom:984.780001px;}
.y3e{bottom:984.960004px;}
.yf9{bottom:988.560001px;}
.yf8{bottom:1008.900003px;}
.y3d{bottom:1013.400003px;}
.yc{bottom:1020.960004px;}
.yf7{bottom:1029.240006px;}
.y3c{bottom:1041.840002px;}
.yf6{bottom:1049.760003px;}
.yb{bottom:1050.840002px;}
.y1{bottom:1065.239997px;}
.y9{bottom:1069.379998px;}
.y3b{bottom:1070.280001px;}
.y38{bottom:1088.099997px;}
.y37{bottom:1106.280001px;}
.y36{bottom:1124.640000px;}
.h5{height:16.740004px;}
.h13{height:16.919975px;}
.h14{height:16.920044px;}
.hd{height:17.099980px;}
.h12{height:17.100015px;}
.hc{height:18.719982px;}
.h2{height:37.849346px;}
.h11{height:43.786499px;}
.h4{height:43.910189px;}
.h3{height:43.984404px;}
.h10{height:45.821791px;}
.h16{height:46.974922px;}
.hf{height:48.594265px;}
.he{height:48.676396px;}
.h15{height:53.711635px;}
.ha{height:53.863363px;}
.h6{height:53.954400px;}
.h8{height:58.547049px;}
.hb{height:58.646002px;}
.h1{height:61.813899px;}
.h7{height:68.500219px;}
.h9{height:87.969198px;}
.h0{height:1188.000000px;}
.w1a{width:2.879998px;}
.w2{width:3.240006px;}
.w10{width:4.139992px;}
.wf{width:7.560002px;}
.wc{width:7.739971px;}
.wb{width:7.739972px;}
.w9{width:7.740006px;}
.w8{width:8.819962px;}
.w6{width:9.720016px;}
.w4{width:9.720017px;}
.w11{width:10.439998px;}
.w14{width:10.439999px;}
.w16{width:17.820030px;}
.w17{width:19.079956px;}
.w13{width:19.079990px;}
.w15{width:19.079991px;}
.w19{width:22.500000px;}
.w1b{width:22.680003px;}
.w12{width:22.860008px;}
.wa{width:30.239972px;}
.wd{width:30.240006px;}
.we{width:32.219999px;}
.w3{width:45.539977px;}
.w1c{width:45.899987px;}
.w1{width:51.480011px;}
.w5{width:60.659998px;}
.w7{width:63.180038px;}
.w18{width:136.439999px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:140.400003px;}
.x7{left:150.479994px;}
.x27{left:165.780001px;}
.x6{left:168.300007px;}
.x29{left:172.259994px;}
.x2a{left:180.000000px;}
.x28{left:191.159998px;}
.x8{left:211.139992px;}
.xd{left:218.699993px;}
.x14{left:250.919992px;}
.x21{left:355.139992px;}
.x15{left:400.860008px;}
.xb{left:403.740006px;}
.x16{left:408.240006px;}
.x17{left:412.379998px;}
.xe{left:417.600014px;}
.x18{left:422.639992px;}
.x22{left:431.100014px;}
.x23{left:433.980011px;}
.x19{left:445.500000px;}
.xf{left:447.660015px;}
.x24{left:456.660015px;}
.x1a{left:464.399987px;}
.x1b{left:508.500000px;}
.x25{left:511.740006px;}
.x10{left:519.660015px;}
.x1c{left:541.800007px;}
.x11{left:549.720017px;}
.x26{left:557.639992px;}
.x1d{left:560.699993px;}
.x1e{left:619.019989px;}
.x12{left:633.779983px;}
.x1f{left:636.840019px;}
.x9{left:644.759994px;}
.x20{left:659.700027px;}
.x13{left:663.840019px;}
.x2{left:678.419975px;}
.xa{left:707.940033px;}
.x3{left:729.899987px;}
.x4{left:733.139992px;}
.xc{left:761.759994px;}
.x5{left:778.679970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008092pt;}
.ls4{letter-spacing:0.008955pt;}
.ls5{letter-spacing:0.354199pt;}
.ls0{letter-spacing:0.457993pt;}
.ls2{letter-spacing:0.458411pt;}
.ls6{letter-spacing:49.337867pt;}
.ls7{letter-spacing:709.435202pt;}
.ws2{word-spacing:-11.214207pt;}
.ws5{word-spacing:-10.126151pt;}
.ws3{word-spacing:-10.117195pt;}
.ws1{word-spacing:-9.150075pt;}
.ws0{word-spacing:-9.141983pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-3.967414pt;}
._c{margin-left:-2.962644pt;}
._9{margin-left:-1.941984pt;}
._4{margin-left:-0.889878pt;}
._1{width:1.436447pt;}
._8{width:2.389741pt;}
._3{width:3.372689pt;}
._2{width:4.368337pt;}
._12{width:5.646320pt;}
._11{width:6.873374pt;}
._13{width:7.844421pt;}
._14{width:9.158094pt;}
._18{width:10.206236pt;}
._b{width:12.717620pt;}
._a{width:13.978269pt;}
._10{width:15.044144pt;}
._f{width:15.936785pt;}
._e{width:16.992157pt;}
._d{width:18.346519pt;}
._1c{width:19.541567pt;}
._1b{width:21.259314pt;}
._1a{width:22.373172pt;}
._16{width:23.267624pt;}
._17{width:24.903975pt;}
._19{width:26.218129pt;}
._5{width:27.295148pt;}
._6{width:28.987378pt;}
._7{width:30.992249pt;}
._1d{width:33.856039pt;}
._1e{width:34.889831pt;}
._20{width:45.227811pt;}
._1f{width:46.184522pt;}
._0{width:849.849082pt;}
.fs1{font-size:45.034400pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.fs3{font-size:60.046000pt;}
.fs2{font-size:70.253996pt;}
.fs4{font-size:90.069200pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.920005pt;}
.y6f{bottom:3.359985pt;}
.y30{bottom:3.359986pt;}
.y71{bottom:3.360046pt;}
.y23{bottom:3.839997pt;}
.y8{bottom:48.479980pt;}
.y3a{bottom:49.119995pt;}
.y7{bottom:62.080017pt;}
.y39{bottom:65.440002pt;}
.y6{bottom:76.000000pt;}
.y7a{bottom:88.159973pt;}
.yc0{bottom:88.479980pt;}
.y5{bottom:89.599976pt;}
.yaa{bottom:90.719971pt;}
.y98{bottom:92.960022pt;}
.y123{bottom:97.599976pt;}
.y4{bottom:103.520020pt;}
.y79{bottom:113.440002pt;}
.ybf{bottom:113.760010pt;}
.y5c{bottom:115.840027pt;}
.ya9{bottom:116.000000pt;}
.yf5{bottom:116.640015pt;}
.y3{bottom:117.119995pt;}
.y97{bottom:118.239990pt;}
.y2{bottom:130.400024pt;}
.y122{bottom:134.080017pt;}
.yf4{bottom:134.719971pt;}
.y78{bottom:138.719971pt;}
.ybe{bottom:138.880005pt;}
.y5b{bottom:140.960022pt;}
.ya8{bottom:141.280029pt;}
.ycf{bottom:142.400024pt;}
.y96{bottom:143.520020pt;}
.y121{bottom:152.320007pt;}
.yf3{bottom:152.960022pt;}
.y21{bottom:163.520020pt;}
.y77{bottom:163.840027pt;}
.ybd{bottom:164.159973pt;}
.y5a{bottom:166.239990pt;}
.ya7{bottom:166.400024pt;}
.yce{bottom:167.679993pt;}
.y95{bottom:168.799988pt;}
.y120{bottom:170.239990pt;}
.yf2{bottom:171.200012pt;}
.y11f{bottom:188.479980pt;}
.y20{bottom:188.799988pt;}
.y76{bottom:189.119995pt;}
.yf1{bottom:189.280029pt;}
.ybc{bottom:189.440002pt;}
.y59{bottom:191.520020pt;}
.ya6{bottom:191.679993pt;}
.ycd{bottom:192.960022pt;}
.y94{bottom:194.080017pt;}
.y11e{bottom:206.719971pt;}
.yf0{bottom:207.359985pt;}
.y1f{bottom:214.080017pt;}
.ybb{bottom:214.719971pt;}
.y75{bottom:215.359985pt;}
.y58{bottom:216.799988pt;}
.ya5{bottom:216.960022pt;}
.ycc{bottom:218.080017pt;}
.y93{bottom:219.200012pt;}
.y11d{bottom:224.960022pt;}
.yef{bottom:225.599976pt;}
.y1e{bottom:239.359985pt;}
.yba{bottom:240.000000pt;}
.y74{bottom:241.919983pt;}
.y57{bottom:242.080017pt;}
.ya4{bottom:242.239990pt;}
.y11c{bottom:242.880005pt;}
.ycb{bottom:243.359985pt;}
.yee{bottom:243.840027pt;}
.y92{bottom:244.479980pt;}
.y11b{bottom:261.119995pt;}
.yed{bottom:261.919983pt;}
.y1d{bottom:264.640015pt;}
.yb9{bottom:265.119995pt;}
.y73{bottom:267.200012pt;}
.y56{bottom:267.359985pt;}
.ya3{bottom:267.520020pt;}
.yca{bottom:268.640015pt;}
.y91{bottom:269.760010pt;}
.y11a{bottom:279.359985pt;}
.yec{bottom:280.159973pt;}
.y1c{bottom:289.919983pt;}
.yb8{bottom:290.239990pt;}
.y72{bottom:292.479980pt;}
.y55{bottom:292.640015pt;}
.yc9{bottom:293.919983pt;}
.y90{bottom:295.039978pt;}
.y119{bottom:297.599976pt;}
.yeb{bottom:298.239990pt;}
.y1b{bottom:315.039978pt;}
.yb7{bottom:315.520020pt;}
.y118{bottom:315.679993pt;}
.yea{bottom:316.479980pt;}
.y54{bottom:317.760010pt;}
.ya2{bottom:317.919983pt;}
.yc8{bottom:319.200012pt;}
.y8f{bottom:320.159973pt;}
.y117{bottom:333.760010pt;}
.ye9{bottom:334.559998pt;}
.y1a{bottom:340.320007pt;}
.yb6{bottom:340.799988pt;}
.y53{bottom:342.880005pt;}
.ya1{bottom:343.039978pt;}
.yc7{bottom:344.479980pt;}
.y8e{bottom:345.440002pt;}
.y116{bottom:352.000000pt;}
.ye8{bottom:352.799988pt;}
.y19{bottom:365.440002pt;}
.yb5{bottom:366.080017pt;}
.y52{bottom:368.159973pt;}
.ya0{bottom:368.320007pt;}
.yc6{bottom:369.599976pt;}
.y115{bottom:370.239990pt;}
.y8d{bottom:370.719971pt;}
.ye7{bottom:370.880005pt;}
.y114{bottom:388.320007pt;}
.ye6{bottom:389.119995pt;}
.y18{bottom:390.719971pt;}
.yb4{bottom:391.359985pt;}
.y51{bottom:393.440002pt;}
.y9f{bottom:393.599976pt;}
.yc5{bottom:394.880005pt;}
.y8c{bottom:395.840027pt;}
.y70{bottom:399.039978pt;}
.y113{bottom:406.400024pt;}
.ye5{bottom:407.200012pt;}
.y17{bottom:416.000000pt;}
.yb3{bottom:416.640015pt;}
.y50{bottom:418.719971pt;}
.y9e{bottom:418.880005pt;}
.yc4{bottom:420.159973pt;}
.y8b{bottom:421.119995pt;}
.y112{bottom:424.640015pt;}
.ye4{bottom:425.440002pt;}
.y6e{bottom:432.000000pt;}
.yb2{bottom:441.919983pt;}
.y16{bottom:442.400024pt;}
.y111{bottom:442.880005pt;}
.ye3{bottom:443.520020pt;}
.y4f{bottom:444.000000pt;}
.y9d{bottom:444.159973pt;}
.yc3{bottom:445.440002pt;}
.y8a{bottom:446.400024pt;}
.y110{bottom:460.960022pt;}
.ye2{bottom:461.760010pt;}
.y6d{bottom:465.440002pt;}
.yb1{bottom:467.039978pt;}
.y4e{bottom:469.119995pt;}
.y9c{bottom:469.440002pt;}
.y15{bottom:469.919983pt;}
.yc2{bottom:470.559998pt;}
.y89{bottom:471.679993pt;}
.y10f{bottom:479.039978pt;}
.ye1{bottom:479.840027pt;}
.yb0{bottom:492.320007pt;}
.y4d{bottom:494.400024pt;}
.y9b{bottom:494.559998pt;}
.y6c{bottom:496.799988pt;}
.y88{bottom:496.960022pt;}
.y10e{bottom:497.280029pt;}
.y14{bottom:497.440002pt;}
.ye0{bottom:498.080017pt;}
.y10d{bottom:515.520020pt;}
.ydf{bottom:516.159973pt;}
.yaf{bottom:517.599976pt;}
.y4c{bottom:519.679993pt;}
.y6b{bottom:519.840027pt;}
.y2e{bottom:521.440002pt;}
.y35{bottom:521.760010pt;}
.yc1{bottom:522.080017pt;}
.y87{bottom:522.239990pt;}
.y10c{bottom:533.599976pt;}
.yde{bottom:534.400024pt;}
.y2d{bottom:538.239990pt;}
.yae{bottom:542.880005pt;}
.y4b{bottom:544.959991pt;}
.y6a{bottom:545.119995pt;}
.y86{bottom:547.359985pt;}
.y10b{bottom:551.679993pt;}
.ydd{bottom:552.480011pt;}
.y34{bottom:554.720001pt;}
.y2c{bottom:555.200012pt;}
.yad{bottom:568.160004pt;}
.y10a{bottom:569.920013pt;}
.y4a{bottom:570.239990pt;}
.y69{bottom:570.399994pt;}
.ydc{bottom:570.720001pt;}
.y33{bottom:571.200012pt;}
.y2b{bottom:571.839996pt;}
.y85{bottom:572.640015pt;}
.y32{bottom:587.839996pt;}
.y109{bottom:588.160004pt;}
.y2a{bottom:588.640015pt;}
.ydb{bottom:588.799988pt;}
.yac{bottom:594.399994pt;}
.y49{bottom:595.519989pt;}
.y68{bottom:595.679993pt;}
.y9a{bottom:596.640015pt;}
.y84{bottom:597.920013pt;}
.y12d{bottom:602.399994pt;}
.y31{bottom:604.320007pt;}
.y29{bottom:605.600006pt;}
.y108{bottom:606.239990pt;}
.yda{bottom:607.040009pt;}
.y2f{bottom:616.320007pt;}
.y48{bottom:620.799988pt;}
.y67{bottom:620.959991pt;}
.yab{bottom:621.920013pt;}
.y28{bottom:622.399994pt;}
.y83{bottom:623.200012pt;}
.y107{bottom:624.320007pt;}
.yd9{bottom:625.119995pt;}
.y12c{bottom:627.679993pt;}
.y27{bottom:639.200012pt;}
.y106{bottom:642.559998pt;}
.yd8{bottom:643.359985pt;}
.y47{bottom:645.920013pt;}
.y66{bottom:646.079987pt;}
.y82{bottom:648.480011pt;}
.y12b{bottom:652.959991pt;}
.y26{bottom:656.160004pt;}
.y105{bottom:660.799988pt;}
.yd7{bottom:661.440002pt;}
.y65{bottom:671.200012pt;}
.y46{bottom:672.160004pt;}
.y25{bottom:672.959991pt;}
.y81{bottom:673.600006pt;}
.y12a{bottom:678.079987pt;}
.y104{bottom:678.880005pt;}
.yd6{bottom:679.679993pt;}
.y24{bottom:689.760010pt;}
.y64{bottom:696.480011pt;}
.y103{bottom:696.959991pt;}
.yd5{bottom:697.760010pt;}
.y45{bottom:698.720001pt;}
.y80{bottom:698.880005pt;}
.y22{bottom:702.720001pt;}
.y129{bottom:703.359985pt;}
.y102{bottom:715.200012pt;}
.y63{bottom:721.760010pt;}
.y44{bottom:723.839996pt;}
.y7f{bottom:724.000000pt;}
.yd4{bottom:724.160004pt;}
.y128{bottom:728.640015pt;}
.y101{bottom:733.440002pt;}
.y13{bottom:740.959991pt;}
.y62{bottom:747.040009pt;}
.y43{bottom:749.119995pt;}
.y7e{bottom:749.279999pt;}
.yd3{bottom:750.559998pt;}
.y100{bottom:751.519989pt;}
.y127{bottom:756.799988pt;}
.y12{bottom:758.880005pt;}
.yff{bottom:769.600006pt;}
.y61{bottom:772.320007pt;}
.y42{bottom:774.399994pt;}
.y7d{bottom:774.559998pt;}
.y11{bottom:775.839996pt;}
.y126{bottom:781.920013pt;}
.yfe{bottom:787.839996pt;}
.y10{bottom:792.640015pt;}
.y60{bottom:797.600006pt;}
.y41{bottom:799.679993pt;}
.y7c{bottom:799.839996pt;}
.yd2{bottom:801.119995pt;}
.yfd{bottom:806.080002pt;}
.y125{bottom:807.199997pt;}
.yf{bottom:817.919998pt;}
.y5f{bottom:822.720001pt;}
.yfc{bottom:824.160004pt;}
.y124{bottom:824.479996pt;}
.y40{bottom:824.960007pt;}
.y7b{bottom:825.119995pt;}
.yd1{bottom:826.399994pt;}
.ye{bottom:841.119995pt;}
.yfb{bottom:842.240005pt;}
.y5e{bottom:848.000000pt;}
.yd0{bottom:850.240005pt;}
.y3f{bottom:850.399994pt;}
.yfa{bottom:860.479996pt;}
.yd{bottom:872.800003pt;}
.y5d{bottom:874.240005pt;}
.y99{bottom:875.360001pt;}
.y3e{bottom:875.520004pt;}
.yf9{bottom:878.720001pt;}
.yf8{bottom:896.800003pt;}
.y3d{bottom:900.800003pt;}
.yc{bottom:907.520004pt;}
.yf7{bottom:914.880005pt;}
.y3c{bottom:926.080002pt;}
.yf6{bottom:933.120003pt;}
.yb{bottom:934.080002pt;}
.y1{bottom:946.879997pt;}
.y9{bottom:950.559998pt;}
.y3b{bottom:951.360001pt;}
.y38{bottom:967.199997pt;}
.y37{bottom:983.360001pt;}
.y36{bottom:999.680000pt;}
.h5{height:14.880004pt;}
.h13{height:15.039978pt;}
.h14{height:15.040039pt;}
.hd{height:15.199982pt;}
.h12{height:15.200013pt;}
.hc{height:16.639984pt;}
.h2{height:33.643863pt;}
.h11{height:38.921332pt;}
.h4{height:39.031279pt;}
.h3{height:39.097248pt;}
.h10{height:40.730480pt;}
.h16{height:41.755486pt;}
.hf{height:43.194902pt;}
.he{height:43.267908pt;}
.h15{height:47.743676pt;}
.ha{height:47.878545pt;}
.h6{height:47.959466pt;}
.h8{height:52.041821pt;}
.hb{height:52.129779pt;}
.h1{height:54.945688pt;}
.h7{height:60.889083pt;}
.h9{height:78.194843pt;}
.h0{height:1056.000000pt;}
.w1a{width:2.559998pt;}
.w2{width:2.880005pt;}
.w10{width:3.679993pt;}
.wf{width:6.720002pt;}
.wc{width:6.879974pt;}
.wb{width:6.879975pt;}
.w9{width:6.880005pt;}
.w8{width:7.839966pt;}
.w6{width:8.640014pt;}
.w4{width:8.640015pt;}
.w11{width:9.279998pt;}
.w14{width:9.279999pt;}
.w16{width:15.840027pt;}
.w17{width:16.959961pt;}
.w13{width:16.959991pt;}
.w15{width:16.959992pt;}
.w19{width:20.000000pt;}
.w1b{width:20.160003pt;}
.w12{width:20.320007pt;}
.wa{width:26.879975pt;}
.wd{width:26.880005pt;}
.we{width:28.639999pt;}
.w3{width:40.479980pt;}
.w1c{width:40.799988pt;}
.w1{width:45.760010pt;}
.w5{width:53.919998pt;}
.w7{width:56.160034pt;}
.w18{width:121.279999pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:124.800003pt;}
.x7{left:133.759995pt;}
.x27{left:147.360001pt;}
.x6{left:149.600006pt;}
.x29{left:153.119995pt;}
.x2a{left:160.000000pt;}
.x28{left:169.919998pt;}
.x8{left:187.679993pt;}
.xd{left:194.399994pt;}
.x14{left:223.039993pt;}
.x21{left:315.679993pt;}
.x15{left:356.320007pt;}
.xb{left:358.880005pt;}
.x16{left:362.880005pt;}
.x17{left:366.559998pt;}
.xe{left:371.200012pt;}
.x18{left:375.679993pt;}
.x22{left:383.200012pt;}
.x23{left:385.760010pt;}
.x19{left:396.000000pt;}
.xf{left:397.920013pt;}
.x24{left:405.920013pt;}
.x1a{left:412.799988pt;}
.x1b{left:452.000000pt;}
.x25{left:454.880005pt;}
.x10{left:461.920013pt;}
.x1c{left:481.600006pt;}
.x11{left:488.640015pt;}
.x26{left:495.679993pt;}
.x1d{left:498.399994pt;}
.x1e{left:550.239990pt;}
.x12{left:563.359985pt;}
.x1f{left:566.080017pt;}
.x9{left:573.119995pt;}
.x20{left:586.400024pt;}
.x13{left:590.080017pt;}
.x2{left:603.039978pt;}
.xa{left:629.280029pt;}
.x3{left:648.799988pt;}
.x4{left:651.679993pt;}
.xc{left:677.119995pt;}
.x5{left:692.159973pt;}
}




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