
    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_cf832cd7f135ad3079f1d6cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087000;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_52036f4195ccebf6feebb724.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114000;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_78e224f4963bb0b54def2043.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145000;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_dfd5a461ab6fee04474d6bd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003000;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_65f3e1cf92c122aa5873078c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;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_08e09a032cf53c0cca7b6bb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_71257847fb6a2e7a8789614e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.003810px;}
.ls1{letter-spacing:29.886583px;}
.ls3{letter-spacing:31.377810px;}
.ls2{letter-spacing:31.383810px;}
.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:-62.766000px;}
.ws11{word-spacing:-31.382190px;}
.ws4b{word-spacing:-20.084736px;}
.wsb{word-spacing:-16.737168px;}
.ws48{word-spacing:-2.749678px;}
.wse{word-spacing:-2.510575px;}
.ws54{word-spacing:-1.135736px;}
.ws15{word-spacing:-0.777083px;}
.ws14{word-spacing:-0.717307px;}
.ws30{word-spacing:-0.418429px;}
.ws19{word-spacing:-0.059776px;}
.ws3c{word-spacing:-0.004950px;}
.ws3a{word-spacing:-0.004380px;}
.ws3b{word-spacing:-0.003900px;}
.ws3f{word-spacing:-0.003330px;}
.ws1b{word-spacing:-0.002760px;}
.ws25{word-spacing:-0.002280px;}
.ws35{word-spacing:-0.001230px;}
.ws45{word-spacing:-0.001140px;}
.ws34{word-spacing:-0.000660px;}
.ws22{word-spacing:-0.000570px;}
.wsd{word-spacing:0.000000px;}
.ws29{word-spacing:0.000390px;}
.ws44{word-spacing:0.000960px;}
.ws2a{word-spacing:0.001050px;}
.ws28{word-spacing:0.001530px;}
.ws12{word-spacing:0.001620px;}
.ws37{word-spacing:0.002580px;}
.ws20{word-spacing:0.002670px;}
.ws27{word-spacing:0.003240px;}
.ws23{word-spacing:0.003720px;}
.ws39{word-spacing:0.004200px;}
.ws1f{word-spacing:0.004290px;}
.ws42{word-spacing:0.004680px;}
.ws3d{word-spacing:0.004770px;}
.ws1d{word-spacing:0.004860px;}
.ws41{word-spacing:0.005250px;}
.ws24{word-spacing:0.005430px;}
.ws52{word-spacing:0.657532px;}
.ws2c{word-spacing:1.494390px;}
.ws55{word-spacing:1.554166px;}
.ws47{word-spacing:1.793268px;}
.ws4a{word-spacing:1.853044px;}
.ws56{word-spacing:2.929004px;}
.ws2{word-spacing:3.108331px;}
.ws3{word-spacing:3.168107px;}
.ws7{word-spacing:3.706087px;}
.ws17{word-spacing:3.825638px;}
.ws51{word-spacing:4.602721px;}
.ws53{word-spacing:4.662497px;}
.ws13{word-spacing:6.097111px;}
.wsc{word-spacing:6.156887px;}
.ws10{word-spacing:6.742733px;}
.ws1{word-spacing:6.814464px;}
.ws5{word-spacing:7.053521px;}
.ws6{word-spacing:7.173072px;}
.ws2d{word-spacing:7.591501px;}
.ws4c{word-spacing:8.069706px;}
.ws0{word-spacing:8.177334px;}
.ws31{word-spacing:8.488135px;}
.ws4d{word-spacing:8.607686px;}
.ws8{word-spacing:9.564096px;}
.ws4f{word-spacing:9.922750px;}
.ws4e{word-spacing:10.400954px;}
.wsa{word-spacing:10.520506px;}
.ws50{word-spacing:10.879159px;}
.ws49{word-spacing:11.955120px;}
.ws46{word-spacing:12.074671px;}
.ws9{word-spacing:12.253998px;}
.wsf{word-spacing:12.373549px;}
.ws4{word-spacing:13.149415px;}
.ws26{word-spacing:14.585246px;}
.ws38{word-spacing:14.641692px;}
.ws36{word-spacing:14.642262px;}
.ws1c{word-spacing:14.643882px;}
.ws21{word-spacing:14.644452px;}
.ws1e{word-spacing:14.645022px;}
.ws33{word-spacing:14.645502px;}
.ws40{word-spacing:14.646072px;}
.ws2b{word-spacing:14.647692px;}
.ws1a{word-spacing:14.648262px;}
.ws18{word-spacing:14.649312px;}
.ws32{word-spacing:14.649882px;}
.ws3e{word-spacing:14.650452px;}
.ws16{word-spacing:56.906371px;}
.ws2f{word-spacing:188.296860px;}
.ws2e{word-spacing:407.971050px;}
._2c{margin-left:-31.378740px;}
._38{margin-left:-9.204211px;}
._36{margin-left:-7.770814px;}
._1b{margin-left:-6.671002px;}
._2{margin-left:-4.961375px;}
._9{margin-left:-3.166861px;}
._0{margin-left:-2.151936px;}
._7{margin-left:-1.075946px;}
._18{width:1.016214px;}
._a{width:2.271458px;}
._39{width:5.139442px;}
._19{width:15.960056px;}
._23{width:17.693592px;}
._33{width:19.845514px;}
._25{width:20.862944px;}
._3{width:24.806874px;}
._17{width:26.778238px;}
._6{width:28.453200px;}
._1{width:29.886583px;}
._8{width:31.262639px;}
._2d{width:35.793869px;}
._34{width:36.880278px;}
._4{width:38.674813px;}
._1c{width:40.527886px;}
._24{width:42.321125px;}
._37{width:44.471844px;}
._5{width:45.788110px;}
._35{width:49.675986px;}
._32{width:52.363397px;}
._1a{width:54.156694px;}
._27{width:71.730720px;}
._28{width:103.650905px;}
._20{width:125.528760px;}
._2f{width:164.861119px;}
._2b{width:192.597805px;}
._31{width:206.157956px;}
._22{width:219.679050px;}
._30{width:230.068211px;}
._2a{width:247.232732px;}
._21{width:251.061240px;}
._13{width:289.846034px;}
._1d{width:298.055020px;}
._15{width:362.114720px;}
._26{width:369.653176px;}
._11{width:377.895493px;}
._2e{width:458.709866px;}
._1f{width:465.404734px;}
._1e{width:495.292534px;}
._29{width:504.988759px;}
._f{width:508.983370px;}
._b{width:530.263483px;}
._14{width:539.301923px;}
._c{width:553.289413px;}
._d{width:623.274317px;}
._e{width:635.540639px;}
._12{width:638.589194px;}
._10{width:702.309984px;}
._16{width:833.397875px;}
.fca{color:rgb(25,23,125);}
.fc8{color:rgb(0,128,0);}
.fc7{color:rgb(97,161,176);}
.fc5{color:rgb(0,112,33);}
.fc4{color:rgb(64,112,161);}
.fc3{color:rgb(64,161,112);}
.fc2{color:rgb(143,33,0);}
.fcb{color:transparent;}
.fc1{color:rgb(5,41,125);}
.fc9{color:rgb(125,143,41);}
.fc6{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y25{bottom:134.047500px;}
.y24{bottom:178.879500px;}
.y72{bottom:188.727000px;}
.yed{bottom:196.812000px;}
.ye2{bottom:202.083000px;}
.y4a{bottom:202.258500px;}
.y23{bottom:206.473500px;}
.y71{bottom:206.659500px;}
.yd5{bottom:213.355500px;}
.yec{bottom:214.744500px;}
.ye1{bottom:220.015500px;}
.y49{bottom:220.192500px;}
.y70{bottom:224.593500px;}
.yd4{bottom:231.288000px;}
.yeb{bottom:232.677000px;}
.ye0{bottom:237.949500px;}
.y48{bottom:238.125000px;}
.y90{bottom:243.231000px;}
.yfa{bottom:247.947000px;}
.yd3{bottom:249.220500px;}
.yea{bottom:250.609500px;}
.y6f{bottom:251.491500px;}
.ydf{bottom:255.882000px;}
.y47{bottom:256.057500px;}
.y22{bottom:259.144500px;}
.y8f{bottom:261.165000px;}
.yf9{bottom:265.879500px;}
.yd2{bottom:267.153000px;}
.yb1{bottom:267.679500px;}
.ye9{bottom:268.543500px;}
.y6e{bottom:269.424000px;}
.y46{bottom:273.990000px;}
.y21{bottom:277.077000px;}
.y8e{bottom:279.097500px;}
.yf8{bottom:283.812000px;}
.yd1{bottom:285.085500px;}
.yb0{bottom:285.612000px;}
.ye8{bottom:286.476000px;}
.yde{bottom:291.747000px;}
.y45{bottom:291.922500px;}
.y20{bottom:295.009500px;}
.y6d{bottom:297.018000px;}
.y8d{bottom:297.030000px;}
.yf7{bottom:301.744500px;}
.yaf{bottom:303.544500px;}
.ydd{bottom:309.679500px;}
.y44{bottom:309.855000px;}
.y1f{bottom:312.942000px;}
.yf6{bottom:319.677000px;}
.yd0{bottom:320.952000px;}
.yae{bottom:321.477000px;}
.ye7{bottom:322.341000px;}
.y8c{bottom:324.624000px;}
.ydc{bottom:327.612000px;}
.y43{bottom:327.789000px;}
.y1e{bottom:331.233000px;}
.y6c{bottom:335.884500px;}
.yf5{bottom:337.611000px;}
.ycf{bottom:338.884500px;}
.ye6{bottom:340.273500px;}
.y42{bottom:345.721500px;}
.yad{bottom:346.920000px;}
.y1d{bottom:349.167000px;}
.y8b{bottom:352.218000px;}
.y6b{bottom:353.817000px;}
.ydb{bottom:355.206000px;}
.yce{bottom:356.817000px;}
.ye5{bottom:358.206000px;}
.yf3{bottom:363.054000px;}
.y41{bottom:363.654000px;}
.y1c{bottom:367.099500px;}
.y6a{bottom:371.749500px;}
.ycd{bottom:374.749500px;}
.ye4{bottom:376.140000px;}
.yf2{bottom:380.986500px;}
.y40{bottom:381.586500px;}
.y1b{bottom:385.032000px;}
.yac{bottom:385.792500px;}
.y69{bottom:389.682000px;}
.ycc{bottom:392.682000px;}
.y8a{bottom:394.072500px;}
.yf4{bottom:398.919000px;}
.y3f{bottom:399.519000px;}
.y1a{bottom:402.964500px;}
.y68{bottom:407.614500px;}
.y89{bottom:412.005000px;}
.y3e{bottom:417.451500px;}
.y19{bottom:420.897000px;}
.yab{bottom:424.657500px;}
.y67{bottom:425.548500px;}
.ycb{bottom:428.548500px;}
.yda{bottom:429.937500px;}
.yf1{bottom:432.834000px;}
.y3d{bottom:435.385500px;}
.y18{bottom:438.829500px;}
.yaa{bottom:442.590000px;}
.y66{bottom:443.481000px;}
.yca{bottom:446.481000px;}
.y88{bottom:447.870000px;}
.yf0{bottom:450.766500px;}
.y3c{bottom:453.318000px;}
.y17{bottom:456.763500px;}
.ya9{bottom:460.522500px;}
.y65{bottom:461.413500px;}
.yc9{bottom:464.413500px;}
.y87{bottom:465.802500px;}
.yef{bottom:468.700500px;}
.y16{bottom:474.696000px;}
.ya8{bottom:478.455000px;}
.y64{bottom:479.346000px;}
.y3b{bottom:480.912000px;}
.yc8{bottom:482.346000px;}
.y86{bottom:483.736500px;}
.yee{bottom:496.294500px;}
.y63{bottom:497.278500px;}
.y15{bottom:500.139000px;}
.yc7{bottom:500.278500px;}
.y85{bottom:501.669000px;}
.ya7{bottom:505.354500px;}
.y3a{bottom:508.506000px;}
.y62{bottom:515.211000px;}
.yc6{bottom:518.211000px;}
.y84{bottom:519.601500px;}
.ya6{bottom:523.287000px;}
.y61{bottom:533.145000px;}
.yc5{bottom:536.145000px;}
.yd9{bottom:537.534000px;}
.y14{bottom:538.992000px;}
.ya5{bottom:541.219500px;}
.y39{bottom:550.360500px;}
.y60{bottom:551.077500px;}
.yc4{bottom:554.077500px;}
.y83{bottom:555.466500px;}
.y38{bottom:568.293000px;}
.ya4{bottom:568.813500px;}
.y5f{bottom:569.010000px;}
.yc3{bottom:572.010000px;}
.y82{bottom:573.400500px;}
.y13{bottom:580.563000px;}
.y37{bottom:586.225500px;}
.y5e{bottom:586.942500px;}
.ye3{bottom:591.333000px;}
.y108{bottom:593.614500px;}
.y12{bottom:598.497000px;}
.y36{bottom:604.158000px;}
.y5d{bottom:604.875000px;}
.ya3{bottom:607.680000px;}
.yc2{bottom:607.875000px;}
.y81{bottom:609.265500px;}
.y11{bottom:616.429500px;}
.y35{bottom:622.090500px;}
.y5c{bottom:622.807500px;}
.ya2{bottom:625.612500px;}
.yc1{bottom:625.807500px;}
.y80{bottom:627.198000px;}
.y5b{bottom:640.741500px;}
.y10{bottom:643.329000px;}
.ya1{bottom:643.545000px;}
.yc0{bottom:643.741500px;}
.yd8{bottom:645.130500px;}
.y107{bottom:647.413500px;}
.y34{bottom:649.684500px;}
.yf{bottom:661.261500px;}
.ya0{bottom:661.477500px;}
.ybf{bottom:661.674000px;}
.y7f{bottom:663.063000px;}
.y106{bottom:665.346000px;}
.y5a{bottom:668.335500px;}
.ye{bottom:679.194000px;}
.y9f{bottom:679.410000px;}
.ybe{bottom:679.606500px;}
.y7e{bottom:680.997000px;}
.y33{bottom:688.551000px;}
.y105{bottom:692.245500px;}
.yd{bottom:697.126500px;}
.y9e{bottom:697.344000px;}
.ybd{bottom:697.539000px;}
.y7d{bottom:698.929500px;}
.y32{bottom:706.483500px;}
.y59{bottom:707.200500px;}
.y104{bottom:710.178000px;}
.yc{bottom:715.059000px;}
.y9d{bottom:715.276500px;}
.ybc{bottom:715.471500px;}
.y7c{bottom:716.862000px;}
.y31{bottom:724.416000px;}
.y58{bottom:725.133000px;}
.y103{bottom:728.110500px;}
.y9c{bottom:733.209000px;}
.yd7{bottom:734.794500px;}
.y30{bottom:742.348500px;}
.yb{bottom:742.653000px;}
.y57{bottom:743.065500px;}
.y9b{bottom:751.141500px;}
.ybb{bottom:751.338000px;}
.y7b{bottom:752.727000px;}
.y102{bottom:755.010000px;}
.y2f{bottom:760.281000px;}
.y56{bottom:760.999500px;}
.y9a{bottom:769.074000px;}
.yba{bottom:769.270500px;}
.y7a{bottom:770.659500px;}
.y101{bottom:772.942500px;}
.y55{bottom:778.932000px;}
.ya{bottom:784.224000px;}
.yb9{bottom:787.203000px;}
.y2e{bottom:787.875000px;}
.y79{bottom:788.593500px;}
.y100{bottom:790.875000px;}
.y99{bottom:795.973500px;}
.y54{bottom:796.864500px;}
.y9{bottom:802.158000px;}
.yb8{bottom:805.135500px;}
.y78{bottom:806.526000px;}
.y53{bottom:814.797000px;}
.yff{bottom:817.774500px;}
.y8{bottom:820.090500px;}
.y77{bottom:824.458500px;}
.y2d{bottom:826.741500px;}
.y52{bottom:832.729500px;}
.yfe{bottom:835.707000px;}
.y7{bottom:838.023000px;}
.yb7{bottom:841.002000px;}
.y76{bottom:842.391000px;}
.y2c{bottom:844.674000px;}
.y98{bottom:849.957000px;}
.y51{bottom:850.662000px;}
.y6{bottom:855.955500px;}
.yb6{bottom:858.934500px;}
.y75{bottom:860.323500px;}
.y2b{bottom:862.606500px;}
.y97{bottom:867.889500px;}
.y50{bottom:868.596000px;}
.y5{bottom:873.888000px;}
.yb5{bottom:876.867000px;}
.yd6{bottom:878.256000px;}
.yfd{bottom:880.539000px;}
.y96{bottom:885.822000px;}
.y4f{bottom:886.528500px;}
.y2a{bottom:890.200500px;}
.y4{bottom:891.820500px;}
.yb4{bottom:894.799500px;}
.y74{bottom:896.190000px;}
.yfc{bottom:898.471500px;}
.y95{bottom:903.756000px;}
.y4e{bottom:904.461000px;}
.yb3{bottom:912.732000px;}
.y73{bottom:914.122500px;}
.y3{bottom:919.414500px;}
.y94{bottom:921.688500px;}
.y4d{bottom:922.393500px;}
.yfb{bottom:926.065500px;}
.yb2{bottom:930.664500px;}
.y29{bottom:932.055000px;}
.y93{bottom:939.621000px;}
.y4c{bottom:940.326000px;}
.y28{bottom:949.987500px;}
.y2{bottom:949.998000px;}
.y4b{bottom:958.258500px;}
.y92{bottom:965.064000px;}
.y27{bottom:967.920000px;}
.y91{bottom:982.996500px;}
.y1{bottom:985.734000px;}
.y26{bottom:985.852500px;}
.h8{height:39.810550px;}
.h6{height:41.484266px;}
.h9{height:42.799330px;}
.h5{height:46.266314px;}
.h7{height:46.272314px;}
.h3{height:51.646118px;}
.h4{height:53.499162px;}
.h2{height:63.553843px;}
.h1{height:76.264399px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:200.652000px;}
.x5{left:216.343500px;}
.x2{left:218.914500px;}
.xe{left:230.353500px;}
.x6{left:232.035000px;}
.x13{left:238.012500px;}
.xa{left:247.726500px;}
.x7{left:251.790000px;}
.xf{left:263.416500px;}
.x9{left:269.140500px;}
.x8{left:270.889500px;}
.x10{left:294.799500px;}
.x11{left:326.182500px;}
.x12{left:341.872500px;}
.xb{left:364.734000px;}
.x14{left:450.964500px;}
.x4{left:454.699500px;}
.xc{left:522.952500px;}
.x3{left:603.891000px;}
.xd{left:634.393500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003387pt;}
.ls1{letter-spacing:26.565852pt;}
.ls3{letter-spacing:27.891387pt;}
.ls2{letter-spacing:27.896720pt;}
.ws43{word-spacing:-55.792000pt;}
.ws11{word-spacing:-27.895280pt;}
.ws4b{word-spacing:-17.853099pt;}
.wsb{word-spacing:-14.877483pt;}
.ws48{word-spacing:-2.444158pt;}
.wse{word-spacing:-2.231622pt;}
.ws54{word-spacing:-1.009543pt;}
.ws15{word-spacing:-0.690740pt;}
.ws14{word-spacing:-0.637606pt;}
.ws30{word-spacing:-0.371937pt;}
.ws19{word-spacing:-0.053134pt;}
.ws3c{word-spacing:-0.004400pt;}
.ws3a{word-spacing:-0.003893pt;}
.ws3b{word-spacing:-0.003467pt;}
.ws3f{word-spacing:-0.002960pt;}
.ws1b{word-spacing:-0.002453pt;}
.ws25{word-spacing:-0.002027pt;}
.ws35{word-spacing:-0.001093pt;}
.ws45{word-spacing:-0.001013pt;}
.ws34{word-spacing:-0.000587pt;}
.ws22{word-spacing:-0.000507pt;}
.wsd{word-spacing:0.000000pt;}
.ws29{word-spacing:0.000347pt;}
.ws44{word-spacing:0.000853pt;}
.ws2a{word-spacing:0.000933pt;}
.ws28{word-spacing:0.001360pt;}
.ws12{word-spacing:0.001440pt;}
.ws37{word-spacing:0.002293pt;}
.ws20{word-spacing:0.002373pt;}
.ws27{word-spacing:0.002880pt;}
.ws23{word-spacing:0.003307pt;}
.ws39{word-spacing:0.003733pt;}
.ws1f{word-spacing:0.003813pt;}
.ws42{word-spacing:0.004160pt;}
.ws3d{word-spacing:0.004240pt;}
.ws1d{word-spacing:0.004320pt;}
.ws41{word-spacing:0.004667pt;}
.ws24{word-spacing:0.004827pt;}
.ws52{word-spacing:0.584473pt;}
.ws2c{word-spacing:1.328347pt;}
.ws55{word-spacing:1.381481pt;}
.ws47{word-spacing:1.594016pt;}
.ws4a{word-spacing:1.647150pt;}
.ws56{word-spacing:2.603559pt;}
.ws2{word-spacing:2.762961pt;}
.ws3{word-spacing:2.816095pt;}
.ws7{word-spacing:3.294300pt;}
.ws17{word-spacing:3.400567pt;}
.ws51{word-spacing:4.091308pt;}
.ws53{word-spacing:4.144442pt;}
.ws13{word-spacing:5.419654pt;}
.wsc{word-spacing:5.472788pt;}
.ws10{word-spacing:5.993540pt;}
.ws1{word-spacing:6.057301pt;}
.ws5{word-spacing:6.269796pt;}
.ws6{word-spacing:6.376064pt;}
.ws2d{word-spacing:6.748001pt;}
.ws4c{word-spacing:7.173072pt;}
.ws0{word-spacing:7.268741pt;}
.ws31{word-spacing:7.545009pt;}
.ws4d{word-spacing:7.651277pt;}
.ws8{word-spacing:8.501419pt;}
.ws4f{word-spacing:8.820222pt;}
.ws4e{word-spacing:9.245293pt;}
.wsa{word-spacing:9.351561pt;}
.ws50{word-spacing:9.670364pt;}
.ws49{word-spacing:10.626773pt;}
.ws46{word-spacing:10.733041pt;}
.ws9{word-spacing:10.892443pt;}
.wsf{word-spacing:10.998710pt;}
.ws4{word-spacing:11.688369pt;}
.ws26{word-spacing:12.964663pt;}
.ws38{word-spacing:13.014837pt;}
.ws36{word-spacing:13.015344pt;}
.ws1c{word-spacing:13.016784pt;}
.ws21{word-spacing:13.017291pt;}
.ws1e{word-spacing:13.017797pt;}
.ws33{word-spacing:13.018224pt;}
.ws40{word-spacing:13.018731pt;}
.ws2b{word-spacing:13.020171pt;}
.ws1a{word-spacing:13.020677pt;}
.ws18{word-spacing:13.021611pt;}
.ws32{word-spacing:13.022117pt;}
.ws3e{word-spacing:13.022624pt;}
.ws16{word-spacing:50.583441pt;}
.ws2f{word-spacing:167.374987pt;}
.ws2e{word-spacing:362.640933pt;}
._2c{margin-left:-27.892213pt;}
._38{margin-left:-8.181521pt;}
._36{margin-left:-6.907390pt;}
._1b{margin-left:-5.929779pt;}
._2{margin-left:-4.410111pt;}
._9{margin-left:-2.814988pt;}
._0{margin-left:-1.912832pt;}
._7{margin-left:-0.956397pt;}
._18{width:0.903301pt;}
._a{width:2.019074pt;}
._39{width:4.568393pt;}
._19{width:14.186717pt;}
._23{width:15.727637pt;}
._33{width:17.640457pt;}
._25{width:18.544839pt;}
._3{width:22.050555pt;}
._17{width:23.802878pt;}
._6{width:25.291733pt;}
._1{width:26.565852pt;}
._8{width:27.789012pt;}
._2d{width:31.816772pt;}
._34{width:32.782469pt;}
._4{width:34.377612pt;}
._1c{width:36.024787pt;}
._24{width:37.618778pt;}
._37{width:39.530528pt;}
._5{width:40.700542pt;}
._35{width:44.156432pt;}
._32{width:46.545242pt;}
._1a{width:48.139283pt;}
._27{width:63.760640pt;}
._28{width:92.134138pt;}
._20{width:111.581120pt;}
._2f{width:146.543217pt;}
._2b{width:171.198049pt;}
._31{width:183.251517pt;}
._22{width:195.270267pt;}
._30{width:204.505076pt;}
._2a{width:219.762429pt;}
._21{width:223.165547pt;}
._13{width:257.640919pt;}
._1d{width:264.937795pt;}
._15{width:321.879751pt;}
._26{width:328.580601pt;}
._11{width:335.907105pt;}
._2e{width:407.742103pt;}
._1f{width:413.693097pt;}
._1e{width:440.260030pt;}
._29{width:448.878897pt;}
._f{width:452.429662pt;}
._b{width:471.345318pt;}
._14{width:479.379487pt;}
._c{width:491.812812pt;}
._d{width:554.021615pt;}
._e{width:564.925012pt;}
._12{width:567.634839pt;}
._10{width:624.275541pt;}
._16{width:740.798111pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:119.153333pt;}
.y24{bottom:159.004000pt;}
.y72{bottom:167.757333pt;}
.yed{bottom:174.944000pt;}
.ye2{bottom:179.629333pt;}
.y4a{bottom:179.785333pt;}
.y23{bottom:183.532000pt;}
.y71{bottom:183.697333pt;}
.yd5{bottom:189.649333pt;}
.yec{bottom:190.884000pt;}
.ye1{bottom:195.569333pt;}
.y49{bottom:195.726667pt;}
.y70{bottom:199.638667pt;}
.yd4{bottom:205.589333pt;}
.yeb{bottom:206.824000pt;}
.ye0{bottom:211.510667pt;}
.y48{bottom:211.666667pt;}
.y90{bottom:216.205333pt;}
.yfa{bottom:220.397333pt;}
.yd3{bottom:221.529333pt;}
.yea{bottom:222.764000pt;}
.y6f{bottom:223.548000pt;}
.ydf{bottom:227.450667pt;}
.y47{bottom:227.606667pt;}
.y22{bottom:230.350667pt;}
.y8f{bottom:232.146667pt;}
.yf9{bottom:236.337333pt;}
.yd2{bottom:237.469333pt;}
.yb1{bottom:237.937333pt;}
.ye9{bottom:238.705333pt;}
.y6e{bottom:239.488000pt;}
.y46{bottom:243.546667pt;}
.y21{bottom:246.290667pt;}
.y8e{bottom:248.086667pt;}
.yf8{bottom:252.277333pt;}
.yd1{bottom:253.409333pt;}
.yb0{bottom:253.877333pt;}
.ye8{bottom:254.645333pt;}
.yde{bottom:259.330667pt;}
.y45{bottom:259.486667pt;}
.y20{bottom:262.230667pt;}
.y6d{bottom:264.016000pt;}
.y8d{bottom:264.026667pt;}
.yf7{bottom:268.217333pt;}
.yaf{bottom:269.817333pt;}
.ydd{bottom:275.270667pt;}
.y44{bottom:275.426667pt;}
.y1f{bottom:278.170667pt;}
.yf6{bottom:284.157333pt;}
.yd0{bottom:285.290667pt;}
.yae{bottom:285.757333pt;}
.ye7{bottom:286.525333pt;}
.y8c{bottom:288.554667pt;}
.ydc{bottom:291.210667pt;}
.y43{bottom:291.368000pt;}
.y1e{bottom:294.429333pt;}
.y6c{bottom:298.564000pt;}
.yf5{bottom:300.098667pt;}
.ycf{bottom:301.230667pt;}
.ye6{bottom:302.465333pt;}
.y42{bottom:307.308000pt;}
.yad{bottom:308.373333pt;}
.y1d{bottom:310.370667pt;}
.y8b{bottom:313.082667pt;}
.y6b{bottom:314.504000pt;}
.ydb{bottom:315.738667pt;}
.yce{bottom:317.170667pt;}
.ye5{bottom:318.405333pt;}
.yf3{bottom:322.714667pt;}
.y41{bottom:323.248000pt;}
.y1c{bottom:326.310667pt;}
.y6a{bottom:330.444000pt;}
.ycd{bottom:333.110667pt;}
.ye4{bottom:334.346667pt;}
.yf2{bottom:338.654667pt;}
.y40{bottom:339.188000pt;}
.y1b{bottom:342.250667pt;}
.yac{bottom:342.926667pt;}
.y69{bottom:346.384000pt;}
.ycc{bottom:349.050667pt;}
.y8a{bottom:350.286667pt;}
.yf4{bottom:354.594667pt;}
.y3f{bottom:355.128000pt;}
.y1a{bottom:358.190667pt;}
.y68{bottom:362.324000pt;}
.y89{bottom:366.226667pt;}
.y3e{bottom:371.068000pt;}
.y19{bottom:374.130667pt;}
.yab{bottom:377.473333pt;}
.y67{bottom:378.265333pt;}
.ycb{bottom:380.932000pt;}
.yda{bottom:382.166667pt;}
.yf1{bottom:384.741333pt;}
.y3d{bottom:387.009333pt;}
.y18{bottom:390.070667pt;}
.yaa{bottom:393.413333pt;}
.y66{bottom:394.205333pt;}
.yca{bottom:396.872000pt;}
.y88{bottom:398.106667pt;}
.yf0{bottom:400.681333pt;}
.y3c{bottom:402.949333pt;}
.y17{bottom:406.012000pt;}
.ya9{bottom:409.353333pt;}
.y65{bottom:410.145333pt;}
.yc9{bottom:412.812000pt;}
.y87{bottom:414.046667pt;}
.yef{bottom:416.622667pt;}
.y16{bottom:421.952000pt;}
.ya8{bottom:425.293333pt;}
.y64{bottom:426.085333pt;}
.y3b{bottom:427.477333pt;}
.yc8{bottom:428.752000pt;}
.y86{bottom:429.988000pt;}
.yee{bottom:441.150667pt;}
.y63{bottom:442.025333pt;}
.y15{bottom:444.568000pt;}
.yc7{bottom:444.692000pt;}
.y85{bottom:445.928000pt;}
.ya7{bottom:449.204000pt;}
.y3a{bottom:452.005333pt;}
.y62{bottom:457.965333pt;}
.yc6{bottom:460.632000pt;}
.y84{bottom:461.868000pt;}
.ya6{bottom:465.144000pt;}
.y61{bottom:473.906667pt;}
.yc5{bottom:476.573333pt;}
.yd9{bottom:477.808000pt;}
.y14{bottom:479.104000pt;}
.ya5{bottom:481.084000pt;}
.y39{bottom:489.209333pt;}
.y60{bottom:489.846667pt;}
.yc4{bottom:492.513333pt;}
.y83{bottom:493.748000pt;}
.y38{bottom:505.149333pt;}
.ya4{bottom:505.612000pt;}
.y5f{bottom:505.786667pt;}
.yc3{bottom:508.453333pt;}
.y82{bottom:509.689333pt;}
.y13{bottom:516.056000pt;}
.y37{bottom:521.089333pt;}
.y5e{bottom:521.726667pt;}
.ye3{bottom:525.629333pt;}
.y108{bottom:527.657333pt;}
.y12{bottom:531.997333pt;}
.y36{bottom:537.029333pt;}
.y5d{bottom:537.666667pt;}
.ya3{bottom:540.160000pt;}
.yc2{bottom:540.333333pt;}
.y81{bottom:541.569333pt;}
.y11{bottom:547.937333pt;}
.y35{bottom:552.969333pt;}
.y5c{bottom:553.606667pt;}
.ya2{bottom:556.100000pt;}
.yc1{bottom:556.273333pt;}
.y80{bottom:557.509333pt;}
.y5b{bottom:569.548000pt;}
.y10{bottom:571.848000pt;}
.ya1{bottom:572.040000pt;}
.yc0{bottom:572.214667pt;}
.yd8{bottom:573.449333pt;}
.y107{bottom:575.478667pt;}
.y34{bottom:577.497333pt;}
.yf{bottom:587.788000pt;}
.ya0{bottom:587.980000pt;}
.ybf{bottom:588.154667pt;}
.y7f{bottom:589.389333pt;}
.y106{bottom:591.418667pt;}
.y5a{bottom:594.076000pt;}
.ye{bottom:603.728000pt;}
.y9f{bottom:603.920000pt;}
.ybe{bottom:604.094667pt;}
.y7e{bottom:605.330667pt;}
.y33{bottom:612.045333pt;}
.y105{bottom:615.329333pt;}
.yd{bottom:619.668000pt;}
.y9e{bottom:619.861333pt;}
.ybd{bottom:620.034667pt;}
.y7d{bottom:621.270667pt;}
.y32{bottom:627.985333pt;}
.y59{bottom:628.622667pt;}
.y104{bottom:631.269333pt;}
.yc{bottom:635.608000pt;}
.y9d{bottom:635.801333pt;}
.ybc{bottom:635.974667pt;}
.y7c{bottom:637.210667pt;}
.y31{bottom:643.925333pt;}
.y58{bottom:644.562667pt;}
.y103{bottom:647.209333pt;}
.y9c{bottom:651.741333pt;}
.yd7{bottom:653.150667pt;}
.y30{bottom:659.865333pt;}
.yb{bottom:660.136000pt;}
.y57{bottom:660.502667pt;}
.y9b{bottom:667.681333pt;}
.ybb{bottom:667.856000pt;}
.y7b{bottom:669.090667pt;}
.y102{bottom:671.120000pt;}
.y2f{bottom:675.805333pt;}
.y56{bottom:676.444000pt;}
.y9a{bottom:683.621333pt;}
.yba{bottom:683.796000pt;}
.y7a{bottom:685.030667pt;}
.y101{bottom:687.060000pt;}
.y55{bottom:692.384000pt;}
.ya{bottom:697.088000pt;}
.yb9{bottom:699.736000pt;}
.y2e{bottom:700.333333pt;}
.y79{bottom:700.972000pt;}
.y100{bottom:703.000000pt;}
.y99{bottom:707.532000pt;}
.y54{bottom:708.324000pt;}
.y9{bottom:713.029333pt;}
.yb8{bottom:715.676000pt;}
.y78{bottom:716.912000pt;}
.y53{bottom:724.264000pt;}
.yff{bottom:726.910667pt;}
.y8{bottom:728.969333pt;}
.y77{bottom:732.852000pt;}
.y2d{bottom:734.881333pt;}
.y52{bottom:740.204000pt;}
.yfe{bottom:742.850667pt;}
.y7{bottom:744.909333pt;}
.yb7{bottom:747.557333pt;}
.y76{bottom:748.792000pt;}
.y2c{bottom:750.821333pt;}
.y98{bottom:755.517333pt;}
.y51{bottom:756.144000pt;}
.y6{bottom:760.849333pt;}
.yb6{bottom:763.497333pt;}
.y75{bottom:764.732000pt;}
.y2b{bottom:766.761333pt;}
.y97{bottom:771.457333pt;}
.y50{bottom:772.085333pt;}
.y5{bottom:776.789333pt;}
.yb5{bottom:779.437333pt;}
.yd6{bottom:780.672000pt;}
.yfd{bottom:782.701333pt;}
.y96{bottom:787.397333pt;}
.y4f{bottom:788.025333pt;}
.y2a{bottom:791.289333pt;}
.y4{bottom:792.729333pt;}
.yb4{bottom:795.377333pt;}
.y74{bottom:796.613333pt;}
.yfc{bottom:798.641333pt;}
.y95{bottom:803.338667pt;}
.y4e{bottom:803.965333pt;}
.yb3{bottom:811.317333pt;}
.y73{bottom:812.553333pt;}
.y3{bottom:817.257333pt;}
.y94{bottom:819.278667pt;}
.y4d{bottom:819.905333pt;}
.yfb{bottom:823.169333pt;}
.yb2{bottom:827.257333pt;}
.y29{bottom:828.493333pt;}
.y93{bottom:835.218667pt;}
.y4c{bottom:835.845333pt;}
.y28{bottom:844.433333pt;}
.y2{bottom:844.442667pt;}
.y4b{bottom:851.785333pt;}
.y92{bottom:857.834667pt;}
.y27{bottom:860.373333pt;}
.y91{bottom:873.774667pt;}
.y1{bottom:876.208000pt;}
.y26{bottom:876.313333pt;}
.h8{height:35.387155pt;}
.h6{height:36.874903pt;}
.h9{height:38.043849pt;}
.h5{height:41.125613pt;}
.h7{height:41.130946pt;}
.h3{height:45.907661pt;}
.h4{height:47.554811pt;}
.h2{height:56.492305pt;}
.h1{height:67.790577pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:178.357333pt;}
.x5{left:192.305333pt;}
.x2{left:194.590667pt;}
.xe{left:204.758667pt;}
.x6{left:206.253333pt;}
.x13{left:211.566667pt;}
.xa{left:220.201333pt;}
.x7{left:223.813333pt;}
.xf{left:234.148000pt;}
.x9{left:239.236000pt;}
.x8{left:240.790667pt;}
.x10{left:262.044000pt;}
.x11{left:289.940000pt;}
.x12{left:303.886667pt;}
.xb{left:324.208000pt;}
.x14{left:400.857333pt;}
.x4{left:404.177333pt;}
.xc{left:464.846667pt;}
.x3{left:536.792000pt;}
.xd{left:563.905333pt;}
}




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