
    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_f7b3fa6d41094f5a757c9d7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_50bf5293f260e68810c7eb8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_ae2077db4815dcc4d81307ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_d8f165ea74da81bb68134917.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_91657e8e22b3857218834035.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_386cfeefd10345b7c6a61d5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d49574637e85d0949f6f9c8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_468f0faf2fd8caa28e6057d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_6c520645c676ec0d8331fcfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_92f4b29b7a3662e79bd43d00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_7665a56909800a970cf6d286.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.676480px;}
.v3{vertical-align:27.141120px;}
.ls10{letter-spacing:-1.192320px;}
.lsd{letter-spacing:-1.126080px;}
.lse{letter-spacing:-1.059840px;}
.ls18{letter-spacing:-0.993600px;}
.ls12{letter-spacing:-0.861120px;}
.lsa{letter-spacing:-0.728640px;}
.ls6{letter-spacing:-0.596160px;}
.ls11{letter-spacing:-0.463680px;}
.ls7{letter-spacing:-0.397440px;}
.ls9{letter-spacing:-0.331200px;}
.lsf{letter-spacing:-0.264960px;}
.ls8{letter-spacing:-0.132480px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.178560px;}
.ls1a{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.264960px;}
.ls15{letter-spacing:0.298080px;}
.lsb{letter-spacing:0.331200px;}
.ls14{letter-spacing:0.337824px;}
.ls1b{letter-spacing:0.375840px;}
.ls16{letter-spacing:0.596160px;}
.ls1{letter-spacing:2.185920px;}
.ls1c{letter-spacing:16.560000px;}
.ls19{letter-spacing:43.519680px;}
.ls17{letter-spacing:76.639680px;}
.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;}
}
.ws28{word-spacing:-66.240000px;}
.ws13{word-spacing:-16.891200px;}
.ws20{word-spacing:-16.824960px;}
.ws5{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.427520px;}
.ws14{word-spacing:-16.295040px;}
.ws15{word-spacing:-16.228800px;}
.ws1{word-spacing:-16.162560px;}
.ws21{word-spacing:-16.096320px;}
.ws12{word-spacing:-15.963840px;}
.ws6{word-spacing:-15.831360px;}
.ws26{word-spacing:-15.698880px;}
.ws2e{word-spacing:-15.566400px;}
.ws27{word-spacing:-15.500160px;}
.ws22{word-spacing:-15.433920px;}
.ws1f{word-spacing:-15.367680px;}
.ws29{word-spacing:-15.235200px;}
.ws7{word-spacing:-15.132000px;}
.ws3{word-spacing:-10.440000px;}
.ws38{word-spacing:-3.576960px;}
.ws37{word-spacing:-2.980800px;}
.ws2a{word-spacing:-2.848320px;}
.ws2d{word-spacing:-2.517120px;}
.ws2c{word-spacing:-2.185920px;}
.ws2b{word-spacing:-1.589760px;}
.ws33{word-spacing:-1.457280px;}
.ws17{word-spacing:-1.059840px;}
.ws30{word-spacing:-0.993600px;}
.ws19{word-spacing:-0.861120px;}
.wsf{word-spacing:-0.728640px;}
.ws31{word-spacing:-0.596160px;}
.ws23{word-spacing:-0.397440px;}
.ws18{word-spacing:-0.331200px;}
.ws1a{word-spacing:-0.264960px;}
.wsa{word-spacing:-0.132480px;}
.ws1c{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.132480px;}
.ws2f{word-spacing:0.264960px;}
.ws10{word-spacing:0.331200px;}
.ws32{word-spacing:0.375840px;}
.ws11{word-spacing:0.397440px;}
.ws24{word-spacing:0.463680px;}
.ws9{word-spacing:0.596160px;}
.ws1b{word-spacing:0.728640px;}
.ws1e{word-spacing:1.059840px;}
.ws1d{word-spacing:1.126080px;}
.ws25{word-spacing:1.192320px;}
.wse{word-spacing:1.324800px;}
.wsd{word-spacing:2.053440px;}
.wsc{word-spacing:2.185920px;}
.wsb{word-spacing:2.583360px;}
.ws8{word-spacing:7.087680px;}
.ws34{word-spacing:16.427520px;}
.ws36{word-spacing:17.156160px;}
.ws35{word-spacing:17.686080px;}
._3{margin-left:-2.861568px;}
._0{margin-left:-1.424160px;}
._1{width:1.013472px;}
._2{width:2.185920px;}
._4{width:847.440000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:22.680000px;}
.ye4{bottom:22.859850px;}
.ydb{bottom:22.860000px;}
.y13{bottom:57.787920px;}
.ye8{bottom:60.840000px;}
.y1{bottom:95.760000px;}
.yfe{bottom:135.007200px;}
.ya6{bottom:154.548000px;}
.y63{bottom:154.597680px;}
.y75{bottom:154.815840px;}
.y9f{bottom:154.882080px;}
.y8b{bottom:154.900080px;}
.y41{bottom:154.928880px;}
.y2d{bottom:154.945440px;}
.ya0{bottom:154.962000px;}
.yd6{bottom:190.748160px;}
.ybe{bottom:192.192480px;}
.ya1{bottom:192.569760px;}
.y74{bottom:192.787920px;}
.y9e{bottom:192.854160px;}
.y8a{bottom:192.872160px;}
.ya5{bottom:192.884400px;}
.y40{bottom:192.900960px;}
.y2c{bottom:192.917520px;}
.y62{bottom:192.934080px;}
.yfd{bottom:196.920000px;}
.yd5{bottom:228.720240px;}
.ybd{bottom:230.164560px;}
.y9d{bottom:230.826240px;}
.y73{bottom:230.826960px;}
.y89{bottom:230.844240px;}
.ya4{bottom:230.856480px;}
.y3f{bottom:230.873040px;}
.y2b{bottom:230.889600px;}
.y61{bottom:230.906160px;}
.yfc{bottom:252.900000px;}
.yd4{bottom:266.526720px;}
.ybc{bottom:268.136640px;}
.ya3{bottom:268.480800px;}
.y9c{bottom:268.798320px;}
.y72{bottom:268.799040px;}
.y88{bottom:268.816320px;}
.y3e{bottom:268.845120px;}
.y2a{bottom:268.861680px;}
.y60{bottom:268.878240px;}
.yfb{bottom:302.949360px;}
.yd3{bottom:304.498800px;}
.ybb{bottom:306.108720px;}
.y9b{bottom:306.770400px;}
.y71{bottom:306.771120px;}
.y87{bottom:306.788400px;}
.y3d{bottom:306.817200px;}
.y29{bottom:306.833760px;}
.y5f{bottom:306.850320px;}
.yfa{bottom:340.921440px;}
.yd2{bottom:342.470880px;}
.yba{bottom:343.915200px;}
.y28{bottom:344.275920px;}
.y9a{bottom:344.576880px;}
.y70{bottom:344.577600px;}
.y86{bottom:344.594880px;}
.y3c{bottom:344.623680px;}
.y31{bottom:344.640240px;}
.y5e{bottom:344.656800px;}
.yf9{bottom:378.727920px;}
.yd1{bottom:380.442960px;}
.yb9{bottom:381.887280px;}
.y3b{bottom:382.248000px;}
.y5b{bottom:382.264560px;}
.y99{bottom:382.548960px;}
.y6f{bottom:382.549680px;}
.y85{bottom:382.566960px;}
.y50{bottom:382.595760px;}
.y27{bottom:382.612320px;}
.y5d{bottom:382.628880px;}
.yf8{bottom:416.700000px;}
.yd0{bottom:418.415040px;}
.yb8{bottom:419.859360px;}
.y98{bottom:420.521040px;}
.y6e{bottom:420.521760px;}
.y84{bottom:420.539040px;}
.y4f{bottom:420.567840px;}
.y26{bottom:420.584400px;}
.y5a{bottom:420.600960px;}
.yf7{bottom:432.540000px;}
.ycf{bottom:456.387120px;}
.yb7{bottom:457.831440px;}
.y97{bottom:458.493120px;}
.y6d{bottom:458.493840px;}
.y83{bottom:458.511120px;}
.y4e{bottom:458.539920px;}
.y25{bottom:458.556480px;}
.y59{bottom:458.573040px;}
.yf6{bottom:470.520000px;}
.yce{bottom:494.193600px;}
.yb6{bottom:495.803520px;}
.ya2{bottom:496.164240px;}
.y96{bottom:496.465200px;}
.y6c{bottom:496.465920px;}
.y82{bottom:496.483200px;}
.y4d{bottom:496.512000px;}
.y24{bottom:496.528560px;}
.y58{bottom:496.545120px;}
.yf5{bottom:508.500000px;}
.ycd{bottom:532.165680px;}
.yb5{bottom:533.610000px;}
.y95{bottom:534.437280px;}
.y6b{bottom:534.438000px;}
.yf{bottom:534.438720px;}
.y81{bottom:534.455280px;}
.y4c{bottom:534.484080px;}
.y23{bottom:534.500640px;}
.y57{bottom:534.517200px;}
.yf4{bottom:546.480000px;}
.ycc{bottom:570.137760px;}
.yb4{bottom:571.582080px;}
.y56{bottom:571.959360px;}
.y94{bottom:572.243760px;}
.y6a{bottom:572.244480px;}
.ye{bottom:572.245200px;}
.y80{bottom:572.261760px;}
.y4b{bottom:572.290560px;}
.y22{bottom:572.307120px;}
.y5c{bottom:572.323680px;}
.yf3{bottom:584.460000px;}
.ycb{bottom:608.109840px;}
.yb3{bottom:609.554160px;}
.y7f{bottom:609.886080px;}
.y93{bottom:610.215840px;}
.y69{bottom:610.216560px;}
.yd{bottom:610.217280px;}
.y4a{bottom:610.262640px;}
.y21{bottom:610.279200px;}
.y55{bottom:610.295760px;}
.yf2{bottom:622.260000px;}
.yca{bottom:646.081920px;}
.yb2{bottom:647.526240px;}
.y68{bottom:647.840880px;}
.y7e{bottom:647.858160px;}
.y92{bottom:648.187920px;}
.yc{bottom:648.189360px;}
.y49{bottom:648.234720px;}
.y20{bottom:648.251280px;}
.y54{bottom:648.267840px;}
.yf1{bottom:660.240000px;}
.ye7{bottom:665.827920px;}
.yc9{bottom:683.888400px;}
.yb1{bottom:685.498320px;}
.y91{bottom:686.160000px;}
.yb{bottom:686.161500px;}
.y67{bottom:686.177280px;}
.y7d{bottom:686.194560px;}
.y48{bottom:686.206800px;}
.y1f{bottom:686.223360px;}
.y53{bottom:686.239920px;}
.yf0{bottom:698.220000px;}
.ye6{bottom:703.800000px;}
.yc8{bottom:721.860480px;}
.yd9{bottom:722.880000px;}
.yb0{bottom:723.834720px;}
.y3a{bottom:723.847680px;}
.y66{bottom:724.149360px;}
.y7c{bottom:724.166640px;}
.y47{bottom:724.178880px;}
.y1e{bottom:724.195440px;}
.y52{bottom:724.212000px;}
.yef{bottom:736.200000px;}
.ye5{bottom:737.640000px;}
.yc7{bottom:759.832560px;}
.y39{bottom:761.654160px;}
.y65{bottom:761.955840px;}
.y7b{bottom:761.973120px;}
.y46{bottom:761.985360px;}
.yaf{bottom:761.988960px;}
.y1d{bottom:762.001920px;}
.y51{bottom:762.018480px;}
.ya{bottom:767.880000px;}
.yee{bottom:774.180000px;}
.ye3{bottom:775.620000px;}
.yc6{bottom:797.804640px;}
.y9{bottom:799.927920px;}
.y7a{bottom:799.945200px;}
.y45{bottom:799.957440px;}
.yae{bottom:799.961040px;}
.y1c{bottom:799.974000px;}
.y38{bottom:799.990560px;}
.yed{bottom:812.160000px;}
.ye2{bottom:813.600000px;}
.yc5{bottom:835.776720px;}
.y64{bottom:837.907920px;}
.y79{bottom:837.917280px;}
.y44{bottom:837.929520px;}
.yad{bottom:837.933120px;}
.y1b{bottom:837.946080px;}
.y37{bottom:837.962640px;}
.y8{bottom:843.840000px;}
.yec{bottom:849.960000px;}
.ye1{bottom:851.580000px;}
.yc4{bottom:873.748800px;}
.y43{bottom:875.553840px;}
.y7{bottom:875.887920px;}
.y78{bottom:875.889360px;}
.yac{bottom:875.905200px;}
.y1a{bottom:875.918160px;}
.y36{bottom:875.934720px;}
.yeb{bottom:887.940000px;}
.ydf{bottom:889.560000px;}
.yc3{bottom:911.555280px;}
.y77{bottom:913.861440px;}
.yab{bottom:913.877280px;}
.y19{bottom:913.890240px;}
.y35{bottom:913.906800px;}
.y6{bottom:919.800000px;}
.yea{bottom:926.640000px;}
.yde{bottom:927.360000px;}
.yc2{bottom:949.527360px;}
.y76{bottom:951.833520px;}
.yaa{bottom:951.849360px;}
.y18{bottom:951.862320px;}
.y34{bottom:951.878880px;}
.ydd{bottom:965.340000px;}
.yc1{bottom:987.863760px;}
.ye9{bottom:988.200000px;}
.y90{bottom:989.640000px;}
.y5{bottom:989.647920px;}
.ya9{bottom:989.655840px;}
.y17{bottom:989.668800px;}
.y33{bottom:989.685360px;}
.ydc{bottom:1003.320000px;}
.yc0{bottom:1026.564480px;}
.y42{bottom:1027.293120px;}
.ya8{bottom:1027.627920px;}
.y4{bottom:1027.640850px;}
.y16{bottom:1027.640880px;}
.y8f{bottom:1027.643760px;}
.y32{bottom:1027.657440px;}
.yda{bottom:1042.020000px;}
.ybf{bottom:1065.265200px;}
.ya7{bottom:1065.600000px;}
.y15{bottom:1065.612960px;}
.y8e{bottom:1065.615840px;}
.y30{bottom:1065.629520px;}
.yd8{bottom:1084.690080px;}
.y3{bottom:1103.237280px;}
.y14{bottom:1103.585040px;}
.y8d{bottom:1103.587920px;}
.y2f{bottom:1103.601600px;}
.yd7{bottom:1103.767200px;}
.y2{bottom:1141.209360px;}
.y8c{bottom:1141.560000px;}
.y2e{bottom:1141.573680px;}
.y12{bottom:1187.307150px;}
.y11{bottom:1205.307150px;}
.y10{bottom:1223.307000px;}
.h6{height:29.015859px;}
.h11{height:37.800000px;}
.hf{height:37.980000px;}
.h10{height:37.981500px;}
.ha{height:41.689453px;}
.h9{height:41.690053px;}
.h2{height:44.149219px;}
.h3{height:45.345937px;}
.h8{height:46.024916px;}
.h7{height:46.025156px;}
.h4{height:52.692459px;}
.h5{height:52.744179px;}
.h12{height:52.775859px;}
.hd{height:56.087629px;}
.hb{height:56.136589px;}
.he{height:56.174029px;}
.hc{height:56.323789px;}
.h14{height:56.355469px;}
.h13{height:75.958500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.720000px;}
.wc{width:63.900000px;}
.w4{width:74.338500px;}
.w8{width:95.580000px;}
.w9{width:95.760000px;}
.wa{width:99.178500px;}
.wb{width:127.621500px;}
.w6{width:191.340000px;}
.w2{width:191.341500px;}
.w5{width:215.278500px;}
.w3{width:223.201500px;}
.w7{width:226.800000px;}
.we{width:244.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1b{left:18.720000px;}
.xf{left:20.160000px;}
.x11{left:23.040000px;}
.xd{left:29.340000px;}
.x3{left:96.601500px;}
.xc{left:114.300000px;}
.x2{left:127.617840px;}
.x6{left:159.647040px;}
.xe{left:263.340000px;}
.x12{left:271.260000px;}
.x8{left:329.580000px;}
.x13{left:358.920000px;}
.x14{left:367.020000px;}
.x4{left:446.397840px;}
.x10{left:472.320000px;}
.x15{left:480.420000px;}
.xa{left:542.340000px;}
.x16{left:571.500000px;}
.x17{left:579.600000px;}
.x18{left:699.120000px;}
.x5{left:748.620000px;}
.x1{left:757.080000px;}
.x19{left:763.020000px;}
.xb{left:765.540000px;}
.x1a{left:771.120000px;}
.x7{left:786.960000px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.045760pt;}
.v3{vertical-align:24.125440pt;}
.ls10{letter-spacing:-1.059840pt;}
.lsd{letter-spacing:-1.000960pt;}
.lse{letter-spacing:-0.942080pt;}
.ls18{letter-spacing:-0.883200pt;}
.ls12{letter-spacing:-0.765440pt;}
.lsa{letter-spacing:-0.647680pt;}
.ls6{letter-spacing:-0.529920pt;}
.ls11{letter-spacing:-0.412160pt;}
.ls7{letter-spacing:-0.353280pt;}
.ls9{letter-spacing:-0.294400pt;}
.lsf{letter-spacing:-0.235520pt;}
.ls8{letter-spacing:-0.117760pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.158720pt;}
.ls1a{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.235520pt;}
.ls15{letter-spacing:0.264960pt;}
.lsb{letter-spacing:0.294400pt;}
.ls14{letter-spacing:0.300288pt;}
.ls1b{letter-spacing:0.334080pt;}
.ls16{letter-spacing:0.529920pt;}
.ls1{letter-spacing:1.943040pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls19{letter-spacing:38.684160pt;}
.ls17{letter-spacing:68.124160pt;}
.ws28{word-spacing:-58.880000pt;}
.ws13{word-spacing:-15.014400pt;}
.ws20{word-spacing:-14.955520pt;}
.ws5{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.602240pt;}
.ws14{word-spacing:-14.484480pt;}
.ws15{word-spacing:-14.425600pt;}
.ws1{word-spacing:-14.366720pt;}
.ws21{word-spacing:-14.307840pt;}
.ws12{word-spacing:-14.190080pt;}
.ws6{word-spacing:-14.072320pt;}
.ws26{word-spacing:-13.954560pt;}
.ws2e{word-spacing:-13.836800pt;}
.ws27{word-spacing:-13.777920pt;}
.ws22{word-spacing:-13.719040pt;}
.ws1f{word-spacing:-13.660160pt;}
.ws29{word-spacing:-13.542400pt;}
.ws7{word-spacing:-13.450667pt;}
.ws3{word-spacing:-9.280000pt;}
.ws38{word-spacing:-3.179520pt;}
.ws37{word-spacing:-2.649600pt;}
.ws2a{word-spacing:-2.531840pt;}
.ws2d{word-spacing:-2.237440pt;}
.ws2c{word-spacing:-1.943040pt;}
.ws2b{word-spacing:-1.413120pt;}
.ws33{word-spacing:-1.295360pt;}
.ws17{word-spacing:-0.942080pt;}
.ws30{word-spacing:-0.883200pt;}
.ws19{word-spacing:-0.765440pt;}
.wsf{word-spacing:-0.647680pt;}
.ws31{word-spacing:-0.529920pt;}
.ws23{word-spacing:-0.353280pt;}
.ws18{word-spacing:-0.294400pt;}
.ws1a{word-spacing:-0.235520pt;}
.wsa{word-spacing:-0.117760pt;}
.ws1c{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.117760pt;}
.ws2f{word-spacing:0.235520pt;}
.ws10{word-spacing:0.294400pt;}
.ws32{word-spacing:0.334080pt;}
.ws11{word-spacing:0.353280pt;}
.ws24{word-spacing:0.412160pt;}
.ws9{word-spacing:0.529920pt;}
.ws1b{word-spacing:0.647680pt;}
.ws1e{word-spacing:0.942080pt;}
.ws1d{word-spacing:1.000960pt;}
.ws25{word-spacing:1.059840pt;}
.wse{word-spacing:1.177600pt;}
.wsd{word-spacing:1.825280pt;}
.wsc{word-spacing:1.943040pt;}
.wsb{word-spacing:2.296320pt;}
.ws8{word-spacing:6.300160pt;}
.ws34{word-spacing:14.602240pt;}
.ws36{word-spacing:15.249920pt;}
.ws35{word-spacing:15.720960pt;}
._3{margin-left:-2.543616pt;}
._0{margin-left:-1.265920pt;}
._1{width:0.900864pt;}
._2{width:1.943040pt;}
._4{width:753.280000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:20.160000pt;}
.ye4{bottom:20.319867pt;}
.ydb{bottom:20.320000pt;}
.y13{bottom:51.367040pt;}
.ye8{bottom:54.080000pt;}
.y1{bottom:85.120000pt;}
.yfe{bottom:120.006400pt;}
.ya6{bottom:137.376000pt;}
.y63{bottom:137.420160pt;}
.y75{bottom:137.614080pt;}
.y9f{bottom:137.672960pt;}
.y8b{bottom:137.688960pt;}
.y41{bottom:137.714560pt;}
.y2d{bottom:137.729280pt;}
.ya0{bottom:137.744000pt;}
.yd6{bottom:169.553920pt;}
.ybe{bottom:170.837760pt;}
.ya1{bottom:171.173120pt;}
.y74{bottom:171.367040pt;}
.y9e{bottom:171.425920pt;}
.y8a{bottom:171.441920pt;}
.ya5{bottom:171.452800pt;}
.y40{bottom:171.467520pt;}
.y2c{bottom:171.482240pt;}
.y62{bottom:171.496960pt;}
.yfd{bottom:175.040000pt;}
.yd5{bottom:203.306880pt;}
.ybd{bottom:204.590720pt;}
.y9d{bottom:205.178880pt;}
.y73{bottom:205.179520pt;}
.y89{bottom:205.194880pt;}
.ya4{bottom:205.205760pt;}
.y3f{bottom:205.220480pt;}
.y2b{bottom:205.235200pt;}
.y61{bottom:205.249920pt;}
.yfc{bottom:224.800000pt;}
.yd4{bottom:236.912640pt;}
.ybc{bottom:238.343680pt;}
.ya3{bottom:238.649600pt;}
.y9c{bottom:238.931840pt;}
.y72{bottom:238.932480pt;}
.y88{bottom:238.947840pt;}
.y3e{bottom:238.973440pt;}
.y2a{bottom:238.988160pt;}
.y60{bottom:239.002880pt;}
.yfb{bottom:269.288320pt;}
.yd3{bottom:270.665600pt;}
.ybb{bottom:272.096640pt;}
.y9b{bottom:272.684800pt;}
.y71{bottom:272.685440pt;}
.y87{bottom:272.700800pt;}
.y3d{bottom:272.726400pt;}
.y29{bottom:272.741120pt;}
.y5f{bottom:272.755840pt;}
.yfa{bottom:303.041280pt;}
.yd2{bottom:304.418560pt;}
.yba{bottom:305.702400pt;}
.y28{bottom:306.023040pt;}
.y9a{bottom:306.290560pt;}
.y70{bottom:306.291200pt;}
.y86{bottom:306.306560pt;}
.y3c{bottom:306.332160pt;}
.y31{bottom:306.346880pt;}
.y5e{bottom:306.361600pt;}
.yf9{bottom:336.647040pt;}
.yd1{bottom:338.171520pt;}
.yb9{bottom:339.455360pt;}
.y3b{bottom:339.776000pt;}
.y5b{bottom:339.790720pt;}
.y99{bottom:340.043520pt;}
.y6f{bottom:340.044160pt;}
.y85{bottom:340.059520pt;}
.y50{bottom:340.085120pt;}
.y27{bottom:340.099840pt;}
.y5d{bottom:340.114560pt;}
.yf8{bottom:370.400000pt;}
.yd0{bottom:371.924480pt;}
.yb8{bottom:373.208320pt;}
.y98{bottom:373.796480pt;}
.y6e{bottom:373.797120pt;}
.y84{bottom:373.812480pt;}
.y4f{bottom:373.838080pt;}
.y26{bottom:373.852800pt;}
.y5a{bottom:373.867520pt;}
.yf7{bottom:384.480000pt;}
.ycf{bottom:405.677440pt;}
.yb7{bottom:406.961280pt;}
.y97{bottom:407.549440pt;}
.y6d{bottom:407.550080pt;}
.y83{bottom:407.565440pt;}
.y4e{bottom:407.591040pt;}
.y25{bottom:407.605760pt;}
.y59{bottom:407.620480pt;}
.yf6{bottom:418.240000pt;}
.yce{bottom:439.283200pt;}
.yb6{bottom:440.714240pt;}
.ya2{bottom:441.034880pt;}
.y96{bottom:441.302400pt;}
.y6c{bottom:441.303040pt;}
.y82{bottom:441.318400pt;}
.y4d{bottom:441.344000pt;}
.y24{bottom:441.358720pt;}
.y58{bottom:441.373440pt;}
.yf5{bottom:452.000000pt;}
.ycd{bottom:473.036160pt;}
.yb5{bottom:474.320000pt;}
.y95{bottom:475.055360pt;}
.y6b{bottom:475.056000pt;}
.yf{bottom:475.056640pt;}
.y81{bottom:475.071360pt;}
.y4c{bottom:475.096960pt;}
.y23{bottom:475.111680pt;}
.y57{bottom:475.126400pt;}
.yf4{bottom:485.760000pt;}
.ycc{bottom:506.789120pt;}
.yb4{bottom:508.072960pt;}
.y56{bottom:508.408320pt;}
.y94{bottom:508.661120pt;}
.y6a{bottom:508.661760pt;}
.ye{bottom:508.662400pt;}
.y80{bottom:508.677120pt;}
.y4b{bottom:508.702720pt;}
.y22{bottom:508.717440pt;}
.y5c{bottom:508.732160pt;}
.yf3{bottom:519.520000pt;}
.ycb{bottom:540.542080pt;}
.yb3{bottom:541.825920pt;}
.y7f{bottom:542.120960pt;}
.y93{bottom:542.414080pt;}
.y69{bottom:542.414720pt;}
.yd{bottom:542.415360pt;}
.y4a{bottom:542.455680pt;}
.y21{bottom:542.470400pt;}
.y55{bottom:542.485120pt;}
.yf2{bottom:553.120000pt;}
.yca{bottom:574.295040pt;}
.yb2{bottom:575.578880pt;}
.y68{bottom:575.858560pt;}
.y7e{bottom:575.873920pt;}
.y92{bottom:576.167040pt;}
.yc{bottom:576.168320pt;}
.y49{bottom:576.208640pt;}
.y20{bottom:576.223360pt;}
.y54{bottom:576.238080pt;}
.yf1{bottom:586.880000pt;}
.ye7{bottom:591.847040pt;}
.yc9{bottom:607.900800pt;}
.yb1{bottom:609.331840pt;}
.y91{bottom:609.920000pt;}
.yb{bottom:609.921333pt;}
.y67{bottom:609.935360pt;}
.y7d{bottom:609.950720pt;}
.y48{bottom:609.961600pt;}
.y1f{bottom:609.976320pt;}
.y53{bottom:609.991040pt;}
.yf0{bottom:620.640000pt;}
.ye6{bottom:625.600000pt;}
.yc8{bottom:641.653760pt;}
.yd9{bottom:642.560000pt;}
.yb0{bottom:643.408640pt;}
.y3a{bottom:643.420160pt;}
.y66{bottom:643.688320pt;}
.y7c{bottom:643.703680pt;}
.y47{bottom:643.714560pt;}
.y1e{bottom:643.729280pt;}
.y52{bottom:643.744000pt;}
.yef{bottom:654.400000pt;}
.ye5{bottom:655.680000pt;}
.yc7{bottom:675.406720pt;}
.y39{bottom:677.025920pt;}
.y65{bottom:677.294080pt;}
.y7b{bottom:677.309440pt;}
.y46{bottom:677.320320pt;}
.yaf{bottom:677.323520pt;}
.y1d{bottom:677.335040pt;}
.y51{bottom:677.349760pt;}
.ya{bottom:682.560000pt;}
.yee{bottom:688.160000pt;}
.ye3{bottom:689.440000pt;}
.yc6{bottom:709.159680pt;}
.y9{bottom:711.047040pt;}
.y7a{bottom:711.062400pt;}
.y45{bottom:711.073280pt;}
.yae{bottom:711.076480pt;}
.y1c{bottom:711.088000pt;}
.y38{bottom:711.102720pt;}
.yed{bottom:721.920000pt;}
.ye2{bottom:723.200000pt;}
.yc5{bottom:742.912640pt;}
.y64{bottom:744.807040pt;}
.y79{bottom:744.815360pt;}
.y44{bottom:744.826240pt;}
.yad{bottom:744.829440pt;}
.y1b{bottom:744.840960pt;}
.y37{bottom:744.855680pt;}
.y8{bottom:750.080000pt;}
.yec{bottom:755.520000pt;}
.ye1{bottom:756.960000pt;}
.yc4{bottom:776.665600pt;}
.y43{bottom:778.270080pt;}
.y7{bottom:778.567040pt;}
.y78{bottom:778.568320pt;}
.yac{bottom:778.582400pt;}
.y1a{bottom:778.593920pt;}
.y36{bottom:778.608640pt;}
.yeb{bottom:789.280000pt;}
.ydf{bottom:790.720000pt;}
.yc3{bottom:810.271360pt;}
.y77{bottom:812.321280pt;}
.yab{bottom:812.335360pt;}
.y19{bottom:812.346880pt;}
.y35{bottom:812.361600pt;}
.y6{bottom:817.600000pt;}
.yea{bottom:823.680000pt;}
.yde{bottom:824.320000pt;}
.yc2{bottom:844.024320pt;}
.y76{bottom:846.074240pt;}
.yaa{bottom:846.088320pt;}
.y18{bottom:846.099840pt;}
.y34{bottom:846.114560pt;}
.ydd{bottom:858.080000pt;}
.yc1{bottom:878.101120pt;}
.ye9{bottom:878.400000pt;}
.y90{bottom:879.680000pt;}
.y5{bottom:879.687040pt;}
.ya9{bottom:879.694080pt;}
.y17{bottom:879.705600pt;}
.y33{bottom:879.720320pt;}
.ydc{bottom:891.840000pt;}
.yc0{bottom:912.501760pt;}
.y42{bottom:913.149440pt;}
.ya8{bottom:913.447040pt;}
.y4{bottom:913.458533pt;}
.y16{bottom:913.458560pt;}
.y8f{bottom:913.461120pt;}
.y32{bottom:913.473280pt;}
.yda{bottom:926.240000pt;}
.ybf{bottom:946.902400pt;}
.ya7{bottom:947.200000pt;}
.y15{bottom:947.211520pt;}
.y8e{bottom:947.214080pt;}
.y30{bottom:947.226240pt;}
.yd8{bottom:964.168960pt;}
.y3{bottom:980.655360pt;}
.y14{bottom:980.964480pt;}
.y8d{bottom:980.967040pt;}
.y2f{bottom:980.979200pt;}
.yd7{bottom:981.126400pt;}
.y2{bottom:1014.408320pt;}
.y8c{bottom:1014.720000pt;}
.y2e{bottom:1014.732160pt;}
.y12{bottom:1055.384133pt;}
.y11{bottom:1071.384133pt;}
.y10{bottom:1087.384000pt;}
.h6{height:25.791875pt;}
.h11{height:33.600000pt;}
.hf{height:33.760000pt;}
.h10{height:33.761333pt;}
.ha{height:37.057292pt;}
.h9{height:37.057825pt;}
.h2{height:39.243750pt;}
.h3{height:40.307500pt;}
.h8{height:40.911037pt;}
.h7{height:40.911250pt;}
.h4{height:46.837742pt;}
.h5{height:46.883715pt;}
.h12{height:46.911875pt;}
.hd{height:49.855670pt;}
.hb{height:49.899190pt;}
.he{height:49.932470pt;}
.hc{height:50.065590pt;}
.h14{height:50.093750pt;}
.h13{height:67.518667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.640000pt;}
.wc{width:56.800000pt;}
.w4{width:66.078667pt;}
.w8{width:84.960000pt;}
.w9{width:85.120000pt;}
.wa{width:88.158667pt;}
.wb{width:113.441333pt;}
.w6{width:170.080000pt;}
.w2{width:170.081333pt;}
.w5{width:191.358667pt;}
.w3{width:198.401333pt;}
.w7{width:201.600000pt;}
.we{width:217.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1b{left:16.640000pt;}
.xf{left:17.920000pt;}
.x11{left:20.480000pt;}
.xd{left:26.080000pt;}
.x3{left:85.868000pt;}
.xc{left:101.600000pt;}
.x2{left:113.438080pt;}
.x6{left:141.908480pt;}
.xe{left:234.080000pt;}
.x12{left:241.120000pt;}
.x8{left:292.960000pt;}
.x13{left:319.040000pt;}
.x14{left:326.240000pt;}
.x4{left:396.798080pt;}
.x10{left:419.840000pt;}
.x15{left:427.040000pt;}
.xa{left:482.080000pt;}
.x16{left:508.000000pt;}
.x17{left:515.200000pt;}
.x18{left:621.440000pt;}
.x5{left:665.440000pt;}
.x1{left:672.960000pt;}
.x19{left:678.240000pt;}
.xb{left:680.480000pt;}
.x1a{left:685.440000pt;}
.x7{left:699.520000pt;}
}




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