
    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_a93b3670553139b91bd7b169.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_b002d56c09b8faedac94c63e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_e37a5c30e25dd6a5b936b649.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8accb43a44dca57539db34ee.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1be6a5f79a85a0e1ff520e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.022949;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_0f3a129f6eda4b44209a4fa9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.022949;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_b257af00239a1852dce93cb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012695;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_3320e9d9ec5f5ba688e776ad.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bd0537de0147c7cf89d021a6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aca436684aed4dd38dee7bc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_5f19a40bf0c5bf0d7a8bc5b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.012695;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_9233e988ce8e9071215a5915.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_45d420ef3f019bf42fc6505e.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_605a2af3906228a3deeef845.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.378906;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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;}
.v2{vertical-align:2.460000px;}
.v3{vertical-align:21.720000px;}
.v1{vertical-align:91.860000px;}
.ls1a{letter-spacing:-0.358800px;}
.ls6{letter-spacing:-0.325200px;}
.ls10{letter-spacing:-0.253200px;}
.ls18{letter-spacing:-0.246000px;}
.ls1{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.162600px;}
.ls20{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.126000px;}
.ls2a{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.083400px;}
.ls2f{letter-spacing:-0.037440px;}
.ls2e{letter-spacing:-0.033840px;}
.ls13{letter-spacing:-0.008640px;}
.ls30{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.016560px;}
.ls1c{letter-spacing:0.054180px;}
.ls12{letter-spacing:0.054720px;}
.ls17{letter-spacing:0.087000px;}
.ls2b{letter-spacing:0.090600px;}
.ls11{letter-spacing:0.102000px;}
.ls28{letter-spacing:0.109200px;}
.ls1f{letter-spacing:0.119400px;}
.ls25{letter-spacing:0.126600px;}
.ls24{letter-spacing:0.133800px;}
.ls1d{letter-spacing:0.135600px;}
.ls23{letter-spacing:0.136800px;}
.ls8{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.177000px;}
.lsd{letter-spacing:0.183000px;}
.lsf{letter-spacing:0.210240px;}
.lsb{letter-spacing:0.223200px;}
.ls9{letter-spacing:0.242400px;}
.ls26{letter-spacing:0.276000px;}
.ls2c{letter-spacing:0.278400px;}
.ls29{letter-spacing:0.281400px;}
.lsa{letter-spacing:0.295200px;}
.ls1e{letter-spacing:0.321000px;}
.ls2{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.325200px;}
.ls1b{letter-spacing:0.336240px;}
.ls27{letter-spacing:0.343200px;}
.ls5{letter-spacing:18.288000px;}
.ls7{letter-spacing:48.130560px;}
.lse{letter-spacing:97.509600px;}
.lsc{letter-spacing:97.560000px;}
.ls21{letter-spacing:101.844000px;}
.ls16{letter-spacing:124.200000px;}
.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;}
}
.ws43{word-spacing:-65.531520px;}
.ws35{word-spacing:-59.700240px;}
.ws9{word-spacing:-53.442720px;}
.ws7{word-spacing:-53.117520px;}
.ws5{word-spacing:-46.637280px;}
.ws3{word-spacing:-41.640192px;}
.ws3a{word-spacing:-41.604480px;}
.wsc{word-spacing:-40.032000px;}
.ws42{word-spacing:-35.747712px;}
.ws4e{word-spacing:-30.097920px;}
.ws4c{word-spacing:-29.975616px;}
.ws52{word-spacing:-29.905920px;}
.ws4b{word-spacing:-29.819520px;}
.ws2e{word-spacing:-26.819712px;}
.ws1{word-spacing:-26.784000px;}
.ws39{word-spacing:-26.621280px;}
.ws0{word-spacing:-26.568000px;}
.ws28{word-spacing:-23.844240px;}
.ws40{word-spacing:-23.748480px;}
.ws57{word-spacing:-23.458752px;}
.ws56{word-spacing:-23.418720px;}
.ws54{word-spacing:-20.927232px;}
.ws19{word-spacing:-20.891520px;}
.ws18{word-spacing:-20.723040px;}
.ws38{word-spacing:-17.712000px;}
.ws2c{word-spacing:-13.410720px;}
.wsb{word-spacing:-3.573600px;}
.wsa{word-spacing:-3.209280px;}
.ws6{word-spacing:-3.170880px;}
.ws46{word-spacing:-1.750560px;}
.ws4d{word-spacing:-1.557120px;}
.ws25{word-spacing:-1.150800px;}
.ws2f{word-spacing:-1.131888px;}
.ws23{word-spacing:-1.112400px;}
.ws4f{word-spacing:-1.067040px;}
.ws49{word-spacing:-1.062720px;}
.ws53{word-spacing:-1.005120px;}
.ws4a{word-spacing:-0.999000px;}
.ws31{word-spacing:-0.948000px;}
.ws45{word-spacing:-0.930960px;}
.ws11{word-spacing:-0.852000px;}
.ws44{word-spacing:-0.780120px;}
.ws16{word-spacing:-0.468000px;}
.ws51{word-spacing:-0.397440px;}
.ws15{word-spacing:-0.312000px;}
.ws48{word-spacing:-0.216480px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.062640px;}
.ws50{word-spacing:0.092400px;}
.ws24{word-spacing:0.161760px;}
.ws13{word-spacing:0.252000px;}
.ws3f{word-spacing:0.253440px;}
.wse{word-spacing:0.288000px;}
.ws41{word-spacing:0.349920px;}
.ws1e{word-spacing:0.350400px;}
.ws34{word-spacing:0.354240px;}
.ws47{word-spacing:0.389280px;}
.ws32{word-spacing:0.504000px;}
.ws26{word-spacing:0.504720px;}
.ws1d{word-spacing:0.609168px;}
.ws27{word-spacing:0.617040px;}
.ws14{word-spacing:0.648000px;}
.ws2a{word-spacing:0.667200px;}
.ws17{word-spacing:0.684000px;}
.ws8{word-spacing:0.693504px;}
.ws21{word-spacing:0.740160px;}
.ws1f{word-spacing:0.840720px;}
.ws30{word-spacing:0.895392px;}
.ws2b{word-spacing:0.920640px;}
.ws20{word-spacing:0.930960px;}
.ws33{word-spacing:1.043040px;}
.ws3b{word-spacing:1.069920px;}
.ws37{word-spacing:1.074240px;}
.ws29{word-spacing:1.081200px;}
.ws2d{word-spacing:1.127280px;}
.ws3d{word-spacing:1.200240px;}
.ws36{word-spacing:1.228800px;}
.ws1c{word-spacing:1.494144px;}
.ws12{word-spacing:1.728000px;}
.ws1a{word-spacing:1.902720px;}
.ws3c{word-spacing:2.229600px;}
.ws3e{word-spacing:2.235600px;}
.wsd{word-spacing:3.192000px;}
.ws22{word-spacing:3.637920px;}
.ws55{word-spacing:39.884880px;}
.ws10{word-spacing:647.436000px;}
.wsf{word-spacing:652.296000px;}
.ws4{word-spacing:782.631840px;}
._4{margin-left:-5058.888000px;}
._2{margin-left:-1.405872px;}
._0{width:1.418640px;}
._1{width:3.146400px;}
._e{width:4.262832px;}
._11{width:20.565840px;}
._10{width:21.832272px;}
._8{width:25.239600px;}
._7{width:26.399712px;}
._b{width:27.792000px;}
._f{width:36.930720px;}
._a{width:43.662000px;}
._5{width:45.615072px;}
._9{width:49.967232px;}
._c{width:61.137120px;}
._d{width:62.406720px;}
._3{width:69.597408px;}
._6{width:934.380000px;}
.fce{color:rgb(235,95,132);}
.fc0{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(127,127,127);}
.fca{color:rgb(136,136,136);}
.fcb{color:rgb(255,255,255);}
.fc3{color:rgb(112,173,71);}
.fc8{color:rgb(243,159,181);}
.fc4{color:rgb(189,215,238);}
.fc7{color:rgb(255,192,0);}
.fc6{color:rgb(169,209,142);}
.fcd{color:rgb(0,142,153);}
.fc2{color:rgb(124,124,124);}
.fc5{color:rgb(68,84,106);}
.fcc{color:rgb(0,0,255);}
.fsf{font-size:48.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fse{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs12{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs9{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs7{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.fsc{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y13{bottom:31.212000px;}
.y3d{bottom:38.556000px;}
.y12{bottom:43.848000px;}
.y7{bottom:50.040000px;}
.y2b{bottom:63.252000px;}
.y3e{bottom:71.424000px;}
.y11{bottom:71.568000px;}
.y1f{bottom:75.168000px;}
.y77{bottom:80.715000px;}
.y6e{bottom:80.745000px;}
.y62{bottom:87.120000px;}
.y10{bottom:93.708000px;}
.y1e{bottom:100.404000px;}
.y2a{bottom:103.932000px;}
.y2e{bottom:111.312000px;}
.y1d{bottom:125.604000px;}
.y57{bottom:128.844000px;}
.y60{bottom:135.504000px;}
.y29{bottom:144.612000px;}
.y70{bottom:147.240000px;}
.y7a{bottom:148.968000px;}
.y6c{bottom:149.724000px;}
.yf{bottom:150.810000px;}
.y76{bottom:150.840000px;}
.y6b{bottom:156.060000px;}
.y73{bottom:156.345000px;}
.y56{bottom:167.730000px;}
.y5f{bottom:167.910000px;}
.y1c{bottom:176.010000px;}
.y71{bottom:181.545000px;}
.y6a{bottom:184.860000px;}
.y28{bottom:185.295000px;}
.y74{bottom:186.840000px;}
.y79{bottom:191.160000px;}
.y1b{bottom:201.210000px;}
.y55{bottom:206.610000px;}
.ye{bottom:210.750000px;}
.y69{bottom:213.660000px;}
.y5e{bottom:215.250000px;}
.y27{bottom:226.005000px;}
.y78{bottom:231.555000px;}
.y5d{bottom:247.680000px;}
.y68{bottom:251.460000px;}
.y4a{bottom:260.460000px;}
.y1a{bottom:263.370000px;}
.y75{bottom:267.585000px;}
.y26{bottom:267.765000px;}
.yd{bottom:267.840000px;}
.y6{bottom:275.970000px;}
.y5c{bottom:280.080000px;}
.y6d{bottom:284.040000px;}
.y49{bottom:289.290000px;}
.y19{bottom:292.530000px;}
.y54{bottom:299.340000px;}
.y5{bottom:314.130000px;}
.y48{bottom:318.090000px;}
.y43{bottom:321.690000px;}
.y5b{bottom:327.420000px;}
.y72{bottom:328.785000px;}
.y3c{bottom:331.485000px;}
.y25{bottom:334.365000px;}
.yc{bottom:335.445000px;}
.y53{bottom:338.220000px;}
.y40{bottom:344.880000px;}
.y15{bottom:349.740000px;}
.y4{bottom:352.335000px;}
.y33{bottom:357.945000px;}
.y5a{bottom:359.820000px;}
.y3b{bottom:360.690000px;}
.y24{bottom:363.210000px;}
.y6f{bottom:364.785000px;}
.y3f{bottom:374.070000px;}
.y47{bottom:375.690000px;}
.y32{bottom:383.865000px;}
.y42{bottom:386.490000px;}
.yb{bottom:389.805000px;}
.y3a{bottom:389.850000px;}
.y52{bottom:392.220000px;}
.y59{bottom:392.250000px;}
.y18{bottom:399.525000px;}
.y23{bottom:402.810000px;}
.y46{bottom:404.490000px;}
.y31{bottom:409.830000px;}
.y67{bottom:417.810000px;}
.y14{bottom:421.050000px;}
.y17{bottom:423.255000px;}
.y3{bottom:431.895000px;}
.y45{bottom:433.290000px;}
.y22{bottom:434.490000px;}
.y51{bottom:435.450000px;}
.ya{bottom:447.405000px;}
.y30{bottom:450.690000px;}
.y41{bottom:451.335000px;}
.y4e{bottom:456.735000px;}
.y44{bottom:462.135000px;}
.y21{bottom:475.170000px;}
.y2f{bottom:476.610000px;}
.y64{bottom:476.970000px;}
.y50{bottom:478.650000px;}
.y4d{bottom:482.655000px;}
.y66{bottom:482.790000px;}
.y39{bottom:493.530000px;}
.y2{bottom:496.695000px;}
.y20{bottom:516.960000px;}
.y38{bottom:519.450000px;}
.y63{bottom:520.170000px;}
.y9{bottom:520.815000px;}
.y65{bottom:547.635000px;}
.y1{bottom:561.525000px;}
.y35{bottom:570.270000px;}
.y4c{bottom:574.275000px;}
.y37{bottom:594.285000px;}
.y2d{bottom:594.540000px;}
.y4f{bottom:596.955000px;}
.y61{bottom:600.585000px;}
.y58{bottom:601.845000px;}
.y34{bottom:615.630000px;}
.y4b{bottom:619.635000px;}
.y8{bottom:634.710000px;}
.y16{bottom:637.845000px;}
.y36{bottom:639.645000px;}
.y2c{bottom:645.660000px;}
.h1b{height:35.261367px;}
.h18{height:47.980898px;}
.hd{height:57.761719px;}
.h29{height:61.575820px;}
.h2e{height:61.681078px;}
.h12{height:67.087617px;}
.h5{height:67.581211px;}
.h2d{height:67.696734px;}
.h1e{height:69.996445px;}
.h20{height:70.101703px;}
.h1f{height:72.007031px;}
.h17{height:75.654141px;}
.h13{height:75.767906px;}
.h15{height:76.823086px;}
.h1a{height:76.938609px;}
.h14{height:78.943359px;}
.h16{height:79.048617px;}
.h4{height:86.642578px;}
.h3{height:86.758102px;}
.h27{height:94.994297px;}
.h26{height:96.462070px;}
.h25{height:96.577594px;}
.hc{height:105.257813px;}
.h11{height:108.362578px;}
.h21{height:113.765625px;}
.h22{height:115.523438px;}
.h23{height:115.638961px;}
.h7{height:122.625352px;}
.h19{height:134.584805px;}
.h6{height:134.700328px;}
.h9{height:140.519180px;}
.hb{height:140.624437px;}
.h10{height:154.223789px;}
.h2a{height:159.065156px;}
.ha{height:175.359516px;}
.h2b{height:176.580000px;}
.h1d{height:189.419766px;}
.h1c{height:189.533531px;}
.h2{height:192.346523px;}
.h1{height:192.462047px;}
.h28{height:193.148086px;}
.hf{height:210.437227px;}
.he{height:210.551906px;}
.h24{height:211.985508px;}
.h8{height:214.485352px;}
.h2c{height:352.980000px;}
.h0{height:810.000000px;}
.w2{width:331.380000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x35{left:10.836000px;}
.x22{left:49.355979px;}
.x23{left:60.299979px;}
.x1{left:71.351979px;}
.x1c{left:74.627979px;}
.x2{left:77.291979px;}
.x21{left:78.299979px;}
.x2a{left:79.811979px;}
.x14{left:82.655979px;}
.x11{left:84.059979px;}
.x1e{left:85.715979px;}
.x4{left:86.939979px;}
.x10{left:90.431979px;}
.x28{left:92.807979px;}
.x15{left:96.335979px;}
.x2c{left:103.247979px;}
.x34{left:107.820000px;}
.x12{left:117.359979px;}
.x1f{left:119.555979px;}
.x29{left:126.647979px;}
.x37{left:137.555979px;}
.x2e{left:143.747979px;}
.x2d{left:149.327979px;}
.x30{left:164.264979px;}
.x38{left:190.289979px;}
.xb{left:204.479979px;}
.x8{left:249.269979px;}
.xc{left:338.219979px;}
.x36{left:341.714979px;}
.x3{left:356.549979px;}
.x2f{left:364.784979px;}
.xa{left:385.634979px;}
.x1a{left:395.099979px;}
.x16{left:419.654979px;}
.x17{left:460.514979px;}
.x33{left:493.664979px;}
.x31{left:525.569979px;}
.x32{left:543.059979px;}
.x6{left:571.109979px;}
.x7{left:630.539979px;}
.x20{left:641.879979px;}
.x24{left:661.394979px;}
.x1b{left:665.534979px;}
.x19{left:691.409979px;}
.x25{left:695.669979px;}
.x9{left:719.924979px;}
.x18{left:732.089979px;}
.x2b{left:805.034979px;}
.x26{left:906.119979px;}
.x1d{left:1004.654979px;}
.x5{left:1010.339979px;}
.x13{left:1034.384979px;}
.xd{left:1049.609979px;}
.xe{left:1092.809979px;}
.x27{left:1310.009979px;}
.xf{left:1320.089979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.186667pt;}
.v3{vertical-align:19.306667pt;}
.v1{vertical-align:81.653333pt;}
.ls1a{letter-spacing:-0.318933pt;}
.ls6{letter-spacing:-0.289067pt;}
.ls10{letter-spacing:-0.225067pt;}
.ls18{letter-spacing:-0.218667pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.144533pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.112000pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.074133pt;}
.ls2f{letter-spacing:-0.033280pt;}
.ls2e{letter-spacing:-0.030080pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls30{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.014720pt;}
.ls1c{letter-spacing:0.048160pt;}
.ls12{letter-spacing:0.048640pt;}
.ls17{letter-spacing:0.077333pt;}
.ls2b{letter-spacing:0.080533pt;}
.ls11{letter-spacing:0.090667pt;}
.ls28{letter-spacing:0.097067pt;}
.ls1f{letter-spacing:0.106133pt;}
.ls25{letter-spacing:0.112533pt;}
.ls24{letter-spacing:0.118933pt;}
.ls1d{letter-spacing:0.120533pt;}
.ls23{letter-spacing:0.121600pt;}
.ls8{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.157333pt;}
.lsd{letter-spacing:0.162667pt;}
.lsf{letter-spacing:0.186880pt;}
.lsb{letter-spacing:0.198400pt;}
.ls9{letter-spacing:0.215467pt;}
.ls26{letter-spacing:0.245333pt;}
.ls2c{letter-spacing:0.247467pt;}
.ls29{letter-spacing:0.250133pt;}
.lsa{letter-spacing:0.262400pt;}
.ls1e{letter-spacing:0.285333pt;}
.ls2{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.289067pt;}
.ls1b{letter-spacing:0.298880pt;}
.ls27{letter-spacing:0.305067pt;}
.ls5{letter-spacing:16.256000pt;}
.ls7{letter-spacing:42.782720pt;}
.lse{letter-spacing:86.675200pt;}
.lsc{letter-spacing:86.720000pt;}
.ls21{letter-spacing:90.528000pt;}
.ls16{letter-spacing:110.400000pt;}
.ws43{word-spacing:-58.250240pt;}
.ws35{word-spacing:-53.066880pt;}
.ws9{word-spacing:-47.504640pt;}
.ws7{word-spacing:-47.215573pt;}
.ws5{word-spacing:-41.455360pt;}
.ws3{word-spacing:-37.013504pt;}
.ws3a{word-spacing:-36.981760pt;}
.wsc{word-spacing:-35.584000pt;}
.ws42{word-spacing:-31.775744pt;}
.ws4e{word-spacing:-26.753707pt;}
.ws4c{word-spacing:-26.644992pt;}
.ws52{word-spacing:-26.583040pt;}
.ws4b{word-spacing:-26.506240pt;}
.ws2e{word-spacing:-23.839744pt;}
.ws1{word-spacing:-23.808000pt;}
.ws39{word-spacing:-23.663360pt;}
.ws0{word-spacing:-23.616000pt;}
.ws28{word-spacing:-21.194880pt;}
.ws40{word-spacing:-21.109760pt;}
.ws57{word-spacing:-20.852224pt;}
.ws56{word-spacing:-20.816640pt;}
.ws54{word-spacing:-18.601984pt;}
.ws19{word-spacing:-18.570240pt;}
.ws18{word-spacing:-18.420480pt;}
.ws38{word-spacing:-15.744000pt;}
.ws2c{word-spacing:-11.920640pt;}
.wsb{word-spacing:-3.176533pt;}
.wsa{word-spacing:-2.852693pt;}
.ws6{word-spacing:-2.818560pt;}
.ws46{word-spacing:-1.556053pt;}
.ws4d{word-spacing:-1.384107pt;}
.ws25{word-spacing:-1.022933pt;}
.ws2f{word-spacing:-1.006123pt;}
.ws23{word-spacing:-0.988800pt;}
.ws4f{word-spacing:-0.948480pt;}
.ws49{word-spacing:-0.944640pt;}
.ws53{word-spacing:-0.893440pt;}
.ws4a{word-spacing:-0.888000pt;}
.ws31{word-spacing:-0.842667pt;}
.ws45{word-spacing:-0.827520pt;}
.ws11{word-spacing:-0.757333pt;}
.ws44{word-spacing:-0.693440pt;}
.ws16{word-spacing:-0.416000pt;}
.ws51{word-spacing:-0.353280pt;}
.ws15{word-spacing:-0.277333pt;}
.ws48{word-spacing:-0.192427pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.055680pt;}
.ws50{word-spacing:0.082133pt;}
.ws24{word-spacing:0.143787pt;}
.ws13{word-spacing:0.224000pt;}
.ws3f{word-spacing:0.225280pt;}
.wse{word-spacing:0.256000pt;}
.ws41{word-spacing:0.311040pt;}
.ws1e{word-spacing:0.311467pt;}
.ws34{word-spacing:0.314880pt;}
.ws47{word-spacing:0.346027pt;}
.ws32{word-spacing:0.448000pt;}
.ws26{word-spacing:0.448640pt;}
.ws1d{word-spacing:0.541483pt;}
.ws27{word-spacing:0.548480pt;}
.ws14{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.593067pt;}
.ws17{word-spacing:0.608000pt;}
.ws8{word-spacing:0.616448pt;}
.ws21{word-spacing:0.657920pt;}
.ws1f{word-spacing:0.747307pt;}
.ws30{word-spacing:0.795904pt;}
.ws2b{word-spacing:0.818347pt;}
.ws20{word-spacing:0.827520pt;}
.ws33{word-spacing:0.927147pt;}
.ws3b{word-spacing:0.951040pt;}
.ws37{word-spacing:0.954880pt;}
.ws29{word-spacing:0.961067pt;}
.ws2d{word-spacing:1.002027pt;}
.ws3d{word-spacing:1.066880pt;}
.ws36{word-spacing:1.092267pt;}
.ws1c{word-spacing:1.328128pt;}
.ws12{word-spacing:1.536000pt;}
.ws1a{word-spacing:1.691307pt;}
.ws3c{word-spacing:1.981867pt;}
.ws3e{word-spacing:1.987200pt;}
.wsd{word-spacing:2.837333pt;}
.ws22{word-spacing:3.233707pt;}
.ws55{word-spacing:35.453227pt;}
.ws10{word-spacing:575.498667pt;}
.wsf{word-spacing:579.818667pt;}
.ws4{word-spacing:695.672747pt;}
._4{margin-left:-4496.789333pt;}
._2{margin-left:-1.249664pt;}
._0{width:1.261013pt;}
._1{width:2.796800pt;}
._e{width:3.789184pt;}
._11{width:18.280747pt;}
._10{width:19.406464pt;}
._8{width:22.435200pt;}
._7{width:23.466411pt;}
._b{width:24.704000pt;}
._f{width:32.827307pt;}
._a{width:38.810667pt;}
._5{width:40.546731pt;}
._9{width:44.415317pt;}
._c{width:54.344107pt;}
._d{width:55.472640pt;}
._3{width:61.864363pt;}
._6{width:830.560000pt;}
.fsf{font-size:42.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fse{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs12{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs9{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs7{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.fsc{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:27.744000pt;}
.y3d{bottom:34.272000pt;}
.y12{bottom:38.976000pt;}
.y7{bottom:44.480000pt;}
.y2b{bottom:56.224000pt;}
.y3e{bottom:63.488000pt;}
.y11{bottom:63.616000pt;}
.y1f{bottom:66.816000pt;}
.y77{bottom:71.746667pt;}
.y6e{bottom:71.773333pt;}
.y62{bottom:77.440000pt;}
.y10{bottom:83.296000pt;}
.y1e{bottom:89.248000pt;}
.y2a{bottom:92.384000pt;}
.y2e{bottom:98.944000pt;}
.y1d{bottom:111.648000pt;}
.y57{bottom:114.528000pt;}
.y60{bottom:120.448000pt;}
.y29{bottom:128.544000pt;}
.y70{bottom:130.880000pt;}
.y7a{bottom:132.416000pt;}
.y6c{bottom:133.088000pt;}
.yf{bottom:134.053333pt;}
.y76{bottom:134.080000pt;}
.y6b{bottom:138.720000pt;}
.y73{bottom:138.973333pt;}
.y56{bottom:149.093333pt;}
.y5f{bottom:149.253333pt;}
.y1c{bottom:156.453333pt;}
.y71{bottom:161.373333pt;}
.y6a{bottom:164.320000pt;}
.y28{bottom:164.706667pt;}
.y74{bottom:166.080000pt;}
.y79{bottom:169.920000pt;}
.y1b{bottom:178.853333pt;}
.y55{bottom:183.653333pt;}
.ye{bottom:187.333333pt;}
.y69{bottom:189.920000pt;}
.y5e{bottom:191.333333pt;}
.y27{bottom:200.893333pt;}
.y78{bottom:205.826667pt;}
.y5d{bottom:220.160000pt;}
.y68{bottom:223.520000pt;}
.y4a{bottom:231.520000pt;}
.y1a{bottom:234.106667pt;}
.y75{bottom:237.853333pt;}
.y26{bottom:238.013333pt;}
.yd{bottom:238.080000pt;}
.y6{bottom:245.306667pt;}
.y5c{bottom:248.960000pt;}
.y6d{bottom:252.480000pt;}
.y49{bottom:257.146667pt;}
.y19{bottom:260.026667pt;}
.y54{bottom:266.080000pt;}
.y5{bottom:279.226667pt;}
.y48{bottom:282.746667pt;}
.y43{bottom:285.946667pt;}
.y5b{bottom:291.040000pt;}
.y72{bottom:292.253333pt;}
.y3c{bottom:294.653333pt;}
.y25{bottom:297.213333pt;}
.yc{bottom:298.173333pt;}
.y53{bottom:300.640000pt;}
.y40{bottom:306.560000pt;}
.y15{bottom:310.880000pt;}
.y4{bottom:313.186667pt;}
.y33{bottom:318.173333pt;}
.y5a{bottom:319.840000pt;}
.y3b{bottom:320.613333pt;}
.y24{bottom:322.853333pt;}
.y6f{bottom:324.253333pt;}
.y3f{bottom:332.506667pt;}
.y47{bottom:333.946667pt;}
.y32{bottom:341.213333pt;}
.y42{bottom:343.546667pt;}
.yb{bottom:346.493333pt;}
.y3a{bottom:346.533333pt;}
.y52{bottom:348.640000pt;}
.y59{bottom:348.666667pt;}
.y18{bottom:355.133333pt;}
.y23{bottom:358.053333pt;}
.y46{bottom:359.546667pt;}
.y31{bottom:364.293333pt;}
.y67{bottom:371.386667pt;}
.y14{bottom:374.266667pt;}
.y17{bottom:376.226667pt;}
.y3{bottom:383.906667pt;}
.y45{bottom:385.146667pt;}
.y22{bottom:386.213333pt;}
.y51{bottom:387.066667pt;}
.ya{bottom:397.693333pt;}
.y30{bottom:400.613333pt;}
.y41{bottom:401.186667pt;}
.y4e{bottom:405.986667pt;}
.y44{bottom:410.786667pt;}
.y21{bottom:422.373333pt;}
.y2f{bottom:423.653333pt;}
.y64{bottom:423.973333pt;}
.y50{bottom:425.466667pt;}
.y4d{bottom:429.026667pt;}
.y66{bottom:429.146667pt;}
.y39{bottom:438.693333pt;}
.y2{bottom:441.506667pt;}
.y20{bottom:459.520000pt;}
.y38{bottom:461.733333pt;}
.y63{bottom:462.373333pt;}
.y9{bottom:462.946667pt;}
.y65{bottom:486.786667pt;}
.y1{bottom:499.133333pt;}
.y35{bottom:506.906667pt;}
.y4c{bottom:510.466667pt;}
.y37{bottom:528.253333pt;}
.y2d{bottom:528.480000pt;}
.y4f{bottom:530.626667pt;}
.y61{bottom:533.853333pt;}
.y58{bottom:534.973333pt;}
.y34{bottom:547.226667pt;}
.y4b{bottom:550.786667pt;}
.y8{bottom:564.186667pt;}
.y16{bottom:566.973333pt;}
.y36{bottom:568.573333pt;}
.y2c{bottom:573.920000pt;}
.h1b{height:31.343437pt;}
.h18{height:42.649687pt;}
.hd{height:51.343750pt;}
.h29{height:54.734062pt;}
.h2e{height:54.827625pt;}
.h12{height:59.633437pt;}
.h5{height:60.072187pt;}
.h2d{height:60.174875pt;}
.h1e{height:62.219062pt;}
.h20{height:62.312625pt;}
.h1f{height:64.006250pt;}
.h17{height:67.248125pt;}
.h13{height:67.349250pt;}
.h15{height:68.287188pt;}
.h1a{height:68.389875pt;}
.h14{height:70.171875pt;}
.h16{height:70.265437pt;}
.h4{height:77.015625pt;}
.h3{height:77.118313pt;}
.h27{height:84.439375pt;}
.h26{height:85.744062pt;}
.h25{height:85.846750pt;}
.hc{height:93.562500pt;}
.h11{height:96.322292pt;}
.h21{height:101.125000pt;}
.h22{height:102.687500pt;}
.h23{height:102.790188pt;}
.h7{height:109.000312pt;}
.h19{height:119.630937pt;}
.h6{height:119.733625pt;}
.h9{height:124.905938pt;}
.hb{height:124.999500pt;}
.h10{height:137.087812pt;}
.h2a{height:141.391250pt;}
.ha{height:155.875125pt;}
.h2b{height:156.960000pt;}
.h1d{height:168.373125pt;}
.h1c{height:168.474250pt;}
.h2{height:170.974687pt;}
.h1{height:171.077375pt;}
.h28{height:171.687187pt;}
.hf{height:187.055312pt;}
.he{height:187.157250pt;}
.h24{height:188.431562pt;}
.h8{height:190.653646pt;}
.h2c{height:313.760000pt;}
.h0{height:720.000000pt;}
.w2{width:294.560000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x35{left:9.632000pt;}
.x22{left:43.871981pt;}
.x23{left:53.599981pt;}
.x1{left:63.423981pt;}
.x1c{left:66.335981pt;}
.x2{left:68.703981pt;}
.x21{left:69.599981pt;}
.x2a{left:70.943981pt;}
.x14{left:73.471981pt;}
.x11{left:74.719981pt;}
.x1e{left:76.191981pt;}
.x4{left:77.279981pt;}
.x10{left:80.383981pt;}
.x28{left:82.495981pt;}
.x15{left:85.631981pt;}
.x2c{left:91.775981pt;}
.x34{left:95.840000pt;}
.x12{left:104.319981pt;}
.x1f{left:106.271981pt;}
.x29{left:112.575981pt;}
.x37{left:122.271981pt;}
.x2e{left:127.775981pt;}
.x2d{left:132.735981pt;}
.x30{left:146.013314pt;}
.x38{left:169.146648pt;}
.xb{left:181.759981pt;}
.x8{left:221.573314pt;}
.xc{left:300.639981pt;}
.x36{left:303.746648pt;}
.x3{left:316.933314pt;}
.x2f{left:324.253314pt;}
.xa{left:342.786648pt;}
.x1a{left:351.199981pt;}
.x16{left:373.026648pt;}
.x17{left:409.346648pt;}
.x33{left:438.813314pt;}
.x31{left:467.173314pt;}
.x32{left:482.719981pt;}
.x6{left:507.653314pt;}
.x7{left:560.479981pt;}
.x20{left:570.559981pt;}
.x24{left:587.906648pt;}
.x1b{left:591.586648pt;}
.x19{left:614.586648pt;}
.x25{left:618.373314pt;}
.x9{left:639.933314pt;}
.x18{left:650.746648pt;}
.x2b{left:715.586648pt;}
.x26{left:805.439981pt;}
.x1d{left:893.026648pt;}
.x5{left:898.079981pt;}
.x13{left:919.453314pt;}
.xd{left:932.986648pt;}
.xe{left:971.386648pt;}
.x27{left:1164.453314pt;}
.xf{left:1173.413314pt;}
}




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