
    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_2785b3c1c781edb0cce79e66.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_79d731bd29cbeea04c40d333.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ffb93517d176beac4758c645.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cdd68710985a96e7a0d3820e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_3dae8a533e60654eb6960f8e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c1b933a14e10b734bd529f0f.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v7{vertical-align:-484.800000px;}
.v6{vertical-align:-223.800000px;}
.v3{vertical-align:-135.600000px;}
.v4{vertical-align:-67.020000px;}
.v5{vertical-align:-35.400000px;}
.v8{vertical-align:-9.780000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.140000px;}
.v2{vertical-align:72.000000px;}
.v1{vertical-align:175.500000px;}
.ls8{letter-spacing:-6.240000px;}
.ls16{letter-spacing:-5.700000px;}
.ls12{letter-spacing:-3.678000px;}
.ls14{letter-spacing:-3.606000px;}
.ls15{letter-spacing:-3.528000px;}
.ls13{letter-spacing:-3.456000px;}
.lsb{letter-spacing:-2.040000px;}
.ls6{letter-spacing:-1.896000px;}
.lsc{letter-spacing:-1.818000px;}
.ls4{letter-spacing:-0.189000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.139800px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.295800px;}
.ls11{letter-spacing:0.732000px;}
.lsf{letter-spacing:0.822000px;}
.lse{letter-spacing:0.894000px;}
.ls17{letter-spacing:1.044000px;}
.ls9{letter-spacing:1.404000px;}
.lsd{letter-spacing:4.680000px;}
.ls0{letter-spacing:64.147500px;}
.ls1{letter-spacing:228.547500px;}
.ls2{letter-spacing:228.600000px;}
.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;}
}
.ws3{word-spacing:-107.627700px;}
.ws4{word-spacing:-96.368700px;}
.ws31{word-spacing:-68.139000px;}
.ws42{word-spacing:-62.550000px;}
.ws47{word-spacing:-53.934900px;}
.ws33{word-spacing:-53.901000px;}
.ws46{word-spacing:-52.917900px;}
.ws7{word-spacing:-52.884000px;}
.ws36{word-spacing:-47.538000px;}
.ws3b{word-spacing:-43.764900px;}
.ws34{word-spacing:-43.731000px;}
.ws45{word-spacing:-40.713900px;}
.ws44{word-spacing:-40.680000px;}
.ws3d{word-spacing:-40.125000px;}
.ws3c{word-spacing:-40.086900px;}
.ws2{word-spacing:-38.679900px;}
.ws0{word-spacing:-38.646000px;}
.ws41{word-spacing:-32.946000px;}
.ws1a{word-spacing:-3.438000px;}
.ws32{word-spacing:-2.731950px;}
.ws20{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.054000px;}
.ws48{word-spacing:0.000000px;}
.ws24{word-spacing:0.648000px;}
.ws1b{word-spacing:1.962000px;}
.ws40{word-spacing:3.336000px;}
.ws21{word-spacing:3.846000px;}
.ws1c{word-spacing:4.475550px;}
.ws11{word-spacing:5.002500px;}
.ws2e{word-spacing:5.562000px;}
.ws43{word-spacing:5.628000px;}
.ws17{word-spacing:6.420000px;}
.ws1e{word-spacing:6.768000px;}
.ws16{word-spacing:7.710000px;}
.ws2d{word-spacing:7.842000px;}
.ws18{word-spacing:7.956000px;}
.ws12{word-spacing:8.952000px;}
.ws13{word-spacing:9.408000px;}
.ws19{word-spacing:9.624000px;}
.ws23{word-spacing:9.882000px;}
.ws15{word-spacing:10.866000px;}
.ws1d{word-spacing:13.237350px;}
.ws14{word-spacing:20.808000px;}
.ws27{word-spacing:25.324650px;}
.ws2b{word-spacing:26.406000px;}
.wsb{word-spacing:26.634000px;}
.ws25{word-spacing:26.748450px;}
.ws2f{word-spacing:31.900500px;}
.ws30{word-spacing:31.968750px;}
.ws26{word-spacing:32.517300px;}
.ws2a{word-spacing:35.382000px;}
.ws29{word-spacing:35.406000px;}
.ws2c{word-spacing:35.946000px;}
.ws28{word-spacing:36.090000px;}
.wsa{word-spacing:52.435350px;}
.ws8{word-spacing:55.614150px;}
.wsd{word-spacing:71.031450px;}
.wse{word-spacing:71.607900px;}
.ws10{word-spacing:72.052350px;}
.wsc{word-spacing:72.304050px;}
.ws9{word-spacing:73.552500px;}
.wsf{word-spacing:75.444300px;}
.ws5{word-spacing:79.968000px;}
.ws6{word-spacing:80.406000px;}
.ws35{word-spacing:180.806250px;}
.ws38{word-spacing:194.246250px;}
.ws39{word-spacing:234.506250px;}
.ws1{word-spacing:515.706300px;}
.ws3e{word-spacing:554.731500px;}
.ws37{word-spacing:723.811500px;}
.ws3a{word-spacing:817.636500px;}
.ws3f{word-spacing:916.566000px;}
.ws1f{word-spacing:3007.410000px;}
._3e{margin-left:-7997.524200px;}
._33{margin-left:-6326.372100px;}
._d{margin-left:-33.219450px;}
._a{margin-left:-16.006200px;}
._5{margin-left:-14.291250px;}
._30{margin-left:-13.289700px;}
._4{margin-left:-12.004650px;}
._1a{margin-left:-10.803900px;}
._7{margin-left:-9.718050px;}
._0{margin-left:-8.574750px;}
._12{margin-left:-7.538250px;}
._8{margin-left:-6.288150px;}
._1{margin-left:-4.573200px;}
._9{margin-left:-3.429900px;}
._3{margin-left:-2.286600px;}
._b{margin-left:-1.196250px;}
._2{width:1.714950px;}
._6{width:2.858250px;}
._15{width:4.518300px;}
._c{width:6.356550px;}
._35{width:7.442400px;}
._32{width:9.483000px;}
._40{width:13.950450px;}
._41{width:15.487950px;}
._3d{width:30.697650px;}
._31{width:36.785250px;}
._34{width:39.180000px;}
._2f{width:40.809600px;}
._2d{width:45.332250px;}
._36{width:47.115450px;}
._2e{width:48.616050px;}
._24{width:50.305050px;}
._21{width:51.490350px;}
._25{width:54.083250px;}
._26{width:55.660950px;}
._22{width:56.670600px;}
._27{width:57.819000px;}
._1f{width:59.191800px;}
._20{width:63.651300px;}
._23{width:66.986400px;}
._11{width:69.682800px;}
._10{width:71.439750px;}
._e{width:74.518500px;}
._1b{width:80.532000px;}
._28{width:81.732000px;}
._19{width:82.766400px;}
._f{width:85.043850px;}
._1c{width:86.230500px;}
._2b{width:89.300850px;}
._2a{width:90.563250px;}
._29{width:92.713200px;}
._2c{width:94.135800px;}
._16{width:107.548950px;}
._18{width:110.508750px;}
._17{width:112.429350px;}
._1e{width:127.210950px;}
._1d{width:128.704950px;}
._13{width:134.850750px;}
._14{width:136.197600px;}
._3b{width:174.050550px;}
._39{width:178.370550px;}
._3c{width:193.580850px;}
._38{width:205.490550px;}
._3a{width:210.050550px;}
._37{width:952.692000px;}
._3f{width:1995.480600px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:153.000000px;}
.fs9{font-size:157.500000px;}
.fs2{font-size:171.000000px;}
.fs3{font-size:171.150000px;}
.fsc{font-size:180.000000px;}
.fsd{font-size:180.150000px;}
.fs4{font-size:193.500000px;}
.fsa{font-size:193.650000px;}
.fs10{font-size:225.000000px;}
.fs7{font-size:234.000000px;}
.fs8{font-size:234.150000px;}
.fs1{font-size:238.500000px;}
.fs11{font-size:238.650000px;}
.fsb{font-size:301.500000px;}
.fse{font-size:301.650000px;}
.fs6{font-size:346.650000px;}
.fs5{font-size:387.150000px;}
.fs0{font-size:571.650000px;}
.y0{bottom:0.000000px;}
.y21{bottom:35.025000px;}
.y20{bottom:93.525000px;}
.y1f{bottom:152.025000px;}
.y6b{bottom:210.300000px;}
.y1e{bottom:210.570000px;}
.y1d{bottom:346.350000px;}
.y34{bottom:421.350000px;}
.y1c{bottom:428.520000px;}
.y1b{bottom:511.800000px;}
.y32{bottom:571.950000px;}
.y31{bottom:625.950000px;}
.y1a{bottom:627.825000px;}
.y30{bottom:679.980000px;}
.y9{bottom:692.775000px;}
.y19{bottom:697.605000px;}
.y2f{bottom:733.980000px;}
.y18{bottom:768.480000px;}
.y2e{bottom:787.980000px;}
.y86{bottom:820.155000px;}
.y17{bottom:838.275000px;}
.y2d{bottom:842.025000px;}
.y2c{bottom:896.025000px;}
.y85{bottom:903.450000px;}
.y16{bottom:908.070000px;}
.y2b{bottom:950.070000px;}
.y15{bottom:978.945000px;}
.y84{bottom:985.575000px;}
.y2a{bottom:1004.070000px;}
.y14{bottom:1048.725000px;}
.y29{bottom:1058.100000px;}
.y87{bottom:1069.545000px;}
.y28{bottom:1112.100000px;}
.y13{bottom:1119.600000px;}
.y27{bottom:1168.350000px;}
.y12{bottom:1189.395000px;}
.y5d{bottom:1213.230000px;}
.y26{bottom:1226.880000px;}
.y11{bottom:1259.145000px;}
.y53{bottom:1270.095000px;}
.y5c{bottom:1275.150000px;}
.y25{bottom:1282.020000px;}
.y5f{bottom:1295.205000px;}
.y57{bottom:1309.500000px;}
.y63{bottom:1329.300000px;}
.y5e{bottom:1332.600000px;}
.y69{bottom:1342.800000px;}
.y24{bottom:1351.800000px;}
.y51{bottom:1370.205000px;}
.y50{bottom:1391.775000px;}
.y4f{bottom:1409.775000px;}
.y58{bottom:1412.820000px;}
.y52{bottom:1422.900000px;}
.y60{bottom:1430.445000px;}
.y33{bottom:1458.675000px;}
.y59{bottom:1522.050000px;}
.y61{bottom:1560.795000px;}
.y64{bottom:1625.370000px;}
.y5a{bottom:1629.645000px;}
.y62{bottom:1691.175000px;}
.y5b{bottom:1744.200000px;}
.y5{bottom:1882.830000px;}
.y4{bottom:1926.705000px;}
.y44{bottom:1987.455000px;}
.y55{bottom:2037.825000px;}
.y4d{bottom:2052.945000px;}
.y47{bottom:2116.605000px;}
.y49{bottom:2126.250000px;}
.y67{bottom:2126.625000px;}
.y45{bottom:2172.795000px;}
.y66{bottom:2185.125000px;}
.y48{bottom:2186.295000px;}
.y56{bottom:2191.725000px;}
.y4e{bottom:2199.675000px;}
.y68{bottom:2214.645000px;}
.y54{bottom:2240.775000px;}
.y65{bottom:2243.670000px;}
.y6a{bottom:2245.020000px;}
.y4a{bottom:2268.075000px;}
.y46{bottom:2317.980000px;}
.y6{bottom:2325.825000px;}
.y4c{bottom:2353.020000px;}
.y4b{bottom:2430.570000px;}
.y23{bottom:2468.655000px;}
.y8{bottom:2609.700000px;}
.y7b{bottom:2627.925000px;}
.y7d{bottom:2695.320000px;}
.y82{bottom:2695.395000px;}
.y7c{bottom:2695.500000px;}
.y83{bottom:2696.625000px;}
.y6c{bottom:2751.945000px;}
.y10{bottom:2780.295000px;}
.y6d{bottom:2792.070000px;}
.y81{bottom:2799.645000px;}
.y6e{bottom:2832.195000px;}
.y80{bottom:2857.980000px;}
.yf{bottom:2863.575000px;}
.y6f{bottom:2872.320000px;}
.y35{bottom:2885.730000px;}
.y40{bottom:2891.895000px;}
.y70{bottom:2912.400000px;}
.y7e{bottom:2914.425000px;}
.y3e{bottom:2916.420000px;}
.y3c{bottom:2917.455000px;}
.y38{bottom:2949.720000px;}
.y71{bottom:2952.525000px;}
.ye{bottom:2967.105000px;}
.y7f{bottom:2977.275000px;}
.y72{bottom:2992.650000px;}
.y36{bottom:2995.980000px;}
.y41{bottom:3005.445000px;}
.y73{bottom:3032.730000px;}
.y3d{bottom:3039.645000px;}
.yd{bottom:3049.275000px;}
.y74{bottom:3072.855000px;}
.y39{bottom:3085.305000px;}
.y37{bottom:3106.275000px;}
.y75{bottom:3112.980000px;}
.y42{bottom:3120.705000px;}
.yc{bottom:3131.400000px;}
.y76{bottom:3153.105000px;}
.y77{bottom:3193.230000px;}
.y3a{bottom:3202.800000px;}
.yb{bottom:3214.680000px;}
.y3f{bottom:3218.805000px;}
.y78{bottom:3233.325000px;}
.y43{bottom:3237.705000px;}
.y79{bottom:3273.450000px;}
.ya{bottom:3296.805000px;}
.y3b{bottom:3298.350000px;}
.y7a{bottom:3313.575000px;}
.y7{bottom:3396.255000px;}
.y22{bottom:3404.655000px;}
.y3{bottom:3570.930000px;}
.y2{bottom:3655.350000px;}
.y1{bottom:3749.880000px;}
.h18{height:156.660645px;}
.h4{height:175.091309px;}
.h6{height:175.244897px;}
.h16{height:178.347656px;}
.h11{height:179.033203px;}
.h12{height:179.182397px;}
.h1a{height:184.306641px;}
.h1b{height:184.460229px;}
.hd{height:192.460693px;}
.he{height:192.609888px;}
.h7{height:198.129639px;}
.h15{height:198.283228px;}
.h17{height:202.749888px;}
.ha{height:232.743164px;}
.hb{height:232.892358px;}
.h19{height:234.667969px;}
.hc{height:239.598633px;}
.h10{height:239.752222px;}
.h13{height:244.206299px;}
.h1c{height:244.359888px;}
.h3{height:248.748047px;}
.hf{height:308.713623px;}
.h14{height:308.867212px;}
.h5{height:350.591309px;}
.h9{height:361.545117px;}
.h8{height:403.785352px;}
.h2{height:568.579614px;}
.h0{height:3886.875000px;}
.h1{height:3887.250000px;}
.w2{width:5182.874923px;}
.w0{width:5182.875000px;}
.w1{width:5183.250000px;}
.x0{left:0.000000px;}
.x8{left:61.687423px;}
.x9{left:63.149923px;}
.xb{left:64.462423px;}
.x10{left:157.949923px;}
.x11{left:180.449923px;}
.x1{left:458.519923px;}
.x12{left:480.344923px;}
.x13{left:538.724923px;}
.xc{left:1045.754923px;}
.x3d{left:1076.849923px;}
.xf{left:1191.524923px;}
.xe{left:1420.124923px;}
.x3{left:1510.649923px;}
.x2{left:1768.319923px;}
.x3f{left:2052.299923px;}
.x48{left:2075.249923px;}
.xa{left:2092.994923px;}
.xd{left:2103.674923px;}
.x2a{left:2108.774923px;}
.x2f{left:2123.369923px;}
.x40{left:2156.069923px;}
.x41{left:2158.769923px;}
.x2b{left:2167.319923px;}
.x30{left:2192.999923px;}
.x2d{left:2195.024923px;}
.x5f{left:2203.274923px;}
.x49{left:2204.879923px;}
.x43{left:2224.499923px;}
.x4a{left:2233.799923px;}
.x2e{left:2251.229923px;}
.x42{left:2252.354923px;}
.x45{left:2254.499923px;}
.x47{left:2291.294923px;}
.x44{left:2296.229923px;}
.x4c{left:2306.354923px;}
.x4b{left:2318.699923px;}
.x5e{left:2321.399923px;}
.x46{left:2353.079923px;}
.x31{left:2381.594923px;}
.x2c{left:2414.069923px;}
.x54{left:2474.099923px;}
.x4d{left:2546.819923px;}
.x7{left:2550.029923px;}
.x53{left:2557.049923px;}
.x3b{left:2659.949923px;}
.x52{left:2663.624923px;}
.x51{left:2670.944923px;}
.x50{left:2739.104923px;}
.x4f{left:2769.404923px;}
.x4e{left:2874.599923px;}
.x17{left:3137.174923px;}
.x16{left:3170.804923px;}
.x15{left:3174.029923px;}
.x14{left:3193.529923px;}
.x5d{left:3197.774923px;}
.x5c{left:3202.274923px;}
.x37{left:3216.074923px;}
.x25{left:3223.379923px;}
.x5b{left:3231.524923px;}
.x34{left:3239.204923px;}
.x33{left:3262.049923px;}
.x32{left:3278.804923px;}
.x24{left:3281.429923px;}
.x35{left:3290.624923px;}
.x1d{left:3312.974923px;}
.x1c{left:3441.704923px;}
.x23{left:3487.619923px;}
.x3e{left:3700.499923px;}
.x26{left:3760.649923px;}
.x36{left:3803.729923px;}
.x56{left:3891.854923px;}
.x55{left:3930.104923px;}
.x58{left:3966.029923px;}
.x57{left:4051.649923px;}
.x3c{left:4097.474923px;}
.x1b{left:4270.244923px;}
.x20{left:4296.404923px;}
.x1f{left:4299.629923px;}
.x1e{left:4320.749923px;}
.x29{left:4321.904923px;}
.x18{left:4432.154923px;}
.x22{left:4460.024923px;}
.x21{left:4497.149923px;}
.x27{left:4498.544923px;}
.x3a{left:4561.829923px;}
.x5a{left:4574.924923px;}
.x39{left:4596.749923px;}
.x59{left:4636.799923px;}
.x38{left:4638.824923px;}
.x5{left:4690.349923px;}
.x4{left:4701.599923px;}
.x19{left:4704.524923px;}
.x60{left:4714.199923px;}
.x28{left:4725.179923px;}
.x1a{left:4840.679923px;}
.x6{left:4923.629923px;}
@media print{
.v7{vertical-align:-430.933333pt;}
.v6{vertical-align:-198.933333pt;}
.v3{vertical-align:-120.533333pt;}
.v4{vertical-align:-59.573333pt;}
.v5{vertical-align:-31.466667pt;}
.v8{vertical-align:-8.693333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.013333pt;}
.v2{vertical-align:64.000000pt;}
.v1{vertical-align:156.000000pt;}
.ls8{letter-spacing:-5.546667pt;}
.ls16{letter-spacing:-5.066667pt;}
.ls12{letter-spacing:-3.269333pt;}
.ls14{letter-spacing:-3.205333pt;}
.ls15{letter-spacing:-3.136000pt;}
.ls13{letter-spacing:-3.072000pt;}
.lsb{letter-spacing:-1.813333pt;}
.ls6{letter-spacing:-1.685333pt;}
.lsc{letter-spacing:-1.616000pt;}
.ls4{letter-spacing:-0.168000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.124267pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.262933pt;}
.ls11{letter-spacing:0.650667pt;}
.lsf{letter-spacing:0.730667pt;}
.lse{letter-spacing:0.794667pt;}
.ls17{letter-spacing:0.928000pt;}
.ls9{letter-spacing:1.248000pt;}
.lsd{letter-spacing:4.160000pt;}
.ls0{letter-spacing:57.020000pt;}
.ls1{letter-spacing:203.153333pt;}
.ls2{letter-spacing:203.200000pt;}
.ws3{word-spacing:-95.669067pt;}
.ws4{word-spacing:-85.661067pt;}
.ws31{word-spacing:-60.568000pt;}
.ws42{word-spacing:-55.600000pt;}
.ws47{word-spacing:-47.942133pt;}
.ws33{word-spacing:-47.912000pt;}
.ws46{word-spacing:-47.038133pt;}
.ws7{word-spacing:-47.008000pt;}
.ws36{word-spacing:-42.256000pt;}
.ws3b{word-spacing:-38.902133pt;}
.ws34{word-spacing:-38.872000pt;}
.ws45{word-spacing:-36.190133pt;}
.ws44{word-spacing:-36.160000pt;}
.ws3d{word-spacing:-35.666667pt;}
.ws3c{word-spacing:-35.632800pt;}
.ws2{word-spacing:-34.382133pt;}
.ws0{word-spacing:-34.352000pt;}
.ws41{word-spacing:-29.285333pt;}
.ws1a{word-spacing:-3.056000pt;}
.ws32{word-spacing:-2.428400pt;}
.ws20{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.048000pt;}
.ws48{word-spacing:0.000000pt;}
.ws24{word-spacing:0.576000pt;}
.ws1b{word-spacing:1.744000pt;}
.ws40{word-spacing:2.965333pt;}
.ws21{word-spacing:3.418667pt;}
.ws1c{word-spacing:3.978267pt;}
.ws11{word-spacing:4.446667pt;}
.ws2e{word-spacing:4.944000pt;}
.ws43{word-spacing:5.002667pt;}
.ws17{word-spacing:5.706667pt;}
.ws1e{word-spacing:6.016000pt;}
.ws16{word-spacing:6.853333pt;}
.ws2d{word-spacing:6.970667pt;}
.ws18{word-spacing:7.072000pt;}
.ws12{word-spacing:7.957333pt;}
.ws13{word-spacing:8.362667pt;}
.ws19{word-spacing:8.554667pt;}
.ws23{word-spacing:8.784000pt;}
.ws15{word-spacing:9.658667pt;}
.ws1d{word-spacing:11.766533pt;}
.ws14{word-spacing:18.496000pt;}
.ws27{word-spacing:22.510800pt;}
.ws2b{word-spacing:23.472000pt;}
.wsb{word-spacing:23.674667pt;}
.ws25{word-spacing:23.776400pt;}
.ws2f{word-spacing:28.356000pt;}
.ws30{word-spacing:28.416667pt;}
.ws26{word-spacing:28.904267pt;}
.ws2a{word-spacing:31.450667pt;}
.ws29{word-spacing:31.472000pt;}
.ws2c{word-spacing:31.952000pt;}
.ws28{word-spacing:32.080000pt;}
.wsa{word-spacing:46.609200pt;}
.ws8{word-spacing:49.434800pt;}
.wsd{word-spacing:63.139067pt;}
.wse{word-spacing:63.651467pt;}
.ws10{word-spacing:64.046533pt;}
.wsc{word-spacing:64.270267pt;}
.ws9{word-spacing:65.380000pt;}
.wsf{word-spacing:67.061600pt;}
.ws5{word-spacing:71.082667pt;}
.ws6{word-spacing:71.472000pt;}
.ws35{word-spacing:160.716667pt;}
.ws38{word-spacing:172.663333pt;}
.ws39{word-spacing:208.450000pt;}
.ws1{word-spacing:458.405600pt;}
.ws3e{word-spacing:493.094667pt;}
.ws37{word-spacing:643.388000pt;}
.ws3a{word-spacing:726.788000pt;}
.ws3f{word-spacing:814.725333pt;}
.ws1f{word-spacing:2673.253333pt;}
._3e{margin-left:-7108.910400pt;}
._33{margin-left:-5623.441867pt;}
._d{margin-left:-29.528400pt;}
._a{margin-left:-14.227733pt;}
._5{margin-left:-12.703333pt;}
._30{margin-left:-11.813067pt;}
._4{margin-left:-10.670800pt;}
._1a{margin-left:-9.603467pt;}
._7{margin-left:-8.638267pt;}
._0{margin-left:-7.622000pt;}
._12{margin-left:-6.700667pt;}
._8{margin-left:-5.589467pt;}
._1{margin-left:-4.065067pt;}
._9{margin-left:-3.048800pt;}
._3{margin-left:-2.032533pt;}
._b{margin-left:-1.063333pt;}
._2{width:1.524400pt;}
._6{width:2.540667pt;}
._15{width:4.016267pt;}
._c{width:5.650267pt;}
._35{width:6.615467pt;}
._32{width:8.429333pt;}
._40{width:12.400400pt;}
._41{width:13.767067pt;}
._3d{width:27.286800pt;}
._31{width:32.698000pt;}
._34{width:34.826667pt;}
._2f{width:36.275200pt;}
._2d{width:40.295333pt;}
._36{width:41.880400pt;}
._2e{width:43.214267pt;}
._24{width:44.715600pt;}
._21{width:45.769200pt;}
._25{width:48.074000pt;}
._26{width:49.476400pt;}
._22{width:50.373867pt;}
._27{width:51.394667pt;}
._1f{width:52.614933pt;}
._20{width:56.578933pt;}
._23{width:59.543467pt;}
._11{width:61.940267pt;}
._10{width:63.502000pt;}
._e{width:66.238667pt;}
._1b{width:71.584000pt;}
._28{width:72.650667pt;}
._19{width:73.570133pt;}
._f{width:75.594533pt;}
._1c{width:76.649333pt;}
._2b{width:79.378533pt;}
._2a{width:80.500667pt;}
._29{width:82.411733pt;}
._2c{width:83.676267pt;}
._16{width:95.599067pt;}
._18{width:98.230000pt;}
._17{width:99.937200pt;}
._1e{width:113.076400pt;}
._1d{width:114.404400pt;}
._13{width:119.867333pt;}
._14{width:121.064533pt;}
._3b{width:154.711600pt;}
._39{width:158.551600pt;}
._3c{width:172.071867pt;}
._38{width:182.658267pt;}
._3a{width:186.711600pt;}
._37{width:846.837333pt;}
._3f{width:1773.760533pt;}
.fsf{font-size:136.000000pt;}
.fs9{font-size:140.000000pt;}
.fs2{font-size:152.000000pt;}
.fs3{font-size:152.133333pt;}
.fsc{font-size:160.000000pt;}
.fsd{font-size:160.133333pt;}
.fs4{font-size:172.000000pt;}
.fsa{font-size:172.133333pt;}
.fs10{font-size:200.000000pt;}
.fs7{font-size:208.000000pt;}
.fs8{font-size:208.133333pt;}
.fs1{font-size:212.000000pt;}
.fs11{font-size:212.133333pt;}
.fsb{font-size:268.000000pt;}
.fse{font-size:268.133333pt;}
.fs6{font-size:308.133333pt;}
.fs5{font-size:344.133333pt;}
.fs0{font-size:508.133333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:31.133333pt;}
.y20{bottom:83.133333pt;}
.y1f{bottom:135.133333pt;}
.y6b{bottom:186.933333pt;}
.y1e{bottom:187.173333pt;}
.y1d{bottom:307.866667pt;}
.y34{bottom:374.533333pt;}
.y1c{bottom:380.906667pt;}
.y1b{bottom:454.933333pt;}
.y32{bottom:508.400000pt;}
.y31{bottom:556.400000pt;}
.y1a{bottom:558.066667pt;}
.y30{bottom:604.426667pt;}
.y9{bottom:615.800000pt;}
.y19{bottom:620.093333pt;}
.y2f{bottom:652.426667pt;}
.y18{bottom:683.093333pt;}
.y2e{bottom:700.426667pt;}
.y86{bottom:729.026667pt;}
.y17{bottom:745.133333pt;}
.y2d{bottom:748.466667pt;}
.y2c{bottom:796.466667pt;}
.y85{bottom:803.066667pt;}
.y16{bottom:807.173333pt;}
.y2b{bottom:844.506667pt;}
.y15{bottom:870.173333pt;}
.y84{bottom:876.066667pt;}
.y2a{bottom:892.506667pt;}
.y14{bottom:932.200000pt;}
.y29{bottom:940.533333pt;}
.y87{bottom:950.706667pt;}
.y28{bottom:988.533333pt;}
.y13{bottom:995.200000pt;}
.y27{bottom:1038.533333pt;}
.y12{bottom:1057.240000pt;}
.y5d{bottom:1078.426667pt;}
.y26{bottom:1090.560000pt;}
.y11{bottom:1119.240000pt;}
.y53{bottom:1128.973333pt;}
.y5c{bottom:1133.466667pt;}
.y25{bottom:1139.573333pt;}
.y5f{bottom:1151.293333pt;}
.y57{bottom:1164.000000pt;}
.y63{bottom:1181.600000pt;}
.y5e{bottom:1184.533333pt;}
.y69{bottom:1193.600000pt;}
.y24{bottom:1201.600000pt;}
.y51{bottom:1217.960000pt;}
.y50{bottom:1237.133333pt;}
.y4f{bottom:1253.133333pt;}
.y58{bottom:1255.840000pt;}
.y52{bottom:1264.800000pt;}
.y60{bottom:1271.506667pt;}
.y33{bottom:1296.600000pt;}
.y59{bottom:1352.933333pt;}
.y61{bottom:1387.373333pt;}
.y64{bottom:1444.773333pt;}
.y5a{bottom:1448.573333pt;}
.y62{bottom:1503.266667pt;}
.y5b{bottom:1550.400000pt;}
.y5{bottom:1673.626667pt;}
.y4{bottom:1712.626667pt;}
.y44{bottom:1766.626667pt;}
.y55{bottom:1811.400000pt;}
.y4d{bottom:1824.840000pt;}
.y47{bottom:1881.426667pt;}
.y49{bottom:1890.000000pt;}
.y67{bottom:1890.333333pt;}
.y45{bottom:1931.373333pt;}
.y66{bottom:1942.333333pt;}
.y48{bottom:1943.373333pt;}
.y56{bottom:1948.200000pt;}
.y4e{bottom:1955.266667pt;}
.y68{bottom:1968.573333pt;}
.y54{bottom:1991.800000pt;}
.y65{bottom:1994.373333pt;}
.y6a{bottom:1995.573333pt;}
.y4a{bottom:2016.066667pt;}
.y46{bottom:2060.426667pt;}
.y6{bottom:2067.400000pt;}
.y4c{bottom:2091.573333pt;}
.y4b{bottom:2160.506667pt;}
.y23{bottom:2194.360000pt;}
.y8{bottom:2319.733333pt;}
.y7b{bottom:2335.933333pt;}
.y7d{bottom:2395.840000pt;}
.y82{bottom:2395.906667pt;}
.y7c{bottom:2396.000000pt;}
.y83{bottom:2397.000000pt;}
.y6c{bottom:2446.173333pt;}
.y10{bottom:2471.373333pt;}
.y6d{bottom:2481.840000pt;}
.y81{bottom:2488.573333pt;}
.y6e{bottom:2517.506667pt;}
.y80{bottom:2540.426667pt;}
.yf{bottom:2545.400000pt;}
.y6f{bottom:2553.173333pt;}
.y35{bottom:2565.093333pt;}
.y40{bottom:2570.573333pt;}
.y70{bottom:2588.800000pt;}
.y7e{bottom:2590.600000pt;}
.y3e{bottom:2592.373333pt;}
.y3c{bottom:2593.293333pt;}
.y38{bottom:2621.973333pt;}
.y71{bottom:2624.466667pt;}
.ye{bottom:2637.426667pt;}
.y7f{bottom:2646.466667pt;}
.y72{bottom:2660.133333pt;}
.y36{bottom:2663.093333pt;}
.y41{bottom:2671.506667pt;}
.y73{bottom:2695.760000pt;}
.y3d{bottom:2701.906667pt;}
.yd{bottom:2710.466667pt;}
.y74{bottom:2731.426667pt;}
.y39{bottom:2742.493333pt;}
.y37{bottom:2761.133333pt;}
.y75{bottom:2767.093333pt;}
.y42{bottom:2773.960000pt;}
.yc{bottom:2783.466667pt;}
.y76{bottom:2802.760000pt;}
.y77{bottom:2838.426667pt;}
.y3a{bottom:2846.933333pt;}
.yb{bottom:2857.493333pt;}
.y3f{bottom:2861.160000pt;}
.y78{bottom:2874.066667pt;}
.y43{bottom:2877.960000pt;}
.y79{bottom:2909.733333pt;}
.ya{bottom:2930.493333pt;}
.y3b{bottom:2931.866667pt;}
.y7a{bottom:2945.400000pt;}
.y7{bottom:3018.893333pt;}
.y22{bottom:3026.360000pt;}
.y3{bottom:3174.160000pt;}
.y2{bottom:3249.200000pt;}
.y1{bottom:3333.226667pt;}
.h18{height:139.253906pt;}
.h4{height:155.636719pt;}
.h6{height:155.773242pt;}
.h16{height:158.531250pt;}
.h11{height:159.140625pt;}
.h12{height:159.273242pt;}
.h1a{height:163.828125pt;}
.h1b{height:163.964648pt;}
.hd{height:171.076172pt;}
.he{height:171.208789pt;}
.h7{height:176.115234pt;}
.h15{height:176.251758pt;}
.h17{height:180.222122pt;}
.ha{height:206.882812pt;}
.hb{height:207.015430pt;}
.h19{height:208.593750pt;}
.hc{height:212.976562pt;}
.h10{height:213.113086pt;}
.h13{height:217.072266pt;}
.h1c{height:217.208789pt;}
.h3{height:221.109375pt;}
.hf{height:274.412109pt;}
.h14{height:274.548633pt;}
.h5{height:311.636719pt;}
.h9{height:321.373437pt;}
.h8{height:358.920312pt;}
.h2{height:505.404102pt;}
.h0{height:3455.000000pt;}
.h1{height:3455.333333pt;}
.w2{width:4606.999931pt;}
.w0{width:4607.000000pt;}
.w1{width:4607.333333pt;}
.x0{left:0.000000pt;}
.x8{left:54.833265pt;}
.x9{left:56.133265pt;}
.xb{left:57.299931pt;}
.x10{left:140.399931pt;}
.x11{left:160.399931pt;}
.x1{left:407.573265pt;}
.x12{left:426.973265pt;}
.x13{left:478.866598pt;}
.xc{left:929.559931pt;}
.x3d{left:957.199931pt;}
.xf{left:1059.133265pt;}
.xe{left:1262.333265pt;}
.x3{left:1342.799931pt;}
.x2{left:1571.839931pt;}
.x3f{left:1824.266598pt;}
.x48{left:1844.666598pt;}
.xa{left:1860.439931pt;}
.xd{left:1869.933265pt;}
.x2a{left:1874.466598pt;}
.x2f{left:1887.439931pt;}
.x40{left:1916.506598pt;}
.x41{left:1918.906598pt;}
.x2b{left:1926.506598pt;}
.x30{left:1949.333265pt;}
.x2d{left:1951.133265pt;}
.x5f{left:1958.466598pt;}
.x49{left:1959.893265pt;}
.x43{left:1977.333265pt;}
.x4a{left:1985.599931pt;}
.x2e{left:2001.093265pt;}
.x42{left:2002.093265pt;}
.x45{left:2003.999931pt;}
.x47{left:2036.706598pt;}
.x44{left:2041.093265pt;}
.x4c{left:2050.093265pt;}
.x4b{left:2061.066598pt;}
.x5e{left:2063.466598pt;}
.x46{left:2091.626598pt;}
.x31{left:2116.973265pt;}
.x2c{left:2145.839931pt;}
.x54{left:2199.199931pt;}
.x4d{left:2263.839931pt;}
.x7{left:2266.693265pt;}
.x53{left:2272.933265pt;}
.x3b{left:2364.399931pt;}
.x52{left:2367.666598pt;}
.x51{left:2374.173265pt;}
.x50{left:2434.759931pt;}
.x4f{left:2461.693265pt;}
.x4e{left:2555.199931pt;}
.x17{left:2788.599931pt;}
.x16{left:2818.493265pt;}
.x15{left:2821.359931pt;}
.x14{left:2838.693265pt;}
.x5d{left:2842.466598pt;}
.x5c{left:2846.466598pt;}
.x37{left:2858.733265pt;}
.x25{left:2865.226598pt;}
.x5b{left:2872.466598pt;}
.x34{left:2879.293265pt;}
.x33{left:2899.599931pt;}
.x32{left:2914.493265pt;}
.x24{left:2916.826598pt;}
.x35{left:2924.999931pt;}
.x1d{left:2944.866598pt;}
.x1c{left:3059.293265pt;}
.x23{left:3100.106598pt;}
.x3e{left:3289.333265pt;}
.x26{left:3342.799931pt;}
.x36{left:3381.093265pt;}
.x56{left:3459.426598pt;}
.x55{left:3493.426598pt;}
.x58{left:3525.359931pt;}
.x57{left:3601.466598pt;}
.x3c{left:3642.199931pt;}
.x1b{left:3795.773265pt;}
.x20{left:3819.026598pt;}
.x1f{left:3821.893265pt;}
.x1e{left:3840.666598pt;}
.x29{left:3841.693265pt;}
.x18{left:3939.693265pt;}
.x22{left:3964.466598pt;}
.x21{left:3997.466598pt;}
.x27{left:3998.706598pt;}
.x3a{left:4054.959931pt;}
.x5a{left:4066.599931pt;}
.x39{left:4085.999931pt;}
.x59{left:4121.599931pt;}
.x38{left:4123.399931pt;}
.x5{left:4169.199931pt;}
.x4{left:4179.199931pt;}
.x19{left:4181.799931pt;}
.x60{left:4190.399931pt;}
.x28{left:4200.159931pt;}
.x1a{left:4302.826598pt;}
.x6{left:4376.559931pt;}
}




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