
    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_c3db24c7cb9fcb4270b59afa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.161000;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_4c48cd23db54a2d6b3defb53.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1a5a19c146eacbed7ddbec26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.161000;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_d92bf9e03aad8bd0dcf5bbe8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.189000;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_6581f0aca861f1aa940db4fc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.189000;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_19d0c904e632fff219ade3a1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_dc8c8401bce872018f689785.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_20ba8696f5c39410d133925a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_fc6c6f0ac14bf43a50281cae.woff')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_58c582f3bf3bf95b6f086115.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3fe1b614ef89ae9dfa72fedb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.963379;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;}
.m2{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.280000px;}
.v3{vertical-align:24.192000px;}
.v2{vertical-align:47.520000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.386400px;}
.ls27{letter-spacing:-0.362400px;}
.ls2{letter-spacing:-0.280200px;}
.ls26{letter-spacing:-0.258600px;}
.ls10{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.210000px;}
.ls11{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.201600px;}
.ls14{letter-spacing:-0.189600px;}
.lse{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.100800px;}
.ls1a{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.086400px;}
.ls5{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.061200px;}
.ls29{letter-spacing:-0.054720px;}
.ls16{letter-spacing:-0.042600px;}
.lsf{letter-spacing:-0.015840px;}
.ls20{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000003px;}
.ls1e{letter-spacing:0.010380px;}
.ls15{letter-spacing:0.018720px;}
.ls13{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.043920px;}
.ls1d{letter-spacing:0.054120px;}
.ls22{letter-spacing:0.097800px;}
.ls21{letter-spacing:0.135600px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.177600px;}
.ls28{letter-spacing:0.228000px;}
.ls12{letter-spacing:0.279600px;}
.ls2a{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.288720px;}
.ls9{letter-spacing:86.904000px;}
.ls8{letter-spacing:87.033600px;}
.ls7{letter-spacing:87.120000px;}
.ls17{letter-spacing:101.793600px;}
.ls18{letter-spacing:101.844000px;}
.ls25{letter-spacing:107.625600px;}
.ls1c{letter-spacing:107.676000px;}
.ls24{letter-spacing:108.396000px;}
.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;}
}
.ws4{word-spacing:-111.962592px;}
.ws4f{word-spacing:-95.760000px;}
.ws2a{word-spacing:-57.264720px;}
.ws3{word-spacing:-47.506176px;}
.ws2{word-spacing:-47.439360px;}
.ws39{word-spacing:-26.661312px;}
.ws2b{word-spacing:-26.621280px;}
.wsb{word-spacing:-25.521984px;}
.wsa{word-spacing:-25.488000px;}
.ws1{word-spacing:-24.331344px;}
.ws55{word-spacing:-22.887360px;}
.ws21{word-spacing:-22.633344px;}
.ws16{word-spacing:-22.599360px;}
.ws0{word-spacing:-18.351360px;}
.ws19{word-spacing:-16.992000px;}
.ws5a{word-spacing:-14.986944px;}
.ws57{word-spacing:-14.952960px;}
.ws58{word-spacing:-14.808960px;}
.ws56{word-spacing:-14.376960px;}
.ws59{word-spacing:-14.326944px;}
.ws43{word-spacing:-14.247360px;}
.ws29{word-spacing:-14.103360px;}
.ws3d{word-spacing:-1.406400px;}
.ws2d{word-spacing:-1.244160px;}
.ws4a{word-spacing:-0.584160px;}
.ws44{word-spacing:-0.506904px;}
.ws46{word-spacing:-0.375840px;}
.ws20{word-spacing:-0.374688px;}
.ws37{word-spacing:-0.367488px;}
.ws33{word-spacing:-0.348720px;}
.ws4d{word-spacing:-0.291960px;}
.ws49{word-spacing:-0.245520px;}
.ws2e{word-spacing:-0.229200px;}
.ws47{word-spacing:-0.220560px;}
.ws41{word-spacing:-0.194544px;}
.ws25{word-spacing:-0.183600px;}
.ws4e{word-spacing:-0.090000px;}
.ws5{word-spacing:0.000000px;}
.ws4c{word-spacing:0.095232px;}
.ws9{word-spacing:0.107280px;}
.ws2f{word-spacing:0.120000px;}
.ws1f{word-spacing:0.184608px;}
.ws35{word-spacing:0.192384px;}
.ws54{word-spacing:0.204480px;}
.ws27{word-spacing:0.213408px;}
.ws3c{word-spacing:0.228240px;}
.ws24{word-spacing:0.245520px;}
.ws8{word-spacing:0.254160px;}
.ws28{word-spacing:0.315840px;}
.ws53{word-spacing:0.359280px;}
.ws12{word-spacing:0.360000px;}
.ws42{word-spacing:0.378000px;}
.ws3b{word-spacing:0.392520px;}
.ws51{word-spacing:0.411360px;}
.ws4b{word-spacing:0.428040px;}
.ws45{word-spacing:0.487836px;}
.ws11{word-spacing:0.516000px;}
.ws3a{word-spacing:0.519600px;}
.ws38{word-spacing:0.527832px;}
.ws32{word-spacing:0.545040px;}
.ws15{word-spacing:0.559920px;}
.ws6{word-spacing:0.565680px;}
.ws48{word-spacing:0.653040px;}
.ws22{word-spacing:0.727200px;}
.ws3f{word-spacing:0.755040px;}
.ws36{word-spacing:0.762552px;}
.ws26{word-spacing:0.797472px;}
.ws23{word-spacing:0.810720px;}
.wsd{word-spacing:0.900000px;}
.ws30{word-spacing:0.910080px;}
.ws40{word-spacing:0.961056px;}
.wsc{word-spacing:1.020000px;}
.ws2c{word-spacing:1.044960px;}
.ws3e{word-spacing:1.074960px;}
.ws10{word-spacing:1.080000px;}
.ws34{word-spacing:1.090368px;}
.ws7{word-spacing:1.112520px;}
.wsf{word-spacing:1.152000px;}
.ws52{word-spacing:1.153440px;}
.ws50{word-spacing:1.356840px;}
.ws14{word-spacing:1.404000px;}
.wse{word-spacing:1.522272px;}
.ws13{word-spacing:1.620000px;}
.ws31{word-spacing:3.157920px;}
.ws17{word-spacing:84.959986px;}
.ws1c{word-spacing:85.012416px;}
.ws1d{word-spacing:923.988000px;}
.ws1e{word-spacing:933.780000px;}
.ws1a{word-spacing:1029.018000px;}
.ws1b{word-spacing:1094.250000px;}
.ws18{word-spacing:1166.610000px;}
._6{margin-left:-4002.936000px;}
._4{margin-left:-3448.513440px;}
._11{margin-left:-7.469280px;}
._f{margin-left:-4.788000px;}
._0{margin-left:-2.484000px;}
._1{margin-left:-1.188000px;}
._2{width:1.356000px;}
._d{width:3.370944px;}
._e{width:4.855968px;}
._12{width:21.138240px;}
._13{width:23.628960px;}
._3{width:25.130160px;}
._5{width:26.604000px;}
._10{width:49.700400px;}
._14{width:78.781920px;}
._9{width:87.240000px;}
._8{width:329.736000px;}
._c{width:350.220000px;}
._a{width:427.002336px;}
._7{width:753.888000px;}
._b{width:834.546000px;}
.fc6{color:rgb(211,214,246);}
.fc4{color:rgb(12,17,61);}
.fc3{color:rgb(40,57,204);}
.fc2{color:transparent;}
.fc1{color:rgb(243,240,81);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:54.000000px;}
.fse{font-size:54.144000px;}
.fs9{font-size:59.760000px;}
.fs13{font-size:63.360000px;}
.fs14{font-size:63.504000px;}
.fsb{font-size:72.000000px;}
.fsd{font-size:72.144000px;}
.fs10{font-size:77.040000px;}
.fs11{font-size:77.184000px;}
.fs0{font-size:77.760000px;}
.fs8{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:102.384000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs7{font-size:203.760000px;}
.fsa{font-size:203.904000px;}
.fs5{font-size:216.000000px;}
.fs6{font-size:216.144000px;}
.fs12{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y1{bottom:22.788000px;}
.yd{bottom:29.088000px;}
.y42{bottom:66.456000px;}
.y4c{bottom:77.040000px;}
.y41{bottom:89.208000px;}
.y7f{bottom:91.548000px;}
.y59{bottom:96.552000px;}
.y4b{bottom:105.840000px;}
.y8{bottom:110.880000px;}
.y96{bottom:117.504000px;}
.y12{bottom:120.528000px;}
.y18{bottom:120.672000px;}
.y1e{bottom:124.452000px;}
.y22{bottom:124.596000px;}
.y58{bottom:125.352000px;}
.y7e{bottom:129.348000px;}
.y40{bottom:131.004000px;}
.y4a{bottom:134.640000px;}
.y2b{bottom:135.216000px;}
.y26{bottom:136.764000px;}
.y7{bottom:140.976000px;}
.y95{bottom:141.084000px;}
.y3f{bottom:142.884000px;}
.y11{bottom:152.970000px;}
.y17{bottom:153.075000px;}
.y57{bottom:154.155000px;}
.y1d{bottom:156.885000px;}
.y21{bottom:156.990000px;}
.y94{bottom:164.670000px;}
.y7d{bottom:167.190000px;}
.y6{bottom:171.030000px;}
.y2d{bottom:180.615000px;}
.y2c{bottom:181.950000px;}
.y3e{bottom:184.650000px;}
.y68{bottom:193.065000px;}
.y3d{bottom:196.560000px;}
.y4e{bottom:200.265000px;}
.y5{bottom:200.910000px;}
.y7c{bottom:204.990000px;}
.y1f{bottom:207.540000px;}
.y56{bottom:209.160000px;}
.y8f{bottom:211.650000px;}
.y93{bottom:212.010000px;}
.y27{bottom:217.650000px;}
.y67{bottom:223.170000px;}
.y10{bottom:223.950000px;}
.y4d{bottom:229.065000px;}
.y4{bottom:230.970000px;}
.y7b{bottom:233.790000px;}
.y92{bottom:235.590000px;}
.y55{bottom:237.960000px;}
.y3c{bottom:239.400000px;}
.y6b{bottom:241.170000px;}
.y8e{bottom:241.710000px;}
.y25{bottom:241.770000px;}
.y13{bottom:244.650000px;}
.y20{bottom:245.700000px;}
.y3b{bottom:249.120000px;}
.y1c{bottom:258.840000px;}
.y91{bottom:259.200000px;}
.y3a{bottom:261.030000px;}
.y3{bottom:261.615000px;}
.y66{bottom:262.230000px;}
.y28{bottom:263.550000px;}
.y6a{bottom:271.230000px;}
.y7a{bottom:271.590000px;}
.y8d{bottom:271.620000px;}
.y50{bottom:276.375000px;}
.y2{bottom:291.675000px;}
.y65{bottom:292.110000px;}
.y79{bottom:300.390000px;}
.y69{bottom:301.110000px;}
.y8c{bottom:301.680000px;}
.y39{bottom:302.790000px;}
.y4f{bottom:305.175000px;}
.y90{bottom:306.540000px;}
.y54{bottom:307.365000px;}
.y38{bottom:314.670000px;}
.y19{bottom:316.515000px;}
.y64{bottom:331.170000px;}
.y53{bottom:336.210000px;}
.y78{bottom:338.220000px;}
.y46{bottom:340.020000px;}
.y61{bottom:340.170000px;}
.ya{bottom:345.240000px;}
.y37{bottom:356.475000px;}
.y80{bottom:364.935000px;}
.y77{bottom:367.020000px;}
.y36{bottom:368.355000px;}
.y45{bottom:368.820000px;}
.y88{bottom:369.690000px;}
.y60{bottom:370.260000px;}
.y49{bottom:385.485000px;}
.y6d{bottom:400.140000px;}
.y76{bottom:404.820000px;}
.y5b{bottom:405.615000px;}
.yf{bottom:407.310000px;}
.y87{bottom:408.600000px;}
.y5f{bottom:409.140000px;}
.y9{bottom:410.040000px;}
.y1b{bottom:411.225000px;}
.y35{bottom:413.070000px;}
.y48{bottom:414.285000px;}
.y81{bottom:418.140000px;}
.y71{bottom:419.580000px;}
.y24{bottom:423.510000px;}
.y5a{bottom:434.415000px;}
.y5e{bottom:439.200000px;}
.ye{bottom:439.710000px;}
.y75{bottom:442.620000px;}
.y47{bottom:443.130000px;}
.y1a{bottom:443.625000px;}
.y86{bottom:447.660000px;}
.y63{bottom:448.200000px;}
.y34{bottom:455.940000px;}
.y70{bottom:461.370000px;}
.y5d{bottom:469.260000px;}
.y6c{bottom:469.290000px;}
.y33{bottom:477.540000px;}
.y62{bottom:478.260000px;}
.y74{bottom:480.450000px;}
.y16{bottom:484.125000px;}
.y85{bottom:486.720000px;}
.y2a{bottom:500.325000px;}
.y6f{bottom:503.310000px;}
.y52{bottom:503.820000px;}
.y5c{bottom:508.170000px;}
.y44{bottom:508.785000px;}
.y73{bottom:509.250000px;}
.y8b{bottom:513.870000px;}
.y15{bottom:516.525000px;}
.y84{bottom:516.600000px;}
.y23{bottom:517.170000px;}
.y32{bottom:520.410000px;}
.y31{bottom:530.130000px;}
.y51{bottom:532.620000px;}
.y29{bottom:532.725000px;}
.y43{bottom:537.630000px;}
.y30{bottom:542.010000px;}
.y8a{bottom:543.750000px;}
.y6e{bottom:545.070000px;}
.y83{bottom:546.690000px;}
.y72{bottom:547.050000px;}
.yc{bottom:547.230000px;}
.y14{bottom:548.925000px;}
.y89{bottom:573.840000px;}
.y2f{bottom:610.770000px;}
.y82{bottom:630.930000px;}
.yb{bottom:641.370000px;}
.y2e{bottom:671.970000px;}
.hb{height:56.712240px;}
.h1e{height:61.902720px;}
.h1f{height:62.043408px;}
.hc{height:62.327813px;}
.h13{height:68.328000px;}
.h11{height:68.526000px;}
.h15{height:68.662656px;}
.h14{height:70.344000px;}
.h2{height:73.794240px;}
.hf{height:90.876240px;}
.h19{height:91.012896px;}
.ha{height:93.557520px;}
.h1c{height:93.698208px;}
.h5{height:97.025760px;}
.h6{height:97.162416px;}
.h1b{height:99.874688px;}
.h1a{height:100.024875px;}
.hd{height:102.492000px;}
.he{height:102.628656px;}
.h3{height:107.419922px;}
.h4{height:107.563148px;}
.h18{height:115.068240px;}
.h12{height:117.864000px;}
.h17{height:118.004688px;}
.h16{height:118.124688px;}
.h9{height:199.073520px;}
.h10{height:199.214208px;}
.h7{height:211.032000px;}
.h8{height:211.172688px;}
.h1d{height:316.688688px;}
.h1{height:765.000000px;}
.h0{height:765.360000px;}
.w1{width:1360.500000px;}
.w2{width:1360.619980px;}
.w0{width:1360.620000px;}
.x0{left:0.000000px;}
.x2{left:51.047980px;}
.x28{left:60.155980px;}
.x25{left:62.999980px;}
.x1{left:76.571980px;}
.x2f{left:83.051980px;}
.x8{left:94.967980px;}
.x30{left:101.951980px;}
.x7{left:106.127980px;}
.x6{left:109.547980px;}
.x19{left:131.867980px;}
.x31{left:135.791980px;}
.x1a{left:146.519980px;}
.x21{left:167.369980px;}
.xc{left:274.859980px;}
.xd{left:288.719980px;}
.xe{left:306.719980px;}
.x2e{left:309.059980px;}
.xf{left:321.119980px;}
.x33{left:403.949980px;}
.x39{left:408.239980px;}
.x27{left:459.209980px;}
.x32{left:495.389980px;}
.xb{left:497.339980px;}
.x26{left:500.294980px;}
.xa{left:508.139980px;}
.x9{left:509.219980px;}
.x20{left:517.319980px;}
.x1f{left:539.129980px;}
.x23{left:595.874980px;}
.x29{left:616.349980px;}
.x22{left:639.209980px;}
.x18{left:717.224980px;}
.x17{left:741.449980px;}
.x11{left:752.609980px;}
.x10{left:756.029980px;}
.x2a{left:824.114980px;}
.x2c{left:849.674980px;}
.x2b{left:857.954980px;}
.x38{left:867.239980px;}
.x35{left:893.369980px;}
.x36{left:906.689980px;}
.x34{left:939.809980px;}
.x1c{left:942.329980px;}
.x37{left:945.209980px;}
.x1e{left:953.564980px;}
.x16{left:961.169980px;}
.x1d{left:974.729980px;}
.x1b{left:991.154980px;}
.x3{left:1009.259980px;}
.x5{left:1091.009980px;}
.x15{left:1116.869980px;}
.x12{left:1143.869980px;}
.x14{left:1154.774980px;}
.x13{left:1155.854980px;}
.x2d{left:1291.829980px;}
.x4{left:1300.829980px;}
.x24{left:1320.764980px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.360000pt;}
.v3{vertical-align:21.504000pt;}
.v2{vertical-align:42.240000pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.343467pt;}
.ls27{letter-spacing:-0.322133pt;}
.ls2{letter-spacing:-0.249067pt;}
.ls26{letter-spacing:-0.229867pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.186667pt;}
.ls11{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.179200pt;}
.ls14{letter-spacing:-0.168533pt;}
.lse{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.089600pt;}
.ls1a{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.076800pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.054400pt;}
.ls29{letter-spacing:-0.048640pt;}
.ls16{letter-spacing:-0.037867pt;}
.lsf{letter-spacing:-0.014080pt;}
.ls20{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000003pt;}
.ls1e{letter-spacing:0.009227pt;}
.ls15{letter-spacing:0.016640pt;}
.ls13{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.039040pt;}
.ls1d{letter-spacing:0.048107pt;}
.ls22{letter-spacing:0.086933pt;}
.ls21{letter-spacing:0.120533pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.157867pt;}
.ls28{letter-spacing:0.202667pt;}
.ls12{letter-spacing:0.248533pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.256640pt;}
.ls9{letter-spacing:77.248000pt;}
.ls8{letter-spacing:77.363200pt;}
.ls7{letter-spacing:77.440000pt;}
.ls17{letter-spacing:90.483200pt;}
.ls18{letter-spacing:90.528000pt;}
.ls25{letter-spacing:95.667200pt;}
.ls1c{letter-spacing:95.712000pt;}
.ls24{letter-spacing:96.352000pt;}
.ws4{word-spacing:-99.522304pt;}
.ws4f{word-spacing:-85.120000pt;}
.ws2a{word-spacing:-50.901973pt;}
.ws3{word-spacing:-42.227712pt;}
.ws2{word-spacing:-42.168320pt;}
.ws39{word-spacing:-23.698944pt;}
.ws2b{word-spacing:-23.663360pt;}
.wsb{word-spacing:-22.686208pt;}
.wsa{word-spacing:-22.656000pt;}
.ws1{word-spacing:-21.627861pt;}
.ws55{word-spacing:-20.344320pt;}
.ws21{word-spacing:-20.118528pt;}
.ws16{word-spacing:-20.088320pt;}
.ws0{word-spacing:-16.312320pt;}
.ws19{word-spacing:-15.104000pt;}
.ws5a{word-spacing:-13.321728pt;}
.ws57{word-spacing:-13.291520pt;}
.ws58{word-spacing:-13.163520pt;}
.ws56{word-spacing:-12.779520pt;}
.ws59{word-spacing:-12.735061pt;}
.ws43{word-spacing:-12.664320pt;}
.ws29{word-spacing:-12.536320pt;}
.ws3d{word-spacing:-1.250133pt;}
.ws2d{word-spacing:-1.105920pt;}
.ws4a{word-spacing:-0.519253pt;}
.ws44{word-spacing:-0.450581pt;}
.ws46{word-spacing:-0.334080pt;}
.ws20{word-spacing:-0.333056pt;}
.ws37{word-spacing:-0.326656pt;}
.ws33{word-spacing:-0.309973pt;}
.ws4d{word-spacing:-0.259520pt;}
.ws49{word-spacing:-0.218240pt;}
.ws2e{word-spacing:-0.203733pt;}
.ws47{word-spacing:-0.196053pt;}
.ws41{word-spacing:-0.172928pt;}
.ws25{word-spacing:-0.163200pt;}
.ws4e{word-spacing:-0.080000pt;}
.ws5{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.084651pt;}
.ws9{word-spacing:0.095360pt;}
.ws2f{word-spacing:0.106667pt;}
.ws1f{word-spacing:0.164096pt;}
.ws35{word-spacing:0.171008pt;}
.ws54{word-spacing:0.181760pt;}
.ws27{word-spacing:0.189696pt;}
.ws3c{word-spacing:0.202880pt;}
.ws24{word-spacing:0.218240pt;}
.ws8{word-spacing:0.225920pt;}
.ws28{word-spacing:0.280747pt;}
.ws53{word-spacing:0.319360pt;}
.ws12{word-spacing:0.320000pt;}
.ws42{word-spacing:0.336000pt;}
.ws3b{word-spacing:0.348907pt;}
.ws51{word-spacing:0.365653pt;}
.ws4b{word-spacing:0.380480pt;}
.ws45{word-spacing:0.433632pt;}
.ws11{word-spacing:0.458667pt;}
.ws3a{word-spacing:0.461867pt;}
.ws38{word-spacing:0.469184pt;}
.ws32{word-spacing:0.484480pt;}
.ws15{word-spacing:0.497707pt;}
.ws6{word-spacing:0.502827pt;}
.ws48{word-spacing:0.580480pt;}
.ws22{word-spacing:0.646400pt;}
.ws3f{word-spacing:0.671147pt;}
.ws36{word-spacing:0.677824pt;}
.ws26{word-spacing:0.708864pt;}
.ws23{word-spacing:0.720640pt;}
.wsd{word-spacing:0.800000pt;}
.ws30{word-spacing:0.808960pt;}
.ws40{word-spacing:0.854272pt;}
.wsc{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.928853pt;}
.ws3e{word-spacing:0.955520pt;}
.ws10{word-spacing:0.960000pt;}
.ws34{word-spacing:0.969216pt;}
.ws7{word-spacing:0.988907pt;}
.wsf{word-spacing:1.024000pt;}
.ws52{word-spacing:1.025280pt;}
.ws50{word-spacing:1.206080pt;}
.ws14{word-spacing:1.248000pt;}
.wse{word-spacing:1.353131pt;}
.ws13{word-spacing:1.440000pt;}
.ws31{word-spacing:2.807040pt;}
.ws17{word-spacing:75.519987pt;}
.ws1c{word-spacing:75.566592pt;}
.ws1d{word-spacing:821.322667pt;}
.ws1e{word-spacing:830.026667pt;}
.ws1a{word-spacing:914.682667pt;}
.ws1b{word-spacing:972.666667pt;}
.ws18{word-spacing:1036.986667pt;}
._6{margin-left:-3558.165333pt;}
._4{margin-left:-3065.345280pt;}
._11{margin-left:-6.639360pt;}
._f{margin-left:-4.256000pt;}
._0{margin-left:-2.208000pt;}
._1{margin-left:-1.056000pt;}
._2{width:1.205333pt;}
._d{width:2.996395pt;}
._e{width:4.316416pt;}
._12{width:18.789547pt;}
._13{width:21.003520pt;}
._3{width:22.337920pt;}
._5{width:23.648000pt;}
._10{width:44.178133pt;}
._14{width:70.028373pt;}
._9{width:77.546667pt;}
._8{width:293.098667pt;}
._c{width:311.306667pt;}
._a{width:379.557632pt;}
._7{width:670.122667pt;}
._b{width:741.818667pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:48.128000pt;}
.fs9{font-size:53.120000pt;}
.fs13{font-size:56.320000pt;}
.fs14{font-size:56.448000pt;}
.fsb{font-size:64.000000pt;}
.fsd{font-size:64.128000pt;}
.fs10{font-size:68.480000pt;}
.fs11{font-size:68.608000pt;}
.fs0{font-size:69.120000pt;}
.fs8{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:91.008000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs7{font-size:181.120000pt;}
.fsa{font-size:181.248000pt;}
.fs5{font-size:192.000000pt;}
.fs6{font-size:192.128000pt;}
.fs12{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:20.256000pt;}
.yd{bottom:25.856000pt;}
.y42{bottom:59.072000pt;}
.y4c{bottom:68.480000pt;}
.y41{bottom:79.296000pt;}
.y7f{bottom:81.376000pt;}
.y59{bottom:85.824000pt;}
.y4b{bottom:94.080000pt;}
.y8{bottom:98.560000pt;}
.y96{bottom:104.448000pt;}
.y12{bottom:107.136000pt;}
.y18{bottom:107.264000pt;}
.y1e{bottom:110.624000pt;}
.y22{bottom:110.752000pt;}
.y58{bottom:111.424000pt;}
.y7e{bottom:114.976000pt;}
.y40{bottom:116.448000pt;}
.y4a{bottom:119.680000pt;}
.y2b{bottom:120.192000pt;}
.y26{bottom:121.568000pt;}
.y7{bottom:125.312000pt;}
.y95{bottom:125.408000pt;}
.y3f{bottom:127.008000pt;}
.y11{bottom:135.973333pt;}
.y17{bottom:136.066667pt;}
.y57{bottom:137.026667pt;}
.y1d{bottom:139.453333pt;}
.y21{bottom:139.546667pt;}
.y94{bottom:146.373333pt;}
.y7d{bottom:148.613333pt;}
.y6{bottom:152.026667pt;}
.y2d{bottom:160.546667pt;}
.y2c{bottom:161.733333pt;}
.y3e{bottom:164.133333pt;}
.y68{bottom:171.613333pt;}
.y3d{bottom:174.720000pt;}
.y4e{bottom:178.013333pt;}
.y5{bottom:178.586667pt;}
.y7c{bottom:182.213333pt;}
.y1f{bottom:184.480000pt;}
.y56{bottom:185.920000pt;}
.y8f{bottom:188.133333pt;}
.y93{bottom:188.453333pt;}
.y27{bottom:193.466667pt;}
.y67{bottom:198.373333pt;}
.y10{bottom:199.066667pt;}
.y4d{bottom:203.613333pt;}
.y4{bottom:205.306667pt;}
.y7b{bottom:207.813333pt;}
.y92{bottom:209.413333pt;}
.y55{bottom:211.520000pt;}
.y3c{bottom:212.800000pt;}
.y6b{bottom:214.373333pt;}
.y8e{bottom:214.853333pt;}
.y25{bottom:214.906667pt;}
.y13{bottom:217.466667pt;}
.y20{bottom:218.400000pt;}
.y3b{bottom:221.440000pt;}
.y1c{bottom:230.080000pt;}
.y91{bottom:230.400000pt;}
.y3a{bottom:232.026667pt;}
.y3{bottom:232.546667pt;}
.y66{bottom:233.093333pt;}
.y28{bottom:234.266667pt;}
.y6a{bottom:241.093333pt;}
.y7a{bottom:241.413333pt;}
.y8d{bottom:241.440000pt;}
.y50{bottom:245.666667pt;}
.y2{bottom:259.266667pt;}
.y65{bottom:259.653333pt;}
.y79{bottom:267.013333pt;}
.y69{bottom:267.653333pt;}
.y8c{bottom:268.160000pt;}
.y39{bottom:269.146667pt;}
.y4f{bottom:271.266667pt;}
.y90{bottom:272.480000pt;}
.y54{bottom:273.213333pt;}
.y38{bottom:279.706667pt;}
.y19{bottom:281.346667pt;}
.y64{bottom:294.373333pt;}
.y53{bottom:298.853333pt;}
.y78{bottom:300.640000pt;}
.y46{bottom:302.240000pt;}
.y61{bottom:302.373333pt;}
.ya{bottom:306.880000pt;}
.y37{bottom:316.866667pt;}
.y80{bottom:324.386667pt;}
.y77{bottom:326.240000pt;}
.y36{bottom:327.426667pt;}
.y45{bottom:327.840000pt;}
.y88{bottom:328.613333pt;}
.y60{bottom:329.120000pt;}
.y49{bottom:342.653333pt;}
.y6d{bottom:355.680000pt;}
.y76{bottom:359.840000pt;}
.y5b{bottom:360.546667pt;}
.yf{bottom:362.053333pt;}
.y87{bottom:363.200000pt;}
.y5f{bottom:363.680000pt;}
.y9{bottom:364.480000pt;}
.y1b{bottom:365.533333pt;}
.y35{bottom:367.173333pt;}
.y48{bottom:368.253333pt;}
.y81{bottom:371.680000pt;}
.y71{bottom:372.960000pt;}
.y24{bottom:376.453333pt;}
.y5a{bottom:386.146667pt;}
.y5e{bottom:390.400000pt;}
.ye{bottom:390.853333pt;}
.y75{bottom:393.440000pt;}
.y47{bottom:393.893333pt;}
.y1a{bottom:394.333333pt;}
.y86{bottom:397.920000pt;}
.y63{bottom:398.400000pt;}
.y34{bottom:405.280000pt;}
.y70{bottom:410.106667pt;}
.y5d{bottom:417.120000pt;}
.y6c{bottom:417.146667pt;}
.y33{bottom:424.480000pt;}
.y62{bottom:425.120000pt;}
.y74{bottom:427.066667pt;}
.y16{bottom:430.333333pt;}
.y85{bottom:432.640000pt;}
.y2a{bottom:444.733333pt;}
.y6f{bottom:447.386667pt;}
.y52{bottom:447.840000pt;}
.y5c{bottom:451.706667pt;}
.y44{bottom:452.253333pt;}
.y73{bottom:452.666667pt;}
.y8b{bottom:456.773333pt;}
.y15{bottom:459.133333pt;}
.y84{bottom:459.200000pt;}
.y23{bottom:459.706667pt;}
.y32{bottom:462.586667pt;}
.y31{bottom:471.226667pt;}
.y51{bottom:473.440000pt;}
.y29{bottom:473.533333pt;}
.y43{bottom:477.893333pt;}
.y30{bottom:481.786667pt;}
.y8a{bottom:483.333333pt;}
.y6e{bottom:484.506667pt;}
.y83{bottom:485.946667pt;}
.y72{bottom:486.266667pt;}
.yc{bottom:486.426667pt;}
.y14{bottom:487.933333pt;}
.y89{bottom:510.080000pt;}
.y2f{bottom:542.906667pt;}
.y82{bottom:560.826667pt;}
.yb{bottom:570.106667pt;}
.y2e{bottom:597.306667pt;}
.hb{height:50.410880pt;}
.h1e{height:55.024640pt;}
.h1f{height:55.149696pt;}
.hc{height:55.402500pt;}
.h13{height:60.736000pt;}
.h11{height:60.912000pt;}
.h15{height:61.033472pt;}
.h14{height:62.528000pt;}
.h2{height:65.594880pt;}
.hf{height:80.778880pt;}
.h19{height:80.900352pt;}
.ha{height:83.162240pt;}
.h1c{height:83.287296pt;}
.h5{height:86.245120pt;}
.h6{height:86.366592pt;}
.h1b{height:88.777500pt;}
.h1a{height:88.911000pt;}
.hd{height:91.104000pt;}
.he{height:91.225472pt;}
.h3{height:95.484375pt;}
.h4{height:95.611688pt;}
.h18{height:102.282880pt;}
.h12{height:104.768000pt;}
.h17{height:104.893056pt;}
.h16{height:104.999723pt;}
.h9{height:176.954240pt;}
.h10{height:177.079296pt;}
.h7{height:187.584000pt;}
.h8{height:187.709056pt;}
.h1d{height:281.501056pt;}
.h1{height:680.000000pt;}
.h0{height:680.320000pt;}
.w1{width:1209.333333pt;}
.w2{width:1209.439982pt;}
.w0{width:1209.440000pt;}
.x0{left:0.000000pt;}
.x2{left:45.375982pt;}
.x28{left:53.471982pt;}
.x25{left:55.999982pt;}
.x1{left:68.063982pt;}
.x2f{left:73.823982pt;}
.x8{left:84.415982pt;}
.x30{left:90.623982pt;}
.x7{left:94.335982pt;}
.x6{left:97.375982pt;}
.x19{left:117.215982pt;}
.x31{left:120.703982pt;}
.x1a{left:130.239982pt;}
.x21{left:148.773315pt;}
.xc{left:244.319982pt;}
.xd{left:256.639982pt;}
.xe{left:272.639982pt;}
.x2e{left:274.719982pt;}
.xf{left:285.439982pt;}
.x33{left:359.066649pt;}
.x39{left:362.879982pt;}
.x27{left:408.186649pt;}
.x32{left:440.346649pt;}
.xb{left:442.079982pt;}
.x26{left:444.706649pt;}
.xa{left:451.679982pt;}
.x9{left:452.639982pt;}
.x20{left:459.839982pt;}
.x1f{left:479.226649pt;}
.x23{left:529.666649pt;}
.x29{left:547.866649pt;}
.x22{left:568.186649pt;}
.x18{left:637.533315pt;}
.x17{left:659.066649pt;}
.x11{left:668.986649pt;}
.x10{left:672.026649pt;}
.x2a{left:732.546649pt;}
.x2c{left:755.266649pt;}
.x2b{left:762.626649pt;}
.x38{left:770.879982pt;}
.x35{left:794.106649pt;}
.x36{left:805.946649pt;}
.x34{left:835.386649pt;}
.x1c{left:837.626649pt;}
.x37{left:840.186649pt;}
.x1e{left:847.613315pt;}
.x16{left:854.373315pt;}
.x1d{left:866.426649pt;}
.x1b{left:881.026649pt;}
.x3{left:897.119982pt;}
.x5{left:969.786649pt;}
.x15{left:992.773315pt;}
.x12{left:1016.773315pt;}
.x14{left:1026.466649pt;}
.x13{left:1027.426649pt;}
.x2d{left:1148.293315pt;}
.x4{left:1156.293315pt;}
.x24{left:1174.013315pt;}
}




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