
    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_adc31d94ba8c5a7a1bd5d93e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_40f3c74c1d86632462003c00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_75897f890364fedf1bfb0574.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_074017a70a5b178100153101.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_7cb1e9c1d3e020dfcc323579.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_3261b6f666abbbd6b7ffd9c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_63b22452e29b48ff0ac33499.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3b565587c2ae449ef698a792.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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_6156d0fbc7b49ff9d652f2c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f7741120ce02e08767ae4ef6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_a83c40e9a97e193876da7dbf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8b08003942da30e2ac2774ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.706000;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;}
.v1{vertical-align:35.999994px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.095250px;}
.lsa{letter-spacing:0.144004px;}
.ls8{letter-spacing:0.192006px;}
.lsc{letter-spacing:0.288009px;}
.ls0{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.872130px;}
.ls10{letter-spacing:0.923432px;}
.lse{letter-spacing:1.296040px;}
.ls9{letter-spacing:1.344041px;}
.lsb{letter-spacing:1.392042px;}
.ls7{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.728000px;}
.lsd{letter-spacing:2.160066px;}
.ls4{letter-spacing:4.644000px;}
.ls3{letter-spacing:9.366000px;}
.lsf{letter-spacing:58.811202px;}
.ls5{letter-spacing:915.569000px;}
.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;}
}
.ws7{word-spacing:-62.639646px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws8{word-spacing:-16.254000px;}
.ws3{word-spacing:-14.958000px;}
.wsc{word-spacing:-14.210587px;}
.ws9{word-spacing:-13.711500px;}
.wsb{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:-10.508889px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:100.930366px;}
.ws4{word-spacing:213.012000px;}
.wsd{word-spacing:875.247770px;}
._13{margin-left:-10.483439px;}
._5{margin-left:-8.629365px;}
._18{margin-left:-7.002176px;}
._3{margin-left:-5.994000px;}
._8{margin-left:-3.450502px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.855674px;}
._d{width:5.180836px;}
._a{width:6.642000px;}
._c{width:7.932151px;}
._9{width:9.090075px;}
._b{width:10.518328px;}
._e{width:12.041763px;}
._f{width:13.140167px;}
._11{width:16.428220px;}
._7{width:18.396355px;}
._19{width:19.426114px;}
._10{width:21.087563px;}
._15{width:22.740081px;}
._17{width:45.727483px;}
._1a{width:58.801793px;}
._16{width:89.990827px;}
._14{width:115.434000px;}
._12{width:256.707800px;}
._1b{width:1169.381223px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:49.500000px;}
.fsa{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y120{bottom:4.529297px;}
.y11f{bottom:22.482406px;}
.y11e{bottom:40.435533px;}
.y1e{bottom:46.734370px;}
.y11d{bottom:58.394521px;}
.y1d{bottom:59.015622px;}
.y1c{bottom:71.302734px;}
.y11c{bottom:76.347648px;}
.y1f{bottom:84.868500px;}
.yaa{bottom:87.662108px;}
.y45{bottom:89.636708px;}
.yb9{bottom:91.213500px;}
.y108{bottom:93.562492px;}
.y8d{bottom:93.639000px;}
.yb7{bottom:94.031253px;}
.y11b{bottom:94.300775px;}
.y8c{bottom:95.355458px;}
.ye1{bottom:95.982400px;}
.ya1{bottom:98.402301px;}
.ya9{bottom:104.460940px;}
.y44{bottom:108.533198px;}
.y107{bottom:111.521480px;}
.y11a{bottom:112.259764px;}
.yb8{bottom:114.205079px;}
.y8b{bottom:114.257807px;}
.ye0{bottom:114.878890px;}
.yb6{bottom:115.330078px;}
.ya0{bottom:117.304650px;}
.yab{bottom:124.634766px;}
.ya8{bottom:125.759766px;}
.y43{bottom:127.435547px;}
.y119{bottom:130.212891px;}
.y106{bottom:130.570310px;}
.y8a{bottom:133.154189px;}
.ydf{bottom:133.781240px;}
.y9f{bottom:136.206999px;}
.y118{bottom:148.165976px;}
.y105{bottom:148.523437px;}
.yde{bottom:152.677729px;}
.y9e{bottom:155.103489px;}
.y42{bottom:158.091797px;}
.y89{bottom:165.556538px;}
.y117{bottom:166.119103px;}
.y104{bottom:166.476563px;}
.ydd{bottom:171.580062px;}
.y9d{bottom:174.005838px;}
.y116{bottom:184.078092px;}
.y103{bottom:184.435544px;}
.y88{bottom:184.458886px;}
.ydc{bottom:190.482411px;}
.y1a{bottom:190.886697px;}
.y9c{bottom:192.902328px;}
.y115{bottom:202.031219px;}
.y102{bottom:202.388672px;}
.y87{bottom:203.355377px;}
.ydb{bottom:209.378901px;}
.y19{bottom:209.783187px;}
.y9b{bottom:211.804677px;}
.y41{bottom:213.703082px;}
.y114{bottom:219.984346px;}
.y101{bottom:220.341791px;}
.y86{bottom:222.257726px;}
.yda{bottom:228.281250px;}
.y18{bottom:228.685536px;}
.y9a{bottom:230.707026px;}
.yaf{bottom:230.899734px;}
.y63{bottom:231.468744px;}
.y40{bottom:232.599572px;}
.y113{bottom:237.943334px;}
.y100{bottom:238.300780px;}
.y85{bottom:241.154216px;}
.yd9{bottom:247.177702px;}
.y17{bottom:247.587885px;}
.y99{bottom:249.603495px;}
.y62{bottom:250.365224px;}
.y3f{bottom:251.501921px;}
.yad{bottom:254.284734px;}
.y112{bottom:255.896462px;}
.yff{bottom:256.253907px;}
.y84{bottom:260.056565px;}
.yd8{bottom:266.080052px;}
.y16{bottom:266.484375px;}
.y61{bottom:269.267572px;}
.y3e{bottom:270.398411px;}
.y111{bottom:273.849589px;}
.yfe{bottom:274.207028px;}
.y83{bottom:278.958914px;}
.yd7{bottom:284.982400px;}
.y60{bottom:288.164046px;}
.y3d{bottom:289.300760px;}
.ya3{bottom:291.597661px;}
.y110{bottom:291.808577px;}
.yfd{bottom:292.166016px;}
.y82{bottom:297.855404px;}
.yd6{bottom:303.878890px;}
.y15{bottom:304.365234px;}
.y5f{bottom:307.066395px;}
.y3c{bottom:308.203109px;}
.y10f{bottom:309.761704px;}
.ya4{bottom:311.777343px;}
.ya2{bottom:312.902343px;}
.y81{bottom:316.757753px;}
.yd5{bottom:322.781239px;}
.y5e{bottom:325.968744px;}
.y3b{bottom:327.099599px;}
.y10e{bottom:327.714831px;}
.yfc{bottom:329.671875px;}
.y80{bottom:335.654243px;}
.yd4{bottom:341.677729px;}
.y5d{bottom:344.865223px;}
.y10d{bottom:345.673820px;}
.y3a{bottom:346.001948px;}
.y7f{bottom:354.556592px;}
.y14{bottom:355.857400px;}
.yd3{bottom:360.580046px;}
.y10c{bottom:363.626947px;}
.y5c{bottom:363.767572px;}
.y39{bottom:364.898367px;}
.y7e{bottom:373.458941px;}
.y13{bottom:374.753890px;}
.yd2{bottom:379.482395px;}
.y10b{bottom:381.580074px;}
.y5b{bottom:382.664058px;}
.y38{bottom:383.800716px;}
.yfb{bottom:385.283160px;}
.y7d{bottom:392.355431px;}
.y12{bottom:393.656239px;}
.yd1{bottom:398.378885px;}
.y10a{bottom:399.539062px;}
.y37{bottom:402.703065px;}
.yfa{bottom:404.179650px;}
.y7c{bottom:411.257780px;}
.y5a{bottom:412.207026px;}
.y11{bottom:412.552729px;}
.y36{bottom:421.599555px;}
.yf9{bottom:423.081999px;}
.yd0{bottom:427.921853px;}
.y7b{bottom:430.154270px;}
.y10{bottom:431.455078px;}
.yf8{bottom:441.984348px;}
.y7a{bottom:449.056619px;}
.y59{bottom:452.191380px;}
.y35{bottom:454.001904px;}
.yf7{bottom:460.880838px;}
.ycf{bottom:467.906234px;}
.y79{bottom:467.958968px;}
.yf{bottom:469.335938px;}
.y58{bottom:471.093729px;}
.y34{bottom:472.898394px;}
.yf6{bottom:479.783187px;}
.y78{bottom:486.855458px;}
.y57{bottom:489.990219px;}
.y33{bottom:491.800743px;}
.yce{bottom:497.449202px;}
.yf5{bottom:498.679677px;}
.y77{bottom:505.757807px;}
.y56{bottom:508.892568px;}
.ye{bottom:509.091796px;}
.y32{bottom:510.703092px;}
.yf4{bottom:517.582026px;}
.y109{bottom:522.000000px;}
.y76{bottom:524.654298px;}
.y55{bottom:527.789058px;}
.y31{bottom:529.599582px;}
.yf3{bottom:536.484375px;}
.ycd{bottom:537.427724px;}
.y30{bottom:548.501931px;}
.y75{bottom:554.197266px;}
.ycc{bottom:556.330073px;}
.y54{bottom:557.332026px;}
.yf2{bottom:567.140625px;}
.y2f{bottom:567.398421px;}
.yd{bottom:578.191407px;}
.yb5{bottom:581.724609px;}
.yb3{bottom:583.974611px;}
.ycb{bottom:585.873041px;}
.y2e{bottom:586.300770px;}
.y74{bottom:593.654297px;}
.y53{bottom:597.316401px;}
.yb4{bottom:598.529297px;}
.ya6{bottom:598.904302px;}
.yc{bottom:599.490223px;}
.yb2{bottom:600.779299px;}
.y2d{bottom:605.203119px;}
.y73{bottom:610.453125px;}
.yb{bottom:616.289049px;}
.ya7{bottom:619.083984px;}
.ya5{bottom:620.208984px;}
.yb1{bottom:622.078128px;}
.y2c{bottom:624.099599px;}
.yca{bottom:625.857417px;}
.y72{bottom:627.251954px;}
.y52{bottom:629.718750px;}
.yef{bottom:630.691422px;}
.ya{bottom:637.587882px;}
.yf1{bottom:639.691420px;}
.y2b{bottom:643.001948px;}
.yb0{bottom:643.376953px;}
.y71{bottom:644.050782px;}
.yc9{bottom:644.753901px;}
.yed{bottom:648.691419px;}
.yf0{bottom:657.691417px;}
.y9{bottom:658.892574px;}
.y51{bottom:659.255859px;}
.y70{bottom:660.849609px;}
.y2a{bottom:661.898416px;}
.yc8{bottom:663.656244px;}
.yac{bottom:665.080500px;}
.yee{bottom:666.691416px;}
.y6f{bottom:677.654296px;}
.y8{bottom:680.191407px;}
.y29{bottom:680.800765px;}
.yc7{bottom:682.552729px;}
.yae{bottom:688.465500px;}
.y24{bottom:690.432276px;}
.y6e{bottom:694.980468px;}
.yeb{bottom:699.316415px;}
.y28{bottom:699.703114px;}
.y50{bottom:699.820312px;}
.yc6{bottom:701.455079px;}
.yea{bottom:708.316413px;}
.y23{bottom:709.334625px;}
.y94{bottom:713.788703px;}
.yec{bottom:717.316412px;}
.y27{bottom:718.599604px;}
.yc5{bottom:720.357417px;}
.y6d{bottom:725.349609px;}
.y7{bottom:730.441407px;}
.y93{bottom:732.691052px;}
.y4f{bottom:732.919921px;}
.y26{bottom:737.501948px;}
.yc4{bottom:739.253901px;}
.y22{bottom:739.985016px;}
.y6c{bottom:742.154296px;}
.ye9{bottom:749.941411px;}
.y98{bottom:750.732405px;}
.y6{bottom:751.400391px;}
.y92{bottom:751.593401px;}
.y1b{bottom:755.900391px;}
.y25{bottom:756.398438px;}
.yc3{bottom:758.156244px;}
.y6b{bottom:758.953125px;}
.y97{bottom:769.628895px;}
.y91{bottom:770.489891px;}
.y6a{bottom:775.751953px;}
.yc2{bottom:777.052719px;}
.ye6{bottom:782.566410px;}
.y4e{bottom:788.531217px;}
.y96{bottom:788.531244px;}
.y90{bottom:789.392240px;}
.ye8{bottom:791.566409px;}
.y69{bottom:792.550782px;}
.y5{bottom:793.710931px;}
.y21{bottom:795.596343px;}
.yc1{bottom:795.955068px;}
.ybb{bottom:799.241579px;}
.ye4{bottom:800.566407px;}
.y4d{bottom:807.427707px;}
.y95{bottom:807.427734px;}
.y8f{bottom:808.288730px;}
.y68{bottom:809.349609px;}
.ye7{bottom:809.566405px;}
.yc0{bottom:814.857417px;}
.ye5{bottom:818.566404px;}
.y20{bottom:826.252593px;}
.y4c{bottom:826.330056px;}
.y67{bottom:826.681644px;}
.y8e{bottom:827.191079px;}
.yba{bottom:828.784547px;}
.y4{bottom:831.269532px;}
.ybf{bottom:833.753891px;}
.y4b{bottom:845.232405px;}
.ybe{bottom:852.656239px;}
.y66{bottom:856.675782px;}
.ye3{bottom:861.708984px;}
.y4a{bottom:864.128895px;}
.ybd{bottom:871.552729px;}
.y49{bottom:883.031244px;}
.y65{bottom:887.707032px;}
.ybc{bottom:890.455079px;}
.y3{bottom:899.378907px;}
.y48{bottom:901.927730px;}
.ye2{bottom:911.121093px;}
.y64{bottom:918.386718px;}
.y47{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y46{bottom:974.730470px;}
.ha{height:26.244141px;}
.h6{height:27.557629px;}
.hb{height:28.048904px;}
.h1{height:30.617097px;}
.h7{height:30.617142px;}
.h18{height:31.993163px;}
.h1b{height:34.946378px;}
.h5{height:34.993255px;}
.hf{height:35.617086px;}
.h14{height:36.085693px;}
.h22{height:37.399182px;}
.h25{height:37.399246px;}
.h24{height:37.399342px;}
.h15{height:39.313477px;}
.h2{height:39.366211px;}
.h1d{height:39.366271px;}
.h13{height:39.366277px;}
.hd{height:39.366295px;}
.h12{height:39.366319px;}
.h1f{height:39.366337px;}
.h1e{height:39.366343px;}
.he{height:39.366493px;}
.h16{height:39.366643px;}
.h11{height:40.341797px;}
.h20{height:40.535623px;}
.h9{height:46.796220px;}
.h10{height:48.050236px;}
.h8{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h21{height:70.993249px;}
.h1a{height:245.373000px;}
.h19{height:268.758000px;}
.h23{height:412.963500px;}
.h17{height:841.324500px;}
.h1c{height:843.750000px;}
.hc{height:850.095000px;}
.h0{height:1020.000000px;}
.w2{width:256.500000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x11{left:9.563109px;}
.x19{left:11.584593px;}
.xc{left:22.500609px;}
.x1a{left:45.000609px;}
.x3{left:78.662109px;}
.x16{left:86.537109px;}
.x9{left:90.474609px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x7{left:101.162109px;}
.x10{left:102.286500px;}
.xa{left:107.537109px;}
.xe{left:109.037109px;}
.x18{left:123.662109px;}
.x6{left:127.037109px;}
.x1{left:140.308593px;}
.xb{left:146.162109px;}
.x8{left:149.414062px;}
.xf{left:160.787109px;}
.x13{left:209.162109px;}
.x14{left:217.037109px;}
.x2{left:277.664062px;}
.x12{left:361.036500px;}
.x17{left:535.089837px;}
.xd{left:580.161621px;}
.x15{left:595.910157px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.999995pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.084667pt;}
.lsa{letter-spacing:0.128004pt;}
.ls8{letter-spacing:0.170672pt;}
.lsc{letter-spacing:0.256008pt;}
.ls0{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.775227pt;}
.ls10{letter-spacing:0.820828pt;}
.lse{letter-spacing:1.152035pt;}
.ls9{letter-spacing:1.194703pt;}
.lsb{letter-spacing:1.237371pt;}
.ls7{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.536000pt;}
.lsd{letter-spacing:1.920059pt;}
.ls4{letter-spacing:4.128000pt;}
.ls3{letter-spacing:8.325333pt;}
.lsf{letter-spacing:52.276624pt;}
.ls5{letter-spacing:813.839111pt;}
.ws7{word-spacing:-55.679685pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws8{word-spacing:-14.448000pt;}
.ws3{word-spacing:-13.296000pt;}
.wsc{word-spacing:-12.631633pt;}
.ws9{word-spacing:-12.188000pt;}
.wsb{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:-9.341234pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:89.715881pt;}
.ws4{word-spacing:189.344000pt;}
.wsd{word-spacing:777.998018pt;}
._13{margin-left:-9.318613pt;}
._5{margin-left:-7.670547pt;}
._18{margin-left:-6.224156pt;}
._3{margin-left:-5.328000pt;}
._8{margin-left:-3.067113pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.427266pt;}
._d{width:4.605187pt;}
._a{width:5.904000pt;}
._c{width:7.050801pt;}
._9{width:8.080066pt;}
._b{width:9.349625pt;}
._e{width:10.703789pt;}
._f{width:11.680148pt;}
._11{width:14.602862pt;}
._7{width:16.352315pt;}
._19{width:17.267657pt;}
._10{width:18.744500pt;}
._15{width:20.213406pt;}
._17{width:40.646652pt;}
._1a{width:52.268261pt;}
._16{width:79.991846pt;}
._14{width:102.608000pt;}
._12{width:228.184711pt;}
._1b{width:1039.449976pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:44.000000pt;}
.fsa{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:4.026041pt;}
.y11f{bottom:19.984360pt;}
.y11e{bottom:35.942696pt;}
.y1e{bottom:41.541662pt;}
.y11d{bottom:51.906241pt;}
.y1d{bottom:52.458331pt;}
.y1c{bottom:63.380208pt;}
.y11c{bottom:67.864576pt;}
.y1f{bottom:75.438667pt;}
.yaa{bottom:77.921874pt;}
.y45{bottom:79.677073pt;}
.yb9{bottom:81.078667pt;}
.y108{bottom:83.166659pt;}
.y8d{bottom:83.234667pt;}
.yb7{bottom:83.583336pt;}
.y11b{bottom:83.822912pt;}
.y8c{bottom:84.760407pt;}
.ye1{bottom:85.317689pt;}
.ya1{bottom:87.468712pt;}
.ya9{bottom:92.854169pt;}
.y44{bottom:96.473953pt;}
.y107{bottom:99.130205pt;}
.y11a{bottom:99.786457pt;}
.yb8{bottom:101.515625pt;}
.y8b{bottom:101.562495pt;}
.ye0{bottom:102.114569pt;}
.yb6{bottom:102.515625pt;}
.ya0{bottom:104.270800pt;}
.yab{bottom:110.786459pt;}
.ya8{bottom:111.786459pt;}
.y43{bottom:113.276041pt;}
.y119{bottom:115.744792pt;}
.y106{bottom:116.062498pt;}
.y8a{bottom:118.359279pt;}
.ydf{bottom:118.916657pt;}
.y9f{bottom:121.072888pt;}
.y118{bottom:131.703090pt;}
.y105{bottom:132.020833pt;}
.yde{bottom:135.713537pt;}
.y9e{bottom:137.869768pt;}
.y42{bottom:140.526041pt;}
.y89{bottom:147.161367pt;}
.y117{bottom:147.661425pt;}
.y104{bottom:147.979167pt;}
.ydd{bottom:152.515611pt;}
.y9d{bottom:154.671856pt;}
.y116{bottom:163.624970pt;}
.y103{bottom:163.942706pt;}
.y88{bottom:163.963455pt;}
.ydc{bottom:169.317699pt;}
.y1a{bottom:169.677064pt;}
.y9c{bottom:171.468736pt;}
.y115{bottom:179.583306pt;}
.y102{bottom:179.901041pt;}
.y87{bottom:180.760335pt;}
.ydb{bottom:186.114579pt;}
.y19{bottom:186.473944pt;}
.y9b{bottom:188.270824pt;}
.y41{bottom:189.958295pt;}
.y114{bottom:195.541641pt;}
.y101{bottom:195.859370pt;}
.y86{bottom:197.562423pt;}
.yda{bottom:202.916667pt;}
.y18{bottom:203.276032pt;}
.y9a{bottom:205.072912pt;}
.yaf{bottom:205.244208pt;}
.y63{bottom:205.749995pt;}
.y40{bottom:206.755175pt;}
.y113{bottom:211.505186pt;}
.y100{bottom:211.822915pt;}
.y85{bottom:214.359303pt;}
.yd9{bottom:219.713513pt;}
.y17{bottom:220.078120pt;}
.y99{bottom:221.869773pt;}
.y62{bottom:222.546865pt;}
.y3f{bottom:223.557263pt;}
.yad{bottom:226.030875pt;}
.y112{bottom:227.463521pt;}
.yff{bottom:227.781251pt;}
.y84{bottom:231.161391pt;}
.yd8{bottom:236.515601pt;}
.y16{bottom:236.875000pt;}
.y61{bottom:239.348953pt;}
.y3e{bottom:240.354143pt;}
.y111{bottom:243.421857pt;}
.yfe{bottom:243.739580pt;}
.y83{bottom:247.963479pt;}
.yd7{bottom:253.317689pt;}
.y60{bottom:256.145819pt;}
.y3d{bottom:257.156231pt;}
.ya3{bottom:259.197921pt;}
.y110{bottom:259.385402pt;}
.yfd{bottom:259.703125pt;}
.y82{bottom:264.760359pt;}
.yd6{bottom:270.114569pt;}
.y15{bottom:270.546875pt;}
.y5f{bottom:272.947907pt;}
.y3c{bottom:273.958319pt;}
.y10f{bottom:275.343737pt;}
.ya4{bottom:277.135416pt;}
.ya2{bottom:278.135416pt;}
.y81{bottom:281.562447pt;}
.yd5{bottom:286.916657pt;}
.y5e{bottom:289.749995pt;}
.y3b{bottom:290.755199pt;}
.y10e{bottom:291.302072pt;}
.yfc{bottom:293.041667pt;}
.y80{bottom:298.359327pt;}
.yd4{bottom:303.713537pt;}
.y5d{bottom:306.546865pt;}
.y10d{bottom:307.265618pt;}
.y3a{bottom:307.557287pt;}
.y7f{bottom:315.161415pt;}
.y14{bottom:316.317689pt;}
.yd3{bottom:320.515596pt;}
.y10c{bottom:323.223953pt;}
.y5c{bottom:323.348953pt;}
.y39{bottom:324.354104pt;}
.y7e{bottom:331.963503pt;}
.y13{bottom:333.114569pt;}
.yd2{bottom:337.317684pt;}
.y10b{bottom:339.182288pt;}
.y5b{bottom:340.145829pt;}
.y38{bottom:341.156192pt;}
.yfb{bottom:342.473920pt;}
.y7d{bottom:348.760383pt;}
.y12{bottom:349.916657pt;}
.yd1{bottom:354.114564pt;}
.y10a{bottom:355.145833pt;}
.y37{bottom:357.958280pt;}
.yfa{bottom:359.270800pt;}
.y7c{bottom:365.562471pt;}
.y5a{bottom:366.406245pt;}
.y11{bottom:366.713537pt;}
.y36{bottom:374.755160pt;}
.yf9{bottom:376.072888pt;}
.yd0{bottom:380.374980pt;}
.y7b{bottom:382.359351pt;}
.y10{bottom:383.515625pt;}
.yf8{bottom:392.874976pt;}
.y7a{bottom:399.161439pt;}
.y59{bottom:401.947893pt;}
.y35{bottom:403.557248pt;}
.yf7{bottom:409.671856pt;}
.ycf{bottom:415.916652pt;}
.y79{bottom:415.963527pt;}
.yf{bottom:417.187500pt;}
.y58{bottom:418.749981pt;}
.y34{bottom:420.354128pt;}
.yf6{bottom:426.473944pt;}
.y78{bottom:432.760407pt;}
.y57{bottom:435.546861pt;}
.y33{bottom:437.156216pt;}
.yce{bottom:442.177068pt;}
.yf5{bottom:443.270824pt;}
.y77{bottom:449.562495pt;}
.y56{bottom:452.348949pt;}
.ye{bottom:452.526041pt;}
.y32{bottom:453.958304pt;}
.yf4{bottom:460.072912pt;}
.y109{bottom:464.000000pt;}
.y76{bottom:466.359376pt;}
.y55{bottom:469.145829pt;}
.y31{bottom:470.755184pt;}
.yf3{bottom:476.875000pt;}
.ycd{bottom:477.713532pt;}
.y30{bottom:487.557272pt;}
.y75{bottom:492.619792pt;}
.ycc{bottom:494.515620pt;}
.y54{bottom:495.406245pt;}
.yf2{bottom:504.125000pt;}
.y2f{bottom:504.354152pt;}
.yd{bottom:513.947917pt;}
.yb5{bottom:517.088541pt;}
.yb3{bottom:519.088543pt;}
.ycb{bottom:520.776036pt;}
.y2e{bottom:521.156240pt;}
.y74{bottom:527.692708pt;}
.y53{bottom:530.947912pt;}
.yb4{bottom:532.026041pt;}
.ya6{bottom:532.359380pt;}
.yc{bottom:532.880198pt;}
.yb2{bottom:534.026044pt;}
.y2d{bottom:537.958328pt;}
.y73{bottom:542.625000pt;}
.yb{bottom:547.812488pt;}
.ya7{bottom:550.296875pt;}
.ya5{bottom:551.296875pt;}
.yb1{bottom:552.958336pt;}
.y2c{bottom:554.755199pt;}
.yca{bottom:556.317704pt;}
.y72{bottom:557.557292pt;}
.y52{bottom:559.750000pt;}
.yef{bottom:560.614597pt;}
.ya{bottom:566.744784pt;}
.yf1{bottom:568.614596pt;}
.y2b{bottom:571.557287pt;}
.yb0{bottom:571.890625pt;}
.y71{bottom:572.489584pt;}
.yc9{bottom:573.114579pt;}
.yed{bottom:576.614595pt;}
.yf0{bottom:584.614593pt;}
.y9{bottom:585.682288pt;}
.y51{bottom:586.005208pt;}
.y70{bottom:587.421875pt;}
.y2a{bottom:588.354148pt;}
.yc8{bottom:589.916661pt;}
.yac{bottom:591.182667pt;}
.yee{bottom:592.614592pt;}
.y6f{bottom:602.359375pt;}
.y8{bottom:604.614584pt;}
.y29{bottom:605.156236pt;}
.yc7{bottom:606.713537pt;}
.yae{bottom:611.969333pt;}
.y24{bottom:613.717579pt;}
.y6e{bottom:617.760416pt;}
.yeb{bottom:621.614591pt;}
.y28{bottom:621.958324pt;}
.y50{bottom:622.062500pt;}
.yc6{bottom:623.515625pt;}
.yea{bottom:629.614590pt;}
.y23{bottom:630.519667pt;}
.y94{bottom:634.478847pt;}
.yec{bottom:637.614588pt;}
.y27{bottom:638.755204pt;}
.yc5{bottom:640.317704pt;}
.y6d{bottom:644.755208pt;}
.y7{bottom:649.281251pt;}
.y93{bottom:651.280935pt;}
.y4f{bottom:651.484375pt;}
.y26{bottom:655.557287pt;}
.yc4{bottom:657.114579pt;}
.y22{bottom:657.764459pt;}
.y6c{bottom:659.692708pt;}
.ye9{bottom:666.614588pt;}
.y98{bottom:667.317693pt;}
.y6{bottom:667.911459pt;}
.y92{bottom:668.083023pt;}
.y1b{bottom:671.911459pt;}
.y25{bottom:672.354167pt;}
.yc3{bottom:673.916661pt;}
.y6b{bottom:674.625000pt;}
.y97{bottom:684.114573pt;}
.y91{bottom:684.879903pt;}
.y6a{bottom:689.557292pt;}
.yc2{bottom:690.713528pt;}
.ye6{bottom:695.614587pt;}
.y4e{bottom:700.916637pt;}
.y96{bottom:700.916661pt;}
.y90{bottom:701.681991pt;}
.ye8{bottom:703.614585pt;}
.y69{bottom:704.489584pt;}
.y5{bottom:705.520828pt;}
.y21{bottom:707.196749pt;}
.yc1{bottom:707.515616pt;}
.ybb{bottom:710.436959pt;}
.ye4{bottom:711.614584pt;}
.y4d{bottom:717.713517pt;}
.y95{bottom:717.713541pt;}
.y8f{bottom:718.478871pt;}
.y68{bottom:719.421875pt;}
.ye7{bottom:719.614583pt;}
.yc0{bottom:724.317704pt;}
.ye5{bottom:727.614581pt;}
.y20{bottom:734.446749pt;}
.y4c{bottom:734.515605pt;}
.y67{bottom:734.828128pt;}
.y8e{bottom:735.280959pt;}
.yba{bottom:736.697375pt;}
.y4{bottom:738.906251pt;}
.ybf{bottom:741.114569pt;}
.y4b{bottom:751.317693pt;}
.ybe{bottom:757.916657pt;}
.y66{bottom:761.489584pt;}
.ye3{bottom:765.963541pt;}
.y4a{bottom:768.114573pt;}
.ybd{bottom:774.713537pt;}
.y49{bottom:784.916661pt;}
.y65{bottom:789.072917pt;}
.ybc{bottom:791.515625pt;}
.y3{bottom:799.447917pt;}
.y48{bottom:801.713537pt;}
.ye2{bottom:809.885416pt;}
.y64{bottom:816.343749pt;}
.y47{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y46{bottom:866.427084pt;}
.ha{height:23.328125pt;}
.h6{height:24.495670pt;}
.hb{height:24.932359pt;}
.h1{height:27.215197pt;}
.h7{height:27.215238pt;}
.h18{height:28.438367pt;}
.h1b{height:31.063447pt;}
.h5{height:31.105115pt;}
.hf{height:31.659632pt;}
.h14{height:32.076172pt;}
.h22{height:33.243717pt;}
.h25{height:33.243774pt;}
.h24{height:33.243859pt;}
.h15{height:34.945312pt;}
.h2{height:34.992188pt;}
.h1d{height:34.992241pt;}
.h13{height:34.992246pt;}
.hd{height:34.992262pt;}
.h12{height:34.992284pt;}
.h1f{height:34.992299pt;}
.h1e{height:34.992305pt;}
.he{height:34.992438pt;}
.h16{height:34.992571pt;}
.h11{height:35.859375pt;}
.h20{height:36.031665pt;}
.h9{height:41.596640pt;}
.h10{height:42.711321pt;}
.h8{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h21{height:63.105110pt;}
.h1a{height:218.109333pt;}
.h19{height:238.896000pt;}
.h23{height:367.078667pt;}
.h17{height:747.844000pt;}
.h1c{height:750.000000pt;}
.hc{height:755.640000pt;}
.h0{height:906.666667pt;}
.w2{width:228.000000pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x11{left:8.500541pt;}
.x19{left:10.297416pt;}
.xc{left:20.000541pt;}
.x1a{left:40.000541pt;}
.x3{left:69.921875pt;}
.x16{left:76.921875pt;}
.x9{left:80.421875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x7{left:89.921875pt;}
.x10{left:90.921333pt;}
.xa{left:95.588541pt;}
.xe{left:96.921875pt;}
.x18{left:109.921874pt;}
.x6{left:112.921875pt;}
.x1{left:124.718749pt;}
.xb{left:129.921875pt;}
.x8{left:132.812500pt;}
.xf{left:142.921875pt;}
.x13{left:185.921875pt;}
.x14{left:192.921875pt;}
.x2{left:246.812500pt;}
.x12{left:320.921333pt;}
.x17{left:475.635411pt;}
.xd{left:515.699219pt;}
.x15{left:529.697917pt;}
}




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