
    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_f6d4ffddf93e36b681cdc6c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_5d2bceea87cfde3232ab35f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_1a2fe4aef5c36dcdce03bee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a08a62690a81c3237f292ed7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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);}
.v1{vertical-align:-52.199400px;}
.v0{vertical-align:0.000000px;}
.ls57{letter-spacing:-2.489760px;}
.ls66{letter-spacing:-2.346120px;}
.ls37{letter-spacing:-2.298240px;}
.ls31{letter-spacing:-2.202480px;}
.ls59{letter-spacing:-2.154600px;}
.ls34{letter-spacing:-2.106720px;}
.ls62{letter-spacing:-1.963080px;}
.ls42{letter-spacing:-1.915200px;}
.ls35{letter-spacing:-1.867320px;}
.ls55{letter-spacing:-1.771560px;}
.ls65{letter-spacing:-1.723680px;}
.ls41{letter-spacing:-1.627920px;}
.ls5a{letter-spacing:-1.436400px;}
.ls52{letter-spacing:-1.432080px;}
.ls22{letter-spacing:-1.404000px;}
.ls4d{letter-spacing:-1.305720px;}
.ls46{letter-spacing:-1.292760px;}
.ls4a{letter-spacing:-1.221480px;}
.ls45{letter-spacing:-1.197000px;}
.ls69{letter-spacing:-1.149120px;}
.ls39{letter-spacing:-1.137240px;}
.ls5b{letter-spacing:-0.972000px;}
.ls3c{letter-spacing:-0.926640px;}
.ls47{letter-spacing:-0.909720px;}
.ls3e{letter-spacing:-0.884520px;}
.ls33{letter-spacing:-0.861840px;}
.ls1d{letter-spacing:-0.855000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.792000px;}
.ls38{letter-spacing:-0.718200px;}
.ls43{letter-spacing:-0.670320px;}
.ls63{letter-spacing:-0.622440px;}
.ls5e{letter-spacing:-0.547560px;}
.ls23{letter-spacing:-0.540000px;}
.ls64{letter-spacing:-0.526680px;}
.ls2f{letter-spacing:-0.478800px;}
.ls68{letter-spacing:-0.430920px;}
.ls44{letter-spacing:-0.383040px;}
.ls51{letter-spacing:-0.379080px;}
.ls40{letter-spacing:-0.335160px;}
.ls20{letter-spacing:-0.324000px;}
.ls30{letter-spacing:-0.287280px;}
.ls48{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.252000px;}
.ls3f{letter-spacing:-0.191520px;}
.ls4e{letter-spacing:-0.168480px;}
.ls60{letter-spacing:-0.143640px;}
.ls5f{letter-spacing:-0.047880px;}
.ls1e{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.047880px;}
.ls4b{letter-spacing:0.084240px;}
.ls1c{letter-spacing:0.095760px;}
.ls17{letter-spacing:0.104040px;}
.ls5c{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.ls53{letter-spacing:0.168480px;}
.ls58{letter-spacing:0.191520px;}
.ls49{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.299520px;}
.ls1a{letter-spacing:0.335160px;}
.ls32{letter-spacing:0.383040px;}
.ls1f{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.505440px;}
.ls2b{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.631800px;}
.ls2c{letter-spacing:0.684000px;}
.ls10{letter-spacing:0.756000px;}
.ls67{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.828000px;}
.ls61{letter-spacing:0.861840px;}
.ls28{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.884520px;}
.ls27{letter-spacing:0.900000px;}
.ls36{letter-spacing:0.909720px;}
.ls3b{letter-spacing:0.926640px;}
.ls16{letter-spacing:0.968760px;}
.ls26{letter-spacing:0.972000px;}
.ls3a{letter-spacing:1.010880px;}
.ls2d{letter-spacing:1.044000px;}
.ls11{letter-spacing:1.053000px;}
.ls19{letter-spacing:1.053360px;}
.ls2e{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.134000px;}
.ls15{letter-spacing:1.137240px;}
.ls25{letter-spacing:1.152000px;}
.ls54{letter-spacing:1.179360px;}
.lsd{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls13{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lse{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls56{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls4f{letter-spacing:1.728000px;}
.ls4c{letter-spacing:1.811160px;}
.ls3d{letter-spacing:1.836000px;}
.ls50{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsb{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.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;}
}
.ws22{word-spacing:-18.738000px;}
.ws33{word-spacing:-18.630000px;}
.ws3f{word-spacing:-18.036000px;}
.ws21{word-spacing:-16.902000px;}
.ws72{word-spacing:-16.665840px;}
.ws30{word-spacing:-16.632000px;}
.ws3e{word-spacing:-15.930000px;}
.ws1a{word-spacing:-15.896160px;}
.ws34{word-spacing:-15.163200px;}
.ws16{word-spacing:-15.034320px;}
.ws32{word-spacing:-14.994720px;}
.ws15{word-spacing:-14.986440px;}
.ws76{word-spacing:-14.938560px;}
.ws74{word-spacing:-14.842800px;}
.ws13{word-spacing:-14.699160px;}
.ws2c{word-spacing:-14.603400px;}
.ws12{word-spacing:-14.507640px;}
.ws38{word-spacing:-14.362920px;}
.ws1c{word-spacing:-14.268240px;}
.ws1e{word-spacing:-14.194440px;}
.ws37{word-spacing:-14.152320px;}
.ws17{word-spacing:-14.124600px;}
.ws7e{word-spacing:-13.837320px;}
.ws2d{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws39{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1f{word-spacing:-13.183560px;}
.ws19{word-spacing:-13.119120px;}
.ws10{word-spacing:-12.852000px;}
.ws14{word-spacing:-12.783960px;}
.ws23{word-spacing:-12.762360px;}
.ws7a{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.348000px;}
.ws35{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws20{word-spacing:-12.256920px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws1d{word-spacing:-12.046320px;}
.ws31{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws3b{word-spacing:-11.874240px;}
.ws40{word-spacing:-11.709360px;}
.ws3d{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws41{word-spacing:-11.161800px;}
.ws3a{word-spacing:-11.156040px;}
.ws43{word-spacing:-11.012400px;}
.ws36{word-spacing:-10.909080px;}
.ws24{word-spacing:-10.824840px;}
.ws3c{word-spacing:-10.820880px;}
.ws42{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws73{word-spacing:-1.820880px;}
.ws26{word-spacing:-1.757160px;}
.ws4b{word-spacing:-1.584000px;}
.ws6c{word-spacing:-1.484280px;}
.ws4e{word-spacing:-1.440000px;}
.ws61{word-spacing:-1.263600px;}
.ws50{word-spacing:-1.152000px;}
.ws28{word-spacing:-1.134720px;}
.ws6b{word-spacing:-1.101240px;}
.ws6a{word-spacing:-1.053000px;}
.ws49{word-spacing:-0.972000px;}
.ws71{word-spacing:-0.957600px;}
.ws55{word-spacing:-0.926640px;}
.ws4a{word-spacing:-0.900000px;}
.ws4c{word-spacing:-0.864000px;}
.ws78{word-spacing:-0.751680px;}
.ws5c{word-spacing:-0.716040px;}
.ws51{word-spacing:-0.612000px;}
.ws54{word-spacing:-0.505440px;}
.ws70{word-spacing:-0.478800px;}
.ws52{word-spacing:-0.383040px;}
.ws4f{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.294840px;}
.ws5b{word-spacing:-0.210600px;}
.ws64{word-spacing:-0.191520px;}
.ws60{word-spacing:-0.168480px;}
.ws25{word-spacing:-0.129240px;}
.ws66{word-spacing:-0.108000px;}
.ws27{word-spacing:-0.090360px;}
.ws5d{word-spacing:-0.084240px;}
.ws6f{word-spacing:-0.047880px;}
.ws5a{word-spacing:-0.042120px;}
.ws44{word-spacing:0.000000px;}
.ws6d{word-spacing:0.047880px;}
.ws67{word-spacing:0.084240px;}
.ws7f{word-spacing:0.143640px;}
.ws5f{word-spacing:0.168480px;}
.ws58{word-spacing:0.191520px;}
.ws45{word-spacing:0.252000px;}
.ws59{word-spacing:0.287280px;}
.ws47{word-spacing:0.324000px;}
.ws56{word-spacing:0.335160px;}
.ws6e{word-spacing:0.383040px;}
.ws2e{word-spacing:0.397440px;}
.ws69{word-spacing:0.421200px;}
.ws7c{word-spacing:0.430920px;}
.ws53{word-spacing:0.478800px;}
.ws46{word-spacing:0.540000px;}
.ws7d{word-spacing:0.718200px;}
.ws48{word-spacing:0.792000px;}
.ws4d{word-spacing:0.828000px;}
.ws2b{word-spacing:1.019880px;}
.ws2f{word-spacing:1.058760px;}
.ws7b{word-spacing:1.197000px;}
.ws57{word-spacing:1.292760px;}
.ws5e{word-spacing:1.305720px;}
.ws80{word-spacing:1.532160px;}
.ws62{word-spacing:1.771560px;}
.ws65{word-spacing:2.154600px;}
.ws63{word-spacing:2.489760px;}
.ws29{word-spacing:2.552040px;}
.ws77{word-spacing:3.557520px;}
.ws79{word-spacing:4.179960px;}
.ws2a{word-spacing:4.218840px;}
.ws18{word-spacing:5.329080px;}
.ws1b{word-spacing:5.367960px;}
.ws75{word-spacing:6.749640px;}
._6{margin-left:-5.938920px;}
._7{margin-left:-4.831560px;}
._3{margin-left:-3.201840px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._9{width:3.774600px;}
._8{width:4.928040px;}
._4{width:10.835280px;}
._5{width:1852.618320px;}
.fc8{color:transparent;}
.fc7{color:rgb(12,100,171);}
.fc5{color:rgb(18,73,154);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs6{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:25.795050px;}
.y85{bottom:25.800150px;}
.ye6{bottom:25.804650px;}
.y91{bottom:40.205250px;}
.y1b{bottom:50.082750px;}
.y1a{bottom:72.177600px;}
.yc1{bottom:78.419850px;}
.ye5{bottom:83.260650px;}
.yc0{bottom:90.120000px;}
.y12c{bottom:97.555200px;}
.ye4{bottom:105.220650px;}
.y19{bottom:111.998790px;}
.y12b{bottom:119.515200px;}
.y111{bottom:119.516250px;}
.ybf{bottom:120.409800px;}
.ye{bottom:123.419850px;}
.y18{bottom:124.055640px;}
.ye3{bottom:127.090650px;}
.y110{bottom:131.216250px;}
.ybe{bottom:132.109800px;}
.yd{bottom:135.120000px;}
.y12a{bottom:141.385200px;}
.y13{bottom:142.555200px;}
.ye2{bottom:144.460650px;}
.y17{bottom:148.980150px;}
.ybd{bottom:153.034050px;}
.y10f{bottom:154.114050px;}
.y129{bottom:158.755200px;}
.y12{bottom:164.515050px;}
.yc{bottom:164.516250px;}
.y10e{bottom:172.114050px;}
.ybc{bottom:172.474050px;}
.y16{bottom:174.535950px;}
.ye1{bottom:176.005980px;}
.yb{bottom:176.216250px;}
.y11{bottom:186.385050px;}
.y15{bottom:186.592800px;}
.ybb{bottom:190.024050px;}
.y128{bottom:190.920600px;}
.ye0{bottom:191.040300px;}
.ya{bottom:199.114050px;}
.y10{bottom:203.755050px;}
.y14{bottom:206.157750px;}
.y9{bottom:217.114050px;}
.y84{bottom:223.999950px;}
.y8{bottom:235.024050px;}
.yf{bottom:235.917450px;}
.y10d{bottom:238.338450px;}
.yba{bottom:238.338600px;}
.y83{bottom:239.209950px;}
.y10c{bottom:250.038450px;}
.yb9{bottom:250.038600px;}
.y82{bottom:252.799950px;}
.ydf{bottom:257.473800px;}
.y81{bottom:270.079950px;}
.y8c{bottom:275.299050px;}
.yde{bottom:279.433650px;}
.y10b{bottom:279.434850px;}
.yb8{bottom:280.328250px;}
.y80{bottom:285.380100px;}
.y5a{bottom:289.966050px;}
.y10a{bottom:291.134850px;}
.yb7{bottom:292.028250px;}
.y7f{bottom:298.969950px;}
.y3e{bottom:299.419650px;}
.y8a{bottom:299.959050px;}
.ydd{bottom:301.303800px;}
.y3d{bottom:311.114700px;}
.y59{bottom:311.926050px;}
.yb6{bottom:312.952650px;}
.y7e{bottom:313.009950px;}
.y109{bottom:314.032650px;}
.ydc{bottom:318.673800px;}
.y7d{bottom:325.070100px;}
.y108{bottom:332.032650px;}
.yb5{bottom:332.392650px;}
.y58{bottom:333.796050px;}
.y70{bottom:340.166790px;}
.y3c{bottom:341.408700px;}
.yb4{bottom:349.942800px;}
.ydb{bottom:350.839050px;}
.y57{bottom:351.160530px;}
.y3b{bottom:353.108700px;}
.y7c{bottom:358.431600px;}
.y7b{bottom:372.471600px;}
.y3a{bottom:374.033700px;}
.y56{bottom:382.067070px;}
.y7a{bottom:384.531600px;}
.y39{bottom:393.473700px;}
.y55{bottom:397.005630px;}
.yb3{bottom:398.257200px;}
.y79{bottom:399.471600px;}
.yb2{bottom:409.957050px;}
.y38{bottom:411.023700px;}
.y78{bottom:411.531600px;}
.y54{bottom:412.039950px;}
.yda{bottom:417.392250px;}
.y77{bottom:426.471600px;}
.y76{bottom:438.531600px;}
.yd9{bottom:439.352250px;}
.yb1{bottom:440.247000px;}
.yb0{bottom:451.947000px;}
.y75{bottom:458.989800px;}
.y37{bottom:459.338100px;}
.yd8{bottom:461.222250px;}
.y36{bottom:471.033450px;}
.yaf{bottom:472.871250px;}
.y107{bottom:473.951250px;}
.y53{bottom:478.473450px;}
.yd7{bottom:478.592250px;}
.y6f{bottom:480.078900px;}
.y106{bottom:491.951250px;}
.y6e{bottom:492.135750px;}
.yae{bottom:492.311250px;}
.y52{bottom:500.433450px;}
.y35{bottom:501.327450px;}
.yad{bottom:509.861250px;}
.yd6{bottom:510.757650px;}
.y127{bottom:510.758700px;}
.y34{bottom:513.027450px;}
.y51{bottom:522.303450px;}
.y6d{bottom:528.705150px;}
.y33{bottom:533.952450px;}
.y50{bottom:539.675460px;}
.y32{bottom:553.392450px;}
.yac{bottom:559.069200px;}
.y126{bottom:564.803250px;}
.y6c{bottom:567.091350px;}
.yab{bottom:570.769200px;}
.y31{bottom:570.942450px;}
.y4f{bottom:571.838850px;}
.yd5{bottom:577.310850px;}
.y6b{bottom:585.496950px;}
.y125{bottom:586.763250px;}
.yf5{bottom:588.551250px;}
.y6a{bottom:597.554310px;}
.yd4{bottom:599.270850px;}
.yaa{bottom:600.165450px;}
.yf4{bottom:600.251250px;}
.y124{bottom:608.633250px;}
.ya9{bottom:611.865450px;}
.y74{bottom:616.947600px;}
.y30{bottom:620.150250px;}
.yd3{bottom:621.140850px;}
.y123{bottom:626.003250px;}
.y73{bottom:628.917600px;}
.yf3{bottom:630.541050px;}
.y2f{bottom:631.852050px;}
.ya8{bottom:633.869850px;}
.y4e{bottom:638.392050px;}
.yd2{bottom:638.510850px;}
.y72{bottom:640.887600px;}
.yf2{bottom:642.241050px;}
.ya7{bottom:651.869850px;}
.y71{bottom:652.947600px;}
.y122{bottom:656.161050px;}
.y4d{bottom:660.352050px;}
.y2e{bottom:661.246050px;}
.yf1{bottom:663.165450px;}
.ya6{bottom:669.779850px;}
.yd1{bottom:670.672050px;}
.y121{bottom:671.195370px;}
.y69{bottom:671.801340px;}
.y2d{bottom:672.946050px;}
.y4c{bottom:682.222050px;}
.yf0{bottom:682.605450px;}
.y68{bottom:683.773950px;}
.y120{bottom:686.133930px;}
.y2c{bottom:693.871050px;}
.y67{bottom:695.830800px;}
.y4b{bottom:699.590610px;}
.yef{bottom:700.155450px;}
.y11f{bottom:701.168250px;}
.y2b{bottom:713.311050px;}
.y66{bottom:713.608800px;}
.ya5{bottom:718.987650px;}
.ya4{bottom:730.687650px;}
.y2a{bottom:730.861050px;}
.y4a{bottom:731.754000px;}
.y65{bottom:732.552000px;}
.y89{bottom:738.090000px;}
.yd0{bottom:738.123000px;}
.y64{bottom:744.522150px;}
.y105{bottom:751.150050px;}
.y11e{bottom:755.990850px;}
.y63{bottom:756.585210px;}
.ycf{bottom:760.083000px;}
.ya3{bottom:760.084200px;}
.y104{bottom:762.850050px;}
.ya2{bottom:771.784200px;}
.y62{bottom:776.613270px;}
.y11d{bottom:777.950850px;}
.y29{bottom:781.855650px;}
.yce{bottom:781.952850px;}
.y49{bottom:786.696300px;}
.y103{bottom:792.246450px;}
.y28{bottom:793.559700px;}
.y61{bottom:794.524800px;}
.ya1{bottom:794.681700px;}
.ycd{bottom:799.323000px;}
.y11c{bottom:799.820700px;}
.y102{bottom:803.946450px;}
.y48{bottom:808.656300px;}
.y60{bottom:810.907200px;}
.ya0{bottom:812.681700px;}
.y11b{bottom:817.190850px;}
.y27{bottom:822.953700px;}
.y5f{bottom:823.777200px;}
.y101{bottom:826.844250px;}
.y47{bottom:830.526450px;}
.y9f{bottom:830.591850px;}
.ycc{bottom:831.488250px;}
.y26{bottom:834.653700px;}
.y5e{bottom:841.777200px;}
.y100{bottom:844.844250px;}
.y46{bottom:847.900680px;}
.y11a{bottom:848.736030px;}
.y25{bottom:857.549700px;}
.y5d{bottom:858.877200px;}
.yff{bottom:862.754400px;}
.y119{bottom:863.770350px;}
.y5c{bottom:870.937200px;}
.y24{bottom:875.549700px;}
.y9e{bottom:878.906100px;}
.y45{bottom:880.674540px;}
.y9d{bottom:890.606250px;}
.y23{bottom:893.459850px;}
.y44{bottom:894.356250px;}
.ycb{bottom:898.041450px;}
.y5b{bottom:907.506600px;}
.yfe{bottom:911.068800px;}
.y90{bottom:913.680000px;}
.yca{bottom:920.001450px;}
.y9c{bottom:920.002650px;}
.yfd{bottom:922.768650px;}
.y118{bottom:930.203850px;}
.y9b{bottom:931.702650px;}
.y22{bottom:941.774100px;}
.yc9{bottom:941.871450px;}
.y117{bottom:952.163850px;}
.yfc{bottom:952.165050px;}
.y21{bottom:953.478450px;}
.y8f{bottom:953.885250px;}
.y9a{bottom:954.600450px;}
.yc8{bottom:959.241600px;}
.y43{bottom:960.909450px;}
.yfb{bottom:963.865050px;}
.y99{bottom:972.600450px;}
.y116{bottom:974.033850px;}
.y8e{bottom:981.435570px;}
.y42{bottom:982.869450px;}
.y20{bottom:982.872450px;}
.yfa{bottom:986.762850px;}
.y98{bottom:990.510450px;}
.yc7{bottom:991.393740px;}
.y115{bottom:991.403850px;}
.y1f{bottom:994.572450px;}
.y8d{bottom:999.978900px;}
.y41{bottom:1004.739450px;}
.yf9{bottom:1004.762850px;}
.y1e{bottom:1017.468450px;}
.y40{bottom:1022.108460px;}
.yf8{bottom:1022.672850px;}
.y114{bottom:1023.566760px;}
.y8b{bottom:1024.639050px;}
.y1d{bottom:1035.468450px;}
.yc6{bottom:1043.965980px;}
.y88{bottom:1049.209050px;}
.y1c{bottom:1053.378450px;}
.y3f{bottom:1054.271850px;}
.yc5{bottom:1059.000300px;}
.y97{bottom:1062.946650px;}
.y87{bottom:1070.508750px;}
.y96{bottom:1074.646650px;}
.y113{bottom:1077.635250px;}
.yc4{bottom:1081.496130px;}
.yf7{bottom:1082.601450px;}
.y86{bottom:1087.518750px;}
.yf6{bottom:1094.301450px;}
.y112{bottom:1099.505250px;}
.y95{bottom:1104.043050px;}
.yc3{bottom:1109.580300px;}
.y131{bottom:1114.522050px;}
.y94{bottom:1115.743050px;}
.yc2{bottom:1117.680300px;}
.yec{bottom:1118.392530px;}
.y7{bottom:1120.800450px;}
.y135{bottom:1122.098130px;}
.y130{bottom:1126.222050px;}
.ye9{bottom:1131.120000px;}
.y6{bottom:1133.040450px;}
.yeb{bottom:1135.761000px;}
.y134{bottom:1139.466600px;}
.ye8{bottom:1149.120000px;}
.ye7{bottom:1167.030000px;}
.y12f{bottom:1167.120000px;}
.yea{bottom:1167.923400px;}
.y5{bottom:1170.076200px;}
.y133{bottom:1171.008930px;}
.y3{bottom:1172.554800px;}
.y2{bottom:1183.534950px;}
.y12e{bottom:1185.030000px;}
.y132{bottom:1186.043250px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.y137{bottom:1217.846160px;}
.y93{bottom:1217.850240px;}
.yee{bottom:1217.851260px;}
.y136{bottom:1232.246070px;}
.y92{bottom:1232.250150px;}
.yed{bottom:1232.251170px;}
.hf{height:20.702988px;}
.hb{height:31.179199px;}
.he{height:33.174668px;}
.h2{height:38.412000px;}
.h7{height:43.929844px;}
.h5{height:44.942040px;}
.h8{height:44.945880px;}
.hc{height:44.955960px;}
.h1{height:48.015000px;}
.h9{height:49.937344px;}
.h4{height:51.087960px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.hd{height:88.200000px;}
.ha{height:526.410000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:39.030000px;}
.x13{left:47.970000px;}
.x4{left:51.612450px;}
.xd{left:53.469000px;}
.xc{left:57.936000px;}
.x14{left:60.707250px;}
.xa{left:72.230400px;}
.xb{left:78.484200px;}
.xe{left:86.530140px;}
.x9{left:88.311600px;}
.x16{left:90.000000px;}
.x11{left:97.776150px;}
.xf{left:100.819200px;}
.x10{left:115.113600px;}
.x15{left:159.347250px;}
.x1{left:175.152900px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x7{left:334.164150px;}
.x18{left:336.207750px;}
.x17{left:337.737750px;}
.x8{left:351.894150px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v1{vertical-align:-46.399467pt;}
.v0{vertical-align:0.000000pt;}
.ls57{letter-spacing:-2.213120pt;}
.ls66{letter-spacing:-2.085440pt;}
.ls37{letter-spacing:-2.042880pt;}
.ls31{letter-spacing:-1.957760pt;}
.ls59{letter-spacing:-1.915200pt;}
.ls34{letter-spacing:-1.872640pt;}
.ls62{letter-spacing:-1.744960pt;}
.ls42{letter-spacing:-1.702400pt;}
.ls35{letter-spacing:-1.659840pt;}
.ls55{letter-spacing:-1.574720pt;}
.ls65{letter-spacing:-1.532160pt;}
.ls41{letter-spacing:-1.447040pt;}
.ls5a{letter-spacing:-1.276800pt;}
.ls52{letter-spacing:-1.272960pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls4d{letter-spacing:-1.160640pt;}
.ls46{letter-spacing:-1.149120pt;}
.ls4a{letter-spacing:-1.085760pt;}
.ls45{letter-spacing:-1.064000pt;}
.ls69{letter-spacing:-1.021440pt;}
.ls39{letter-spacing:-1.010880pt;}
.ls5b{letter-spacing:-0.864000pt;}
.ls3c{letter-spacing:-0.823680pt;}
.ls47{letter-spacing:-0.808640pt;}
.ls3e{letter-spacing:-0.786240pt;}
.ls33{letter-spacing:-0.766080pt;}
.ls1d{letter-spacing:-0.760000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls38{letter-spacing:-0.638400pt;}
.ls43{letter-spacing:-0.595840pt;}
.ls63{letter-spacing:-0.553280pt;}
.ls5e{letter-spacing:-0.486720pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls64{letter-spacing:-0.468160pt;}
.ls2f{letter-spacing:-0.425600pt;}
.ls68{letter-spacing:-0.383040pt;}
.ls44{letter-spacing:-0.340480pt;}
.ls51{letter-spacing:-0.336960pt;}
.ls40{letter-spacing:-0.297920pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls30{letter-spacing:-0.255360pt;}
.ls48{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls3f{letter-spacing:-0.170240pt;}
.ls4e{letter-spacing:-0.149760pt;}
.ls60{letter-spacing:-0.127680pt;}
.ls5f{letter-spacing:-0.042560pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.042560pt;}
.ls4b{letter-spacing:0.074880pt;}
.ls1c{letter-spacing:0.085120pt;}
.ls17{letter-spacing:0.092480pt;}
.ls5c{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.ls53{letter-spacing:0.149760pt;}
.ls58{letter-spacing:0.170240pt;}
.ls49{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.266240pt;}
.ls1a{letter-spacing:0.297920pt;}
.ls32{letter-spacing:0.340480pt;}
.ls1f{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.449280pt;}
.ls2b{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.561600pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls10{letter-spacing:0.672000pt;}
.ls67{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls61{letter-spacing:0.766080pt;}
.ls28{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.786240pt;}
.ls27{letter-spacing:0.800000pt;}
.ls36{letter-spacing:0.808640pt;}
.ls3b{letter-spacing:0.823680pt;}
.ls16{letter-spacing:0.861120pt;}
.ls26{letter-spacing:0.864000pt;}
.ls3a{letter-spacing:0.898560pt;}
.ls2d{letter-spacing:0.928000pt;}
.ls11{letter-spacing:0.936000pt;}
.ls19{letter-spacing:0.936320pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls15{letter-spacing:1.010880pt;}
.ls25{letter-spacing:1.024000pt;}
.ls54{letter-spacing:1.048320pt;}
.lsd{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls13{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls4f{letter-spacing:1.536000pt;}
.ls4c{letter-spacing:1.609920pt;}
.ls3d{letter-spacing:1.632000pt;}
.ls50{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ws22{word-spacing:-16.656000pt;}
.ws33{word-spacing:-16.560000pt;}
.ws3f{word-spacing:-16.032000pt;}
.ws21{word-spacing:-15.024000pt;}
.ws72{word-spacing:-14.814080pt;}
.ws30{word-spacing:-14.784000pt;}
.ws3e{word-spacing:-14.160000pt;}
.ws1a{word-spacing:-14.129920pt;}
.ws34{word-spacing:-13.478400pt;}
.ws16{word-spacing:-13.363840pt;}
.ws32{word-spacing:-13.328640pt;}
.ws15{word-spacing:-13.321280pt;}
.ws76{word-spacing:-13.278720pt;}
.ws74{word-spacing:-13.193600pt;}
.ws13{word-spacing:-13.065920pt;}
.ws2c{word-spacing:-12.980800pt;}
.ws12{word-spacing:-12.895680pt;}
.ws38{word-spacing:-12.767040pt;}
.ws1c{word-spacing:-12.682880pt;}
.ws1e{word-spacing:-12.617280pt;}
.ws37{word-spacing:-12.579840pt;}
.ws17{word-spacing:-12.555200pt;}
.ws7e{word-spacing:-12.299840pt;}
.ws2d{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws39{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1f{word-spacing:-11.718720pt;}
.ws19{word-spacing:-11.661440pt;}
.ws10{word-spacing:-11.424000pt;}
.ws14{word-spacing:-11.363520pt;}
.ws23{word-spacing:-11.344320pt;}
.ws7a{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.976000pt;}
.ws35{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws20{word-spacing:-10.895040pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.707840pt;}
.ws31{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws3b{word-spacing:-10.554880pt;}
.ws40{word-spacing:-10.408320pt;}
.ws3d{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws41{word-spacing:-9.921600pt;}
.ws3a{word-spacing:-9.916480pt;}
.ws43{word-spacing:-9.788800pt;}
.ws36{word-spacing:-9.696960pt;}
.ws24{word-spacing:-9.622080pt;}
.ws3c{word-spacing:-9.618560pt;}
.ws42{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws73{word-spacing:-1.618560pt;}
.ws26{word-spacing:-1.561920pt;}
.ws4b{word-spacing:-1.408000pt;}
.ws6c{word-spacing:-1.319360pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws61{word-spacing:-1.123200pt;}
.ws50{word-spacing:-1.024000pt;}
.ws28{word-spacing:-1.008640pt;}
.ws6b{word-spacing:-0.978880pt;}
.ws6a{word-spacing:-0.936000pt;}
.ws49{word-spacing:-0.864000pt;}
.ws71{word-spacing:-0.851200pt;}
.ws55{word-spacing:-0.823680pt;}
.ws4a{word-spacing:-0.800000pt;}
.ws4c{word-spacing:-0.768000pt;}
.ws78{word-spacing:-0.668160pt;}
.ws5c{word-spacing:-0.636480pt;}
.ws51{word-spacing:-0.544000pt;}
.ws54{word-spacing:-0.449280pt;}
.ws70{word-spacing:-0.425600pt;}
.ws52{word-spacing:-0.340480pt;}
.ws4f{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.262080pt;}
.ws5b{word-spacing:-0.187200pt;}
.ws64{word-spacing:-0.170240pt;}
.ws60{word-spacing:-0.149760pt;}
.ws25{word-spacing:-0.114880pt;}
.ws66{word-spacing:-0.096000pt;}
.ws27{word-spacing:-0.080320pt;}
.ws5d{word-spacing:-0.074880pt;}
.ws6f{word-spacing:-0.042560pt;}
.ws5a{word-spacing:-0.037440pt;}
.ws44{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.042560pt;}
.ws67{word-spacing:0.074880pt;}
.ws7f{word-spacing:0.127680pt;}
.ws5f{word-spacing:0.149760pt;}
.ws58{word-spacing:0.170240pt;}
.ws45{word-spacing:0.224000pt;}
.ws59{word-spacing:0.255360pt;}
.ws47{word-spacing:0.288000pt;}
.ws56{word-spacing:0.297920pt;}
.ws6e{word-spacing:0.340480pt;}
.ws2e{word-spacing:0.353280pt;}
.ws69{word-spacing:0.374400pt;}
.ws7c{word-spacing:0.383040pt;}
.ws53{word-spacing:0.425600pt;}
.ws46{word-spacing:0.480000pt;}
.ws7d{word-spacing:0.638400pt;}
.ws48{word-spacing:0.704000pt;}
.ws4d{word-spacing:0.736000pt;}
.ws2b{word-spacing:0.906560pt;}
.ws2f{word-spacing:0.941120pt;}
.ws7b{word-spacing:1.064000pt;}
.ws57{word-spacing:1.149120pt;}
.ws5e{word-spacing:1.160640pt;}
.ws80{word-spacing:1.361920pt;}
.ws62{word-spacing:1.574720pt;}
.ws65{word-spacing:1.915200pt;}
.ws63{word-spacing:2.213120pt;}
.ws29{word-spacing:2.268480pt;}
.ws77{word-spacing:3.162240pt;}
.ws79{word-spacing:3.715520pt;}
.ws2a{word-spacing:3.750080pt;}
.ws18{word-spacing:4.736960pt;}
.ws1b{word-spacing:4.771520pt;}
.ws75{word-spacing:5.999680pt;}
._6{margin-left:-5.279040pt;}
._7{margin-left:-4.294720pt;}
._3{margin-left:-2.846080pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._9{width:3.355200pt;}
._8{width:4.380480pt;}
._4{width:9.631360pt;}
._5{width:1646.771840pt;}
.fs6{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:22.928933pt;}
.y85{bottom:22.933467pt;}
.ye6{bottom:22.937467pt;}
.y91{bottom:35.738000pt;}
.y1b{bottom:44.518000pt;}
.y1a{bottom:64.157867pt;}
.yc1{bottom:69.706533pt;}
.ye5{bottom:74.009467pt;}
.yc0{bottom:80.106667pt;}
.y12c{bottom:86.715733pt;}
.ye4{bottom:93.529467pt;}
.y19{bottom:99.554480pt;}
.y12b{bottom:106.235733pt;}
.y111{bottom:106.236667pt;}
.ybf{bottom:107.030933pt;}
.ye{bottom:109.706533pt;}
.y18{bottom:110.271680pt;}
.ye3{bottom:112.969467pt;}
.y110{bottom:116.636667pt;}
.ybe{bottom:117.430933pt;}
.yd{bottom:120.106667pt;}
.y12a{bottom:125.675733pt;}
.y13{bottom:126.715733pt;}
.ye2{bottom:128.409467pt;}
.y17{bottom:132.426800pt;}
.ybd{bottom:136.030267pt;}
.y10f{bottom:136.990267pt;}
.y129{bottom:141.115733pt;}
.y12{bottom:146.235600pt;}
.yc{bottom:146.236667pt;}
.y10e{bottom:152.990267pt;}
.ybc{bottom:153.310267pt;}
.y16{bottom:155.143067pt;}
.ye1{bottom:156.449760pt;}
.yb{bottom:156.636667pt;}
.y11{bottom:165.675600pt;}
.y15{bottom:165.860267pt;}
.ybb{bottom:168.910267pt;}
.y128{bottom:169.707200pt;}
.ye0{bottom:169.813600pt;}
.ya{bottom:176.990267pt;}
.y10{bottom:181.115600pt;}
.y14{bottom:183.251333pt;}
.y9{bottom:192.990267pt;}
.y84{bottom:199.111067pt;}
.y8{bottom:208.910267pt;}
.yf{bottom:209.704400pt;}
.y10d{bottom:211.856400pt;}
.yba{bottom:211.856533pt;}
.y83{bottom:212.631067pt;}
.y10c{bottom:222.256400pt;}
.yb9{bottom:222.256533pt;}
.y82{bottom:224.711067pt;}
.ydf{bottom:228.865600pt;}
.y81{bottom:240.071067pt;}
.y8c{bottom:244.710267pt;}
.yde{bottom:248.385467pt;}
.y10b{bottom:248.386533pt;}
.yb8{bottom:249.180667pt;}
.y80{bottom:253.671200pt;}
.y5a{bottom:257.747600pt;}
.y10a{bottom:258.786533pt;}
.yb7{bottom:259.580667pt;}
.y7f{bottom:265.751067pt;}
.y3e{bottom:266.150800pt;}
.y8a{bottom:266.630267pt;}
.ydd{bottom:267.825600pt;}
.y3d{bottom:276.546400pt;}
.y59{bottom:277.267600pt;}
.yb6{bottom:278.180133pt;}
.y7e{bottom:278.231067pt;}
.y109{bottom:279.140133pt;}
.ydc{bottom:283.265600pt;}
.y7d{bottom:288.951200pt;}
.y108{bottom:295.140133pt;}
.yb5{bottom:295.460133pt;}
.y58{bottom:296.707600pt;}
.y70{bottom:302.370480pt;}
.y3c{bottom:303.474400pt;}
.yb4{bottom:311.060267pt;}
.ydb{bottom:311.856933pt;}
.y57{bottom:312.142693pt;}
.y3b{bottom:313.874400pt;}
.y7c{bottom:318.605867pt;}
.y7b{bottom:331.085867pt;}
.y3a{bottom:332.474400pt;}
.y56{bottom:339.615173pt;}
.y7a{bottom:341.805867pt;}
.y39{bottom:349.754400pt;}
.y55{bottom:352.893893pt;}
.yb3{bottom:354.006400pt;}
.y79{bottom:355.085867pt;}
.yb2{bottom:364.406267pt;}
.y38{bottom:365.354400pt;}
.y78{bottom:365.805867pt;}
.y54{bottom:366.257733pt;}
.yda{bottom:371.015333pt;}
.y77{bottom:379.085867pt;}
.y76{bottom:389.805867pt;}
.yd9{bottom:390.535333pt;}
.yb1{bottom:391.330667pt;}
.yb0{bottom:401.730667pt;}
.y75{bottom:407.990933pt;}
.y37{bottom:408.300533pt;}
.yd8{bottom:409.975333pt;}
.y36{bottom:418.696400pt;}
.yaf{bottom:420.330000pt;}
.y107{bottom:421.290000pt;}
.y53{bottom:425.309733pt;}
.yd7{bottom:425.415333pt;}
.y6f{bottom:426.736800pt;}
.y106{bottom:437.290000pt;}
.y6e{bottom:437.454000pt;}
.yae{bottom:437.610000pt;}
.y52{bottom:444.829733pt;}
.y35{bottom:445.624400pt;}
.yad{bottom:453.210000pt;}
.yd6{bottom:454.006800pt;}
.y127{bottom:454.007733pt;}
.y34{bottom:456.024400pt;}
.y51{bottom:464.269733pt;}
.y6d{bottom:469.960133pt;}
.y33{bottom:474.624400pt;}
.y50{bottom:479.711520pt;}
.y32{bottom:491.904400pt;}
.yac{bottom:496.950400pt;}
.y126{bottom:502.047333pt;}
.y6c{bottom:504.081200pt;}
.yab{bottom:507.350400pt;}
.y31{bottom:507.504400pt;}
.y4f{bottom:508.301200pt;}
.yd5{bottom:513.165200pt;}
.y6b{bottom:520.441733pt;}
.y125{bottom:521.567333pt;}
.yf5{bottom:523.156667pt;}
.y6a{bottom:531.159387pt;}
.yd4{bottom:532.685200pt;}
.yaa{bottom:533.480400pt;}
.yf4{bottom:533.556667pt;}
.y124{bottom:541.007333pt;}
.ya9{bottom:543.880400pt;}
.y74{bottom:548.397867pt;}
.y30{bottom:551.244667pt;}
.yd3{bottom:552.125200pt;}
.y123{bottom:556.447333pt;}
.y73{bottom:559.037867pt;}
.yf3{bottom:560.480933pt;}
.y2f{bottom:561.646267pt;}
.ya8{bottom:563.439867pt;}
.y4e{bottom:567.459600pt;}
.yd2{bottom:567.565200pt;}
.y72{bottom:569.677867pt;}
.yf2{bottom:570.880933pt;}
.ya7{bottom:579.439867pt;}
.y71{bottom:580.397867pt;}
.y122{bottom:583.254267pt;}
.y4d{bottom:586.979600pt;}
.y2e{bottom:587.774267pt;}
.yf1{bottom:589.480400pt;}
.ya6{bottom:595.359867pt;}
.yd1{bottom:596.152933pt;}
.y121{bottom:596.618107pt;}
.y69{bottom:597.156747pt;}
.y2d{bottom:598.174267pt;}
.y4c{bottom:606.419600pt;}
.yf0{bottom:606.760400pt;}
.y68{bottom:607.799067pt;}
.y120{bottom:609.896827pt;}
.y2c{bottom:616.774267pt;}
.y67{bottom:618.516267pt;}
.y4b{bottom:621.858320pt;}
.yef{bottom:622.360400pt;}
.y11f{bottom:623.260667pt;}
.y2b{bottom:634.054267pt;}
.y66{bottom:634.318933pt;}
.ya5{bottom:639.100133pt;}
.ya4{bottom:649.500133pt;}
.y2a{bottom:649.654267pt;}
.y4a{bottom:650.448000pt;}
.y65{bottom:651.157333pt;}
.y89{bottom:656.080000pt;}
.yd0{bottom:656.109333pt;}
.y64{bottom:661.797467pt;}
.y105{bottom:667.688933pt;}
.y11e{bottom:671.991867pt;}
.y63{bottom:672.520187pt;}
.ycf{bottom:675.629333pt;}
.ya3{bottom:675.630400pt;}
.y104{bottom:678.088933pt;}
.ya2{bottom:686.030400pt;}
.y62{bottom:690.322907pt;}
.y11d{bottom:691.511867pt;}
.y29{bottom:694.982800pt;}
.yce{bottom:695.069200pt;}
.y49{bottom:699.285600pt;}
.y103{bottom:704.219067pt;}
.y28{bottom:705.386400pt;}
.y61{bottom:706.244267pt;}
.ya1{bottom:706.383733pt;}
.ycd{bottom:710.509333pt;}
.y11c{bottom:710.951733pt;}
.y102{bottom:714.619067pt;}
.y48{bottom:718.805600pt;}
.y60{bottom:720.806400pt;}
.ya0{bottom:722.383733pt;}
.y11b{bottom:726.391867pt;}
.y27{bottom:731.514400pt;}
.y5f{bottom:732.246400pt;}
.y101{bottom:734.972667pt;}
.y47{bottom:738.245733pt;}
.y9f{bottom:738.303867pt;}
.ycc{bottom:739.100667pt;}
.y26{bottom:741.914400pt;}
.y5e{bottom:748.246400pt;}
.y100{bottom:750.972667pt;}
.y46{bottom:753.689493pt;}
.y11a{bottom:754.432027pt;}
.y25{bottom:762.266400pt;}
.y5d{bottom:763.446400pt;}
.yff{bottom:766.892800pt;}
.y119{bottom:767.795867pt;}
.y5c{bottom:774.166400pt;}
.y24{bottom:778.266400pt;}
.y9e{bottom:781.249867pt;}
.y45{bottom:782.821813pt;}
.y9d{bottom:791.650000pt;}
.y23{bottom:794.186533pt;}
.y44{bottom:794.983333pt;}
.ycb{bottom:798.259067pt;}
.y5b{bottom:806.672533pt;}
.yfe{bottom:809.838933pt;}
.y90{bottom:812.160000pt;}
.yca{bottom:817.779067pt;}
.y9c{bottom:817.780133pt;}
.yfd{bottom:820.238800pt;}
.y118{bottom:826.847867pt;}
.y9b{bottom:828.180133pt;}
.y22{bottom:837.132533pt;}
.yc9{bottom:837.219067pt;}
.y117{bottom:846.367867pt;}
.yfc{bottom:846.368933pt;}
.y21{bottom:847.536400pt;}
.y8f{bottom:847.898000pt;}
.y9a{bottom:848.533733pt;}
.yc8{bottom:852.659200pt;}
.y43{bottom:854.141733pt;}
.yfb{bottom:856.768933pt;}
.y99{bottom:864.533733pt;}
.y116{bottom:865.807867pt;}
.y8e{bottom:872.387173pt;}
.y42{bottom:873.661733pt;}
.y20{bottom:873.664400pt;}
.yfa{bottom:877.122533pt;}
.y98{bottom:880.453733pt;}
.yc7{bottom:881.238880pt;}
.y115{bottom:881.247867pt;}
.y1f{bottom:884.064400pt;}
.y8d{bottom:888.870133pt;}
.y41{bottom:893.101733pt;}
.yf9{bottom:893.122533pt;}
.y1e{bottom:904.416400pt;}
.y40{bottom:908.540853pt;}
.yf8{bottom:909.042533pt;}
.y114{bottom:909.837120pt;}
.y8b{bottom:910.790267pt;}
.y1d{bottom:920.416400pt;}
.yc6{bottom:927.969760pt;}
.y88{bottom:932.630267pt;}
.y1c{bottom:936.336400pt;}
.y3f{bottom:937.130533pt;}
.yc5{bottom:941.333600pt;}
.y97{bottom:944.841467pt;}
.y87{bottom:951.563333pt;}
.y96{bottom:955.241467pt;}
.y113{bottom:957.898000pt;}
.yc4{bottom:961.329893pt;}
.yf7{bottom:962.312400pt;}
.y86{bottom:966.683333pt;}
.yf6{bottom:972.712400pt;}
.y112{bottom:977.338000pt;}
.y95{bottom:981.371600pt;}
.yc3{bottom:986.293600pt;}
.y131{bottom:990.686267pt;}
.y94{bottom:991.771600pt;}
.yc2{bottom:993.493600pt;}
.yec{bottom:994.126693pt;}
.y7{bottom:996.267067pt;}
.y135{bottom:997.420560pt;}
.y130{bottom:1001.086267pt;}
.ye9{bottom:1005.440000pt;}
.y6{bottom:1007.147067pt;}
.yeb{bottom:1009.565333pt;}
.y134{bottom:1012.859200pt;}
.ye8{bottom:1021.440000pt;}
.ye7{bottom:1037.360000pt;}
.y12f{bottom:1037.440000pt;}
.yea{bottom:1038.154133pt;}
.y5{bottom:1040.067733pt;}
.y133{bottom:1040.896827pt;}
.y3{bottom:1042.270933pt;}
.y2{bottom:1052.031067pt;}
.y12e{bottom:1053.360000pt;}
.y132{bottom:1054.260667pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.y137{bottom:1082.529920pt;}
.y93{bottom:1082.533547pt;}
.yee{bottom:1082.534453pt;}
.y136{bottom:1095.329840pt;}
.y92{bottom:1095.333467pt;}
.yed{bottom:1095.334373pt;}
.hf{height:18.402656pt;}
.hb{height:27.714844pt;}
.he{height:29.488594pt;}
.h2{height:34.144000pt;}
.h7{height:39.048750pt;}
.h5{height:39.948480pt;}
.h8{height:39.951893pt;}
.hc{height:39.960853pt;}
.h1{height:42.680000pt;}
.h9{height:44.388750pt;}
.h4{height:45.411520pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.hd{height:78.400000pt;}
.ha{height:467.920000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:34.693333pt;}
.x13{left:42.640000pt;}
.x4{left:45.877733pt;}
.xd{left:47.528000pt;}
.xc{left:51.498667pt;}
.x14{left:53.962000pt;}
.xa{left:64.204800pt;}
.xb{left:69.763733pt;}
.xe{left:76.915680pt;}
.x9{left:78.499200pt;}
.x16{left:80.000000pt;}
.x11{left:86.912133pt;}
.xf{left:89.617067pt;}
.x10{left:102.323200pt;}
.x15{left:141.642000pt;}
.x1{left:155.691467pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x7{left:297.034800pt;}
.x18{left:298.851333pt;}
.x17{left:300.211333pt;}
.x8{left:312.794800pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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