
    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_f5caa3c70a33be1ab408082e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b5e4b3c7b5737e42d0131a13.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ea9c5de029c77b0781eef5c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_0451ce1775b9b9737295527d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869141;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_0da7db994129aa88f38bb5b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_05fcd08b236dc6cdf50216e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.v4{vertical-align:-29.520000px;}
.v6{vertical-align:-6.132240px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.735000px;}
.v1{vertical-align:12.873600px;}
.v3{vertical-align:60.523800px;}
.v5{vertical-align:63.967680px;}
.ls37{letter-spacing:-4.697280px;}
.ls2{letter-spacing:-4.555440px;}
.ls3{letter-spacing:-4.315680px;}
.ls7{letter-spacing:-3.187440px;}
.ls6{letter-spacing:-3.019680px;}
.lsc{letter-spacing:-2.995200px;}
.ls17{letter-spacing:-2.845440px;}
.lsb{letter-spacing:-2.695680px;}
.ls33{letter-spacing:-2.684160px;}
.ls8{letter-spacing:-2.516400px;}
.ls12{letter-spacing:-1.095120px;}
.ls21{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.360720px;}
.ls11{letter-spacing:-0.336960px;}
.ls9{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.272160px;}
.ls14{letter-spacing:-0.240480px;}
.lsa{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.210240px;}
.ls16{letter-spacing:-0.203760px;}
.ls28{letter-spacing:-0.181440px;}
.ls1a{letter-spacing:-0.167760px;}
.ls4{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.120240px;}
.ls10{letter-spacing:-0.084240px;}
.ls5{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.031824px;}
.ls2b{letter-spacing:0.090720px;}
.lse{letter-spacing:0.120240px;}
.ls2c{letter-spacing:0.159120px;}
.ls1d{letter-spacing:0.167760px;}
.ls26{letter-spacing:0.181440px;}
.ls15{letter-spacing:0.203760px;}
.ls2f{letter-spacing:0.240480px;}
.ls2a{letter-spacing:0.272160px;}
.ls19{letter-spacing:0.273600px;}
.ls0{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.292320px;}
.ls27{letter-spacing:0.306720px;}
.ls1b{letter-spacing:0.335520px;}
.lsd{letter-spacing:0.336960px;}
.ls20{letter-spacing:0.360720px;}
.ls2e{letter-spacing:31.743360px;}
.ls32{letter-spacing:32.604480px;}
.ls30{letter-spacing:32.825520px;}
.lsf{letter-spacing:32.945760px;}
.ls23{letter-spacing:33.426720px;}
.ls36{letter-spacing:39.651840px;}
.ls35{letter-spacing:52.624080px;}
.ls24{letter-spacing:102.960000px;}
.ls34{letter-spacing:111.600000px;}
.ls18{letter-spacing:165.600000px;}
.ls1e{letter-spacing:173.867040px;}
.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;}
}
.ws0{word-spacing:-58.236480px;}
.ws43{word-spacing:-56.441520px;}
.ws55{word-spacing:-46.805040px;}
.wsa{word-spacing:-46.637280px;}
.ws4f{word-spacing:-46.469520px;}
.wsd{word-spacing:-44.120880px;}
.ws9{word-spacing:-43.617600px;}
.ws16{word-spacing:-43.449840px;}
.ws98{word-spacing:-41.940000px;}
.ws8d{word-spacing:-40.320000px;}
.ws56{word-spacing:-39.888000px;}
.ws50{word-spacing:-39.744000px;}
.ws79{word-spacing:-36.120240px;}
.ws78{word-spacing:-35.992944px;}
.ws60{word-spacing:-33.787440px;}
.ws2f{word-spacing:-33.546960px;}
.ws7d{word-spacing:-33.426720px;}
.ws6b{word-spacing:-33.306480px;}
.ws31{word-spacing:-33.186240px;}
.ws7e{word-spacing:-33.066000px;}
.ws1a{word-spacing:-23.755680px;}
.ws27{word-spacing:-23.418720px;}
.ws7a{word-spacing:-23.412960px;}
.ws20{word-spacing:-23.334480px;}
.ws17{word-spacing:-23.081760px;}
.ws75{word-spacing:-20.774880px;}
.ws74{word-spacing:-20.684160px;}
.ws76{word-spacing:-20.593440px;}
.ws77{word-spacing:-20.502720px;}
.ws72{word-spacing:-20.321280px;}
.ws73{word-spacing:-20.230560px;}
.ws3b{word-spacing:-3.246480px;}
.ws67{word-spacing:-2.849688px;}
.ws1b{word-spacing:-2.645136px;}
.ws9c{word-spacing:-2.525040px;}
.ws6a{word-spacing:-2.448000px;}
.ws33{word-spacing:-2.442960px;}
.ws5f{word-spacing:-2.392776px;}
.ws18{word-spacing:-2.392416px;}
.ws1f{word-spacing:-2.358720px;}
.ws2d{word-spacing:-2.333448px;}
.ws8a{word-spacing:-2.320632px;}
.ws23{word-spacing:-2.190240px;}
.ws22{word-spacing:-2.122848px;}
.ws37{word-spacing:-2.106000px;}
.ws90{word-spacing:-2.044080px;}
.ws21{word-spacing:-2.030184px;}
.ws26{word-spacing:-1.971216px;}
.ws28{word-spacing:-1.954368px;}
.ws19{word-spacing:-1.945944px;}
.ws2e{word-spacing:-1.872000px;}
.ws24{word-spacing:-1.836432px;}
.ws3c{word-spacing:-1.803600px;}
.ws6f{word-spacing:-1.728000px;}
.ws5e{word-spacing:-1.683360px;}
.ws1d{word-spacing:-1.676376px;}
.ws65{word-spacing:-1.659312px;}
.ws2c{word-spacing:-1.651104px;}
.ws2b{word-spacing:-1.634256px;}
.ws61{word-spacing:-1.584000px;}
.ws2a{word-spacing:-1.575288px;}
.ws66{word-spacing:-1.563120px;}
.ws6d{word-spacing:-1.442880px;}
.ws6e{word-spacing:-1.440000px;}
.ws7c{word-spacing:-1.430856px;}
.ws89{word-spacing:-1.322640px;}
.ws99{word-spacing:-1.166328px;}
.ws53{word-spacing:-1.152000px;}
.ws70{word-spacing:-1.082160px;}
.ws85{word-spacing:-1.034064px;}
.ws36{word-spacing:-1.010880px;}
.ws8f{word-spacing:-1.008000px;}
.ws63{word-spacing:-0.940608px;}
.ws29{word-spacing:-0.859248px;}
.ws9a{word-spacing:-0.769536px;}
.ws91{word-spacing:-0.721440px;}
.ws8{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.671040px;}
.ws5c{word-spacing:-0.649296px;}
.ws25{word-spacing:-0.513864px;}
.ws42{word-spacing:-0.468648px;}
.ws48{word-spacing:-0.464256px;}
.ws30{word-spacing:-0.444888px;}
.wsc{word-spacing:-0.335520px;}
.ws4b{word-spacing:-0.318744px;}
.ws57{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.276552px;}
.ws80{word-spacing:-0.272160px;}
.ws4e{word-spacing:-0.268416px;}
.ws34{word-spacing:-0.252720px;}
.ws83{word-spacing:-0.181440px;}
.ws41{word-spacing:-0.167760px;}
.ws1{word-spacing:-0.158400px;}
.ws58{word-spacing:-0.144000px;}
.ws5d{word-spacing:-0.120240px;}
.ws12{word-spacing:-0.108000px;}
.wsf{word-spacing:0.000000px;}
.ws35{word-spacing:0.084240px;}
.ws64{word-spacing:0.120240px;}
.ws86{word-spacing:0.129600px;}
.ws38{word-spacing:0.144000px;}
.ws59{word-spacing:0.167760px;}
.ws46{word-spacing:0.203760px;}
.ws3a{word-spacing:0.240480px;}
.ws6c{word-spacing:0.288000px;}
.ws87{word-spacing:0.312624px;}
.ws39{word-spacing:0.432000px;}
.wsb{word-spacing:0.436176px;}
.ws68{word-spacing:0.503280px;}
.ws13{word-spacing:0.540000px;}
.ws81{word-spacing:0.544320px;}
.ws9b{word-spacing:0.793584px;}
.ws92{word-spacing:0.815040px;}
.ws14{word-spacing:1.123200px;}
.ws7{word-spacing:1.152000px;}
.ws32{word-spacing:1.174320px;}
.ws47{word-spacing:1.198080px;}
.ws3e{word-spacing:1.342080px;}
.ws4c{word-spacing:1.392408px;}
.ws84{word-spacing:1.432080px;}
.ws94{word-spacing:1.440000px;}
.ws2{word-spacing:1.471680px;}
.wse{word-spacing:1.544400px;}
.ws52{word-spacing:1.584000px;}
.ws4d{word-spacing:1.610496px;}
.ws95{word-spacing:1.728000px;}
.ws3f{word-spacing:1.845360px;}
.ws5a{word-spacing:1.872000px;}
.ws93{word-spacing:1.912464px;}
.ws10{word-spacing:2.013120px;}
.ws7f{word-spacing:2.016000px;}
.ws82{word-spacing:2.227680px;}
.ws51{word-spacing:2.304000px;}
.ws1e{word-spacing:2.501928px;}
.ws11{word-spacing:2.516400px;}
.ws54{word-spacing:2.592000px;}
.ws5{word-spacing:2.637360px;}
.ws40{word-spacing:2.684160px;}
.ws15{word-spacing:2.695680px;}
.ws97{word-spacing:2.717712px;}
.ws4a{word-spacing:2.845440px;}
.ws62{word-spacing:2.880000px;}
.ws7b{word-spacing:3.254544px;}
.ws69{word-spacing:3.355200px;}
.ws6{word-spacing:3.356640px;}
.ws96{word-spacing:3.456000px;}
.ws3d{word-spacing:3.640392px;}
.ws4{word-spacing:4.315680px;}
.ws3{word-spacing:4.555440px;}
.ws1c{word-spacing:21.851856px;}
.ws71{word-spacing:62.928000px;}
.ws8b{word-spacing:97.957536px;}
.ws44{word-spacing:246.781104px;}
.ws45{word-spacing:510.606888px;}
.ws88{word-spacing:1275.205320px;}
.ws8c{word-spacing:1358.264160px;}
.ws49{word-spacing:1921.398600px;}
._1{margin-left:-3.116880px;}
._2{margin-left:-1.331136px;}
._0{width:1.345536px;}
._5{width:2.945664px;}
._b{width:4.398336px;}
._9{width:19.474560px;}
._6{width:22.275360px;}
._8{width:30.549456px;}
._3{width:40.418496px;}
._4{width:41.450112px;}
._a{width:42.620544px;}
._7{width:47.972448px;}
._d{width:516.430800px;}
._e{width:3508.860672px;}
._c{width:4557.465216px;}
.fca{color:rgb(192,0,0);}
.fc9{color:rgb(0,112,192);}
.fc8{color:rgb(0,32,96);}
.fcb{color:rgb(235,102,33);}
.fc7{color:rgb(112,48,160);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,100,78);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc6{color:transparent;}
.fc1{color:rgb(0,94,170);}
.fc0{color:rgb(208,102,42);}
.fsa{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:79.920000px;}
.fs7{font-size:84.240000px;}
.fsb{font-size:90.720000px;}
.fsd{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs6{font-size:149.760000px;}
.fsc{font-size:159.120000px;}
.fs4{font-size:167.760000px;}
.fsf{font-size:192.240000px;}
.fs9{font-size:203.760000px;}
.fs0{font-size:210.240000px;}
.fs1{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.yc{bottom:33.950400px;}
.y7d{bottom:37.442310px;}
.ya{bottom:40.903050px;}
.y2e{bottom:40.967400px;}
.y79{bottom:42.862650px;}
.y7f{bottom:100.162860px;}
.y57{bottom:101.939550px;}
.y32{bottom:109.754850px;}
.ya5{bottom:117.675000px;}
.y34{bottom:118.657050px;}
.ya4{bottom:119.236860px;}
.y7c{bottom:140.067150px;}
.y24{bottom:144.370860px;}
.y74{bottom:145.251000px;}
.y8a{bottom:146.153850px;}
.y12{bottom:146.981460px;}
.y20{bottom:146.981760px;}
.ya1{bottom:152.370300px;}
.y86{bottom:163.489800px;}
.y5e{bottom:163.498050px;}
.y93{bottom:164.472750px;}
.y85{bottom:169.519380px;}
.y49{bottom:175.815900px;}
.y56{bottom:183.659700px;}
.y42{bottom:185.800650px;}
.ya0{bottom:191.250300px;}
.y23{bottom:191.861160px;}
.y11{bottom:194.471760px;}
.y1f{bottom:194.472060px;}
.y7e{bottom:196.625400px;}
.y92{bottom:207.672750px;}
.y25{bottom:207.963750px;}
.y27{bottom:215.941200px;}
.y48{bottom:220.558950px;}
.y22{bottom:239.351460px;}
.y10{bottom:241.962060px;}
.y1e{bottom:241.962360px;}
.y5d{bottom:245.218050px;}
.y76{bottom:248.185980px;}
.y84{bottom:249.990000px;}
.y91{bottom:250.872750px;}
.y9{bottom:251.244000px;}
.y73{bottom:262.065900px;}
.y41{bottom:267.520650px;}
.y40{bottom:268.740600px;}
.y21{bottom:275.343000px;}
.y75{bottom:275.719500px;}
.yf{bottom:277.953600px;}
.y1d{bottom:277.953900px;}
.y9f{bottom:287.190300px;}
.y8{bottom:290.124000px;}
.y90{bottom:294.072750px;}
.y3a{bottom:311.136300px;}
.y9e{bottom:326.070300px;}
.y83{bottom:331.710000px;}
.y8f{bottom:355.272750px;}
.y3f{bottom:355.500600px;}
.y55{bottom:384.885300px;}
.y3e{bottom:394.380600px;}
.y4e{bottom:397.716870px;}
.y39{bottom:398.076300px;}
.y8e{bottom:398.472750px;}
.y1c{bottom:408.699510px;}
.y9d{bottom:422.010300px;}
.y16{bottom:427.993140px;}
.y5c{bottom:429.607080px;}
.y4d{bottom:430.121550px;}
.y15{bottom:453.201960px;}
.y1b{bottom:456.189810px;}
.y9c{bottom:460.890300px;}
.y47{bottom:463.750320px;}
.y78{bottom:467.868780px;}
.y3d{bottom:481.320600px;}
.y38{bottom:485.016300px;}
.y77{bottom:495.402300px;}
.y46{bottom:496.155000px;}
.y9b{bottom:499.770300px;}
.y14{bottom:500.692260px;}
.y7{bottom:501.660000px;}
.y1a{bottom:503.680110px;}
.y5b{bottom:510.077700px;}
.y4c{bottom:511.841550px;}
.y4b{bottom:515.460000px;}
.y3c{bottom:520.200600px;}
.y26{bottom:530.345700px;}
.y13{bottom:536.683800px;}
.y19{bottom:539.671650px;}
.y6c{bottom:552.405630px;}
.y7a{bottom:566.012700px;}
.y37{bottom:571.776300px;}
.y45{bottom:576.625620px;}
.y6b{bottom:579.939150px;}
.y8b{bottom:587.211450px;}
.y5a{bottom:591.797700px;}
.y4a{bottom:597.180150px;}
.y53{bottom:597.409350px;}
.y9a{bottom:598.410300px;}
.y3b{bottom:608.400600px;}
.y44{bottom:609.030300px;}
.y6f{bottom:625.749330px;}
.y6{bottom:636.604440px;}
.y6e{bottom:653.282850px;}
.y99{bottom:656.010300px;}
.y36{bottom:658.716300px;}
.y52{bottom:679.129350px;}
.y66{bottom:686.538150px;}
.y82{bottom:689.876070px;}
.y43{bottom:690.750300px;}
.y5{bottom:694.206780px;}
.y31{bottom:695.411550px;}
.y98{bottom:713.610300px;}
.y81{bottom:722.280750px;}
.y65{bottom:729.738150px;}
.ya2{bottom:731.829600px;}
.ya3{bottom:732.941820px;}
.y35{bottom:746.911050px;}
.y59{bottom:750.521550px;}
.y4{bottom:751.809120px;}
.y18{bottom:763.623060px;}
.y97{bottom:771.210450px;}
.y64{bottom:772.938150px;}
.y2c{bottom:774.334860px;}
.y30{bottom:798.565050px;}
.y17{bottom:799.614600px;}
.y80{bottom:804.000750px;}
.y2b{bottom:806.739540px;}
.y8d{bottom:807.144780px;}
.y87{bottom:813.497100px;}
.y72{bottom:814.471200px;}
.y63{bottom:816.138300px;}
.y51{bottom:825.101370px;}
.y96{bottom:828.810300px;}
.y2a{bottom:839.144220px;}
.y70{bottom:839.782800px;}
.y6d{bottom:844.452180px;}
.y6a{bottom:844.633620px;}
.y50{bottom:857.506050px;}
.y62{bottom:859.338300px;}
.y3{bottom:867.013800px;}
.y8c{bottom:871.227300px;}
.y29{bottom:871.548900px;}
.y69{bottom:871.985700px;}
.y95{bottom:883.530450px;}
.y61{bottom:902.538150px;}
.y89{bottom:920.590650px;}
.y4f{bottom:939.225900px;}
.y60{bottom:945.738150px;}
.y28{bottom:953.268900px;}
.y54{bottom:957.502950px;}
.y88{bottom:959.470650px;}
.y68{bottom:963.918180px;}
.y58{bottom:967.280700px;}
.y5f{bottom:988.938150px;}
.y67{bottom:991.451700px;}
.y2{bottom:1021.220310px;}
.y71{bottom:1064.433150px;}
.y1{bottom:1077.932550px;}
.y2f{bottom:1078.673550px;}
.yb{bottom:1079.276850px;}
.y2d{bottom:1080.124350px;}
.ye{bottom:1080.504150px;}
.y94{bottom:1080.527550px;}
.ya6{bottom:1090.410150px;}
.y7b{bottom:1091.680650px;}
.yd{bottom:1093.418850px;}
.y33{bottom:1096.231050px;}
.hf{height:48.256875px;}
.h5{height:52.453125px;}
.h9{height:61.329023px;}
.ha{height:61.370156px;}
.h10{height:62.680078px;}
.h11{height:62.857266px;}
.h13{height:70.839141px;}
.h7{height:78.679688px;}
.hb{height:87.596719px;}
.h14{height:88.440919px;}
.hd{height:104.205319px;}
.h3{height:104.835938px;}
.h4{height:104.906250px;}
.h8{height:109.029375px;}
.h12{height:110.249648px;}
.h6{height:122.133867px;}
.h16{height:139.955977px;}
.he{height:148.120519px;}
.h15{height:148.342852px;}
.hc{height:148.442344px;}
.h17{height:151.564399px;}
.h1{height:153.060469px;}
.h2{height:174.551836px;}
.h0{height:1152.000000px;}
.w0{width:2047.500000px;}
.x0{left:0.000000px;}
.x29{left:14.777850px;}
.x24{left:44.242200px;}
.x2c{left:51.805890px;}
.x9{left:54.253950px;}
.x1{left:55.645500px;}
.x2{left:56.733600px;}
.xa{left:61.266930px;}
.x4{left:66.121500px;}
.xb{left:75.124410px;}
.x57{left:92.481450px;}
.x71{left:106.767750px;}
.x54{left:111.525000px;}
.x76{left:112.950930px;}
.x5c{left:117.775200px;}
.x6c{left:126.829050px;}
.x72{left:147.267750px;}
.x58{left:237.193050px;}
.x74{left:239.563650px;}
.x53{left:243.500100px;}
.x3{left:245.837250px;}
.xe{left:334.236150px;}
.xc{left:340.027650px;}
.xd{left:355.317210px;}
.x36{left:367.523400px;}
.xf{left:384.822270px;}
.x6a{left:411.696450px;}
.x25{left:415.108500px;}
.x70{left:447.262500px;}
.x62{left:453.812400px;}
.x7{left:482.324400px;}
.x2a{left:498.441450px;}
.x78{left:501.145650px;}
.x27{left:506.949600px;}
.x69{left:510.868500px;}
.x67{left:513.752400px;}
.x55{left:516.312900px;}
.x4d{left:532.420950px;}
.x5{left:548.857800px;}
.x8{left:551.912400px;}
.x26{left:553.389750px;}
.x59{left:559.019850px;}
.x56{left:565.823340px;}
.x4e{left:567.869790px;}
.x2b{left:578.949750px;}
.x75{left:582.758670px;}
.x5b{left:585.226410px;}
.x6{left:595.286100px;}
.x1f{left:600.807210px;}
.x37{left:614.864100px;}
.x10{left:617.793750px;}
.x3b{left:627.512400px;}
.x1d{left:631.954950px;}
.x20{left:640.400010px;}
.x1e{left:644.380350px;}
.x38{left:647.668500px;}
.x22{left:658.345200px;}
.x32{left:662.972400px;}
.x2f{left:671.612250px;}
.x42{left:676.472400px;}
.x48{left:713.732400px;}
.x4f{left:849.465150px;}
.x47{left:852.104850px;}
.x50{left:857.380470px;}
.x5d{left:877.736850px;}
.x13{left:881.801250px;}
.x11{left:890.435850px;}
.x5a{left:899.545980px;}
.x28{left:905.191650px;}
.x12{left:913.285950px;}
.x73{left:915.266250px;}
.x4a{left:921.278850px;}
.x49{left:922.295400px;}
.x14{left:959.217810px;}
.x6f{left:973.552950px;}
.x21{left:977.273250px;}
.x51{left:994.403100px;}
.x52{left:1007.534820px;}
.x6d{left:1030.519800px;}
.x2d{left:1061.496450px;}
.x6e{left:1062.561060px;}
.x60{left:1076.243250px;}
.x4b{left:1090.708500px;}
.x2e{left:1115.496450px;}
.x68{left:1123.145250px;}
.x16{left:1227.360210px;}
.x17{left:1250.568330px;}
.x18{left:1262.804190px;}
.x15{left:1290.729750px;}
.x77{left:1293.498900px;}
.x5e{left:1297.018650px;}
.x34{left:1364.089500px;}
.x3a{left:1383.534900px;}
.x40{left:1406.551050px;}
.x35{left:1418.077260px;}
.x66{left:1436.219250px;}
.x65{left:1439.459250px;}
.x63{left:1450.602450px;}
.x41{left:1460.538810px;}
.x64{left:1472.730210px;}
.x33{left:1478.389500px;}
.x39{left:1498.554900px;}
.x44{left:1503.616650px;}
.x3d{left:1510.224750px;}
.x3f{left:1520.851050px;}
.x43{left:1523.956650px;}
.x3c{left:1542.084750px;}
.x23{left:1546.875600px;}
.x61{left:1558.916670px;}
.x3e{left:1564.212510px;}
.x4c{left:1569.076500px;}
.x46{left:1574.000400px;}
.x31{left:1621.733100px;}
.x45{left:1622.842950px;}
.x30{left:1665.293100px;}
.x6b{left:1725.897150px;}
.x5f{left:1754.441670px;}
.x1c{left:1769.380110px;}
.x1b{left:1793.683350px;}
.x1a{left:1807.730370px;}
.x19{left:1809.162450px;}
@media print{
.v4{vertical-align:-26.240000pt;}
.v6{vertical-align:-5.450880pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.320000pt;}
.v1{vertical-align:11.443200pt;}
.v3{vertical-align:53.798933pt;}
.v5{vertical-align:56.860160pt;}
.ls37{letter-spacing:-4.175360pt;}
.ls2{letter-spacing:-4.049280pt;}
.ls3{letter-spacing:-3.836160pt;}
.ls7{letter-spacing:-2.833280pt;}
.ls6{letter-spacing:-2.684160pt;}
.lsc{letter-spacing:-2.662400pt;}
.ls17{letter-spacing:-2.529280pt;}
.lsb{letter-spacing:-2.396160pt;}
.ls33{letter-spacing:-2.385920pt;}
.ls8{letter-spacing:-2.236800pt;}
.ls12{letter-spacing:-0.973440pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.320640pt;}
.ls11{letter-spacing:-0.299520pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.241920pt;}
.ls14{letter-spacing:-0.213760pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.186880pt;}
.ls16{letter-spacing:-0.181120pt;}
.ls28{letter-spacing:-0.161280pt;}
.ls1a{letter-spacing:-0.149120pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.106880pt;}
.ls10{letter-spacing:-0.074880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.028288pt;}
.ls2b{letter-spacing:0.080640pt;}
.lse{letter-spacing:0.106880pt;}
.ls2c{letter-spacing:0.141440pt;}
.ls1d{letter-spacing:0.149120pt;}
.ls26{letter-spacing:0.161280pt;}
.ls15{letter-spacing:0.181120pt;}
.ls2f{letter-spacing:0.213760pt;}
.ls2a{letter-spacing:0.241920pt;}
.ls19{letter-spacing:0.243200pt;}
.ls0{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.259840pt;}
.ls27{letter-spacing:0.272640pt;}
.ls1b{letter-spacing:0.298240pt;}
.lsd{letter-spacing:0.299520pt;}
.ls20{letter-spacing:0.320640pt;}
.ls2e{letter-spacing:28.216320pt;}
.ls32{letter-spacing:28.981760pt;}
.ls30{letter-spacing:29.178240pt;}
.lsf{letter-spacing:29.285120pt;}
.ls23{letter-spacing:29.712640pt;}
.ls36{letter-spacing:35.246080pt;}
.ls35{letter-spacing:46.776960pt;}
.ls24{letter-spacing:91.520000pt;}
.ls34{letter-spacing:99.200000pt;}
.ls18{letter-spacing:147.200000pt;}
.ls1e{letter-spacing:154.548480pt;}
.ws0{word-spacing:-51.765760pt;}
.ws43{word-spacing:-50.170240pt;}
.ws55{word-spacing:-41.604480pt;}
.wsa{word-spacing:-41.455360pt;}
.ws4f{word-spacing:-41.306240pt;}
.wsd{word-spacing:-39.218560pt;}
.ws9{word-spacing:-38.771200pt;}
.ws16{word-spacing:-38.622080pt;}
.ws98{word-spacing:-37.280000pt;}
.ws8d{word-spacing:-35.840000pt;}
.ws56{word-spacing:-35.456000pt;}
.ws50{word-spacing:-35.328000pt;}
.ws79{word-spacing:-32.106880pt;}
.ws78{word-spacing:-31.993728pt;}
.ws60{word-spacing:-30.033280pt;}
.ws2f{word-spacing:-29.819520pt;}
.ws7d{word-spacing:-29.712640pt;}
.ws6b{word-spacing:-29.605760pt;}
.ws31{word-spacing:-29.498880pt;}
.ws7e{word-spacing:-29.392000pt;}
.ws1a{word-spacing:-21.116160pt;}
.ws27{word-spacing:-20.816640pt;}
.ws7a{word-spacing:-20.811520pt;}
.ws20{word-spacing:-20.741760pt;}
.ws17{word-spacing:-20.517120pt;}
.ws75{word-spacing:-18.466560pt;}
.ws74{word-spacing:-18.385920pt;}
.ws76{word-spacing:-18.305280pt;}
.ws77{word-spacing:-18.224640pt;}
.ws72{word-spacing:-18.063360pt;}
.ws73{word-spacing:-17.982720pt;}
.ws3b{word-spacing:-2.885760pt;}
.ws67{word-spacing:-2.533056pt;}
.ws1b{word-spacing:-2.351232pt;}
.ws9c{word-spacing:-2.244480pt;}
.ws6a{word-spacing:-2.176000pt;}
.ws33{word-spacing:-2.171520pt;}
.ws5f{word-spacing:-2.126912pt;}
.ws18{word-spacing:-2.126592pt;}
.ws1f{word-spacing:-2.096640pt;}
.ws2d{word-spacing:-2.074176pt;}
.ws8a{word-spacing:-2.062784pt;}
.ws23{word-spacing:-1.946880pt;}
.ws22{word-spacing:-1.886976pt;}
.ws37{word-spacing:-1.872000pt;}
.ws90{word-spacing:-1.816960pt;}
.ws21{word-spacing:-1.804608pt;}
.ws26{word-spacing:-1.752192pt;}
.ws28{word-spacing:-1.737216pt;}
.ws19{word-spacing:-1.729728pt;}
.ws2e{word-spacing:-1.664000pt;}
.ws24{word-spacing:-1.632384pt;}
.ws3c{word-spacing:-1.603200pt;}
.ws6f{word-spacing:-1.536000pt;}
.ws5e{word-spacing:-1.496320pt;}
.ws1d{word-spacing:-1.490112pt;}
.ws65{word-spacing:-1.474944pt;}
.ws2c{word-spacing:-1.467648pt;}
.ws2b{word-spacing:-1.452672pt;}
.ws61{word-spacing:-1.408000pt;}
.ws2a{word-spacing:-1.400256pt;}
.ws66{word-spacing:-1.389440pt;}
.ws6d{word-spacing:-1.282560pt;}
.ws6e{word-spacing:-1.280000pt;}
.ws7c{word-spacing:-1.271872pt;}
.ws89{word-spacing:-1.175680pt;}
.ws99{word-spacing:-1.036736pt;}
.ws53{word-spacing:-1.024000pt;}
.ws70{word-spacing:-0.961920pt;}
.ws85{word-spacing:-0.919168pt;}
.ws36{word-spacing:-0.898560pt;}
.ws8f{word-spacing:-0.896000pt;}
.ws63{word-spacing:-0.836096pt;}
.ws29{word-spacing:-0.763776pt;}
.ws9a{word-spacing:-0.684032pt;}
.ws91{word-spacing:-0.641280pt;}
.ws8{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.596480pt;}
.ws5c{word-spacing:-0.577152pt;}
.ws25{word-spacing:-0.456768pt;}
.ws42{word-spacing:-0.416576pt;}
.ws48{word-spacing:-0.412672pt;}
.ws30{word-spacing:-0.395456pt;}
.wsc{word-spacing:-0.298240pt;}
.ws4b{word-spacing:-0.283328pt;}
.ws57{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.245824pt;}
.ws80{word-spacing:-0.241920pt;}
.ws4e{word-spacing:-0.238592pt;}
.ws34{word-spacing:-0.224640pt;}
.ws83{word-spacing:-0.161280pt;}
.ws41{word-spacing:-0.149120pt;}
.ws1{word-spacing:-0.140800pt;}
.ws58{word-spacing:-0.128000pt;}
.ws5d{word-spacing:-0.106880pt;}
.ws12{word-spacing:-0.096000pt;}
.wsf{word-spacing:0.000000pt;}
.ws35{word-spacing:0.074880pt;}
.ws64{word-spacing:0.106880pt;}
.ws86{word-spacing:0.115200pt;}
.ws38{word-spacing:0.128000pt;}
.ws59{word-spacing:0.149120pt;}
.ws46{word-spacing:0.181120pt;}
.ws3a{word-spacing:0.213760pt;}
.ws6c{word-spacing:0.256000pt;}
.ws87{word-spacing:0.277888pt;}
.ws39{word-spacing:0.384000pt;}
.wsb{word-spacing:0.387712pt;}
.ws68{word-spacing:0.447360pt;}
.ws13{word-spacing:0.480000pt;}
.ws81{word-spacing:0.483840pt;}
.ws9b{word-spacing:0.705408pt;}
.ws92{word-spacing:0.724480pt;}
.ws14{word-spacing:0.998400pt;}
.ws7{word-spacing:1.024000pt;}
.ws32{word-spacing:1.043840pt;}
.ws47{word-spacing:1.064960pt;}
.ws3e{word-spacing:1.192960pt;}
.ws4c{word-spacing:1.237696pt;}
.ws84{word-spacing:1.272960pt;}
.ws94{word-spacing:1.280000pt;}
.ws2{word-spacing:1.308160pt;}
.wse{word-spacing:1.372800pt;}
.ws52{word-spacing:1.408000pt;}
.ws4d{word-spacing:1.431552pt;}
.ws95{word-spacing:1.536000pt;}
.ws3f{word-spacing:1.640320pt;}
.ws5a{word-spacing:1.664000pt;}
.ws93{word-spacing:1.699968pt;}
.ws10{word-spacing:1.789440pt;}
.ws7f{word-spacing:1.792000pt;}
.ws82{word-spacing:1.980160pt;}
.ws51{word-spacing:2.048000pt;}
.ws1e{word-spacing:2.223936pt;}
.ws11{word-spacing:2.236800pt;}
.ws54{word-spacing:2.304000pt;}
.ws5{word-spacing:2.344320pt;}
.ws40{word-spacing:2.385920pt;}
.ws15{word-spacing:2.396160pt;}
.ws97{word-spacing:2.415744pt;}
.ws4a{word-spacing:2.529280pt;}
.ws62{word-spacing:2.560000pt;}
.ws7b{word-spacing:2.892928pt;}
.ws69{word-spacing:2.982400pt;}
.ws6{word-spacing:2.983680pt;}
.ws96{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.235904pt;}
.ws4{word-spacing:3.836160pt;}
.ws3{word-spacing:4.049280pt;}
.ws1c{word-spacing:19.423872pt;}
.ws71{word-spacing:55.936000pt;}
.ws8b{word-spacing:87.073365pt;}
.ws44{word-spacing:219.360981pt;}
.ws45{word-spacing:453.872789pt;}
.ws88{word-spacing:1133.515840pt;}
.ws8c{word-spacing:1207.345920pt;}
.ws49{word-spacing:1707.909867pt;}
._1{margin-left:-2.770560pt;}
._2{margin-left:-1.183232pt;}
._0{width:1.196032pt;}
._5{width:2.618368pt;}
._b{width:3.909632pt;}
._9{width:17.310720pt;}
._6{width:19.800320pt;}
._8{width:27.155072pt;}
._3{width:35.927552pt;}
._4{width:36.844544pt;}
._a{width:37.884928pt;}
._7{width:42.642176pt;}
._d{width:459.049600pt;}
._e{width:3118.987264pt;}
._c{width:4051.080192pt;}
.fsa{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:71.040000pt;}
.fs7{font-size:74.880000pt;}
.fsb{font-size:80.640000pt;}
.fsd{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs6{font-size:133.120000pt;}
.fsc{font-size:141.440000pt;}
.fs4{font-size:149.120000pt;}
.fsf{font-size:170.880000pt;}
.fs9{font-size:181.120000pt;}
.fs0{font-size:186.880000pt;}
.fs1{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:30.178133pt;}
.y7d{bottom:33.282053pt;}
.ya{bottom:36.358267pt;}
.y2e{bottom:36.415467pt;}
.y79{bottom:38.100133pt;}
.y7f{bottom:89.033653pt;}
.y57{bottom:90.612933pt;}
.y32{bottom:97.559867pt;}
.ya5{bottom:104.600000pt;}
.y34{bottom:105.472933pt;}
.ya4{bottom:105.988320pt;}
.y7c{bottom:124.504133pt;}
.y24{bottom:128.329653pt;}
.y74{bottom:129.112000pt;}
.y8a{bottom:129.914533pt;}
.y12{bottom:130.650187pt;}
.y20{bottom:130.650453pt;}
.ya1{bottom:135.440267pt;}
.y86{bottom:145.324267pt;}
.y5e{bottom:145.331600pt;}
.y93{bottom:146.198000pt;}
.y85{bottom:150.683893pt;}
.y49{bottom:156.280800pt;}
.y56{bottom:163.253067pt;}
.y42{bottom:165.156133pt;}
.ya0{bottom:170.000267pt;}
.y23{bottom:170.543253pt;}
.y11{bottom:172.863787pt;}
.y1f{bottom:172.864053pt;}
.y7e{bottom:174.778133pt;}
.y92{bottom:184.598000pt;}
.y25{bottom:184.856667pt;}
.y27{bottom:191.947733pt;}
.y48{bottom:196.052400pt;}
.y22{bottom:212.756853pt;}
.y10{bottom:215.077387pt;}
.y1e{bottom:215.077653pt;}
.y5d{bottom:217.971600pt;}
.y76{bottom:220.609760pt;}
.y84{bottom:222.213333pt;}
.y91{bottom:222.998000pt;}
.y9{bottom:223.328000pt;}
.y73{bottom:232.947467pt;}
.y41{bottom:237.796133pt;}
.y40{bottom:238.880533pt;}
.y21{bottom:244.749333pt;}
.y75{bottom:245.084000pt;}
.yf{bottom:247.069867pt;}
.y1d{bottom:247.070133pt;}
.y9f{bottom:255.280267pt;}
.y8{bottom:257.888000pt;}
.y90{bottom:261.398000pt;}
.y3a{bottom:276.565600pt;}
.y9e{bottom:289.840267pt;}
.y83{bottom:294.853333pt;}
.y8f{bottom:315.798000pt;}
.y3f{bottom:316.000533pt;}
.y55{bottom:342.120267pt;}
.y3e{bottom:350.560533pt;}
.y4e{bottom:353.526107pt;}
.y39{bottom:353.845600pt;}
.y8e{bottom:354.198000pt;}
.y1c{bottom:363.288453pt;}
.y9d{bottom:375.120267pt;}
.y16{bottom:380.438347pt;}
.y5c{bottom:381.872960pt;}
.y4d{bottom:382.330267pt;}
.y15{bottom:402.846187pt;}
.y1b{bottom:405.502053pt;}
.y9c{bottom:409.680267pt;}
.y47{bottom:412.222507pt;}
.y78{bottom:415.883360pt;}
.y3d{bottom:427.840533pt;}
.y38{bottom:431.125600pt;}
.y77{bottom:440.357600pt;}
.y46{bottom:441.026667pt;}
.y9b{bottom:444.240267pt;}
.y14{bottom:445.059787pt;}
.y7{bottom:445.920000pt;}
.y1a{bottom:447.715653pt;}
.y5b{bottom:453.402400pt;}
.y4c{bottom:454.970267pt;}
.y4b{bottom:458.186667pt;}
.y3c{bottom:462.400533pt;}
.y26{bottom:471.418400pt;}
.y13{bottom:477.052267pt;}
.y19{bottom:479.708133pt;}
.y6c{bottom:491.027227pt;}
.y7a{bottom:503.122400pt;}
.y37{bottom:508.245600pt;}
.y45{bottom:512.556107pt;}
.y6b{bottom:515.501467pt;}
.y8b{bottom:521.965733pt;}
.y5a{bottom:526.042400pt;}
.y4a{bottom:530.826800pt;}
.y53{bottom:531.030533pt;}
.y9a{bottom:531.920267pt;}
.y3b{bottom:540.800533pt;}
.y44{bottom:541.360267pt;}
.y6f{bottom:556.221627pt;}
.y6{bottom:565.870613pt;}
.y6e{bottom:580.695867pt;}
.y99{bottom:583.120267pt;}
.y36{bottom:585.525600pt;}
.y52{bottom:603.670533pt;}
.y66{bottom:610.256133pt;}
.y82{bottom:613.223173pt;}
.y43{bottom:614.000267pt;}
.y5{bottom:617.072693pt;}
.y31{bottom:618.143600pt;}
.y98{bottom:634.320267pt;}
.y81{bottom:642.027333pt;}
.y65{bottom:648.656133pt;}
.ya2{bottom:650.515200pt;}
.ya3{bottom:651.503840pt;}
.y35{bottom:663.920933pt;}
.y59{bottom:667.130267pt;}
.y4{bottom:668.274773pt;}
.y18{bottom:678.776053pt;}
.y97{bottom:685.520400pt;}
.y64{bottom:687.056133pt;}
.y2c{bottom:688.297653pt;}
.y30{bottom:709.835600pt;}
.y17{bottom:710.768533pt;}
.y80{bottom:714.667333pt;}
.y2b{bottom:717.101813pt;}
.y8d{bottom:717.462027pt;}
.y87{bottom:723.108533pt;}
.y72{bottom:723.974400pt;}
.y63{bottom:725.456267pt;}
.y51{bottom:733.423440pt;}
.y96{bottom:736.720267pt;}
.y2a{bottom:745.905973pt;}
.y70{bottom:746.473600pt;}
.y6d{bottom:750.624160pt;}
.y6a{bottom:750.785440pt;}
.y50{bottom:762.227600pt;}
.y62{bottom:763.856267pt;}
.y3{bottom:770.678933pt;}
.y8c{bottom:774.424267pt;}
.y29{bottom:774.710133pt;}
.y69{bottom:775.098400pt;}
.y95{bottom:785.360400pt;}
.y61{bottom:802.256133pt;}
.y89{bottom:818.302800pt;}
.y4f{bottom:834.867467pt;}
.y60{bottom:840.656133pt;}
.y28{bottom:847.350133pt;}
.y54{bottom:851.113733pt;}
.y88{bottom:852.862800pt;}
.y68{bottom:856.816160pt;}
.y58{bottom:859.805067pt;}
.y5f{bottom:879.056133pt;}
.y67{bottom:881.290400pt;}
.y2{bottom:907.751387pt;}
.y71{bottom:946.162800pt;}
.y1{bottom:958.162267pt;}
.y2f{bottom:958.820933pt;}
.yb{bottom:959.357200pt;}
.y2d{bottom:960.110533pt;}
.ye{bottom:960.448133pt;}
.y94{bottom:960.468933pt;}
.ya6{bottom:969.253467pt;}
.y7b{bottom:970.382800pt;}
.yd{bottom:971.927867pt;}
.y33{bottom:974.427600pt;}
.hf{height:42.895000pt;}
.h5{height:46.625000pt;}
.h9{height:54.514687pt;}
.ha{height:54.551250pt;}
.h10{height:55.715625pt;}
.h11{height:55.873125pt;}
.h13{height:62.968125pt;}
.h7{height:69.937500pt;}
.hb{height:77.863750pt;}
.h14{height:78.614150pt;}
.hd{height:92.626950pt;}
.h3{height:93.187500pt;}
.h4{height:93.250000pt;}
.h8{height:96.915000pt;}
.h12{height:97.999687pt;}
.h6{height:108.563437pt;}
.h16{height:124.405313pt;}
.he{height:131.662683pt;}
.h15{height:131.860312pt;}
.hc{height:131.948750pt;}
.h17{height:134.723910pt;}
.h1{height:136.053750pt;}
.h2{height:155.157187pt;}
.h0{height:1024.000000pt;}
.w0{width:1820.000000pt;}
.x0{left:0.000000pt;}
.x29{left:13.135867pt;}
.x24{left:39.326400pt;}
.x2c{left:46.049680pt;}
.x9{left:48.225733pt;}
.x1{left:49.462667pt;}
.x2{left:50.429867pt;}
.xa{left:54.459493pt;}
.x4{left:58.774667pt;}
.xb{left:66.777253pt;}
.x57{left:82.205733pt;}
.x71{left:94.904667pt;}
.x54{left:99.133333pt;}
.x76{left:100.400827pt;}
.x5c{left:104.689067pt;}
.x6c{left:112.736933pt;}
.x72{left:130.904667pt;}
.x58{left:210.838267pt;}
.x74{left:212.945467pt;}
.x53{left:216.444533pt;}
.x3{left:218.522000pt;}
.xe{left:297.098800pt;}
.xc{left:302.246800pt;}
.xd{left:315.837520pt;}
.x36{left:326.687467pt;}
.xf{left:342.064240pt;}
.x6a{left:365.952400pt;}
.x25{left:368.985333pt;}
.x70{left:397.566667pt;}
.x62{left:403.388800pt;}
.x7{left:428.732800pt;}
.x2a{left:443.059067pt;}
.x78{left:445.462800pt;}
.x27{left:450.621867pt;}
.x69{left:454.105333pt;}
.x67{left:456.668800pt;}
.x55{left:458.944800pt;}
.x4d{left:473.263067pt;}
.x5{left:487.873600pt;}
.x8{left:490.588800pt;}
.x26{left:491.902000pt;}
.x59{left:496.906533pt;}
.x56{left:502.954080pt;}
.x4e{left:504.773147pt;}
.x2b{left:514.622000pt;}
.x75{left:518.007707pt;}
.x5b{left:520.201253pt;}
.x6{left:529.143200pt;}
.x1f{left:534.050853pt;}
.x37{left:546.545867pt;}
.x10{left:549.150000pt;}
.x3b{left:557.788800pt;}
.x1d{left:561.737733pt;}
.x20{left:569.244453pt;}
.x1e{left:572.782533pt;}
.x38{left:575.705333pt;}
.x22{left:585.195733pt;}
.x32{left:589.308800pt;}
.x2f{left:596.988667pt;}
.x42{left:601.308800pt;}
.x48{left:634.428800pt;}
.x4f{left:755.080133pt;}
.x47{left:757.426533pt;}
.x50{left:762.115973pt;}
.x5d{left:780.210533pt;}
.x13{left:783.823333pt;}
.x11{left:791.498533pt;}
.x5a{left:799.596427pt;}
.x28{left:804.614800pt;}
.x12{left:811.809733pt;}
.x73{left:813.570000pt;}
.x4a{left:818.914533pt;}
.x49{left:819.818133pt;}
.x14{left:852.638053pt;}
.x6f{left:865.380400pt;}
.x21{left:868.687333pt;}
.x51{left:883.913867pt;}
.x52{left:895.586507pt;}
.x6d{left:916.017600pt;}
.x2d{left:943.552400pt;}
.x6e{left:944.498720pt;}
.x60{left:956.660667pt;}
.x4b{left:969.518667pt;}
.x2e{left:991.552400pt;}
.x68{left:998.351333pt;}
.x16{left:1090.986853pt;}
.x17{left:1111.616293pt;}
.x18{left:1122.492613pt;}
.x15{left:1147.315333pt;}
.x77{left:1149.776800pt;}
.x5e{left:1152.905467pt;}
.x34{left:1212.524000pt;}
.x3a{left:1229.808800pt;}
.x40{left:1250.267600pt;}
.x35{left:1260.513120pt;}
.x66{left:1276.639333pt;}
.x65{left:1279.519333pt;}
.x63{left:1289.424400pt;}
.x41{left:1298.256720pt;}
.x64{left:1309.093520pt;}
.x33{left:1314.124000pt;}
.x39{left:1332.048800pt;}
.x44{left:1336.548133pt;}
.x3d{left:1342.422000pt;}
.x3f{left:1351.867600pt;}
.x43{left:1354.628133pt;}
.x3c{left:1370.742000pt;}
.x23{left:1375.000533pt;}
.x61{left:1385.703707pt;}
.x3e{left:1390.411120pt;}
.x4c{left:1394.734667pt;}
.x46{left:1399.111467pt;}
.x31{left:1441.540533pt;}
.x45{left:1442.527067pt;}
.x30{left:1480.260533pt;}
.x6b{left:1534.130800pt;}
.x5f{left:1559.503707pt;}
.x1c{left:1572.782320pt;}
.x1b{left:1594.385200pt;}
.x1a{left:1606.871440pt;}
.x19{left:1608.144400pt;}
}




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