
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a4e5da2b7ec4cbd16eedaa9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_b4d79b50cc54bdaad6d3f9a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_88cff8a48944f2b470c89894.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331055;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_5904acb5f3b101900fbfe18e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331055;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_76f3a5be5f215a5f78851e6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_c44eab083f677d78dcaed2b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ed81ae1bce8cb9a21e8e4b91.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_8a225f92cdec016cea919c98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_f9675bbb1e96be7985e03616.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.331543;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_f2780070aa2d4d8e96cd29de.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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:ffe;src:url('chunks/assets/font_151ceb0a2edd52312192c16f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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:fff;src:url('chunks/assets/font_8ee4abf0dfc796dc0f24abeb.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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;}
.ls22{letter-spacing:-0.810000px;}
.ls67{letter-spacing:-0.774000px;}
.ls48{letter-spacing:-0.666000px;}
.ls2b{letter-spacing:-0.645098px;}
.ls4b{letter-spacing:-0.460200px;}
.ls47{letter-spacing:-0.399600px;}
.ls1e{letter-spacing:-0.341400px;}
.ls2f{letter-spacing:-0.334800px;}
.ls65{letter-spacing:-0.306600px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.280200px;}
.ls4c{letter-spacing:-0.259800px;}
.ls49{letter-spacing:-0.243600px;}
.ls29{letter-spacing:-0.229200px;}
.ls24{letter-spacing:-0.226200px;}
.ls33{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.172200px;}
.ls4a{letter-spacing:-0.157800px;}
.ls31{letter-spacing:-0.108000px;}
.ls6b{letter-spacing:-0.106800px;}
.ls2a{letter-spacing:-0.075000px;}
.ls30{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.053280px;}
.ls4d{letter-spacing:-0.012240px;}
.ls1a{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018973px;}
.ls39{letter-spacing:0.021600px;}
.ls58{letter-spacing:0.033120px;}
.ls66{letter-spacing:0.053280px;}
.ls6c{letter-spacing:0.075600px;}
.ls19{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.113841px;}
.ls27{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.126720px;}
.ls25{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.164400px;}
.ls32{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.206400px;}
.ls2c{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls5b{letter-spacing:0.274800px;}
.ls51{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.305400px;}
.ls26{letter-spacing:0.320400px;}
.ls63{letter-spacing:0.331800px;}
.ls8{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.341280px;}
.ls1d{letter-spacing:0.341400px;}
.ls60{letter-spacing:0.352200px;}
.ls4{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.413280px;}
.ls2d{letter-spacing:0.490800px;}
.ls40{letter-spacing:0.622080px;}
.ls64{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.666720px;}
.ls23{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.900000px;}
.ls44{letter-spacing:0.979920px;}
.ls53{letter-spacing:1.362720px;}
.ls46{letter-spacing:1.386720px;}
.lsf{letter-spacing:2.106720px;}
.ls11{letter-spacing:2.286720px;}
.ls10{letter-spacing:2.826720px;}
.ls5d{letter-spacing:3.522720px;}
.ls9{letter-spacing:3.546720px;}
.ls7{letter-spacing:4.266720px;}
.ls41{letter-spacing:4.446720px;}
.ls3f{letter-spacing:4.986720px;}
.ls61{letter-spacing:5.166720px;}
.ls38{letter-spacing:5.706720px;}
.ls57{letter-spacing:5.886720px;}
.ls43{letter-spacing:6.402720px;}
.ls16{letter-spacing:6.426720px;}
.ls54{letter-spacing:6.546720px;}
.ls34{letter-spacing:6.606720px;}
.ls3a{letter-spacing:7.122720px;}
.ls17{letter-spacing:7.146720px;}
.ls3e{letter-spacing:7.326720px;}
.ls42{letter-spacing:7.842720px;}
.ls3b{letter-spacing:7.866720px;}
.ls3d{letter-spacing:7.986720px;}
.ls5f{letter-spacing:8.046720px;}
.ls36{letter-spacing:8.586720px;}
.ls14{letter-spacing:9.306720px;}
.ls15{letter-spacing:9.426720px;}
.ls13{letter-spacing:9.486720px;}
.ls35{letter-spacing:10.026720px;}
.ls62{letter-spacing:10.206720px;}
.ls45{letter-spacing:10.746720px;}
.ls37{letter-spacing:11.466720px;}
.ls12{letter-spacing:12.186720px;}
.ls5c{letter-spacing:12.366720px;}
.lsa{letter-spacing:12.906720px;}
.ls4e{letter-spacing:13.602720px;}
.lsb{letter-spacing:13.626720px;}
.ls59{letter-spacing:14.346720px;}
.ls5a{letter-spacing:14.526720px;}
.ls5{letter-spacing:15.786720px;}
.ls6{letter-spacing:16.506720px;}
.ls3c{letter-spacing:16.686720px;}
.ls52{letter-spacing:19.386720px;}
.ls4f{letter-spacing:20.106720px;}
.ls50{letter-spacing:20.226720px;}
.ls5e{letter-spacing:21.546720px;}
.lsc{letter-spacing:22.266720px;}
.lsd{letter-spacing:22.986720px;}
.ls69{letter-spacing:41.706720px;}
.ls6a{letter-spacing:46.026720px;}
.ls56{letter-spacing:99.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2e{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.418720px;}
.ws4{word-spacing:-20.718600px;}
.ws7{word-spacing:-16.777680px;}
.ws6{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.506480px;}
.ws5{word-spacing:-16.333080px;}
.ws1a{word-spacing:-15.823879px;}
.ws2{word-spacing:-15.300000px;}
.ws2d{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.210000px;}
.ws18{word-spacing:-15.012000px;}
.ws28{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.796000px;}
.ws1e{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.wsd{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.392000px;}
.ws9{word-spacing:-11.160000px;}
.wsb{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.213800px;}
.ws15{word-spacing:-8.928000px;}
.ws12{word-spacing:-0.550560px;}
.ws29{word-spacing:-0.411960px;}
.wsf{word-spacing:-0.398160px;}
.ws23{word-spacing:-0.391560px;}
.ws11{word-spacing:-0.380160px;}
.ws24{word-spacing:-0.358560px;}
.ws27{word-spacing:-0.334560px;}
.ws13{word-spacing:-0.266160px;}
.ws25{word-spacing:-0.224160px;}
.ws10{word-spacing:-0.203760px;}
.ws2c{word-spacing:-0.135360px;}
.ws26{word-spacing:-0.092880px;}
.ws1c{word-spacing:-0.081360px;}
.wsc{word-spacing:-0.059760px;}
.ws22{word-spacing:-0.047520px;}
.ws1b{word-spacing:0.000000px;}
.ws14{word-spacing:0.015240px;}
.ws20{word-spacing:0.098040px;}
.ws2a{word-spacing:0.112440px;}
.wse{word-spacing:0.169440px;}
.ws1f{word-spacing:0.183840px;}
.ws21{word-spacing:0.200040px;}
.ws1d{word-spacing:0.339840px;}
._3{margin-left:-12.423360px;}
._6{margin-left:-8.904240px;}
._17{margin-left:-4.458240px;}
._f{margin-left:-2.330640px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._2{width:2.464320px;}
._9{width:3.908536px;}
._15{width:5.768400px;}
._14{width:7.102800px;}
._7{width:8.605440px;}
._8{width:10.094400px;}
._4{width:12.130560px;}
._12{width:13.134720px;}
._c{width:14.647680px;}
._b{width:16.524000px;}
._a{width:18.328378px;}
._1a{width:20.599680px;}
._13{width:23.133360px;}
._10{width:26.044258px;}
._e{width:56.916000px;}
._d{width:60.070026px;}
._18{width:66.906720px;}
._19{width:83.466720px;}
._16{width:133.146720px;}
._5{width:148.296690px;}
._1b{width:149.653440px;}
._11{width:166.446720px;}
._1c{width:182.773440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y41{bottom:2.700000px;}
.y4e{bottom:5.010000px;}
.y37{bottom:9.165000px;}
.y40{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4c{bottom:15.480000px;}
.y4{bottom:32.400000px;}
.y4b{bottom:34.200000px;}
.y36{bottom:37.425000px;}
.y3f{bottom:40.500000px;}
.y3e{bottom:52.020000px;}
.y3{bottom:55.470000px;}
.y4a{bottom:56.340000px;}
.ya{bottom:57.600000px;}
.y3d{bottom:64.980000px;}
.y35{bottom:65.505000px;}
.y49{bottom:75.420000px;}
.y9{bottom:75.780000px;}
.y3c{bottom:78.120000px;}
.y48{bottom:93.090000px;}
.y34{bottom:93.765000px;}
.y8{bottom:95.760000px;}
.y47{bottom:99.390000px;}
.y3b{bottom:99.930000px;}
.y46{bottom:115.410000px;}
.y33{bottom:122.070000px;}
.y38{bottom:127.800000px;}
.y45{bottom:130.890000px;}
.y44{bottom:146.370000px;}
.y7f{bottom:148.320000px;}
.y32{bottom:150.150000px;}
.y73{bottom:151.380000px;}
.y43{bottom:161.850000px;}
.y3a{bottom:162.030000px;}
.y7e{bottom:171.540000px;}
.y39{bottom:172.650000px;}
.y42{bottom:177.150000px;}
.y72{bottom:177.480000px;}
.y31{bottom:178.410000px;}
.y7d{bottom:194.580000px;}
.y71{bottom:203.580000px;}
.y30{bottom:206.670000px;}
.y70{bottom:229.710000px;}
.y2f{bottom:234.750000px;}
.y6f{bottom:255.990000px;}
.y2e{bottom:263.010000px;}
.y6e{bottom:279.030000px;}
.y7c{bottom:282.090000px;}
.y2d{bottom:289.110000px;}
.y6d{bottom:302.250000px;}
.y7b{bottom:308.190000px;}
.y1e{bottom:319.890000px;}
.y2c{bottom:320.430000px;}
.y6c{bottom:328.350000px;}
.y10{bottom:330.345000px;}
.y7a{bottom:331.410000px;}
.y1d{bottom:335.730000px;}
.y2b{bottom:339.150000px;}
.y6b{bottom:354.450000px;}
.y1c{bottom:359.880000px;}
.y2a{bottom:362.760000px;}
.y6a{bottom:380.550000px;}
.y1b{bottom:384.000000px;}
.y29{bottom:386.160000px;}
.y69{bottom:406.650000px;}
.y1a{bottom:408.300000px;}
.y28{bottom:409.740000px;}
.y19{bottom:432.420000px;}
.y68{bottom:432.750000px;}
.y27{bottom:433.320000px;}
.y18{bottom:456.540000px;}
.y26{bottom:456.720000px;}
.y67{bottom:459.075000px;}
.y25{bottom:480.300000px;}
.y17{bottom:480.660000px;}
.y66{bottom:485.175000px;}
.y24{bottom:503.880000px;}
.y16{bottom:504.780000px;}
.y65{bottom:511.275000px;}
.y23{bottom:527.280000px;}
.y15{bottom:528.900000px;}
.y64{bottom:537.375000px;}
.y22{bottom:550.860000px;}
.y14{bottom:553.200000px;}
.y63{bottom:563.475000px;}
.y21{bottom:574.440000px;}
.y13{bottom:577.320000px;}
.y62{bottom:589.755000px;}
.y20{bottom:597.885000px;}
.y12{bottom:601.485000px;}
.y61{bottom:615.855000px;}
.y1f{bottom:619.125000px;}
.y11{bottom:625.605000px;}
.y60{bottom:641.955000px;}
.y5f{bottom:668.055000px;}
.y79{bottom:677.055000px;}
.y5e{bottom:694.185000px;}
.y78{bottom:703.185000px;}
.y5d{bottom:720.285000px;}
.y77{bottom:729.285000px;}
.y5c{bottom:746.565000px;}
.y76{bottom:755.565000px;}
.y5b{bottom:772.665000px;}
.y75{bottom:781.665000px;}
.y5a{bottom:798.765000px;}
.y74{bottom:807.765000px;}
.y59{bottom:833.865000px;}
.y87{bottom:859.605000px;}
.y58{bottom:859.965000px;}
.y86{bottom:880.125000px;}
.y57{bottom:886.245000px;}
.y85{bottom:906.225000px;}
.y56{bottom:912.345000px;}
.y84{bottom:932.550000px;}
.y55{bottom:938.490000px;}
.y83{bottom:955.590000px;}
.y54{bottom:964.590000px;}
.yf{bottom:971.250000px;}
.y82{bottom:981.690000px;}
.y53{bottom:990.690000px;}
.ye{bottom:992.130000px;}
.y81{bottom:1007.790000px;}
.y52{bottom:1016.790000px;}
.yd{bottom:1018.230000px;}
.y80{bottom:1034.070000px;}
.y51{bottom:1043.070000px;}
.yc{bottom:1047.390000px;}
.y50{bottom:1069.170000px;}
.yb{bottom:1082.850000px;}
.y4d{bottom:1086.300000px;}
.y4f{bottom:1095.270000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h17{height:5.650313px;}
.h10{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h19{height:27.540000px;}
.h15{height:29.678906px;}
.h14{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h12{height:52.971680px;}
.h16{height:54.421875px;}
.h5{height:55.824609px;}
.h18{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h11{height:60.338990px;}
.h1b{height:61.423863px;}
.hc{height:63.349102px;}
.h1a{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h13{height:201.810000px;}
.hd{height:635.130000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb9{left:6.876000px;}
.x1b{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x16{left:14.211000px;}
.x19{left:16.011000px;}
.xb7{left:18.171000px;}
.x18{left:21.771000px;}
.x17{left:26.091000px;}
.xb8{left:29.151000px;}
.x5{left:33.645000px;}
.x95{left:37.065000px;}
.x96{left:41.745000px;}
.x11{left:43.731000px;}
.x1c{left:45.030000px;}
.x4d{left:47.370000px;}
.x1d{left:48.990000px;}
.x12{left:50.751000px;}
.x3a{left:53.670000px;}
.x10{left:55.071000px;}
.x5e{left:60.870000px;}
.x7f{left:62.490000px;}
.x1e{left:65.910000px;}
.x97{left:70.590000px;}
.x14{left:73.605000px;}
.x98{left:75.270000px;}
.x1{left:78.300000px;}
.x15{left:83.685000px;}
.x4e{left:84.810000px;}
.xc{left:86.436000px;}
.x3b{left:88.050000px;}
.x2{left:95.790000px;}
.xac{left:101.910000px;}
.x1f{left:102.990000px;}
.x8b{left:106.590000px;}
.x20{left:108.210000px;}
.x8c{left:113.070000px;}
.x5f{left:114.870000px;}
.x99{left:116.310000px;}
.x80{left:119.010000px;}
.x60{left:120.630000px;}
.x81{left:122.790000px;}
.x13{left:124.545000px;}
.x3c{left:126.750000px;}
.x3d{left:131.430000px;}
.x4f{left:138.090000px;}
.x8{left:140.436000px;}
.x71{left:143.310000px;}
.x50{left:146.550000px;}
.x72{left:150.150000px;}
.x21{left:153.210000px;}
.xad{left:155.370000px;}
.x22{left:158.250000px;}
.x3e{left:159.870000px;}
.x8d{left:162.390000px;}
.x3f{left:164.550000px;}
.x82{left:167.790000px;}
.xb6{left:171.930000px;}
.x8e{left:173.370000px;}
.x61{left:176.070000px;}
.xae{left:177.870000px;}
.x3{left:182.385000px;}
.xb3{left:183.450000px;}
.xa7{left:190.290000px;}
.x73{left:203.070000px;}
.x23{left:205.950000px;}
.x62{left:207.930000px;}
.x74{left:209.910000px;}
.x24{left:210.990000px;}
.x83{left:213.330000px;}
.x63{left:217.470000px;}
.x1a{left:219.105000px;}
.x84{left:222.180000px;}
.x40{left:223.620000px;}
.x85{left:225.960000px;}
.xa8{left:232.440000px;}
.x25{left:234.420000px;}
.xa9{left:239.640000px;}
.x26{left:243.240000px;}
.x41{left:246.300000px;}
.x75{left:250.080000px;}
.x42{left:254.760000px;}
.x9a{left:260.520000px;}
.x64{left:264.480000px;}
.xaa{left:268.620000px;}
.x43{left:270.780000px;}
.x44{left:275.460000px;}
.xa3{left:277.800000px;}
.x76{left:279.960000px;}
.x27{left:284.640000px;}
.x77{left:286.980000px;}
.x28{left:289.680000px;}
.x8f{left:292.020000px;}
.x51{left:297.780000px;}
.x65{left:299.580000px;}
.x66{left:305.520000px;}
.x9b{left:309.660000px;}
.x7{left:311.100000px;}
.x45{left:313.080000px;}
.x52{left:314.700000px;}
.x29{left:318.480000px;}
.xab{left:320.100000px;}
.xa4{left:321.360000px;}
.x2a{left:323.520000px;}
.x90{left:331.260000px;}
.xa5{left:333.960000px;}
.x86{left:335.940000px;}
.x91{left:337.740000px;}
.x53{left:340.080000px;}
.x67{left:342.600000px;}
.x54{left:344.040000px;}
.x46{left:346.560000px;}
.x68{left:348.360000px;}
.x47{left:351.240000px;}
.x92{left:356.100000px;}
.x9c{left:357.540000px;}
.x78{left:358.620000px;}
.x2b{left:361.860000px;}
.x2c{left:366.900000px;}
.xaf{left:376.620000px;}
.x69{left:381.840000px;}
.x55{left:385.440000px;}
.x6a{left:387.600000px;}
.x56{left:389.400000px;}
.x48{left:390.660000px;}
.x2d{left:396.060000px;}
.x79{left:397.500000px;}
.x2e{left:401.145000px;}
.x7a{left:404.385000px;}
.x9d{left:407.085000px;}
.x9e{left:411.765000px;}
.x93{left:414.465000px;}
.x2f{left:417.885000px;}
.x57{left:420.405000px;}
.x30{left:423.105000px;}
.x58{left:424.365000px;}
.xb0{left:429.225000px;}
.x6b{left:431.205000px;}
.x7b{left:433.185000px;}
.x87{left:435.165000px;}
.x6c{left:440.745000px;}
.x31{left:441.825000px;}
.x7c{left:443.985000px;}
.x9f{left:445.245000px;}
.x32{left:446.865000px;}
.x59{left:450.105000px;}
.xb4{left:455.145000px;}
.x7d{left:457.665000px;}
.x88{left:459.105000px;}
.x6d{left:460.725000px;}
.x89{left:462.705000px;}
.x5a{left:465.225000px;}
.x6e{left:466.485000px;}
.x5b{left:469.185000px;}
.x8a{left:484.665000px;}
.x33{left:486.645000px;}
.x34{left:491.685000px;}
.xb5{left:493.845000px;}
.x6f{left:495.465000px;}
.x49{left:499.785000px;}
.xa0{left:502.665000px;}
.x4a{left:504.285000px;}
.x5c{left:505.905000px;}
.x5d{left:509.865000px;}
.xb1{left:517.065000px;}
.xe{left:519.405000px;}
.x35{left:522.285000px;}
.x36{left:531.285000px;}
.x4b{left:533.265000px;}
.xb2{left:535.065000px;}
.x7e{left:537.225000px;}
.xa1{left:539.745000px;}
.x4c{left:541.545000px;}
.xa2{left:543.525000px;}
.x37{left:544.965000px;}
.x38{left:550.185000px;}
.xa6{left:551.445000px;}
.x94{left:553.605000px;}
.x70{left:559.545000px;}
.x39{left:588.375000px;}
.xf{left:608.145000px;}
.xd{left:668.670000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.720000pt;}
.ls67{letter-spacing:-0.688000pt;}
.ls48{letter-spacing:-0.592000pt;}
.ls2b{letter-spacing:-0.573421pt;}
.ls4b{letter-spacing:-0.409067pt;}
.ls47{letter-spacing:-0.355200pt;}
.ls1e{letter-spacing:-0.303467pt;}
.ls2f{letter-spacing:-0.297600pt;}
.ls65{letter-spacing:-0.272533pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.249067pt;}
.ls4c{letter-spacing:-0.230933pt;}
.ls49{letter-spacing:-0.216533pt;}
.ls29{letter-spacing:-0.203733pt;}
.ls24{letter-spacing:-0.201067pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.153067pt;}
.ls4a{letter-spacing:-0.140267pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls6b{letter-spacing:-0.094933pt;}
.ls2a{letter-spacing:-0.066667pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.047360pt;}
.ls4d{letter-spacing:-0.010880pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016865pt;}
.ls39{letter-spacing:0.019200pt;}
.ls58{letter-spacing:0.029440pt;}
.ls66{letter-spacing:0.047360pt;}
.ls6c{letter-spacing:0.067200pt;}
.ls19{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101192pt;}
.ls27{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.112640pt;}
.ls25{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.146133pt;}
.ls32{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls2c{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls5b{letter-spacing:0.244267pt;}
.ls51{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls26{letter-spacing:0.284800pt;}
.ls63{letter-spacing:0.294933pt;}
.ls8{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1d{letter-spacing:0.303467pt;}
.ls60{letter-spacing:0.313067pt;}
.ls4{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.367360pt;}
.ls2d{letter-spacing:0.436267pt;}
.ls40{letter-spacing:0.552960pt;}
.ls64{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls23{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls44{letter-spacing:0.871040pt;}
.ls53{letter-spacing:1.211307pt;}
.ls46{letter-spacing:1.232640pt;}
.lsf{letter-spacing:1.872640pt;}
.ls11{letter-spacing:2.032640pt;}
.ls10{letter-spacing:2.512640pt;}
.ls5d{letter-spacing:3.131307pt;}
.ls9{letter-spacing:3.152640pt;}
.ls7{letter-spacing:3.792640pt;}
.ls41{letter-spacing:3.952640pt;}
.ls3f{letter-spacing:4.432640pt;}
.ls61{letter-spacing:4.592640pt;}
.ls38{letter-spacing:5.072640pt;}
.ls57{letter-spacing:5.232640pt;}
.ls43{letter-spacing:5.691307pt;}
.ls16{letter-spacing:5.712640pt;}
.ls54{letter-spacing:5.819307pt;}
.ls34{letter-spacing:5.872640pt;}
.ls3a{letter-spacing:6.331307pt;}
.ls17{letter-spacing:6.352640pt;}
.ls3e{letter-spacing:6.512640pt;}
.ls42{letter-spacing:6.971307pt;}
.ls3b{letter-spacing:6.992640pt;}
.ls3d{letter-spacing:7.099307pt;}
.ls5f{letter-spacing:7.152640pt;}
.ls36{letter-spacing:7.632640pt;}
.ls14{letter-spacing:8.272640pt;}
.ls15{letter-spacing:8.379307pt;}
.ls13{letter-spacing:8.432640pt;}
.ls35{letter-spacing:8.912640pt;}
.ls62{letter-spacing:9.072640pt;}
.ls45{letter-spacing:9.552640pt;}
.ls37{letter-spacing:10.192640pt;}
.ls12{letter-spacing:10.832640pt;}
.ls5c{letter-spacing:10.992640pt;}
.lsa{letter-spacing:11.472640pt;}
.ls4e{letter-spacing:12.091307pt;}
.lsb{letter-spacing:12.112640pt;}
.ls59{letter-spacing:12.752640pt;}
.ls5a{letter-spacing:12.912640pt;}
.ls5{letter-spacing:14.032640pt;}
.ls6{letter-spacing:14.672640pt;}
.ls3c{letter-spacing:14.832640pt;}
.ls52{letter-spacing:17.232640pt;}
.ls4f{letter-spacing:17.872640pt;}
.ls50{letter-spacing:17.979307pt;}
.ls5e{letter-spacing:19.152640pt;}
.lsc{letter-spacing:19.792640pt;}
.lsd{letter-spacing:20.432640pt;}
.ls69{letter-spacing:37.072640pt;}
.ls6a{letter-spacing:40.912640pt;}
.ls56{letter-spacing:88.272640pt;}
.ws2e{word-spacing:-53.120000pt;}
.ws3{word-spacing:-20.816640pt;}
.ws4{word-spacing:-18.416533pt;}
.ws7{word-spacing:-14.913493pt;}
.ws6{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.518293pt;}
.ws1a{word-spacing:-14.065670pt;}
.ws2{word-spacing:-13.600000pt;}
.ws2d{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.520000pt;}
.ws18{word-spacing:-13.344000pt;}
.ws28{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.152000pt;}
.ws1e{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws9{word-spacing:-9.920000pt;}
.wsb{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.078933pt;}
.ws15{word-spacing:-7.936000pt;}
.ws12{word-spacing:-0.489387pt;}
.ws29{word-spacing:-0.366187pt;}
.wsf{word-spacing:-0.353920pt;}
.ws23{word-spacing:-0.348053pt;}
.ws11{word-spacing:-0.337920pt;}
.ws24{word-spacing:-0.318720pt;}
.ws27{word-spacing:-0.297387pt;}
.ws13{word-spacing:-0.236587pt;}
.ws25{word-spacing:-0.199253pt;}
.ws10{word-spacing:-0.181120pt;}
.ws2c{word-spacing:-0.120320pt;}
.ws26{word-spacing:-0.082560pt;}
.ws1c{word-spacing:-0.072320pt;}
.wsc{word-spacing:-0.053120pt;}
.ws22{word-spacing:-0.042240pt;}
.ws1b{word-spacing:0.000000pt;}
.ws14{word-spacing:0.013547pt;}
.ws20{word-spacing:0.087147pt;}
.ws2a{word-spacing:0.099947pt;}
.wse{word-spacing:0.150613pt;}
.ws1f{word-spacing:0.163413pt;}
.ws21{word-spacing:0.177813pt;}
.ws1d{word-spacing:0.302080pt;}
._3{margin-left:-11.042987pt;}
._6{margin-left:-7.914880pt;}
._17{margin-left:-3.962880pt;}
._f{margin-left:-2.071680pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._2{width:2.190507pt;}
._9{width:3.474254pt;}
._15{width:5.127467pt;}
._14{width:6.313600pt;}
._7{width:7.649280pt;}
._8{width:8.972800pt;}
._4{width:10.782720pt;}
._12{width:11.675307pt;}
._c{width:13.020160pt;}
._b{width:14.688000pt;}
._a{width:16.291892pt;}
._1a{width:18.310827pt;}
._13{width:20.562987pt;}
._10{width:23.150452pt;}
._e{width:50.592000pt;}
._d{width:53.395578pt;}
._18{width:59.472640pt;}
._19{width:74.192640pt;}
._16{width:118.352640pt;}
._5{width:131.819280pt;}
._1b{width:133.025280pt;}
._11{width:147.952640pt;}
._1c{width:162.465280pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y41{bottom:2.400000pt;}
.y4e{bottom:4.453333pt;}
.y37{bottom:8.146667pt;}
.y40{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4c{bottom:13.760000pt;}
.y4{bottom:28.800000pt;}
.y4b{bottom:30.400000pt;}
.y36{bottom:33.266667pt;}
.y3f{bottom:36.000000pt;}
.y3e{bottom:46.240000pt;}
.y3{bottom:49.306667pt;}
.y4a{bottom:50.080000pt;}
.ya{bottom:51.200000pt;}
.y3d{bottom:57.760000pt;}
.y35{bottom:58.226667pt;}
.y49{bottom:67.040000pt;}
.y9{bottom:67.360000pt;}
.y3c{bottom:69.440000pt;}
.y48{bottom:82.746667pt;}
.y34{bottom:83.346667pt;}
.y8{bottom:85.120000pt;}
.y47{bottom:88.346667pt;}
.y3b{bottom:88.826667pt;}
.y46{bottom:102.586667pt;}
.y33{bottom:108.506667pt;}
.y38{bottom:113.600000pt;}
.y45{bottom:116.346667pt;}
.y44{bottom:130.106667pt;}
.y7f{bottom:131.840000pt;}
.y32{bottom:133.466667pt;}
.y73{bottom:134.560000pt;}
.y43{bottom:143.866667pt;}
.y3a{bottom:144.026667pt;}
.y7e{bottom:152.480000pt;}
.y39{bottom:153.466667pt;}
.y42{bottom:157.466667pt;}
.y72{bottom:157.760000pt;}
.y31{bottom:158.586667pt;}
.y7d{bottom:172.960000pt;}
.y71{bottom:180.960000pt;}
.y30{bottom:183.706667pt;}
.y70{bottom:204.186667pt;}
.y2f{bottom:208.666667pt;}
.y6f{bottom:227.546667pt;}
.y2e{bottom:233.786667pt;}
.y6e{bottom:248.026667pt;}
.y7c{bottom:250.746667pt;}
.y2d{bottom:256.986667pt;}
.y6d{bottom:268.666667pt;}
.y7b{bottom:273.946667pt;}
.y1e{bottom:284.346667pt;}
.y2c{bottom:284.826667pt;}
.y6c{bottom:291.866667pt;}
.y10{bottom:293.640000pt;}
.y7a{bottom:294.586667pt;}
.y1d{bottom:298.426667pt;}
.y2b{bottom:301.466667pt;}
.y6b{bottom:315.066667pt;}
.y1c{bottom:319.893333pt;}
.y2a{bottom:322.453333pt;}
.y6a{bottom:338.266667pt;}
.y1b{bottom:341.333333pt;}
.y29{bottom:343.253333pt;}
.y69{bottom:361.466667pt;}
.y1a{bottom:362.933333pt;}
.y28{bottom:364.213333pt;}
.y19{bottom:384.373333pt;}
.y68{bottom:384.666667pt;}
.y27{bottom:385.173333pt;}
.y18{bottom:405.813333pt;}
.y26{bottom:405.973333pt;}
.y67{bottom:408.066667pt;}
.y25{bottom:426.933333pt;}
.y17{bottom:427.253333pt;}
.y66{bottom:431.266667pt;}
.y24{bottom:447.893333pt;}
.y16{bottom:448.693333pt;}
.y65{bottom:454.466667pt;}
.y23{bottom:468.693333pt;}
.y15{bottom:470.133333pt;}
.y64{bottom:477.666667pt;}
.y22{bottom:489.653333pt;}
.y14{bottom:491.733333pt;}
.y63{bottom:500.866667pt;}
.y21{bottom:510.613333pt;}
.y13{bottom:513.173333pt;}
.y62{bottom:524.226667pt;}
.y20{bottom:531.453333pt;}
.y12{bottom:534.653333pt;}
.y61{bottom:547.426667pt;}
.y1f{bottom:550.333333pt;}
.y11{bottom:556.093333pt;}
.y60{bottom:570.626667pt;}
.y5f{bottom:593.826667pt;}
.y79{bottom:601.826667pt;}
.y5e{bottom:617.053333pt;}
.y78{bottom:625.053333pt;}
.y5d{bottom:640.253333pt;}
.y77{bottom:648.253333pt;}
.y5c{bottom:663.613333pt;}
.y76{bottom:671.613333pt;}
.y5b{bottom:686.813333pt;}
.y75{bottom:694.813333pt;}
.y5a{bottom:710.013333pt;}
.y74{bottom:718.013333pt;}
.y59{bottom:741.213333pt;}
.y87{bottom:764.093333pt;}
.y58{bottom:764.413333pt;}
.y86{bottom:782.333333pt;}
.y57{bottom:787.773333pt;}
.y85{bottom:805.533333pt;}
.y56{bottom:810.973333pt;}
.y84{bottom:828.933333pt;}
.y55{bottom:834.213333pt;}
.y83{bottom:849.413333pt;}
.y54{bottom:857.413333pt;}
.yf{bottom:863.333333pt;}
.y82{bottom:872.613333pt;}
.y53{bottom:880.613333pt;}
.ye{bottom:881.893333pt;}
.y81{bottom:895.813333pt;}
.y52{bottom:903.813333pt;}
.yd{bottom:905.093333pt;}
.y80{bottom:919.173333pt;}
.y51{bottom:927.173333pt;}
.yc{bottom:931.013333pt;}
.y50{bottom:950.373333pt;}
.yb{bottom:962.533333pt;}
.y4d{bottom:965.600000pt;}
.y4f{bottom:973.573333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h17{height:5.022500pt;}
.h10{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h19{height:24.480000pt;}
.h15{height:26.381250pt;}
.h14{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h12{height:47.085938pt;}
.h16{height:48.375000pt;}
.h5{height:49.621875pt;}
.h18{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h11{height:53.634657pt;}
.h1b{height:54.598989pt;}
.hc{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h13{height:179.386667pt;}
.hd{height:564.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb9{left:6.112000pt;}
.x1b{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x16{left:12.632000pt;}
.x19{left:14.232000pt;}
.xb7{left:16.152000pt;}
.x18{left:19.352000pt;}
.x17{left:23.192000pt;}
.xb8{left:25.912000pt;}
.x5{left:29.906667pt;}
.x95{left:32.946667pt;}
.x96{left:37.106667pt;}
.x11{left:38.872000pt;}
.x1c{left:40.026667pt;}
.x4d{left:42.106667pt;}
.x1d{left:43.546667pt;}
.x12{left:45.112000pt;}
.x3a{left:47.706667pt;}
.x10{left:48.952000pt;}
.x5e{left:54.106667pt;}
.x7f{left:55.546667pt;}
.x1e{left:58.586667pt;}
.x97{left:62.746667pt;}
.x14{left:65.426667pt;}
.x98{left:66.906667pt;}
.x1{left:69.600000pt;}
.x15{left:74.386667pt;}
.x4e{left:75.386667pt;}
.xc{left:76.832000pt;}
.x3b{left:78.266667pt;}
.x2{left:85.146667pt;}
.xac{left:90.586667pt;}
.x1f{left:91.546667pt;}
.x8b{left:94.746667pt;}
.x20{left:96.186667pt;}
.x8c{left:100.506667pt;}
.x5f{left:102.106667pt;}
.x99{left:103.386667pt;}
.x80{left:105.786667pt;}
.x60{left:107.226667pt;}
.x81{left:109.146667pt;}
.x13{left:110.706667pt;}
.x3c{left:112.666667pt;}
.x3d{left:116.826667pt;}
.x4f{left:122.746667pt;}
.x8{left:124.832000pt;}
.x71{left:127.386667pt;}
.x50{left:130.266667pt;}
.x72{left:133.466667pt;}
.x21{left:136.186667pt;}
.xad{left:138.106667pt;}
.x22{left:140.666667pt;}
.x3e{left:142.106667pt;}
.x8d{left:144.346667pt;}
.x3f{left:146.266667pt;}
.x82{left:149.146667pt;}
.xb6{left:152.826667pt;}
.x8e{left:154.106667pt;}
.x61{left:156.506667pt;}
.xae{left:158.106667pt;}
.x3{left:162.120000pt;}
.xb3{left:163.066667pt;}
.xa7{left:169.146667pt;}
.x73{left:180.506667pt;}
.x23{left:183.066667pt;}
.x62{left:184.826667pt;}
.x74{left:186.586667pt;}
.x24{left:187.546667pt;}
.x83{left:189.626667pt;}
.x63{left:193.306667pt;}
.x1a{left:194.760000pt;}
.x84{left:197.493333pt;}
.x40{left:198.773333pt;}
.x85{left:200.853333pt;}
.xa8{left:206.613333pt;}
.x25{left:208.373333pt;}
.xa9{left:213.013333pt;}
.x26{left:216.213333pt;}
.x41{left:218.933333pt;}
.x75{left:222.293333pt;}
.x42{left:226.453333pt;}
.x9a{left:231.573333pt;}
.x64{left:235.093333pt;}
.xaa{left:238.773333pt;}
.x43{left:240.693333pt;}
.x44{left:244.853333pt;}
.xa3{left:246.933333pt;}
.x76{left:248.853333pt;}
.x27{left:253.013333pt;}
.x77{left:255.093333pt;}
.x28{left:257.493333pt;}
.x8f{left:259.573333pt;}
.x51{left:264.693333pt;}
.x65{left:266.293333pt;}
.x66{left:271.573333pt;}
.x9b{left:275.253333pt;}
.x7{left:276.533333pt;}
.x45{left:278.293333pt;}
.x52{left:279.733333pt;}
.x29{left:283.093333pt;}
.xab{left:284.533333pt;}
.xa4{left:285.653333pt;}
.x2a{left:287.573333pt;}
.x90{left:294.453333pt;}
.xa5{left:296.853333pt;}
.x86{left:298.613333pt;}
.x91{left:300.213333pt;}
.x53{left:302.293333pt;}
.x67{left:304.533333pt;}
.x54{left:305.813333pt;}
.x46{left:308.053333pt;}
.x68{left:309.653333pt;}
.x47{left:312.213333pt;}
.x92{left:316.533333pt;}
.x9c{left:317.813333pt;}
.x78{left:318.773333pt;}
.x2b{left:321.653333pt;}
.x2c{left:326.133333pt;}
.xaf{left:334.773333pt;}
.x69{left:339.413333pt;}
.x55{left:342.613333pt;}
.x6a{left:344.533333pt;}
.x56{left:346.133333pt;}
.x48{left:347.253333pt;}
.x2d{left:352.053333pt;}
.x79{left:353.333333pt;}
.x2e{left:356.573333pt;}
.x7a{left:359.453333pt;}
.x9d{left:361.853333pt;}
.x9e{left:366.013333pt;}
.x93{left:368.413333pt;}
.x2f{left:371.453333pt;}
.x57{left:373.693333pt;}
.x30{left:376.093333pt;}
.x58{left:377.213333pt;}
.xb0{left:381.533333pt;}
.x6b{left:383.293333pt;}
.x7b{left:385.053333pt;}
.x87{left:386.813333pt;}
.x6c{left:391.773333pt;}
.x31{left:392.733333pt;}
.x7c{left:394.653333pt;}
.x9f{left:395.773333pt;}
.x32{left:397.213333pt;}
.x59{left:400.093333pt;}
.xb4{left:404.573333pt;}
.x7d{left:406.813333pt;}
.x88{left:408.093333pt;}
.x6d{left:409.533333pt;}
.x89{left:411.293333pt;}
.x5a{left:413.533333pt;}
.x6e{left:414.653333pt;}
.x5b{left:417.053333pt;}
.x8a{left:430.813333pt;}
.x33{left:432.573333pt;}
.x34{left:437.053333pt;}
.xb5{left:438.973333pt;}
.x6f{left:440.413333pt;}
.x49{left:444.253333pt;}
.xa0{left:446.813333pt;}
.x4a{left:448.253333pt;}
.x5c{left:449.693333pt;}
.x5d{left:453.213333pt;}
.xb1{left:459.613333pt;}
.xe{left:461.693333pt;}
.x35{left:464.253333pt;}
.x36{left:472.253333pt;}
.x4b{left:474.013333pt;}
.xb2{left:475.613333pt;}
.x7e{left:477.533333pt;}
.xa1{left:479.773333pt;}
.x4c{left:481.373333pt;}
.xa2{left:483.133333pt;}
.x37{left:484.413333pt;}
.x38{left:489.053333pt;}
.xa6{left:490.173333pt;}
.x94{left:492.093333pt;}
.x70{left:497.373333pt;}
.x39{left:523.000000pt;}
.xf{left:540.573333pt;}
.xd{left:594.373333pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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