
    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_40bae23d28cb13700e1707da.woff')format("woff");}.ff1{font-family:ff1;line-height:1.017000;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_de7914791bf01bb2689fe985.woff')format("woff");}.ff2{font-family:ff2;line-height:1.032000;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_de7914791bf01bb2689fe985.woff')format("woff");}.ff3{font-family:ff3;line-height:1.032000;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_40bae23d28cb13700e1707da.woff')format("woff");}.ff4{font-family:ff4;line-height:1.017000;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_2ebc799602980efc305bb892.woff')format("woff");}.ff5{font-family:ff5;line-height:1.036000;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_915718b8d410cef740a0768f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.265380;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_f291406a9fb5d33713152a47.woff')format("woff");}.ff7{font-family:ff7;line-height:1.238500;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_f8c117aaa44bca17df0a1e89.woff')format("woff");}.ff8{font-family:ff8;line-height:1.240500;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_8cbff7edddc7f2363e7910fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.237000;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_9bf254fbf84bc21edacc68af.woff')format("woff");}.ffa{font-family:ffa;line-height:0.877000;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_29eaa61428efa626a3bd6547.woff')format("woff");}.ffb{font-family:ffb;line-height:0.875977;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_bb692a5e3693d9c416de1294.woff')format("woff");}.ffc{font-family:ffc;line-height:1.012880;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fc58cdc835ef1805962f9caf.woff')format("woff");}.ffd{font-family:ffd;line-height:0.774500;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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.m3{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:25.830000px;}
.ls5{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-0.840000px;}
.ls35{letter-spacing:-0.739200px;}
.ls1d{letter-spacing:-0.686400px;}
.ls1a{letter-spacing:-0.633600px;}
.ls16{letter-spacing:-0.580800px;}
.ls25{letter-spacing:-0.546000px;}
.ls18{letter-spacing:-0.528000px;}
.ls1b{letter-spacing:-0.475200px;}
.ls15{letter-spacing:-0.422400px;}
.ls3{letter-spacing:-0.390000px;}
.ls19{letter-spacing:-0.369600px;}
.ls9{letter-spacing:-0.316800px;}
.ls1c{letter-spacing:-0.264000px;}
.ls17{letter-spacing:-0.211200px;}
.ls11{letter-spacing:-0.158400px;}
.ls8{letter-spacing:-0.105600px;}
.ls1e{letter-spacing:-0.052800px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.052800px;}
.ls36{letter-spacing:0.100320px;}
.ls1{letter-spacing:0.105600px;}
.ls29{letter-spacing:0.130200px;}
.ls33{letter-spacing:0.132000px;}
.ls34{letter-spacing:0.132600px;}
.ls2f{letter-spacing:0.138600px;}
.ls2e{letter-spacing:0.139200px;}
.ls7{letter-spacing:0.158400px;}
.ls2a{letter-spacing:0.204600px;}
.ls1f{letter-spacing:0.211200px;}
.ls28{letter-spacing:0.229800px;}
.ls27{letter-spacing:0.230400px;}
.ls26{letter-spacing:0.241200px;}
.lsb{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.285600px;}
.ls2c{letter-spacing:0.286200px;}
.lsc{letter-spacing:0.316800px;}
.ls12{letter-spacing:0.369600px;}
.ls30{letter-spacing:0.402000px;}
.ls10{letter-spacing:0.422400px;}
.lsf{letter-spacing:0.475200px;}
.lsa{letter-spacing:0.528000px;}
.lse{letter-spacing:0.580800px;}
.ls2{letter-spacing:0.633600px;}
.ls22{letter-spacing:0.686400px;}
.ls2d{letter-spacing:0.723600px;}
.ls13{letter-spacing:0.739200px;}
.ls31{letter-spacing:0.759000px;}
.ls14{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.844800px;}
.lsd{letter-spacing:0.897600px;}
.ls32{letter-spacing:0.950400px;}
.ls24{letter-spacing:1.214400px;}
.ls23{letter-spacing:1.267200px;}
.ls21{letter-spacing:1.531200px;}
.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;}
}
.ws28{word-spacing:-52.800000px;}
.ws29{word-spacing:-13.411200px;}
.ws32{word-spacing:-13.305600px;}
.ws2f{word-spacing:-13.252800px;}
.ws0{word-spacing:-13.200000px;}
.ws2e{word-spacing:-13.147200px;}
.ws31{word-spacing:-12.988800px;}
.ws30{word-spacing:-12.936000px;}
.ws2d{word-spacing:-12.619200px;}
.wsa{word-spacing:-9.360000px;}
.ws21{word-spacing:-1.531200px;}
.ws2b{word-spacing:-1.320000px;}
.ws23{word-spacing:-1.267200px;}
.ws26{word-spacing:-1.214400px;}
.ws2a{word-spacing:-0.950400px;}
.wsc{word-spacing:-0.897600px;}
.ws20{word-spacing:-0.844800px;}
.ws14{word-spacing:-0.792000px;}
.ws12{word-spacing:-0.739200px;}
.ws22{word-spacing:-0.686400px;}
.ws6{word-spacing:-0.633600px;}
.wse{word-spacing:-0.580800px;}
.ws8{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.475200px;}
.ws10{word-spacing:-0.422400px;}
.ws13{word-spacing:-0.369600px;}
.wsb{word-spacing:-0.316800px;}
.ws9{word-spacing:-0.264000px;}
.ws1f{word-spacing:-0.211200px;}
.ws4{word-spacing:-0.158400px;}
.ws3{word-spacing:-0.105600px;}
.wsd{word-spacing:-0.052800px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:0.052800px;}
.ws5{word-spacing:0.105600px;}
.ws11{word-spacing:0.158400px;}
.ws17{word-spacing:0.211200px;}
.ws1c{word-spacing:0.264000px;}
.ws7{word-spacing:0.316800px;}
.ws19{word-spacing:0.369600px;}
.ws15{word-spacing:0.422400px;}
.ws1b{word-spacing:0.475200px;}
.ws18{word-spacing:0.528000px;}
.ws27{word-spacing:0.546000px;}
.ws16{word-spacing:0.580800px;}
.ws1a{word-spacing:0.633600px;}
.ws1d{word-spacing:0.686400px;}
.ws2c{word-spacing:0.739200px;}
.ws2{word-spacing:1.320000px;}
.ws24{word-spacing:117.615600px;}
.ws25{word-spacing:140.421600px;}
._6{margin-left:-2202.552600px;}
._2{margin-left:-18.900000px;}
._5{margin-left:-2.251440px;}
._4{margin-left:-1.155600px;}
._1{width:1.260000px;}
._3{width:2.357280px;}
._7{width:3.746400px;}
._0{width:58.832400px;}
._9{width:163.189800px;}
._8{width:229.377600px;}
.fc1{color:rgb(112,111,111);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:52.800000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.228350px;}
.y1f{bottom:81.729900px;}
.y2{bottom:85.039350px;}
.y69{bottom:85.773900px;}
.yed{bottom:86.606700px;}
.yab{bottom:87.948150px;}
.yc4{bottom:88.990500px;}
.y8d{bottom:91.524000px;}
.yd9{bottom:91.970850px;}
.y103{bottom:94.240500px;}
.y80{bottom:97.273950px;}
.y1e{bottom:98.979900px;}
.y68{bottom:103.023900px;}
.y113{bottom:103.024050px;}
.yec{bottom:103.856700px;}
.yc3{bottom:106.240500px;}
.y8c{bottom:108.774000px;}
.yd8{bottom:109.220850px;}
.yaa{bottom:110.015550px;}
.y102{bottom:111.490500px;}
.y7f{bottom:114.523950px;}
.y67{bottom:120.273900px;}
.y112{bottom:120.274050px;}
.yeb{bottom:121.106700px;}
.y1d{bottom:121.979850px;}
.ya9{bottom:122.615550px;}
.yc2{bottom:123.490500px;}
.y8b{bottom:126.024000px;}
.yd7{bottom:126.470850px;}
.ya6{bottom:128.757900px;}
.y52{bottom:131.773950px;}
.y101{bottom:134.490600px;}
.ya8{bottom:135.215550px;}
.yb0{bottom:137.523900px;}
.y111{bottom:137.524050px;}
.yea{bottom:138.356700px;}
.yc1{bottom:140.740500px;}
.y66{bottom:143.274000px;}
.yd6{bottom:143.720850px;}
.ya7{bottom:147.815550px;}
.y51{bottom:149.023950px;}
.y100{bottom:151.740600px;}
.yaf{bottom:154.773900px;}
.y110{bottom:154.774050px;}
.ye9{bottom:155.606700px;}
.y1c{bottom:156.237750px;}
.yc0{bottom:157.990500px;}
.y65{bottom:160.524000px;}
.yd5{bottom:160.970850px;}
.y50{bottom:166.273950px;}
.yff{bottom:168.990600px;}
.ya5{bottom:170.913750px;}
.y7e{bottom:172.023900px;}
.y109{bottom:172.024050px;}
.ye8{bottom:172.856700px;}
.y1b{bottom:173.487750px;}
.ybf{bottom:175.240500px;}
.y64{bottom:177.774000px;}
.yd4{bottom:178.220850px;}
.ya4{bottom:183.513750px;}
.y41{bottom:183.523950px;}
.yfe{bottom:186.240600px;}
.y7d{bottom:189.273900px;}
.y108{bottom:189.274050px;}
.ye7{bottom:190.106700px;}
.ybe{bottom:192.490500px;}
.y63{bottom:195.024000px;}
.yd3{bottom:195.470850px;}
.ya3{bottom:196.113750px;}
.y1a{bottom:196.487700px;}
.y40{bottom:200.773950px;}
.yfd{bottom:203.490600px;}
.y7c{bottom:206.523900px;}
.y107{bottom:206.524050px;}
.ya2{bottom:208.713750px;}
.ybd{bottom:209.740500px;}
.y62{bottom:212.274000px;}
.ye6{bottom:213.106650px;}
.y9d{bottom:214.856100px;}
.y3f{bottom:218.023950px;}
.yd2{bottom:218.470800px;}
.yfc{bottom:220.740600px;}
.ya1{bottom:221.313750px;}
.y7b{bottom:223.773900px;}
.y4f{bottom:223.774050px;}
.yae{bottom:226.648950px;}
.ybc{bottom:226.990500px;}
.y61{bottom:229.524000px;}
.ye5{bottom:230.356650px;}
.ya0{bottom:233.913750px;}
.y3e{bottom:235.273950px;}
.yd1{bottom:235.720800px;}
.yfb{bottom:237.990600px;}
.y7a{bottom:241.023900px;}
.y117{bottom:241.024050px;}
.y19{bottom:242.487750px;}
.ybb{bottom:244.240500px;}
.y9f{bottom:246.513750px;}
.y60{bottom:246.774000px;}
.ye4{bottom:247.606650px;}
.y3d{bottom:252.523950px;}
.yd0{bottom:252.970800px;}
.yfa{bottom:255.240600px;}
.yad{bottom:255.399000px;}
.y79{bottom:258.273900px;}
.y10f{bottom:258.274050px;}
.y9e{bottom:259.113750px;}
.y18{bottom:259.737750px;}
.yba{bottom:261.490650px;}
.y8a{bottom:264.024000px;}
.ye3{bottom:264.856650px;}
.y3c{bottom:269.773950px;}
.ycf{bottom:270.220800px;}
.y78{bottom:275.523900px;}
.y10e{bottom:275.524050px;}
.y17{bottom:276.987750px;}
.yf9{bottom:278.240550px;}
.yb9{bottom:278.740650px;}
.y89{bottom:281.274000px;}
.ye2{bottom:282.106650px;}
.y9c{bottom:282.211950px;}
.y3b{bottom:287.023950px;}
.yce{bottom:287.470800px;}
.yf0{bottom:292.773900px;}
.y10d{bottom:292.774050px;}
.y16{bottom:294.237750px;}
.y9b{bottom:294.811950px;}
.yb8{bottom:295.990650px;}
.y77{bottom:298.524000px;}
.ye1{bottom:299.356650px;}
.y97{bottom:301.111950px;}
.y3a{bottom:304.273950px;}
.ycd{bottom:304.720800px;}
.y96{bottom:307.254450px;}
.y9a{bottom:307.411950px;}
.yef{bottom:310.023900px;}
.y119{bottom:310.024050px;}
.y15{bottom:311.487750px;}
.y76{bottom:315.774000px;}
.ye0{bottom:316.606650px;}
.yb7{bottom:318.990600px;}
.y99{bottom:320.011950px;}
.y39{bottom:321.523950px;}
.ycc{bottom:321.970800px;}
.yf8{bottom:324.240450px;}
.y106{bottom:327.273900px;}
.y14{bottom:328.737750px;}
.y98{bottom:332.611950px;}
.y75{bottom:333.024000px;}
.ydf{bottom:333.856650px;}
.yb6{bottom:336.240600px;}
.y38{bottom:338.773950px;}
.ycb{bottom:339.220800px;}
.yf7{bottom:341.490450px;}
.y105{bottom:344.523900px;}
.y13{bottom:345.987750px;}
.y74{bottom:350.274000px;}
.yb5{bottom:353.490600px;}
.y95{bottom:355.710300px;}
.y37{bottom:356.023950px;}
.yca{bottom:356.470800px;}
.yde{bottom:356.856600px;}
.yf6{bottom:358.740450px;}
.y5f{bottom:361.773900px;}
.y12{bottom:363.237750px;}
.y73{bottom:367.524000px;}
.y94{bottom:368.310300px;}
.y36{bottom:373.273950px;}
.yc9{bottom:373.720800px;}
.ydd{bottom:374.106600px;}
.yb4{bottom:376.490550px;}
.y5e{bottom:379.023900px;}
.y90{bottom:380.752650px;}
.y93{bottom:380.910300px;}
.yf5{bottom:381.740550px;}
.y72{bottom:384.774000px;}
.y35{bottom:390.523950px;}
.yc8{bottom:390.970800px;}
.ydc{bottom:391.356600px;}
.y92{bottom:393.510300px;}
.yb3{bottom:393.740550px;}
.y5d{bottom:396.273900px;}
.yf4{bottom:398.990550px;}
.y11{bottom:401.520300px;}
.y4e{bottom:402.024000px;}
.y91{bottom:406.110300px;}
.y34{bottom:407.773950px;}
.yc7{bottom:408.220800px;}
.yb2{bottom:410.990550px;}
.y5c{bottom:413.523900px;}
.ydb{bottom:414.356700px;}
.yf3{bottom:416.240550px;}
.y10{bottom:418.770300px;}
.y4d{bottom:419.274000px;}
.y33{bottom:425.023950px;}
.yb1{bottom:428.240550px;}
.y8f{bottom:429.208500px;}
.y5b{bottom:430.773900px;}
.y10c{bottom:430.774050px;}
.yda{bottom:431.606700px;}
.yf2{bottom:433.490550px;}
.y4c{bottom:436.524000px;}
.y32{bottom:442.273950px;}
.y5a{bottom:448.023900px;}
.y10b{bottom:448.024050px;}
.yf1{bottom:450.740550px;}
.yf{bottom:453.270300px;}
.y4b{bottom:453.774000px;}
.y8e{bottom:458.181450px;}
.yac{bottom:459.523950px;}
.yc6{bottom:461.218950px;}
.y31{bottom:465.273900px;}
.y116{bottom:465.274050px;}
.ye{bottom:470.520300px;}
.y4a{bottom:471.024000px;}
.yc5{bottom:474.329250px;}
.y71{bottom:476.773950px;}
.y59{bottom:482.523900px;}
.y118{bottom:482.524050px;}
.y49{bottom:488.274000px;}
.yee{bottom:492.400050px;}
.y70{bottom:494.023950px;}
.y58{bottom:499.773900px;}
.yd{bottom:505.020300px;}
.y84{bottom:505.524000px;}
.y104{bottom:506.927700px;}
.y30{bottom:511.273950px;}
.y88{bottom:517.023900px;}
.yc{bottom:522.270300px;}
.y57{bottom:522.774000px;}
.y2f{bottom:528.523950px;}
.y48{bottom:534.273900px;}
.y56{bottom:540.024000px;}
.y2e{bottom:545.773950px;}
.y47{bottom:551.523900px;}
.yb{bottom:556.770300px;}
.y55{bottom:557.274000px;}
.y2d{bottom:563.023950px;}
.y46{bottom:568.773900px;}
.ya{bottom:574.020300px;}
.y54{bottom:574.524000px;}
.y2c{bottom:580.273950px;}
.y45{bottom:586.023900px;}
.y53{bottom:591.774000px;}
.y2b{bottom:597.523950px;}
.y44{bottom:603.273900px;}
.y87{bottom:609.024000px;}
.y2a{bottom:614.773950px;}
.y43{bottom:620.523900px;}
.y9{bottom:625.770300px;}
.y86{bottom:626.274000px;}
.y29{bottom:632.023950px;}
.y42{bottom:637.773900px;}
.y85{bottom:643.524000px;}
.y28{bottom:649.273950px;}
.y8{bottom:651.645300px;}
.y6f{bottom:655.023900px;}
.y10a{bottom:660.774000px;}
.y27{bottom:666.523950px;}
.y6e{bottom:672.273900px;}
.y7{bottom:677.520300px;}
.y115{bottom:678.024000px;}
.y26{bottom:683.773950px;}
.y6d{bottom:689.523900px;}
.y114{bottom:695.274000px;}
.y25{bottom:701.023950px;}
.y6{bottom:703.395300px;}
.y83{bottom:706.773900px;}
.y6c{bottom:712.524000px;}
.y24{bottom:718.273950px;}
.y82{bottom:724.023900px;}
.y5{bottom:729.270300px;}
.y23{bottom:735.523950px;}
.y81{bottom:741.273900px;}
.y22{bottom:752.773950px;}
.y4{bottom:755.145300px;}
.y6b{bottom:758.523900px;}
.y21{bottom:770.023950px;}
.y6a{bottom:775.773900px;}
.y20{bottom:793.023900px;}
.y3{bottom:798.270300px;}
.h3{height:31.434000px;}
.ha{height:33.726000px;}
.hc{height:33.852000px;}
.hb{height:34.482600px;}
.h2{height:38.688000px;}
.he{height:41.034000px;}
.h5{height:43.524000px;}
.h7{height:51.480000px;}
.h8{height:51.585600px;}
.h9{height:52.952064px;}
.h6{height:54.155520px;}
.hd{height:59.682000px;}
.h4{height:67.704000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x10{left:31.926450px;}
.x1{left:85.039350px;}
.x11{left:91.604850px;}
.xf{left:104.122800px;}
.x4{left:113.136750px;}
.x13{left:127.559100px;}
.x7{left:162.928050px;}
.x9{left:167.000850px;}
.x6{left:177.138900px;}
.x5{left:195.166500px;}
.x8{left:210.387150px;}
.x12{left:305.078700px;}
.x3{left:389.081700px;}
.xe{left:418.471200px;}
.xa{left:420.712200px;}
.xd{left:421.940100px;}
.xb{left:442.095600px;}
.xc{left:465.706950px;}
.x2{left:635.669250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.960000pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-0.746667pt;}
.ls35{letter-spacing:-0.657067pt;}
.ls1d{letter-spacing:-0.610133pt;}
.ls1a{letter-spacing:-0.563200pt;}
.ls16{letter-spacing:-0.516267pt;}
.ls25{letter-spacing:-0.485333pt;}
.ls18{letter-spacing:-0.469333pt;}
.ls1b{letter-spacing:-0.422400pt;}
.ls15{letter-spacing:-0.375467pt;}
.ls3{letter-spacing:-0.346667pt;}
.ls19{letter-spacing:-0.328533pt;}
.ls9{letter-spacing:-0.281600pt;}
.ls1c{letter-spacing:-0.234667pt;}
.ls17{letter-spacing:-0.187733pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls8{letter-spacing:-0.093867pt;}
.ls1e{letter-spacing:-0.046933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.046933pt;}
.ls36{letter-spacing:0.089173pt;}
.ls1{letter-spacing:0.093867pt;}
.ls29{letter-spacing:0.115733pt;}
.ls33{letter-spacing:0.117333pt;}
.ls34{letter-spacing:0.117867pt;}
.ls2f{letter-spacing:0.123200pt;}
.ls2e{letter-spacing:0.123733pt;}
.ls7{letter-spacing:0.140800pt;}
.ls2a{letter-spacing:0.181867pt;}
.ls1f{letter-spacing:0.187733pt;}
.ls28{letter-spacing:0.204267pt;}
.ls27{letter-spacing:0.204800pt;}
.ls26{letter-spacing:0.214400pt;}
.lsb{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.253867pt;}
.ls2c{letter-spacing:0.254400pt;}
.lsc{letter-spacing:0.281600pt;}
.ls12{letter-spacing:0.328533pt;}
.ls30{letter-spacing:0.357333pt;}
.ls10{letter-spacing:0.375467pt;}
.lsf{letter-spacing:0.422400pt;}
.lsa{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.516267pt;}
.ls2{letter-spacing:0.563200pt;}
.ls22{letter-spacing:0.610133pt;}
.ls2d{letter-spacing:0.643200pt;}
.ls13{letter-spacing:0.657067pt;}
.ls31{letter-spacing:0.674667pt;}
.ls14{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.750933pt;}
.lsd{letter-spacing:0.797867pt;}
.ls32{letter-spacing:0.844800pt;}
.ls24{letter-spacing:1.079467pt;}
.ls23{letter-spacing:1.126400pt;}
.ls21{letter-spacing:1.361067pt;}
.ws28{word-spacing:-46.933333pt;}
.ws29{word-spacing:-11.921067pt;}
.ws32{word-spacing:-11.827200pt;}
.ws2f{word-spacing:-11.780267pt;}
.ws0{word-spacing:-11.733333pt;}
.ws2e{word-spacing:-11.686400pt;}
.ws31{word-spacing:-11.545600pt;}
.ws30{word-spacing:-11.498667pt;}
.ws2d{word-spacing:-11.217067pt;}
.wsa{word-spacing:-8.320000pt;}
.ws21{word-spacing:-1.361067pt;}
.ws2b{word-spacing:-1.173333pt;}
.ws23{word-spacing:-1.126400pt;}
.ws26{word-spacing:-1.079467pt;}
.ws2a{word-spacing:-0.844800pt;}
.wsc{word-spacing:-0.797867pt;}
.ws20{word-spacing:-0.750933pt;}
.ws14{word-spacing:-0.704000pt;}
.ws12{word-spacing:-0.657067pt;}
.ws22{word-spacing:-0.610133pt;}
.ws6{word-spacing:-0.563200pt;}
.wse{word-spacing:-0.516267pt;}
.ws8{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.422400pt;}
.ws10{word-spacing:-0.375467pt;}
.ws13{word-spacing:-0.328533pt;}
.wsb{word-spacing:-0.281600pt;}
.ws9{word-spacing:-0.234667pt;}
.ws1f{word-spacing:-0.187733pt;}
.ws4{word-spacing:-0.140800pt;}
.ws3{word-spacing:-0.093867pt;}
.wsd{word-spacing:-0.046933pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.046933pt;}
.ws5{word-spacing:0.093867pt;}
.ws11{word-spacing:0.140800pt;}
.ws17{word-spacing:0.187733pt;}
.ws1c{word-spacing:0.234667pt;}
.ws7{word-spacing:0.281600pt;}
.ws19{word-spacing:0.328533pt;}
.ws15{word-spacing:0.375467pt;}
.ws1b{word-spacing:0.422400pt;}
.ws18{word-spacing:0.469333pt;}
.ws27{word-spacing:0.485333pt;}
.ws16{word-spacing:0.516267pt;}
.ws1a{word-spacing:0.563200pt;}
.ws1d{word-spacing:0.610133pt;}
.ws2c{word-spacing:0.657067pt;}
.ws2{word-spacing:1.173333pt;}
.ws24{word-spacing:104.547200pt;}
.ws25{word-spacing:124.819200pt;}
._6{margin-left:-1957.824533pt;}
._2{margin-left:-16.800000pt;}
._5{margin-left:-2.001280pt;}
._4{margin-left:-1.027200pt;}
._1{width:1.120000pt;}
._3{width:2.095360pt;}
._7{width:3.330133pt;}
._0{width:52.295467pt;}
._9{width:145.057600pt;}
._8{width:203.891200pt;}
.fs0{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:46.933333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.425200pt;}
.y1f{bottom:72.648800pt;}
.y2{bottom:75.590533pt;}
.y69{bottom:76.243467pt;}
.yed{bottom:76.983733pt;}
.yab{bottom:78.176133pt;}
.yc4{bottom:79.102667pt;}
.y8d{bottom:81.354667pt;}
.yd9{bottom:81.751867pt;}
.y103{bottom:83.769333pt;}
.y80{bottom:86.465733pt;}
.y1e{bottom:87.982133pt;}
.y68{bottom:91.576800pt;}
.y113{bottom:91.576933pt;}
.yec{bottom:92.317067pt;}
.yc3{bottom:94.436000pt;}
.y8c{bottom:96.688000pt;}
.yd8{bottom:97.085200pt;}
.yaa{bottom:97.791600pt;}
.y102{bottom:99.102667pt;}
.y7f{bottom:101.799067pt;}
.y67{bottom:106.910133pt;}
.y112{bottom:106.910267pt;}
.yeb{bottom:107.650400pt;}
.y1d{bottom:108.426533pt;}
.ya9{bottom:108.991600pt;}
.yc2{bottom:109.769333pt;}
.y8b{bottom:112.021333pt;}
.yd7{bottom:112.418533pt;}
.ya6{bottom:114.451467pt;}
.y52{bottom:117.132400pt;}
.y101{bottom:119.547200pt;}
.ya8{bottom:120.191600pt;}
.yb0{bottom:122.243467pt;}
.y111{bottom:122.243600pt;}
.yea{bottom:122.983733pt;}
.yc1{bottom:125.102667pt;}
.y66{bottom:127.354667pt;}
.yd6{bottom:127.751867pt;}
.ya7{bottom:131.391600pt;}
.y51{bottom:132.465733pt;}
.y100{bottom:134.880533pt;}
.yaf{bottom:137.576800pt;}
.y110{bottom:137.576933pt;}
.ye9{bottom:138.317067pt;}
.y1c{bottom:138.878000pt;}
.yc0{bottom:140.436000pt;}
.y65{bottom:142.688000pt;}
.yd5{bottom:143.085200pt;}
.y50{bottom:147.799067pt;}
.yff{bottom:150.213867pt;}
.ya5{bottom:151.923333pt;}
.y7e{bottom:152.910133pt;}
.y109{bottom:152.910267pt;}
.ye8{bottom:153.650400pt;}
.y1b{bottom:154.211333pt;}
.ybf{bottom:155.769333pt;}
.y64{bottom:158.021333pt;}
.yd4{bottom:158.418533pt;}
.ya4{bottom:163.123333pt;}
.y41{bottom:163.132400pt;}
.yfe{bottom:165.547200pt;}
.y7d{bottom:168.243467pt;}
.y108{bottom:168.243600pt;}
.ye7{bottom:168.983733pt;}
.ybe{bottom:171.102667pt;}
.y63{bottom:173.354667pt;}
.yd3{bottom:173.751867pt;}
.ya3{bottom:174.323333pt;}
.y1a{bottom:174.655733pt;}
.y40{bottom:178.465733pt;}
.yfd{bottom:180.880533pt;}
.y7c{bottom:183.576800pt;}
.y107{bottom:183.576933pt;}
.ya2{bottom:185.523333pt;}
.ybd{bottom:186.436000pt;}
.y62{bottom:188.688000pt;}
.ye6{bottom:189.428133pt;}
.y9d{bottom:190.983200pt;}
.y3f{bottom:193.799067pt;}
.yd2{bottom:194.196267pt;}
.yfc{bottom:196.213867pt;}
.ya1{bottom:196.723333pt;}
.y7b{bottom:198.910133pt;}
.y4f{bottom:198.910267pt;}
.yae{bottom:201.465733pt;}
.ybc{bottom:201.769333pt;}
.y61{bottom:204.021333pt;}
.ye5{bottom:204.761467pt;}
.ya0{bottom:207.923333pt;}
.y3e{bottom:209.132400pt;}
.yd1{bottom:209.529600pt;}
.yfb{bottom:211.547200pt;}
.y7a{bottom:214.243467pt;}
.y117{bottom:214.243600pt;}
.y19{bottom:215.544667pt;}
.ybb{bottom:217.102667pt;}
.y9f{bottom:219.123333pt;}
.y60{bottom:219.354667pt;}
.ye4{bottom:220.094800pt;}
.y3d{bottom:224.465733pt;}
.yd0{bottom:224.862933pt;}
.yfa{bottom:226.880533pt;}
.yad{bottom:227.021333pt;}
.y79{bottom:229.576800pt;}
.y10f{bottom:229.576933pt;}
.y9e{bottom:230.323333pt;}
.y18{bottom:230.878000pt;}
.yba{bottom:232.436133pt;}
.y8a{bottom:234.688000pt;}
.ye3{bottom:235.428133pt;}
.y3c{bottom:239.799067pt;}
.ycf{bottom:240.196267pt;}
.y78{bottom:244.910133pt;}
.y10e{bottom:244.910267pt;}
.y17{bottom:246.211333pt;}
.yf9{bottom:247.324933pt;}
.yb9{bottom:247.769467pt;}
.y89{bottom:250.021333pt;}
.ye2{bottom:250.761467pt;}
.y9c{bottom:250.855067pt;}
.y3b{bottom:255.132400pt;}
.yce{bottom:255.529600pt;}
.yf0{bottom:260.243467pt;}
.y10d{bottom:260.243600pt;}
.y16{bottom:261.544667pt;}
.y9b{bottom:262.055067pt;}
.yb8{bottom:263.102800pt;}
.y77{bottom:265.354667pt;}
.ye1{bottom:266.094800pt;}
.y97{bottom:267.655067pt;}
.y3a{bottom:270.465733pt;}
.ycd{bottom:270.862933pt;}
.y96{bottom:273.115067pt;}
.y9a{bottom:273.255067pt;}
.yef{bottom:275.576800pt;}
.y119{bottom:275.576933pt;}
.y15{bottom:276.878000pt;}
.y76{bottom:280.688000pt;}
.ye0{bottom:281.428133pt;}
.yb7{bottom:283.547200pt;}
.y99{bottom:284.455067pt;}
.y39{bottom:285.799067pt;}
.ycc{bottom:286.196267pt;}
.yf8{bottom:288.213733pt;}
.y106{bottom:290.910133pt;}
.y14{bottom:292.211333pt;}
.y98{bottom:295.655067pt;}
.y75{bottom:296.021333pt;}
.ydf{bottom:296.761467pt;}
.yb6{bottom:298.880533pt;}
.y38{bottom:301.132400pt;}
.ycb{bottom:301.529600pt;}
.yf7{bottom:303.547067pt;}
.y105{bottom:306.243467pt;}
.y13{bottom:307.544667pt;}
.y74{bottom:311.354667pt;}
.yb5{bottom:314.213867pt;}
.y95{bottom:316.186933pt;}
.y37{bottom:316.465733pt;}
.yca{bottom:316.862933pt;}
.yde{bottom:317.205867pt;}
.yf6{bottom:318.880400pt;}
.y5f{bottom:321.576800pt;}
.y12{bottom:322.878000pt;}
.y73{bottom:326.688000pt;}
.y94{bottom:327.386933pt;}
.y36{bottom:331.799067pt;}
.yc9{bottom:332.196267pt;}
.ydd{bottom:332.539200pt;}
.yb4{bottom:334.658267pt;}
.y5e{bottom:336.910133pt;}
.y90{bottom:338.446800pt;}
.y93{bottom:338.586933pt;}
.yf5{bottom:339.324933pt;}
.y72{bottom:342.021333pt;}
.y35{bottom:347.132400pt;}
.yc8{bottom:347.529600pt;}
.ydc{bottom:347.872533pt;}
.y92{bottom:349.786933pt;}
.yb3{bottom:349.991600pt;}
.y5d{bottom:352.243467pt;}
.yf4{bottom:354.658267pt;}
.y11{bottom:356.906933pt;}
.y4e{bottom:357.354667pt;}
.y91{bottom:360.986933pt;}
.y34{bottom:362.465733pt;}
.yc7{bottom:362.862933pt;}
.yb2{bottom:365.324933pt;}
.y5c{bottom:367.576800pt;}
.ydb{bottom:368.317067pt;}
.yf3{bottom:369.991600pt;}
.y10{bottom:372.240267pt;}
.y4d{bottom:372.688000pt;}
.y33{bottom:377.799067pt;}
.yb1{bottom:380.658267pt;}
.y8f{bottom:381.518667pt;}
.y5b{bottom:382.910133pt;}
.y10c{bottom:382.910267pt;}
.yda{bottom:383.650400pt;}
.yf2{bottom:385.324933pt;}
.y4c{bottom:388.021333pt;}
.y32{bottom:393.132400pt;}
.y5a{bottom:398.243467pt;}
.y10b{bottom:398.243600pt;}
.yf1{bottom:400.658267pt;}
.yf{bottom:402.906933pt;}
.y4b{bottom:403.354667pt;}
.y8e{bottom:407.272400pt;}
.yac{bottom:408.465733pt;}
.yc6{bottom:409.972400pt;}
.y31{bottom:413.576800pt;}
.y116{bottom:413.576933pt;}
.ye{bottom:418.240267pt;}
.y4a{bottom:418.688000pt;}
.yc5{bottom:421.626000pt;}
.y71{bottom:423.799067pt;}
.y59{bottom:428.910133pt;}
.y118{bottom:428.910267pt;}
.y49{bottom:434.021333pt;}
.yee{bottom:437.688933pt;}
.y70{bottom:439.132400pt;}
.y58{bottom:444.243467pt;}
.yd{bottom:448.906933pt;}
.y84{bottom:449.354667pt;}
.y104{bottom:450.602400pt;}
.y30{bottom:454.465733pt;}
.y88{bottom:459.576800pt;}
.yc{bottom:464.240267pt;}
.y57{bottom:464.688000pt;}
.y2f{bottom:469.799067pt;}
.y48{bottom:474.910133pt;}
.y56{bottom:480.021333pt;}
.y2e{bottom:485.132400pt;}
.y47{bottom:490.243467pt;}
.yb{bottom:494.906933pt;}
.y55{bottom:495.354667pt;}
.y2d{bottom:500.465733pt;}
.y46{bottom:505.576800pt;}
.ya{bottom:510.240267pt;}
.y54{bottom:510.688000pt;}
.y2c{bottom:515.799067pt;}
.y45{bottom:520.910133pt;}
.y53{bottom:526.021333pt;}
.y2b{bottom:531.132400pt;}
.y44{bottom:536.243467pt;}
.y87{bottom:541.354667pt;}
.y2a{bottom:546.465733pt;}
.y43{bottom:551.576800pt;}
.y9{bottom:556.240267pt;}
.y86{bottom:556.688000pt;}
.y29{bottom:561.799067pt;}
.y42{bottom:566.910133pt;}
.y85{bottom:572.021333pt;}
.y28{bottom:577.132400pt;}
.y8{bottom:579.240267pt;}
.y6f{bottom:582.243467pt;}
.y10a{bottom:587.354667pt;}
.y27{bottom:592.465733pt;}
.y6e{bottom:597.576800pt;}
.y7{bottom:602.240267pt;}
.y115{bottom:602.688000pt;}
.y26{bottom:607.799067pt;}
.y6d{bottom:612.910133pt;}
.y114{bottom:618.021333pt;}
.y25{bottom:623.132400pt;}
.y6{bottom:625.240267pt;}
.y83{bottom:628.243467pt;}
.y6c{bottom:633.354667pt;}
.y24{bottom:638.465733pt;}
.y82{bottom:643.576800pt;}
.y5{bottom:648.240267pt;}
.y23{bottom:653.799067pt;}
.y81{bottom:658.910133pt;}
.y22{bottom:669.132400pt;}
.y4{bottom:671.240267pt;}
.y6b{bottom:674.243467pt;}
.y21{bottom:684.465733pt;}
.y6a{bottom:689.576800pt;}
.y20{bottom:704.910133pt;}
.y3{bottom:709.573600pt;}
.h3{height:27.941333pt;}
.ha{height:29.978667pt;}
.hc{height:30.090667pt;}
.hb{height:30.651200pt;}
.h2{height:34.389333pt;}
.he{height:36.474667pt;}
.h5{height:38.688000pt;}
.h7{height:45.760000pt;}
.h8{height:45.853867pt;}
.h9{height:47.068501pt;}
.h6{height:48.138240pt;}
.hd{height:53.050667pt;}
.h4{height:60.181333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x10{left:28.379067pt;}
.x1{left:75.590533pt;}
.x11{left:81.426533pt;}
.xf{left:92.553600pt;}
.x4{left:100.566000pt;}
.x13{left:113.385867pt;}
.x7{left:144.824933pt;}
.x9{left:148.445200pt;}
.x6{left:157.456800pt;}
.x5{left:173.481333pt;}
.x8{left:187.010800pt;}
.x12{left:271.181067pt;}
.x3{left:345.850400pt;}
.xe{left:371.974400pt;}
.xa{left:373.966400pt;}
.xd{left:375.057867pt;}
.xb{left:392.973867pt;}
.xc{left:413.961733pt;}
.x2{left:565.039333pt;}
}




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