
    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_96ba5c00fe5ec700a8715a46.woff2')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_ab2b45ca66248038cae88976.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_8fdcd2c9dcd36960095623d5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_750bebd260fa4206665c2559.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_df3da765b62ab9a5d56aa7c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_dc82a0d820b17b08953748e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_8382787b793a8b8f1faa518a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_4545bee3434df28ed0ca5da7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_c8ce8ec5c64dd1cffc3f79af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_98c13f45e4197fc04d606174.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_b87693e836c43599298137c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_c5b21240525326aeec3cdaf3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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_9345d6218ba79260efb43656.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_56b33c4afb9ad53757d1cc6b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.965820;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);}
.v1{vertical-align:-9.060000px;}
.v0{vertical-align:0.000000px;}
.ls2e{letter-spacing:-1.728000px;}
.lsf{letter-spacing:-1.692000px;}
.lse{letter-spacing:-1.254000px;}
.lsd{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.316800px;}
.ls16{letter-spacing:-0.315600px;}
.ls1a{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.273600px;}
.ls3{letter-spacing:-0.253200px;}
.ls17{letter-spacing:-0.158400px;}
.ls28{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.115200px;}
.ls2b{letter-spacing:-0.060600px;}
.ls25{letter-spacing:-0.057600px;}
.ls1f{letter-spacing:-0.054720px;}
.ls13{letter-spacing:-0.051120px;}
.ls9{letter-spacing:-0.040320px;}
.ls2d{letter-spacing:-0.000023px;}
.lsc{letter-spacing:-0.000011px;}
.ls14{letter-spacing:-0.000006px;}
.ls8{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000003px;}
.ls6{letter-spacing:0.000006px;}
.ls11{letter-spacing:0.028800px;}
.ls2c{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.057600px;}
.ls2f{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.248256px;}
.ls29{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.335520px;}
.ls22{letter-spacing:0.360000px;}
.ls21{letter-spacing:32.760000px;}
.ls24{letter-spacing:32.868000px;}
.ls27{letter-spacing:39.744000px;}
.ls1d{letter-spacing:49.284000px;}
.ls5{letter-spacing:57.600000px;}
.ls1{letter-spacing:63.367104px;}
.ls2{letter-spacing:63.481440px;}
.ls23{letter-spacing:65.865600px;}
.ls20{letter-spacing:65.916000px;}
.ls4{letter-spacing:67.320000px;}
.ls1b{letter-spacing:70.188000px;}
.ls1e{letter-spacing:76.644000px;}
.ls19{letter-spacing:93.420000px;}
.ls2a{letter-spacing:113.982048px;}
.ls26{letter-spacing:114.048000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-167.904000px;}
.ws19{word-spacing:-167.760000px;}
.ws1c{word-spacing:-120.384000px;}
.ws20{word-spacing:-120.240000px;}
.ws43{word-spacing:-112.725072px;}
.ws0{word-spacing:-73.234368px;}
.ws2{word-spacing:-66.413520px;}
.ws31{word-spacing:-60.480000px;}
.ws32{word-spacing:-60.479989px;}
.ws4{word-spacing:-53.867520px;}
.ws40{word-spacing:-53.827200px;}
.ws42{word-spacing:-47.044800px;}
.ws3a{word-spacing:-47.041920px;}
.ws39{word-spacing:-47.013120px;}
.ws41{word-spacing:-46.972800px;}
.ws1a{word-spacing:-46.469520px;}
.ws3f{word-spacing:-40.403520px;}
.ws7{word-spacing:-40.320006px;}
.ws6{word-spacing:-39.888000px;}
.wse{word-spacing:-38.142720px;}
.wsf{word-spacing:-38.102400px;}
.ws16{word-spacing:-37.694160px;}
.ws2c{word-spacing:-33.667200px;}
.ws3c{word-spacing:-33.609600px;}
.ws29{word-spacing:-33.552000px;}
.ws3b{word-spacing:-33.346368px;}
.ws2f{word-spacing:-33.306480px;}
.ws34{word-spacing:-29.916000px;}
.ws17{word-spacing:-26.525520px;}
.ws23{word-spacing:-3.665760px;}
.ws2a{word-spacing:-3.398400px;}
.ws3d{word-spacing:-2.949120px;}
.ws2d{word-spacing:-2.651040px;}
.ws1b{word-spacing:-2.633760px;}
.ws12{word-spacing:-2.116800px;}
.ws1f{word-spacing:-1.787328px;}
.ws27{word-spacing:-1.573200px;}
.ws3{word-spacing:-1.541088px;}
.ws11{word-spacing:-1.533120px;}
.ws2e{word-spacing:-1.507200px;}
.ws21{word-spacing:-1.371840px;}
.ws33{word-spacing:-1.260000px;}
.ws2b{word-spacing:-1.212864px;}
.ws1d{word-spacing:-1.141056px;}
.wsb{word-spacing:-1.023600px;}
.ws14{word-spacing:-0.776640px;}
.wsc{word-spacing:-0.769920px;}
.wsd{word-spacing:-0.743328px;}
.ws15{word-spacing:-0.604320px;}
.ws5{word-spacing:-0.600034px;}
.wsa{word-spacing:-0.600000px;}
.ws30{word-spacing:-0.312000px;}
.ws24{word-spacing:-0.244800px;}
.ws36{word-spacing:-0.120240px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.024000px;}
.ws13{word-spacing:0.057600px;}
.ws25{word-spacing:0.107280px;}
.ws3e{word-spacing:0.288000px;}
.ws26{word-spacing:0.303120px;}
.ws28{word-spacing:0.345600px;}
.ws1e{word-spacing:0.532992px;}
.ws22{word-spacing:0.703440px;}
.ws9{word-spacing:0.720034px;}
.ws10{word-spacing:0.878400px;}
.ws38{word-spacing:25.699392px;}
.ws35{word-spacing:26.282880px;}
.ws37{word-spacing:26.392320px;}
._8{margin-left:-21.818160px;}
._c{margin-left:-10.021345px;}
._9{margin-left:-4.315680px;}
._5{margin-left:-3.056112px;}
._0{margin-left:-1.872000px;}
._1{width:1.191168px;}
._4{width:2.323680px;}
._3{width:3.614400px;}
._a{width:28.980097px;}
._e{width:30.773712px;}
._6{width:32.918400px;}
._7{width:33.969600px;}
._2{width:36.600192px;}
._f{width:41.156832px;}
._d{width:48.330624px;}
._b{width:966.359760px;}
.fc6{color:rgb(55,65,81);}
.fc5{color:rgb(207,139,8);}
.fc4{color:rgb(0,73,121);}
.fc2{color:rgb(244,161,0);}
.fc1{color:rgb(0,97,161);}
.fc7{color:rgb(137,137,137);}
.fc3{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:72.000000px;}
.fse{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fsc{font-size:128.304000px;}
.fsb{font-size:136.080000px;}
.fsa{font-size:136.224000px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fsf{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs5{font-size:192.240000px;}
.fs4{font-size:192.384000px;}
.fs9{font-size:216.000000px;}
.fs13{font-size:216.144000px;}
.fs15{font-size:221.760000px;}
.fs14{font-size:221.904000px;}
.fs3{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fs2{font-size:264.384000px;}
.fs16{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y37{bottom:6.120000px;}
.y6f{bottom:19.836000px;}
.y8d{bottom:30.672000px;}
.y17{bottom:36.576000px;}
.y92{bottom:37.656000px;}
.y6e{bottom:52.236000px;}
.y36{bottom:60.120000px;}
.y24{bottom:80.244000px;}
.ya5{bottom:83.448000px;}
.y6d{bottom:84.636000px;}
.y35{bottom:91.650000px;}
.y38{bottom:91.656000px;}
.y31{bottom:91.695000px;}
.y2c{bottom:91.725000px;}
.y5f{bottom:96.624000px;}
.y39{bottom:97.776000px;}
.y26{bottom:103.065000px;}
.yaf{bottom:108.648000px;}
.y34{bottom:114.120000px;}
.y6c{bottom:117.072000px;}
.ya4{bottom:126.648000px;}
.y5e{bottom:132.660000px;}
.y8c{bottom:133.632000px;}
.y7e{bottom:143.568000px;}
.y6b{bottom:149.472000px;}
.yae{bottom:154.005000px;}
.y16{bottom:157.500000px;}
.y23{bottom:157.755000px;}
.y8b{bottom:166.035000px;}
.y33{bottom:168.120000px;}
.y5d{bottom:168.660000px;}
.ya3{bottom:169.845000px;}
.y2f{bottom:178.125000px;}
.y7d{bottom:193.785000px;}
.y15{bottom:196.410000px;}
.y22{bottom:198.615000px;}
.y2a{bottom:200.265000px;}
.y42{bottom:201.390000px;}
.y5c{bottom:204.660000px;}
.y2e{bottom:206.925000px;}
.y8a{bottom:207.465000px;}
.y6a{bottom:217.770000px;}
.y32{bottom:222.120000px;}
.ya2{bottom:231.150000px;}
.y28{bottom:232.665000px;}
.y21{bottom:239.295000px;}
.y89{bottom:239.865000px;}
.y5b{bottom:240.660000px;}
.y7c{bottom:244.185000px;}
.y69{bottom:246.930000px;}
.y14{bottom:250.230000px;}
.y41{bottom:251.790000px;}
.yad{bottom:274.650000px;}
.y30{bottom:276.120000px;}
.y5a{bottom:276.690000px;}
.ya7{bottom:277.590000px;}
.yb{bottom:277.770000px;}
.y88{bottom:281.265000px;}
.y2d{bottom:283.320000px;}
.y13{bottom:289.110000px;}
.y7b{bottom:294.810000px;}
.y40{bottom:302.190000px;}
.y59{bottom:312.510000px;}
.y87{bottom:313.665000px;}
.yac{bottom:320.010000px;}
.y68{bottom:320.190000px;}
.y20{bottom:321.045000px;}
.y27{bottom:330.120000px;}
.y1{bottom:333.720000px;}
.y12{bottom:342.975000px;}
.y73{bottom:344.415000px;}
.ya{bottom:344.595000px;}
.y3f{bottom:352.440000px;}
.y86{bottom:355.065000px;}
.yb0{bottom:358.665000px;}
.y1f{bottom:361.905000px;}
.y71{bottom:363.780000px;}
.y9d{bottom:364.830000px;}
.y50{bottom:370.800000px;}
.y4f{bottom:373.035000px;}
.y58{bottom:384.690000px;}
.y85{bottom:387.510000px;}
.y67{bottom:393.660000px;}
.y7a{bottom:395.610000px;}
.y11{bottom:396.975000px;}
.y72{bottom:398.010000px;}
.y2b{bottom:398.520000px;}
.y1e{bottom:402.585000px;}
.y3e{bottom:403.020000px;}
.y9c{bottom:408.030000px;}
.y43{bottom:411.375000px;}
.y9{bottom:411.555000px;}
.y57{bottom:420.690000px;}
.y6{bottom:421.665000px;}
.y84{bottom:428.910000px;}
.yab{bottom:440.820000px;}
.y1d{bottom:443.490000px;}
.y79{bottom:446.040000px;}
.y10{bottom:450.795000px;}
.y9b{bottom:451.230000px;}
.y3d{bottom:453.420000px;}
.y4e{bottom:456.630000px;}
.y56{bottom:456.735000px;}
.y25{bottom:459.720000px;}
.y83{bottom:461.310000px;}
.y98{bottom:464.910000px;}
.y66{bottom:466.920000px;}
.yc{bottom:478.185000px;}
.y8{bottom:478.365000px;}
.y48{bottom:485.460000px;}
.yaa{bottom:486.180000px;}
.yf{bottom:489.675000px;}
.y5{bottom:490.785000px;}
.y4d{bottom:492.630000px;}
.y82{bottom:493.710000px;}
.y9a{bottom:494.460000px;}
.y78{bottom:496.440000px;}
.y3c{bottom:503.820000px;}
.y97{bottom:508.110000px;}
.y65{bottom:511.050000px;}
.y47{bottom:521.460000px;}
.y1c{bottom:525.210000px;}
.y4c{bottom:528.630000px;}
.y55{bottom:528.735000px;}
.ye{bottom:543.525000px;}
.y91{bottom:545.400000px;}
.y96{bottom:551.340000px;}
.y3b{bottom:554.250000px;}
.y64{bottom:555.330000px;}
.y46{bottom:557.460000px;}
.y4{bottom:562.065000px;}
.y29{bottom:562.785000px;}
.y77{bottom:563.550000px;}
.y4b{bottom:564.630000px;}
.y54{bottom:564.735000px;}
.y1b{bottom:565.890000px;}
.y81{bottom:567.540000px;}
.yd{bottom:582.405000px;}
.y63{bottom:584.490000px;}
.ya1{bottom:587.055000px;}
.y90{bottom:588.630000px;}
.y45{bottom:593.490000px;}
.y95{bottom:594.540000px;}
.y4a{bottom:600.660000px;}
.y53{bottom:600.765000px;}
.y3a{bottom:604.470000px;}
.y1a{bottom:606.780000px;}
.ya9{bottom:606.990000px;}
.y76{bottom:608.910000px;}
.y80{bottom:627.480000px;}
.y62{bottom:628.590000px;}
.y44{bottom:629.310000px;}
.ya0{bottom:630.285000px;}
.y8f{bottom:631.830000px;}
.y3{bottom:633.390000px;}
.y18{bottom:633.990000px;}
.y49{bottom:636.480000px;}
.y52{bottom:636.585000px;}
.ya8{bottom:652.350000px;}
.y94{bottom:668.340000px;}
.y9f{bottom:673.485000px;}
.y19{bottom:675.795000px;}
.y75{bottom:679.470000px;}
.y61{bottom:681.450000px;}
.y7f{bottom:687.450000px;}
.y70{bottom:699.510000px;}
.ya6{bottom:702.975000px;}
.y2{bottom:704.670000px;}
.y8e{bottom:705.960000px;}
.y7{bottom:707.010000px;}
.y51{bottom:709.530000px;}
.y9e{bottom:716.685000px;}
.y93{bottom:733.140000px;}
.y60{bottom:737.790000px;}
.y74{bottom:738.150000px;}
.y99{bottom:745.890000px;}
.h9{height:54.000000px;}
.h13{height:71.820000px;}
.h10{height:81.000000px;}
.h19{height:81.108000px;}
.h16{height:90.180000px;}
.h17{height:90.288000px;}
.he{height:96.478594px;}
.h1a{height:96.638203px;}
.h1b{height:96.753938px;}
.hd{height:102.060000px;}
.hc{height:102.168000px;}
.h1f{height:106.664062px;}
.h7{height:108.000000px;}
.h8{height:108.108000px;}
.h20{height:108.281250px;}
.h15{height:125.820000px;}
.ha{height:125.928000px;}
.h1{height:143.226562px;}
.h6{height:144.180000px;}
.h5{height:144.288000px;}
.hb{height:162.000000px;}
.h1c{height:162.108000px;}
.h1e{height:166.320000px;}
.h1d{height:166.428000px;}
.h4{height:179.820000px;}
.h2{height:198.180000px;}
.h3{height:198.288000px;}
.h12{height:201.600000px;}
.hf{height:226.800000px;}
.h18{height:238.472227px;}
.h21{height:275.383547px;}
.h14{height:403.200000px;}
.h11{height:453.600000px;}
.h0{height:810.000000px;}
.w2{width:243.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x9{left:10.830000px;}
.x1b{left:22.283979px;}
.x2a{left:30.743979px;}
.x29{left:34.343979px;}
.xf{left:38.915979px;}
.x13{left:39.959979px;}
.x3{left:43.883979px;}
.x1c{left:49.283979px;}
.x6{left:54.683979px;}
.x7{left:63.503979px;}
.x12{left:65.843979px;}
.x24{left:68.399979px;}
.x5{left:70.883979px;}
.x20{left:79.307979px;}
.x15{left:84.383979px;}
.x21{left:90.179979px;}
.x14{left:93.959979px;}
.x1d{left:108.683979px;}
.x16{left:125.747979px;}
.x17{left:152.744979px;}
.x18{left:290.879979px;}
.x8{left:362.160000px;}
.x4{left:373.319979px;}
.x19{left:519.944979px;}
.x23{left:539.279979px;}
.x22{left:559.544979px;}
.xa{left:605.160000px;}
.x2{left:724.424979px;}
.x10{left:730.904979px;}
.x1{left:747.899979px;}
.x11{left:784.904979px;}
.x1e{left:790.454979px;}
.x27{left:820.619979px;}
.x25{left:831.419979px;}
.xb{left:848.160000px;}
.x28{left:865.619979px;}
.x26{left:876.419979px;}
.x1a{left:1048.394979px;}
.xc{left:1091.160000px;}
.xd{left:1176.089979px;}
.xe{left:1194.809979px;}
.x1f{left:1310.504979px;}
@media print{
.v1{vertical-align:-8.053333pt;}
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-1.536000pt;}
.lsf{letter-spacing:-1.504000pt;}
.lse{letter-spacing:-1.114667pt;}
.lsd{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.281600pt;}
.ls16{letter-spacing:-0.280533pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.243200pt;}
.ls3{letter-spacing:-0.225067pt;}
.ls17{letter-spacing:-0.140800pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.102400pt;}
.ls2b{letter-spacing:-0.053867pt;}
.ls25{letter-spacing:-0.051200pt;}
.ls1f{letter-spacing:-0.048640pt;}
.ls13{letter-spacing:-0.045440pt;}
.ls9{letter-spacing:-0.035840pt;}
.ls2d{letter-spacing:-0.000020pt;}
.lsc{letter-spacing:-0.000010pt;}
.ls14{letter-spacing:-0.000005pt;}
.ls8{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000003pt;}
.ls6{letter-spacing:0.000005pt;}
.ls11{letter-spacing:0.025600pt;}
.ls2c{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.051200pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.220672pt;}
.ls29{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.298240pt;}
.ls22{letter-spacing:0.320000pt;}
.ls21{letter-spacing:29.120000pt;}
.ls24{letter-spacing:29.216000pt;}
.ls27{letter-spacing:35.328000pt;}
.ls1d{letter-spacing:43.808000pt;}
.ls5{letter-spacing:51.200000pt;}
.ls1{letter-spacing:56.326315pt;}
.ls2{letter-spacing:56.427947pt;}
.ls23{letter-spacing:58.547200pt;}
.ls20{letter-spacing:58.592000pt;}
.ls4{letter-spacing:59.840000pt;}
.ls1b{letter-spacing:62.389333pt;}
.ls1e{letter-spacing:68.128000pt;}
.ls19{letter-spacing:83.040000pt;}
.ls2a{letter-spacing:101.317376pt;}
.ls26{letter-spacing:101.376000pt;}
.ws18{word-spacing:-149.248000pt;}
.ws19{word-spacing:-149.120000pt;}
.ws1c{word-spacing:-107.008000pt;}
.ws20{word-spacing:-106.880000pt;}
.ws43{word-spacing:-100.200064pt;}
.ws0{word-spacing:-65.097216pt;}
.ws2{word-spacing:-59.034240pt;}
.ws31{word-spacing:-53.760000pt;}
.ws32{word-spacing:-53.759990pt;}
.ws4{word-spacing:-47.882240pt;}
.ws40{word-spacing:-47.846400pt;}
.ws42{word-spacing:-41.817600pt;}
.ws3a{word-spacing:-41.815040pt;}
.ws39{word-spacing:-41.789440pt;}
.ws41{word-spacing:-41.753600pt;}
.ws1a{word-spacing:-41.306240pt;}
.ws3f{word-spacing:-35.914240pt;}
.ws7{word-spacing:-35.840005pt;}
.ws6{word-spacing:-35.456000pt;}
.wse{word-spacing:-33.904640pt;}
.wsf{word-spacing:-33.868800pt;}
.ws16{word-spacing:-33.505920pt;}
.ws2c{word-spacing:-29.926400pt;}
.ws3c{word-spacing:-29.875200pt;}
.ws29{word-spacing:-29.824000pt;}
.ws3b{word-spacing:-29.641216pt;}
.ws2f{word-spacing:-29.605760pt;}
.ws34{word-spacing:-26.592000pt;}
.ws17{word-spacing:-23.578240pt;}
.ws23{word-spacing:-3.258453pt;}
.ws2a{word-spacing:-3.020800pt;}
.ws3d{word-spacing:-2.621440pt;}
.ws2d{word-spacing:-2.356480pt;}
.ws1b{word-spacing:-2.341120pt;}
.ws12{word-spacing:-1.881600pt;}
.ws1f{word-spacing:-1.588736pt;}
.ws27{word-spacing:-1.398400pt;}
.ws3{word-spacing:-1.369856pt;}
.ws11{word-spacing:-1.362773pt;}
.ws2e{word-spacing:-1.339733pt;}
.ws21{word-spacing:-1.219413pt;}
.ws33{word-spacing:-1.120000pt;}
.ws2b{word-spacing:-1.078101pt;}
.ws1d{word-spacing:-1.014272pt;}
.wsb{word-spacing:-0.909867pt;}
.ws14{word-spacing:-0.690347pt;}
.wsc{word-spacing:-0.684373pt;}
.wsd{word-spacing:-0.660736pt;}
.ws15{word-spacing:-0.537173pt;}
.ws5{word-spacing:-0.533364pt;}
.wsa{word-spacing:-0.533333pt;}
.ws30{word-spacing:-0.277333pt;}
.ws24{word-spacing:-0.217600pt;}
.ws36{word-spacing:-0.106880pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.021333pt;}
.ws13{word-spacing:0.051200pt;}
.ws25{word-spacing:0.095360pt;}
.ws3e{word-spacing:0.256000pt;}
.ws26{word-spacing:0.269440pt;}
.ws28{word-spacing:0.307200pt;}
.ws1e{word-spacing:0.473771pt;}
.ws22{word-spacing:0.625280pt;}
.ws9{word-spacing:0.640031pt;}
.ws10{word-spacing:0.780800pt;}
.ws38{word-spacing:22.843904pt;}
.ws35{word-spacing:23.362560pt;}
.ws37{word-spacing:23.459840pt;}
._8{margin-left:-19.393920pt;}
._c{margin-left:-8.907862pt;}
._9{margin-left:-3.836160pt;}
._5{margin-left:-2.716544pt;}
._0{margin-left:-1.664000pt;}
._1{width:1.058816pt;}
._4{width:2.065493pt;}
._3{width:3.212800pt;}
._a{width:25.760086pt;}
._e{width:27.354411pt;}
._6{width:29.260800pt;}
._7{width:30.195200pt;}
._2{width:32.533504pt;}
._f{width:36.583851pt;}
._d{width:42.960555pt;}
._b{width:858.986453pt;}
.fs7{font-size:64.000000pt;}
.fse{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fsc{font-size:114.048000pt;}
.fsb{font-size:120.960000pt;}
.fsa{font-size:121.088000pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fsf{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs5{font-size:170.880000pt;}
.fs4{font-size:171.008000pt;}
.fs9{font-size:192.000000pt;}
.fs13{font-size:192.128000pt;}
.fs15{font-size:197.120000pt;}
.fs14{font-size:197.248000pt;}
.fs3{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fs2{font-size:235.008000pt;}
.fs16{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:5.440000pt;}
.y6f{bottom:17.632000pt;}
.y8d{bottom:27.264000pt;}
.y17{bottom:32.512000pt;}
.y92{bottom:33.472000pt;}
.y6e{bottom:46.432000pt;}
.y36{bottom:53.440000pt;}
.y24{bottom:71.328000pt;}
.ya5{bottom:74.176000pt;}
.y6d{bottom:75.232000pt;}
.y35{bottom:81.466667pt;}
.y38{bottom:81.472000pt;}
.y31{bottom:81.506667pt;}
.y2c{bottom:81.533333pt;}
.y5f{bottom:85.888000pt;}
.y39{bottom:86.912000pt;}
.y26{bottom:91.613333pt;}
.yaf{bottom:96.576000pt;}
.y34{bottom:101.440000pt;}
.y6c{bottom:104.064000pt;}
.ya4{bottom:112.576000pt;}
.y5e{bottom:117.920000pt;}
.y8c{bottom:118.784000pt;}
.y7e{bottom:127.616000pt;}
.y6b{bottom:132.864000pt;}
.yae{bottom:136.893333pt;}
.y16{bottom:140.000000pt;}
.y23{bottom:140.226667pt;}
.y8b{bottom:147.586667pt;}
.y33{bottom:149.440000pt;}
.y5d{bottom:149.920000pt;}
.ya3{bottom:150.973333pt;}
.y2f{bottom:158.333333pt;}
.y7d{bottom:172.253333pt;}
.y15{bottom:174.586667pt;}
.y22{bottom:176.546667pt;}
.y2a{bottom:178.013333pt;}
.y42{bottom:179.013333pt;}
.y5c{bottom:181.920000pt;}
.y2e{bottom:183.933333pt;}
.y8a{bottom:184.413333pt;}
.y6a{bottom:193.573333pt;}
.y32{bottom:197.440000pt;}
.ya2{bottom:205.466667pt;}
.y28{bottom:206.813333pt;}
.y21{bottom:212.706667pt;}
.y89{bottom:213.213333pt;}
.y5b{bottom:213.920000pt;}
.y7c{bottom:217.053333pt;}
.y69{bottom:219.493333pt;}
.y14{bottom:222.426667pt;}
.y41{bottom:223.813333pt;}
.yad{bottom:244.133333pt;}
.y30{bottom:245.440000pt;}
.y5a{bottom:245.946667pt;}
.ya7{bottom:246.746667pt;}
.yb{bottom:246.906667pt;}
.y88{bottom:250.013333pt;}
.y2d{bottom:251.840000pt;}
.y13{bottom:256.986667pt;}
.y7b{bottom:262.053333pt;}
.y40{bottom:268.613333pt;}
.y59{bottom:277.786667pt;}
.y87{bottom:278.813333pt;}
.yac{bottom:284.453333pt;}
.y68{bottom:284.613333pt;}
.y20{bottom:285.373333pt;}
.y27{bottom:293.440000pt;}
.y1{bottom:296.640000pt;}
.y12{bottom:304.866667pt;}
.y73{bottom:306.146667pt;}
.ya{bottom:306.306667pt;}
.y3f{bottom:313.280000pt;}
.y86{bottom:315.613333pt;}
.yb0{bottom:318.813333pt;}
.y1f{bottom:321.693333pt;}
.y71{bottom:323.360000pt;}
.y9d{bottom:324.293333pt;}
.y50{bottom:329.600000pt;}
.y4f{bottom:331.586667pt;}
.y58{bottom:341.946667pt;}
.y85{bottom:344.453333pt;}
.y67{bottom:349.920000pt;}
.y7a{bottom:351.653333pt;}
.y11{bottom:352.866667pt;}
.y72{bottom:353.786667pt;}
.y2b{bottom:354.240000pt;}
.y1e{bottom:357.853333pt;}
.y3e{bottom:358.240000pt;}
.y9c{bottom:362.693333pt;}
.y43{bottom:365.666667pt;}
.y9{bottom:365.826667pt;}
.y57{bottom:373.946667pt;}
.y6{bottom:374.813333pt;}
.y84{bottom:381.253333pt;}
.yab{bottom:391.840000pt;}
.y1d{bottom:394.213333pt;}
.y79{bottom:396.480000pt;}
.y10{bottom:400.706667pt;}
.y9b{bottom:401.093333pt;}
.y3d{bottom:403.040000pt;}
.y4e{bottom:405.893333pt;}
.y56{bottom:405.986667pt;}
.y25{bottom:408.640000pt;}
.y83{bottom:410.053333pt;}
.y98{bottom:413.253333pt;}
.y66{bottom:415.040000pt;}
.yc{bottom:425.053333pt;}
.y8{bottom:425.213333pt;}
.y48{bottom:431.520000pt;}
.yaa{bottom:432.160000pt;}
.yf{bottom:435.266667pt;}
.y5{bottom:436.253333pt;}
.y4d{bottom:437.893333pt;}
.y82{bottom:438.853333pt;}
.y9a{bottom:439.520000pt;}
.y78{bottom:441.280000pt;}
.y3c{bottom:447.840000pt;}
.y97{bottom:451.653333pt;}
.y65{bottom:454.266667pt;}
.y47{bottom:463.520000pt;}
.y1c{bottom:466.853333pt;}
.y4c{bottom:469.893333pt;}
.y55{bottom:469.986667pt;}
.ye{bottom:483.133333pt;}
.y91{bottom:484.800000pt;}
.y96{bottom:490.080000pt;}
.y3b{bottom:492.666667pt;}
.y64{bottom:493.626667pt;}
.y46{bottom:495.520000pt;}
.y4{bottom:499.613333pt;}
.y29{bottom:500.253333pt;}
.y77{bottom:500.933333pt;}
.y4b{bottom:501.893333pt;}
.y54{bottom:501.986667pt;}
.y1b{bottom:503.013333pt;}
.y81{bottom:504.480000pt;}
.yd{bottom:517.693333pt;}
.y63{bottom:519.546667pt;}
.ya1{bottom:521.826667pt;}
.y90{bottom:523.226667pt;}
.y45{bottom:527.546667pt;}
.y95{bottom:528.480000pt;}
.y4a{bottom:533.920000pt;}
.y53{bottom:534.013333pt;}
.y3a{bottom:537.306667pt;}
.y1a{bottom:539.360000pt;}
.ya9{bottom:539.546667pt;}
.y76{bottom:541.253333pt;}
.y80{bottom:557.760000pt;}
.y62{bottom:558.746667pt;}
.y44{bottom:559.386667pt;}
.ya0{bottom:560.253333pt;}
.y8f{bottom:561.626667pt;}
.y3{bottom:563.013333pt;}
.y18{bottom:563.546667pt;}
.y49{bottom:565.760000pt;}
.y52{bottom:565.853333pt;}
.ya8{bottom:579.866667pt;}
.y94{bottom:594.080000pt;}
.y9f{bottom:598.653333pt;}
.y19{bottom:600.706667pt;}
.y75{bottom:603.973333pt;}
.y61{bottom:605.733333pt;}
.y7f{bottom:611.066667pt;}
.y70{bottom:621.786667pt;}
.ya6{bottom:624.866667pt;}
.y2{bottom:626.373333pt;}
.y8e{bottom:627.520000pt;}
.y7{bottom:628.453333pt;}
.y51{bottom:630.693333pt;}
.y9e{bottom:637.053333pt;}
.y93{bottom:651.680000pt;}
.y60{bottom:655.813333pt;}
.y74{bottom:656.133333pt;}
.y99{bottom:663.013333pt;}
.h9{height:48.000000pt;}
.h13{height:63.840000pt;}
.h10{height:72.000000pt;}
.h19{height:72.096000pt;}
.h16{height:80.160000pt;}
.h17{height:80.256000pt;}
.he{height:85.758750pt;}
.h1a{height:85.900625pt;}
.h1b{height:86.003500pt;}
.hd{height:90.720000pt;}
.hc{height:90.816000pt;}
.h1f{height:94.812500pt;}
.h7{height:96.000000pt;}
.h8{height:96.096000pt;}
.h20{height:96.250000pt;}
.h15{height:111.840000pt;}
.ha{height:111.936000pt;}
.h1{height:127.312500pt;}
.h6{height:128.160000pt;}
.h5{height:128.256000pt;}
.hb{height:144.000000pt;}
.h1c{height:144.096000pt;}
.h1e{height:147.840000pt;}
.h1d{height:147.936000pt;}
.h4{height:159.840000pt;}
.h2{height:176.160000pt;}
.h3{height:176.256000pt;}
.h12{height:179.200000pt;}
.hf{height:201.600000pt;}
.h18{height:211.975312pt;}
.h21{height:244.785375pt;}
.h14{height:358.400000pt;}
.h11{height:403.200000pt;}
.h0{height:720.000000pt;}
.w2{width:216.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.626667pt;}
.x1b{left:19.807981pt;}
.x2a{left:27.327981pt;}
.x29{left:30.527981pt;}
.xf{left:34.591981pt;}
.x13{left:35.519981pt;}
.x3{left:39.007981pt;}
.x1c{left:43.807981pt;}
.x6{left:48.607981pt;}
.x7{left:56.447981pt;}
.x12{left:58.527981pt;}
.x24{left:60.799981pt;}
.x5{left:63.007981pt;}
.x20{left:70.495981pt;}
.x15{left:75.007981pt;}
.x21{left:80.159981pt;}
.x14{left:83.519981pt;}
.x1d{left:96.607981pt;}
.x16{left:111.775981pt;}
.x17{left:135.773314pt;}
.x18{left:258.559981pt;}
.x8{left:321.920000pt;}
.x4{left:331.839981pt;}
.x19{left:462.173314pt;}
.x23{left:479.359981pt;}
.x22{left:497.373314pt;}
.xa{left:537.920000pt;}
.x2{left:643.933314pt;}
.x10{left:649.693314pt;}
.x1{left:664.799981pt;}
.x11{left:697.693314pt;}
.x1e{left:702.626648pt;}
.x27{left:729.439981pt;}
.x25{left:739.039981pt;}
.xb{left:753.920000pt;}
.x28{left:769.439981pt;}
.x26{left:779.039981pt;}
.x1a{left:931.906648pt;}
.xc{left:969.920000pt;}
.xd{left:1045.413314pt;}
.xe{left:1062.053314pt;}
.x1f{left:1164.893314pt;}
}




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