
    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_d3af929843d3dbf9dcc66e0c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a244b189690b2927d687178f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_12a1f8879f721f047217d9c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.404000;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_6b69653bee8cbfdc1b4f145f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_0873fa62388d4dbee39038f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_3fa6904be78b12f2b2a3dfb4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m18{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.826000px;}
.v2{vertical-align:56.784000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.136195px;}
.ls0{letter-spacing:4.142195px;}
.lsb{letter-spacing:6.988080px;}
.lsd{letter-spacing:6.994080px;}
.ls5{letter-spacing:16.236162px;}
.ls3{letter-spacing:17.929311px;}
.ls2{letter-spacing:17.935311px;}
.ls9{letter-spacing:19.749050px;}
.lsc{letter-spacing:19.904316px;}
.lsa{letter-spacing:19.910316px;}
.ls8{letter-spacing:20.190480px;}
.ls4{letter-spacing:29.886938px;}
.ls6{letter-spacing:2120.742553px;}
.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;}
}
.wse{word-spacing:-61.166153px;}
.ws54{word-spacing:-59.775840px;}
.ws22{word-spacing:-47.820660px;}
.ws24{word-spacing:-47.713380px;}
.ws5b{word-spacing:-40.169364px;}
.ws53{word-spacing:-40.109589px;}
.ws59{word-spacing:-40.049813px;}
.ws52{word-spacing:-39.870485px;}
.ws6{word-spacing:-38.228867px;}
.ws21{word-spacing:-31.561636px;}
.ws20{word-spacing:-31.490831px;}
.ws2c{word-spacing:-30.541353px;}
.ws1b{word-spacing:-29.220732px;}
.ws1a{word-spacing:-28.214196px;}
.ws23{word-spacing:-26.524046px;}
.ws2{word-spacing:-25.451157px;}
.ws7{word-spacing:-25.392788px;}
.ws5{word-spacing:-20.309473px;}
.ws1f{word-spacing:-19.315481px;}
.ws4a{word-spacing:-19.140511px;}
.ws17{word-spacing:-19.088357px;}
.ws11{word-spacing:-14.585305px;}
.ws8{word-spacing:-14.394491px;}
.ws1{word-spacing:-14.357677px;}
.wsa{word-spacing:-14.341620px;}
.ws9{word-spacing:-14.338893px;}
.ws0{word-spacing:-14.151092px;}
.ws47{word-spacing:-13.688667px;}
.ws32{word-spacing:-13.090909px;}
.ws4e{word-spacing:-12.732254px;}
.ws48{word-spacing:-12.672478px;}
.ws57{word-spacing:-12.612702px;}
.ws44{word-spacing:-11.596513px;}
.ws42{word-spacing:-11.536737px;}
.ws3c{word-spacing:-10.998755px;}
.ws4b{word-spacing:-10.879203px;}
.ws45{word-spacing:-10.341220px;}
.ws51{word-spacing:-9.982565px;}
.ws3d{word-spacing:-9.743462px;}
.ws5a{word-spacing:-9.683686px;}
.ws58{word-spacing:-9.564134px;}
.ws4f{word-spacing:-9.384807px;}
.ws15{word-spacing:-9.205479px;}
.ws55{word-spacing:-9.145704px;}
.ws3f{word-spacing:-8.846824px;}
.ws30{word-spacing:-8.727273px;}
.ws12{word-spacing:-8.667497px;}
.ws2f{word-spacing:-8.607721px;}
.ws43{word-spacing:-8.547945px;}
.ws39{word-spacing:-8.488169px;}
.ws34{word-spacing:-8.428393px;}
.wsf{word-spacing:-8.368618px;}
.ws13{word-spacing:-8.308842px;}
.ws46{word-spacing:-8.304773px;}
.ws3b{word-spacing:-8.249066px;}
.ws35{word-spacing:-8.189290px;}
.ws10{word-spacing:-8.129514px;}
.ws16{word-spacing:-8.069738px;}
.ws38{word-spacing:-8.009963px;}
.ws19{word-spacing:-7.950187px;}
.ws2e{word-spacing:-7.890411px;}
.ws2d{word-spacing:-7.830635px;}
.ws31{word-spacing:-7.651308px;}
.ws18{word-spacing:-7.480476px;}
.ws4{word-spacing:-7.477961px;}
.wsb{word-spacing:-7.424163px;}
.ws4d{word-spacing:-7.352428px;}
.wsd{word-spacing:-7.316566px;}
.wsc{word-spacing:-7.262768px;}
.ws41{word-spacing:-6.754670px;}
.ws49{word-spacing:-6.694894px;}
.ws50{word-spacing:-6.396015px;}
.ws3a{word-spacing:-6.276463px;}
.ws40{word-spacing:-6.097136px;}
.ws37{word-spacing:-5.738481px;}
.ws4c{word-spacing:-4.961395px;}
.ws33{word-spacing:-4.662516px;}
.ws3e{word-spacing:-4.064757px;}
.ws14{word-spacing:-3.945205px;}
.ws56{word-spacing:-1.669422px;}
.ws36{word-spacing:-1.195517px;}
.ws2b{word-spacing:-0.053384px;}
.ws2a{word-spacing:-0.026782px;}
.ws1e{word-spacing:-0.020692px;}
.ws28{word-spacing:-0.019319px;}
.ws27{word-spacing:-0.018587px;}
.ws1c{word-spacing:-0.017855px;}
.ws1d{word-spacing:-0.008196px;}
.ws26{word-spacing:-0.004853px;}
.ws25{word-spacing:0.000000px;}
.ws3{word-spacing:20.458445px;}
.ws29{word-spacing:29.202145px;}
._3{margin-left:-6.397559px;}
._6{margin-left:-5.323986px;}
._a{margin-left:-3.959203px;}
._4{margin-left:-2.153975px;}
._d{margin-left:-1.133696px;}
._5{width:1.295246px;}
._1{width:2.995487px;}
._15{width:5.176352px;}
._e{width:16.322894px;}
._14{width:17.456590px;}
._7{width:18.791481px;}
._12{width:20.764083px;}
._c{width:21.893456px;}
._9{width:23.932203px;}
._b{width:25.520701px;}
._8{width:26.958904px;}
._13{width:28.172198px;}
._10{width:29.349937px;}
._11{width:31.743273px;}
._f{width:38.796134px;}
._0{width:46.171810px;}
._2{width:70.447302px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(64,161,112);}
.fc5{color:rgb(97,161,176);}
.fc4{color:rgb(0,112,33);}
.fc3{color:rgb(64,112,161);}
.fc8{color:rgb(135,0,0);}
.fc2{color:rgb(5,41,125);}
.fc1{color:rgb(0,128,255);}
.fc6{color:rgb(125,143,41);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:43.678260px;}
.fs2{font-size:47.713380px;}
.fs9{font-size:47.820660px;}
.fs7{font-size:48.531360px;}
.fs3{font-size:52.153980px;}
.fs4{font-size:53.798280px;}
.fs6{font-size:59.775840px;}
.fs1{font-size:69.538680px;}
.fs5{font-size:83.446320px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y2e{bottom:68.530500px;}
.y2d{bottom:82.726500px;}
.y2c{bottom:127.558500px;}
.y5f{bottom:135.339000px;}
.y97{bottom:145.492500px;}
.y5e{bottom:153.271500px;}
.y2b{bottom:163.425000px;}
.y5d{bottom:171.204000px;}
.y96{bottom:172.390500px;}
.y2a{bottom:181.357500px;}
.y5c{bottom:189.136500px;}
.y95{bottom:190.323000px;}
.y29{bottom:199.290000px;}
.y5b{bottom:207.069000px;}
.y94{bottom:208.257000px;}
.y7b{bottom:214.647000px;}
.y28{bottom:217.222500px;}
.y5a{bottom:225.003000px;}
.y93{bottom:226.189500px;}
.y7a{bottom:232.579500px;}
.y59{bottom:242.935500px;}
.y27{bottom:244.122000px;}
.y79{bottom:250.512000px;}
.y92{bottom:253.089000px;}
.y58{bottom:260.868000px;}
.y26{bottom:262.054500px;}
.y78{bottom:268.444500px;}
.y91{bottom:271.021500px;}
.y25{bottom:279.987000px;}
.y77{bottom:286.377000px;}
.y57{bottom:287.767500px;}
.y90{bottom:288.954000px;}
.y76{bottom:304.311000px;}
.y56{bottom:305.700000px;}
.y8f{bottom:315.853500px;}
.y75{bottom:322.243500px;}
.y55{bottom:323.632500px;}
.y24{bottom:328.906500px;}
.y8e{bottom:333.786000px;}
.y54{bottom:341.565000px;}
.y8d{bottom:351.718500px;}
.y53{bottom:359.497500px;}
.y74{bottom:372.006000px;}
.y52{bottom:377.431500px;}
.y8c{bottom:378.618000px;}
.y51{bottom:395.364000px;}
.y8b{bottom:396.550500px;}
.y50{bottom:413.296500px;}
.y8a{bottom:414.483000px;}
.y4f{bottom:431.229000px;}
.y89{bottom:441.382500px;}
.y4e{bottom:449.161500px;}
.y88{bottom:459.315000px;}
.y4d{bottom:467.094000px;}
.y87{bottom:477.247500px;}
.y4c{bottom:485.028000px;}
.y86{bottom:495.180000px;}
.y4b{bottom:502.960500px;}
.y17{bottom:512.187000px;}
.y4a{bottom:520.893000px;}
.y16{bottom:528.625500px;}
.y85{bottom:530.259000px;}
.y49{bottom:538.825500px;}
.y15{bottom:545.064000px;}
.y48{bottom:556.758000px;}
.y14{bottom:561.502500px;}
.y13{bottom:577.939500px;}
.y84{bottom:579.550500px;}
.y47{bottom:583.657500px;}
.y23{bottom:585.172500px;}
.y83{bottom:597.483000px;}
.y46{bottom:601.590000px;}
.y12{bottom:602.883000px;}
.y22{bottom:603.105000px;}
.y82{bottom:615.417000px;}
.y11{bottom:619.321500px;}
.y45{bottom:619.522500px;}
.y21{bottom:621.037500px;}
.y81{bottom:633.349500px;}
.y44{bottom:637.456500px;}
.y20{bottom:638.970000px;}
.y73{bottom:647.094000px;}
.y10{bottom:650.241000px;}
.y80{bottom:651.282000px;}
.y43{bottom:655.389000px;}
.y1f{bottom:656.902500px;}
.y72{bottom:665.028000px;}
.y7f{bottom:669.214500px;}
.yf{bottom:669.667500px;}
.y42{bottom:673.321500px;}
.y1e{bottom:674.836500px;}
.y71{bottom:682.960500px;}
.y7e{bottom:687.147000px;}
.y41{bottom:691.254000px;}
.ye{bottom:692.083500px;}
.y70{bottom:700.893000px;}
.y1d{bottom:701.734500px;}
.y40{bottom:709.186500px;}
.yd{bottom:712.774500px;}
.y6f{bottom:718.825500px;}
.y1c{bottom:719.668500px;}
.y7d{bottom:721.896000px;}
.y3f{bottom:727.119000px;}
.y6e{bottom:736.758000px;}
.y1b{bottom:737.601000px;}
.y3e{bottom:745.053000px;}
.y6d{bottom:754.690500px;}
.y1a{bottom:755.533500px;}
.yc{bottom:768.636000px;}
.y6c{bottom:772.624500px;}
.y19{bottom:773.466000px;}
.y7c{bottom:780.279000px;}
.y3d{bottom:780.639000px;}
.yb{bottom:788.064000px;}
.y6b{bottom:790.557000px;}
.ya{bottom:807.490500px;}
.y18{bottom:808.380000px;}
.y6a{bottom:808.489500px;}
.y9{bottom:829.906500px;}
.y3c{bottom:830.080500px;}
.y69{bottom:835.389000px;}
.y3b{bottom:848.013000px;}
.y68{bottom:853.321500px;}
.y8{bottom:854.848500px;}
.y3a{bottom:865.945500px;}
.y67{bottom:871.254000px;}
.y7{bottom:874.912500px;}
.y39{bottom:883.879500px;}
.y66{bottom:889.186500px;}
.y6{bottom:891.351000px;}
.y38{bottom:901.812000px;}
.y65{bottom:907.119000px;}
.y5{bottom:907.789500px;}
.y37{bottom:919.744500px;}
.y64{bottom:925.053000px;}
.y36{bottom:937.677000px;}
.y4{bottom:939.171000px;}
.y63{bottom:942.985500px;}
.y35{bottom:955.609500px;}
.y3{bottom:960.093000px;}
.y62{bottom:960.918000px;}
.y34{bottom:973.542000px;}
.y61{bottom:978.850500px;}
.y33{bottom:991.476000px;}
.y2{bottom:1003.431000px;}
.y60{bottom:1013.764500px;}
.y1{bottom:1036.306500px;}
.y32{bottom:1045.273500px;}
.y31{bottom:1063.206000px;}
.y30{bottom:1081.138500px;}
.y2f{bottom:1099.072500px;}
.h8{height:36.872459px;}
.h5{height:37.394404px;}
.h4{height:40.348710px;}
.h7{height:44.831880px;}
.h9{height:55.061241px;}
.h6{height:59.831011px;}
.h2{height:77.469480px;}
.h3{height:81.887241px;}
.ha{height:101.615880px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.519000px;}
.x9{left:58.957500px;}
.x3{left:61.944000px;}
.x1{left:250.296000px;}
.x1b{left:260.016000px;}
.xa{left:264.906000px;}
.x1f{left:272.712000px;}
.x7{left:279.136500px;}
.xf{left:280.414500px;}
.x1e{left:283.807500px;}
.x4{left:285.703500px;}
.x8{left:313.336500px;}
.x10{left:402.886500px;}
.x15{left:404.502000px;}
.x16{left:453.291000px;}
.x17{left:456.874500px;}
.x6{left:462.060000px;}
.x18{left:484.273500px;}
.xd{left:504.382500px;}
.x19{left:512.853000px;}
.x1c{left:525.333000px;}
.x1a{left:547.557000px;}
.x11{left:613.732500px;}
.xe{left:626.220000px;}
.x1d{left:642.207000px;}
.x12{left:668.424000px;}
.xb{left:698.470500px;}
.x13{left:718.341000px;}
.xc{left:732.507000px;}
.x5{left:799.915500px;}
.x14{left:805.996500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.845333pt;}
.v2{vertical-align:50.474667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.676618pt;}
.ls0{letter-spacing:3.681951pt;}
.lsb{letter-spacing:6.211627pt;}
.lsd{letter-spacing:6.216960pt;}
.ls5{letter-spacing:14.432144pt;}
.ls3{letter-spacing:15.937165pt;}
.ls2{letter-spacing:15.942499pt;}
.ls9{letter-spacing:17.554711pt;}
.lsc{letter-spacing:17.692726pt;}
.lsa{letter-spacing:17.698059pt;}
.ls8{letter-spacing:17.947093pt;}
.ls4{letter-spacing:26.566167pt;}
.ls6{letter-spacing:1885.104491pt;}
.wse{word-spacing:-54.369913pt;}
.ws54{word-spacing:-53.134080pt;}
.ws22{word-spacing:-42.507253pt;}
.ws24{word-spacing:-42.411893pt;}
.ws5b{word-spacing:-35.706102pt;}
.ws53{word-spacing:-35.652968pt;}
.ws59{word-spacing:-35.599834pt;}
.ws52{word-spacing:-35.440431pt;}
.ws6{word-spacing:-33.981215pt;}
.ws21{word-spacing:-28.054787pt;}
.ws20{word-spacing:-27.991850pt;}
.ws2c{word-spacing:-27.147869pt;}
.ws1b{word-spacing:-25.973984pt;}
.ws1a{word-spacing:-25.079286pt;}
.ws23{word-spacing:-23.576930pt;}
.ws2{word-spacing:-22.623251pt;}
.ws7{word-spacing:-22.571367pt;}
.ws5{word-spacing:-18.052865pt;}
.ws1f{word-spacing:-17.169317pt;}
.ws4a{word-spacing:-17.013787pt;}
.ws17{word-spacing:-16.967428pt;}
.ws11{word-spacing:-12.964716pt;}
.ws8{word-spacing:-12.795103pt;}
.ws1{word-spacing:-12.762380pt;}
.wsa{word-spacing:-12.748107pt;}
.ws9{word-spacing:-12.745683pt;}
.ws0{word-spacing:-12.578748pt;}
.ws47{word-spacing:-12.167704pt;}
.ws32{word-spacing:-11.636364pt;}
.ws4e{word-spacing:-11.317559pt;}
.ws48{word-spacing:-11.264425pt;}
.ws57{word-spacing:-11.211291pt;}
.ws44{word-spacing:-10.308012pt;}
.ws42{word-spacing:-10.254877pt;}
.ws3c{word-spacing:-9.776671pt;}
.ws4b{word-spacing:-9.670403pt;}
.ws45{word-spacing:-9.192196pt;}
.ws51{word-spacing:-8.873391pt;}
.ws3d{word-spacing:-8.660855pt;}
.ws5a{word-spacing:-8.607721pt;}
.ws58{word-spacing:-8.501453pt;}
.ws4f{word-spacing:-8.342051pt;}
.ws15{word-spacing:-8.182648pt;}
.ws55{word-spacing:-8.129514pt;}
.ws3f{word-spacing:-7.863844pt;}
.ws30{word-spacing:-7.757576pt;}
.ws12{word-spacing:-7.704442pt;}
.ws2f{word-spacing:-7.651308pt;}
.ws43{word-spacing:-7.598173pt;}
.ws39{word-spacing:-7.545039pt;}
.ws34{word-spacing:-7.491905pt;}
.wsf{word-spacing:-7.438771pt;}
.ws13{word-spacing:-7.385637pt;}
.ws46{word-spacing:-7.382021pt;}
.ws3b{word-spacing:-7.332503pt;}
.ws35{word-spacing:-7.279369pt;}
.ws10{word-spacing:-7.226235pt;}
.ws16{word-spacing:-7.173101pt;}
.ws38{word-spacing:-7.119967pt;}
.ws19{word-spacing:-7.066833pt;}
.ws2e{word-spacing:-7.013699pt;}
.ws2d{word-spacing:-6.960564pt;}
.ws31{word-spacing:-6.801162pt;}
.ws18{word-spacing:-6.649312pt;}
.ws4{word-spacing:-6.647076pt;}
.wsb{word-spacing:-6.599256pt;}
.ws4d{word-spacing:-6.535492pt;}
.wsd{word-spacing:-6.503614pt;}
.wsc{word-spacing:-6.455794pt;}
.ws41{word-spacing:-6.004151pt;}
.ws49{word-spacing:-5.951017pt;}
.ws50{word-spacing:-5.685347pt;}
.ws3a{word-spacing:-5.579078pt;}
.ws40{word-spacing:-5.419676pt;}
.ws37{word-spacing:-5.100872pt;}
.ws4c{word-spacing:-4.410129pt;}
.ws33{word-spacing:-4.144458pt;}
.ws3e{word-spacing:-3.613117pt;}
.ws14{word-spacing:-3.506849pt;}
.ws56{word-spacing:-1.483930pt;}
.ws36{word-spacing:-1.062682pt;}
.ws2b{word-spacing:-0.047453pt;}
.ws2a{word-spacing:-0.023806pt;}
.ws1e{word-spacing:-0.018393pt;}
.ws28{word-spacing:-0.017172pt;}
.ws27{word-spacing:-0.016522pt;}
.ws1c{word-spacing:-0.015871pt;}
.ws1d{word-spacing:-0.007285pt;}
.ws26{word-spacing:-0.004314pt;}
.ws25{word-spacing:0.000000pt;}
.ws3{word-spacing:18.185285pt;}
.ws29{word-spacing:25.957462pt;}
._3{margin-left:-5.686719pt;}
._6{margin-left:-4.732432pt;}
._a{margin-left:-3.519291pt;}
._4{margin-left:-1.914644pt;}
._d{margin-left:-1.007730pt;}
._5{width:1.151330pt;}
._1{width:2.662655pt;}
._15{width:4.601201pt;}
._e{width:14.509239pt;}
._14{width:15.516969pt;}
._7{width:16.703538pt;}
._12{width:18.456963pt;}
._c{width:19.460850pt;}
._9{width:21.273069pt;}
._b{width:22.685068pt;}
._8{width:23.963470pt;}
._13{width:25.041954pt;}
._10{width:26.088833pt;}
._11{width:28.216242pt;}
._f{width:34.485453pt;}
._0{width:41.041609pt;}
._2{width:62.619824pt;}
.fs8{font-size:38.825120pt;}
.fs2{font-size:42.411893pt;}
.fs9{font-size:42.507253pt;}
.fs7{font-size:43.138987pt;}
.fs3{font-size:46.359093pt;}
.fs4{font-size:47.820693pt;}
.fs6{font-size:53.134080pt;}
.fs1{font-size:61.812160pt;}
.fs5{font-size:74.174507pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:60.916000pt;}
.y2d{bottom:73.534667pt;}
.y2c{bottom:113.385333pt;}
.y5f{bottom:120.301333pt;}
.y97{bottom:129.326667pt;}
.y5e{bottom:136.241333pt;}
.y2b{bottom:145.266667pt;}
.y5d{bottom:152.181333pt;}
.y96{bottom:153.236000pt;}
.y2a{bottom:161.206667pt;}
.y5c{bottom:168.121333pt;}
.y95{bottom:169.176000pt;}
.y29{bottom:177.146667pt;}
.y5b{bottom:184.061333pt;}
.y94{bottom:185.117333pt;}
.y7b{bottom:190.797333pt;}
.y28{bottom:193.086667pt;}
.y5a{bottom:200.002667pt;}
.y93{bottom:201.057333pt;}
.y7a{bottom:206.737333pt;}
.y59{bottom:215.942667pt;}
.y27{bottom:216.997333pt;}
.y79{bottom:222.677333pt;}
.y92{bottom:224.968000pt;}
.y58{bottom:231.882667pt;}
.y26{bottom:232.937333pt;}
.y78{bottom:238.617333pt;}
.y91{bottom:240.908000pt;}
.y25{bottom:248.877333pt;}
.y77{bottom:254.557333pt;}
.y57{bottom:255.793333pt;}
.y90{bottom:256.848000pt;}
.y76{bottom:270.498667pt;}
.y56{bottom:271.733333pt;}
.y8f{bottom:280.758667pt;}
.y75{bottom:286.438667pt;}
.y55{bottom:287.673333pt;}
.y24{bottom:292.361333pt;}
.y8e{bottom:296.698667pt;}
.y54{bottom:303.613333pt;}
.y8d{bottom:312.638667pt;}
.y53{bottom:319.553333pt;}
.y74{bottom:330.672000pt;}
.y52{bottom:335.494667pt;}
.y8c{bottom:336.549333pt;}
.y51{bottom:351.434667pt;}
.y8b{bottom:352.489333pt;}
.y50{bottom:367.374667pt;}
.y8a{bottom:368.429333pt;}
.y4f{bottom:383.314667pt;}
.y89{bottom:392.340000pt;}
.y4e{bottom:399.254667pt;}
.y88{bottom:408.280000pt;}
.y4d{bottom:415.194667pt;}
.y87{bottom:424.220000pt;}
.y4c{bottom:431.136000pt;}
.y86{bottom:440.160000pt;}
.y4b{bottom:447.076000pt;}
.y17{bottom:455.277333pt;}
.y4a{bottom:463.016000pt;}
.y16{bottom:469.889333pt;}
.y85{bottom:471.341333pt;}
.y49{bottom:478.956000pt;}
.y15{bottom:484.501333pt;}
.y48{bottom:494.896000pt;}
.y14{bottom:499.113333pt;}
.y13{bottom:513.724000pt;}
.y84{bottom:515.156000pt;}
.y47{bottom:518.806667pt;}
.y23{bottom:520.153333pt;}
.y83{bottom:531.096000pt;}
.y46{bottom:534.746667pt;}
.y12{bottom:535.896000pt;}
.y22{bottom:536.093333pt;}
.y82{bottom:547.037333pt;}
.y11{bottom:550.508000pt;}
.y45{bottom:550.686667pt;}
.y21{bottom:552.033333pt;}
.y81{bottom:562.977333pt;}
.y44{bottom:566.628000pt;}
.y20{bottom:567.973333pt;}
.y73{bottom:575.194667pt;}
.y10{bottom:577.992000pt;}
.y80{bottom:578.917333pt;}
.y43{bottom:582.568000pt;}
.y1f{bottom:583.913333pt;}
.y72{bottom:591.136000pt;}
.y7f{bottom:594.857333pt;}
.yf{bottom:595.260000pt;}
.y42{bottom:598.508000pt;}
.y1e{bottom:599.854667pt;}
.y71{bottom:607.076000pt;}
.y7e{bottom:610.797333pt;}
.y41{bottom:614.448000pt;}
.ye{bottom:615.185333pt;}
.y70{bottom:623.016000pt;}
.y1d{bottom:623.764000pt;}
.y40{bottom:630.388000pt;}
.yd{bottom:633.577333pt;}
.y6f{bottom:638.956000pt;}
.y1c{bottom:639.705333pt;}
.y7d{bottom:641.685333pt;}
.y3f{bottom:646.328000pt;}
.y6e{bottom:654.896000pt;}
.y1b{bottom:655.645333pt;}
.y3e{bottom:662.269333pt;}
.y6d{bottom:670.836000pt;}
.y1a{bottom:671.585333pt;}
.yc{bottom:683.232000pt;}
.y6c{bottom:686.777333pt;}
.y19{bottom:687.525333pt;}
.y7c{bottom:693.581333pt;}
.y3d{bottom:693.901333pt;}
.yb{bottom:700.501333pt;}
.y6b{bottom:702.717333pt;}
.ya{bottom:717.769333pt;}
.y18{bottom:718.560000pt;}
.y6a{bottom:718.657333pt;}
.y9{bottom:737.694667pt;}
.y3c{bottom:737.849333pt;}
.y69{bottom:742.568000pt;}
.y3b{bottom:753.789333pt;}
.y68{bottom:758.508000pt;}
.y8{bottom:759.865333pt;}
.y3a{bottom:769.729333pt;}
.y67{bottom:774.448000pt;}
.y7{bottom:777.700000pt;}
.y39{bottom:785.670667pt;}
.y66{bottom:790.388000pt;}
.y6{bottom:792.312000pt;}
.y38{bottom:801.610667pt;}
.y65{bottom:806.328000pt;}
.y5{bottom:806.924000pt;}
.y37{bottom:817.550667pt;}
.y64{bottom:822.269333pt;}
.y36{bottom:833.490667pt;}
.y4{bottom:834.818667pt;}
.y63{bottom:838.209333pt;}
.y35{bottom:849.430667pt;}
.y3{bottom:853.416000pt;}
.y62{bottom:854.149333pt;}
.y34{bottom:865.370667pt;}
.y61{bottom:870.089333pt;}
.y33{bottom:881.312000pt;}
.y2{bottom:891.938667pt;}
.y60{bottom:901.124000pt;}
.y1{bottom:921.161333pt;}
.y32{bottom:929.132000pt;}
.y31{bottom:945.072000pt;}
.y30{bottom:961.012000pt;}
.y2f{bottom:976.953333pt;}
.h8{height:32.775519pt;}
.h5{height:33.239470pt;}
.h4{height:35.865520pt;}
.h7{height:39.850560pt;}
.h9{height:48.943325pt;}
.h6{height:53.183121pt;}
.h2{height:68.861760pt;}
.h3{height:72.788658pt;}
.ha{height:90.325227pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.794667pt;}
.x9{left:52.406667pt;}
.x3{left:55.061333pt;}
.x1{left:222.485333pt;}
.x1b{left:231.125333pt;}
.xa{left:235.472000pt;}
.x1f{left:242.410667pt;}
.x7{left:248.121333pt;}
.xf{left:249.257333pt;}
.x1e{left:252.273333pt;}
.x4{left:253.958667pt;}
.x8{left:278.521333pt;}
.x10{left:358.121333pt;}
.x15{left:359.557333pt;}
.x16{left:402.925333pt;}
.x17{left:406.110667pt;}
.x6{left:410.720000pt;}
.x18{left:430.465333pt;}
.xd{left:448.340000pt;}
.x19{left:455.869333pt;}
.x1c{left:466.962667pt;}
.x1a{left:486.717333pt;}
.x11{left:545.540000pt;}
.xe{left:556.640000pt;}
.x1d{left:570.850667pt;}
.x12{left:594.154667pt;}
.xb{left:620.862667pt;}
.x13{left:638.525333pt;}
.xc{left:651.117333pt;}
.x5{left:711.036000pt;}
.x14{left:716.441333pt;}
}




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