
    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_dda111c95d7332cdff6b20b3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f47f3da712a6cb8793bf5750.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d1d3eb511432fa239421aae9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_29253b0ce0e6c7771cd22e4a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_96c108da6fd16c1d98c672db.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_56b7c1d97ac2b2c57a52d44d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f7982b7455039fd076b8b91a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fe26f337513f0273512cf95d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0d0ed9bf34d26078b1e28a9a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_921e2da7a1bc3914c7b080ae.woff')format("woff");}.ffc{font-family:ffc;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_37d6f1ff04c179c258d1c195.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vc{vertical-align:-74.160000px;}
.v2{vertical-align:-9.360000px;}
.v9{vertical-align:-6.480000px;}
.va{vertical-align:-5.040000px;}
.v7{vertical-align:-3.600000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v8{vertical-align:3.600000px;}
.vb{vertical-align:5.040000px;}
.v3{vertical-align:6.480000px;}
.v1{vertical-align:9.360000px;}
.v6{vertical-align:30.240000px;}
.ls13{letter-spacing:-21.780000px;}
.ls28{letter-spacing:-17.340000px;}
.ls15{letter-spacing:-15.900000px;}
.ls1c{letter-spacing:-15.660000px;}
.ls1e{letter-spacing:-14.220000px;}
.ls17{letter-spacing:-13.500000px;}
.ls2e{letter-spacing:-1.458000px;}
.ls6{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.738000px;}
.ls12{letter-spacing:-0.690000px;}
.ls22{letter-spacing:-0.684000px;}
.ls1d{letter-spacing:-0.474000px;}
.ls35{letter-spacing:-0.398400px;}
.ls20{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.350400px;}
.ls2d{letter-spacing:-0.341400px;}
.ls27{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.093000px;}
.ls2a{letter-spacing:-0.090000px;}
.ls23{letter-spacing:-0.028080px;}
.ls3{letter-spacing:-0.018720px;}
.ls21{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.001440px;}
.ls1a{letter-spacing:0.027360px;}
.ls0{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.ls25{letter-spacing:0.073440px;}
.lsb{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.181440px;}
.ls10{letter-spacing:0.208080px;}
.ls2b{letter-spacing:0.214800px;}
.ls16{letter-spacing:0.246000px;}
.lsc{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.297600px;}
.ls34{letter-spacing:0.321600px;}
.ls31{letter-spacing:0.321840px;}
.lsd{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.369600px;}
.ls4{letter-spacing:0.378600px;}
.ls19{letter-spacing:0.485280px;}
.lsa{letter-spacing:0.494640px;}
.ls9{letter-spacing:0.504000px;}
.ls8{letter-spacing:26.460000px;}
.ls32{letter-spacing:41.381280px;}
.ls30{letter-spacing:50.220000px;}
.ls2f{letter-spacing:50.940000px;}
.ls1f{letter-spacing:627.277440px;}
.ls1b{letter-spacing:1631.640000px;}
.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:-24.300000px;}
.ws3{word-spacing:-21.438600px;}
.ws16{word-spacing:-21.429600px;}
.ws5{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.410400px;}
.ws9{word-spacing:-21.401400px;}
.ws20{word-spacing:-21.381600px;}
.ws7{word-spacing:-21.097440px;}
.ws17{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws12{word-spacing:-21.050640px;}
.ws2{word-spacing:-21.041280px;}
.ws13{word-spacing:-21.031920px;}
.ws1f{word-spacing:-20.967000px;}
.wsc{word-spacing:-20.880000px;}
.ws1d{word-spacing:-20.718600px;}
.ws15{word-spacing:-20.709600px;}
.ws4{word-spacing:-20.700000px;}
.ws11{word-spacing:-20.681400px;}
.ws21{word-spacing:-20.661600px;}
.ws14{word-spacing:-20.376000px;}
.wsa{word-spacing:-20.322000px;}
.ws1e{word-spacing:-19.602000px;}
.ws1c{word-spacing:-16.910880px;}
.ws19{word-spacing:-16.859280px;}
.ws1b{word-spacing:-16.828080px;}
.wsd{word-spacing:-16.613280px;}
.ws18{word-spacing:-16.432080px;}
.wse{word-spacing:-15.186000px;}
.wsf{word-spacing:-14.941440px;}
.ws8{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.466000px;}
.ws6{word-spacing:0.000000px;}
.ws1a{word-spacing:405.821280px;}
._35{margin-left:-2899.453200px;}
._32{margin-left:-2703.536880px;}
._6b{margin-left:-2044.711440px;}
._6a{margin-left:-1955.173200px;}
._24{margin-left:-1833.118800px;}
._6c{margin-left:-1096.455120px;}
._36{margin-left:-828.740880px;}
._28{margin-left:-637.327200px;}
._30{margin-left:-630.000000px;}
._6d{margin-left:-625.806960px;}
._4b{margin-left:-589.055280px;}
._4a{margin-left:-575.976000px;}
._3e{margin-left:-477.269040px;}
._27{margin-left:-466.892160px;}
._62{margin-left:-457.569840px;}
._61{margin-left:-456.300000px;}
._37{margin-left:-445.296000px;}
._26{margin-left:-443.160000px;}
._46{margin-left:-412.138560px;}
._3f{margin-left:-402.354960px;}
._66{margin-left:-400.302000px;}
._65{margin-left:-395.100000px;}
._53{margin-left:-392.311920px;}
._45{margin-left:-385.920000px;}
._5e{margin-left:-384.300000px;}
._68{margin-left:-380.464320px;}
._7d{margin-left:-376.670400px;}
._67{margin-left:-366.660000px;}
._5b{margin-left:-355.334160px;}
._5a{margin-left:-339.120000px;}
._55{margin-left:-318.448560px;}
._54{margin-left:-316.800000px;}
._84{margin-left:-296.706240px;}
._83{margin-left:-284.629200px;}
._81{margin-left:-237.653280px;}
._82{margin-left:-235.415280px;}
._75{margin-left:-220.555920px;}
._76{margin-left:-218.779200px;}
._60{margin-left:-215.953680px;}
._5f{margin-left:-213.613920px;}
._40{margin-left:-209.828640px;}
._3c{margin-left:-207.180000px;}
._43{margin-left:-185.359440px;}
._56{margin-left:-183.420000px;}
._41{margin-left:-180.671760px;}
._5d{margin-left:-168.966000px;}
._6f{margin-left:-161.999040px;}
._7b{margin-left:-139.733280px;}
._7c{margin-left:-136.848240px;}
._70{margin-left:-129.144720px;}
._79{margin-left:-125.935920px;}
._80{margin-left:-115.462800px;}
._71{margin-left:-111.599280px;}
._3b{margin-left:-110.499840px;}
._3a{margin-left:-109.260000px;}
._64{margin-left:-100.041840px;}
._78{margin-left:-92.146560px;}
._5c{margin-left:-88.500000px;}
._58{margin-left:-86.855040px;}
._63{margin-left:-84.301440px;}
._57{margin-left:-81.980400px;}
._3d{margin-left:-78.570480px;}
._49{margin-left:-76.503600px;}
._86{margin-left:-71.136720px;}
._87{margin-left:-70.107600px;}
._77{margin-left:-68.467680px;}
._25{margin-left:-65.190240px;}
._48{margin-left:-62.640000px;}
._88{margin-left:-58.501440px;}
._73{margin-left:-57.247920px;}
._89{margin-left:-54.369360px;}
._7a{margin-left:-51.698880px;}
._38{margin-left:-47.520000px;}
._47{margin-left:-46.440000px;}
._2f{margin-left:-45.360000px;}
._74{margin-left:-44.101440px;}
._4d{margin-left:-39.564000px;}
._44{margin-left:-36.460080px;}
._59{margin-left:-34.300080px;}
._4c{margin-left:-33.120000px;}
._69{margin-left:-31.500000px;}
._39{margin-left:-29.506560px;}
._22{margin-left:-26.294400px;}
._2a{margin-left:-25.218027px;}
._29{margin-left:-23.556720px;}
._23{margin-left:-22.222560px;}
._85{margin-left:-18.141360px;}
._33{margin-left:-15.893280px;}
._42{margin-left:-13.505760px;}
._2b{margin-left:-11.571600px;}
._34{margin-left:-9.291600px;}
._31{margin-left:-7.727040px;}
._7{margin-left:-5.391360px;}
._20{margin-left:-4.380480px;}
._15{margin-left:-3.221760px;}
._d{margin-left:-2.190240px;}
._1{margin-left:-1.158720px;}
._2{width:1.038720px;}
._0{width:2.208000px;}
._6{width:4.066080px;}
._5{width:5.418720px;}
._b{width:7.328880px;}
._9{width:8.592480px;}
._3{width:9.940320px;}
._1c{width:10.998960px;}
._e{width:12.299040px;}
._50{width:13.392960px;}
._18{width:14.526240px;}
._19{width:15.988800px;}
._21{width:17.454480px;}
._4{width:18.532800px;}
._c{width:19.712160px;}
._13{width:22.318080px;}
._1a{width:23.566560px;}
._1f{width:24.668880px;}
._16{width:26.262240px;}
._a{width:28.207920px;}
._8{width:29.876160px;}
._17{width:30.896880px;}
._14{width:32.243280px;}
._12{width:33.780240px;}
._11{width:35.717760px;}
._2c{width:37.440480px;}
._4f{width:39.508560px;}
._6e{width:40.519440px;}
._1b{width:45.384720px;}
._f{width:48.092160px;}
._10{width:49.249680px;}
._8a{width:50.266800px;}
._51{width:52.158720px;}
._2e{width:53.660880px;}
._2d{width:60.905520px;}
._52{width:62.533200px;}
._1e{width:73.640160px;}
._1d{width:75.030000px;}
._4e{width:108.248400px;}
._7e{width:837.642960px;}
._7f{width:978.660000px;}
._72{width:1154.615520px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:88.795869px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y4a{bottom:88.236000px;}
.y4e{bottom:88.596000px;}
.y49{bottom:93.456000px;}
.y4d{bottom:93.816000px;}
.y64{bottom:95.256000px;}
.y6a{bottom:98.856000px;}
.y62{bottom:105.336000px;}
.y58{bottom:105.516000px;}
.y48{bottom:106.776000px;}
.y4c{bottom:108.396000px;}
.y61{bottom:110.556000px;}
.y2d{bottom:113.436000px;}
.y60{bottom:122.616000px;}
.y57{bottom:122.796000px;}
.y63{bottom:122.976000px;}
.y69{bottom:126.576000px;}
.y5f{bottom:127.836000px;}
.y67{bottom:128.016000px;}
.y5e{bottom:139.896000px;}
.y56{bottom:140.076000px;}
.y2c{bottom:141.156000px;}
.y66{bottom:141.336000px;}
.y55{bottom:145.296000px;}
.y47{bottom:150.870000px;}
.y68{bottom:154.470000px;}
.y5d{bottom:157.170000px;}
.y54{bottom:157.350000px;}
.y53{bottom:162.570000px;}
.y2b{bottom:168.870000px;}
.y52{bottom:175.890000px;}
.y46{bottom:178.590000px;}
.y5c{bottom:192.990000px;}
.y2a{bottom:196.590000px;}
.y45{bottom:206.310000px;}
.y51{bottom:213.870000px;}
.y29{bottom:224.490000px;}
.y44{bottom:234.030000px;}
.y4b{bottom:241.590000px;}
.y28{bottom:252.210000px;}
.y43{bottom:261.930000px;}
.y27{bottom:279.930000px;}
.y42{bottom:289.650000px;}
.y26{bottom:307.830000px;}
.y41{bottom:317.370000px;}
.y65{bottom:324.930000px;}
.y25{bottom:335.550000px;}
.y40{bottom:345.135000px;}
.y24{bottom:363.315000px;}
.y3f{bottom:373.035000px;}
.y23{bottom:391.035000px;}
.y3d{bottom:400.755000px;}
.y3e{bottom:408.315000px;}
.y22{bottom:418.935000px;}
.y3c{bottom:428.475000px;}
.y21{bottom:446.655000px;}
.y3b{bottom:456.375000px;}
.y20{bottom:482.835000px;}
.y3a{bottom:484.095000px;}
.y39{bottom:511.815000px;}
.y1f{bottom:519.015000px;}
.y50{bottom:519.375000px;}
.y38{bottom:539.535000px;}
.y1e{bottom:555.375000px;}
.y37{bottom:567.435000px;}
.y1d{bottom:591.555000px;}
.y36{bottom:595.155000px;}
.y35{bottom:622.905000px;}
.y1c{bottom:627.765000px;}
.y34{bottom:650.805000px;}
.y1b{bottom:663.945000px;}
.y33{bottom:678.525000px;}
.y5b{bottom:686.085000px;}
.y1a{bottom:700.305000px;}
.y32{bottom:706.245000px;}
.y31{bottom:733.965000px;}
.y19{bottom:736.485000px;}
.y30{bottom:761.865000px;}
.y18{bottom:772.665000px;}
.y2f{bottom:789.585000px;}
.y5a{bottom:797.145000px;}
.y17{bottom:808.845000px;}
.y2e{bottom:817.305000px;}
.y16{bottom:845.025000px;}
.y15{bottom:872.970000px;}
.y14{bottom:900.690000px;}
.y13{bottom:928.410000px;}
.y59{bottom:935.970000px;}
.y12{bottom:956.310000px;}
.y11{bottom:984.030000px;}
.y4f{bottom:991.590000px;}
.y10{bottom:1011.750000px;}
.yf{bottom:1039.470000px;}
.ye{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.he{height:38.158594px;}
.h2{height:41.400000px;}
.h16{height:52.971680px;}
.hd{height:52.998047px;}
.h17{height:53.661445px;}
.h4{height:53.709961px;}
.h18{height:55.503491px;}
.hf{height:58.651172px;}
.h6{height:66.757500px;}
.hc{height:70.295977px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.h12{height:74.121328px;}
.h13{height:78.129959px;}
.h11{height:80.601328px;}
.h14{height:82.635820px;}
.ha{height:82.676953px;}
.h15{height:83.238047px;}
.h10{height:83.481328px;}
.hb{height:84.898125px;}
.h19{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.xa{left:19.800000px;}
.x8{left:25.380000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x1a{left:79.739987px;}
.x7{left:84.959987px;}
.x18{left:89.855987px;}
.x1d{left:91.835987px;}
.xc{left:124.775987px;}
.x12{left:127.475987px;}
.x28{left:134.315987px;}
.xf{left:144.035987px;}
.x22{left:156.089973px;}
.x23{left:162.929987px;}
.x31{left:170.309987px;}
.x29{left:258.149973px;}
.x20{left:262.289973px;}
.x2a{left:264.989987px;}
.x21{left:269.129987px;}
.x17{left:301.034987px;}
.x10{left:306.974987px;}
.xd{left:345.134987px;}
.x19{left:360.974987px;}
.xe{left:367.454987px;}
.x11{left:368.894987px;}
.x14{left:375.914987px;}
.x13{left:389.234987px;}
.xb{left:446.474987px;}
.x15{left:451.514973px;}
.x16{left:458.354987px;}
.x2f{left:493.844973px;}
.x30{left:500.684987px;}
.x1e{left:504.824973px;}
.x1f{left:511.664987px;}
.x3{left:530.205000px;}
.x2e{left:564.044987px;}
.x1b{left:607.064987px;}
.x1c{left:645.944987px;}
.x2b{left:655.529973px;}
.x2c{left:662.369987px;}
.x26{left:704.669987px;}
.x2d{left:786.929987px;}
.x4{left:792.690000px;}
.x25{left:795.749987px;}
.x9{left:797.550000px;}
.x27{left:799.169987px;}
.x24{left:803.309973px;}
@media print{
.vc{vertical-align:-65.920000pt;}
.v2{vertical-align:-8.320000pt;}
.v9{vertical-align:-5.760000pt;}
.va{vertical-align:-4.480000pt;}
.v7{vertical-align:-3.200000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v8{vertical-align:3.200000pt;}
.vb{vertical-align:4.480000pt;}
.v3{vertical-align:5.760000pt;}
.v1{vertical-align:8.320000pt;}
.v6{vertical-align:26.880000pt;}
.ls13{letter-spacing:-19.360000pt;}
.ls28{letter-spacing:-15.413333pt;}
.ls15{letter-spacing:-14.133333pt;}
.ls1c{letter-spacing:-13.920000pt;}
.ls1e{letter-spacing:-12.640000pt;}
.ls17{letter-spacing:-12.000000pt;}
.ls2e{letter-spacing:-1.296000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.656000pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls22{letter-spacing:-0.608000pt;}
.ls1d{letter-spacing:-0.421333pt;}
.ls35{letter-spacing:-0.354133pt;}
.ls20{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.311467pt;}
.ls2d{letter-spacing:-0.303467pt;}
.ls27{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.082667pt;}
.ls2a{letter-spacing:-0.080000pt;}
.ls23{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls21{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.001280pt;}
.ls1a{letter-spacing:0.024320pt;}
.ls0{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.ls25{letter-spacing:0.065280pt;}
.lsb{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.161280pt;}
.ls10{letter-spacing:0.184960pt;}
.ls2b{letter-spacing:0.190933pt;}
.ls16{letter-spacing:0.218667pt;}
.lsc{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.264533pt;}
.ls34{letter-spacing:0.285867pt;}
.ls31{letter-spacing:0.286080pt;}
.lsd{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.328533pt;}
.ls4{letter-spacing:0.336533pt;}
.ls19{letter-spacing:0.431360pt;}
.lsa{letter-spacing:0.439680pt;}
.ls9{letter-spacing:0.448000pt;}
.ls8{letter-spacing:23.520000pt;}
.ls32{letter-spacing:36.783360pt;}
.ls30{letter-spacing:44.640000pt;}
.ls2f{letter-spacing:45.280000pt;}
.ls1f{letter-spacing:557.579947pt;}
.ls1b{letter-spacing:1450.346667pt;}
.ws0{word-spacing:-21.600000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws16{word-spacing:-19.048533pt;}
.ws5{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.031467pt;}
.ws9{word-spacing:-19.023467pt;}
.ws20{word-spacing:-19.005867pt;}
.ws7{word-spacing:-18.753280pt;}
.ws17{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.711680pt;}
.ws2{word-spacing:-18.703360pt;}
.ws13{word-spacing:-18.695040pt;}
.ws1f{word-spacing:-18.637333pt;}
.wsc{word-spacing:-18.560000pt;}
.ws1d{word-spacing:-18.416533pt;}
.ws15{word-spacing:-18.408533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws11{word-spacing:-18.383467pt;}
.ws21{word-spacing:-18.365867pt;}
.ws14{word-spacing:-18.112000pt;}
.wsa{word-spacing:-18.064000pt;}
.ws1e{word-spacing:-17.424000pt;}
.ws1c{word-spacing:-15.031893pt;}
.ws19{word-spacing:-14.986027pt;}
.ws1b{word-spacing:-14.958293pt;}
.wsd{word-spacing:-14.767360pt;}
.ws18{word-spacing:-14.606293pt;}
.wse{word-spacing:-13.498667pt;}
.wsf{word-spacing:-13.281280pt;}
.ws8{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.858667pt;}
.ws6{word-spacing:0.000000pt;}
.ws1a{word-spacing:360.730027pt;}
._35{margin-left:-2577.291733pt;}
._32{margin-left:-2403.143893pt;}
._6b{margin-left:-1817.521280pt;}
._6a{margin-left:-1737.931733pt;}
._24{margin-left:-1629.438933pt;}
._6c{margin-left:-974.626773pt;}
._36{margin-left:-736.658560pt;}
._28{margin-left:-566.513067pt;}
._30{margin-left:-560.000000pt;}
._6d{margin-left:-556.272853pt;}
._4b{margin-left:-523.604693pt;}
._4a{margin-left:-511.978667pt;}
._3e{margin-left:-424.239147pt;}
._27{margin-left:-415.015253pt;}
._62{margin-left:-406.728747pt;}
._61{margin-left:-405.600000pt;}
._37{margin-left:-395.818667pt;}
._26{margin-left:-393.920000pt;}
._46{margin-left:-366.345387pt;}
._3f{margin-left:-357.648853pt;}
._66{margin-left:-355.824000pt;}
._65{margin-left:-351.200000pt;}
._53{margin-left:-348.721707pt;}
._45{margin-left:-343.040000pt;}
._5e{margin-left:-341.600000pt;}
._68{margin-left:-338.190507pt;}
._7d{margin-left:-334.818133pt;}
._67{margin-left:-325.920000pt;}
._5b{margin-left:-315.852587pt;}
._5a{margin-left:-301.440000pt;}
._55{margin-left:-283.065387pt;}
._54{margin-left:-281.600000pt;}
._84{margin-left:-263.738880pt;}
._83{margin-left:-253.003733pt;}
._81{margin-left:-211.247360pt;}
._82{margin-left:-209.258027pt;}
._75{margin-left:-196.049707pt;}
._76{margin-left:-194.470400pt;}
._60{margin-left:-191.958827pt;}
._5f{margin-left:-189.879040pt;}
._40{margin-left:-186.514347pt;}
._3c{margin-left:-184.160000pt;}
._43{margin-left:-164.763947pt;}
._56{margin-left:-163.040000pt;}
._41{margin-left:-160.597120pt;}
._5d{margin-left:-150.192000pt;}
._6f{margin-left:-143.999147pt;}
._7b{margin-left:-124.207360pt;}
._7c{margin-left:-121.642880pt;}
._70{margin-left:-114.795307pt;}
._79{margin-left:-111.943040pt;}
._80{margin-left:-102.633600pt;}
._71{margin-left:-99.199360pt;}
._3b{margin-left:-98.222080pt;}
._3a{margin-left:-97.120000pt;}
._64{margin-left:-88.926080pt;}
._78{margin-left:-81.908053pt;}
._5c{margin-left:-78.666667pt;}
._58{margin-left:-77.204480pt;}
._63{margin-left:-74.934613pt;}
._57{margin-left:-72.871467pt;}
._3d{margin-left:-69.840427pt;}
._49{margin-left:-68.003200pt;}
._86{margin-left:-63.232640pt;}
._87{margin-left:-62.317867pt;}
._77{margin-left:-60.860160pt;}
._25{margin-left:-57.946880pt;}
._48{margin-left:-55.680000pt;}
._88{margin-left:-52.001280pt;}
._73{margin-left:-50.887040pt;}
._89{margin-left:-48.328320pt;}
._7a{margin-left:-45.954560pt;}
._38{margin-left:-42.240000pt;}
._47{margin-left:-41.280000pt;}
._2f{margin-left:-40.320000pt;}
._74{margin-left:-39.201280pt;}
._4d{margin-left:-35.168000pt;}
._44{margin-left:-32.408960pt;}
._59{margin-left:-30.488960pt;}
._4c{margin-left:-29.440000pt;}
._69{margin-left:-28.000000pt;}
._39{margin-left:-26.228053pt;}
._22{margin-left:-23.372800pt;}
._2a{margin-left:-22.416024pt;}
._29{margin-left:-20.939307pt;}
._23{margin-left:-19.753387pt;}
._85{margin-left:-16.125653pt;}
._33{margin-left:-14.127360pt;}
._42{margin-left:-12.005120pt;}
._2b{margin-left:-10.285867pt;}
._34{margin-left:-8.259200pt;}
._31{margin-left:-6.868480pt;}
._7{margin-left:-4.792320pt;}
._20{margin-left:-3.893760pt;}
._15{margin-left:-2.863787pt;}
._d{margin-left:-1.946880pt;}
._1{margin-left:-1.029973pt;}
._2{width:0.923307pt;}
._0{width:1.962667pt;}
._6{width:3.614293pt;}
._5{width:4.816640pt;}
._b{width:6.514560pt;}
._9{width:7.637760pt;}
._3{width:8.835840pt;}
._1c{width:9.776853pt;}
._e{width:10.932480pt;}
._50{width:11.904853pt;}
._18{width:12.912213pt;}
._19{width:14.212267pt;}
._21{width:15.515093pt;}
._4{width:16.473600pt;}
._c{width:17.521920pt;}
._13{width:19.838293pt;}
._1a{width:20.948053pt;}
._1f{width:21.927893pt;}
._16{width:23.344213pt;}
._a{width:25.073707pt;}
._8{width:26.556587pt;}
._17{width:27.463893pt;}
._14{width:28.660693pt;}
._12{width:30.026880pt;}
._11{width:31.749120pt;}
._2c{width:33.280427pt;}
._4f{width:35.118720pt;}
._6e{width:36.017280pt;}
._1b{width:40.341973pt;}
._f{width:42.748587pt;}
._10{width:43.777493pt;}
._8a{width:44.681600pt;}
._51{width:46.363307pt;}
._2e{width:47.698560pt;}
._2d{width:54.138240pt;}
._52{width:55.585067pt;}
._1e{width:65.457920pt;}
._1d{width:66.693333pt;}
._4e{width:96.220800pt;}
._7e{width:744.571520pt;}
._7f{width:869.920000pt;}
._72{width:1026.324907pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:78.929661pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y4a{bottom:78.432000pt;}
.y4e{bottom:78.752000pt;}
.y49{bottom:83.072000pt;}
.y4d{bottom:83.392000pt;}
.y64{bottom:84.672000pt;}
.y6a{bottom:87.872000pt;}
.y62{bottom:93.632000pt;}
.y58{bottom:93.792000pt;}
.y48{bottom:94.912000pt;}
.y4c{bottom:96.352000pt;}
.y61{bottom:98.272000pt;}
.y2d{bottom:100.832000pt;}
.y60{bottom:108.992000pt;}
.y57{bottom:109.152000pt;}
.y63{bottom:109.312000pt;}
.y69{bottom:112.512000pt;}
.y5f{bottom:113.632000pt;}
.y67{bottom:113.792000pt;}
.y5e{bottom:124.352000pt;}
.y56{bottom:124.512000pt;}
.y2c{bottom:125.472000pt;}
.y66{bottom:125.632000pt;}
.y55{bottom:129.152000pt;}
.y47{bottom:134.106667pt;}
.y68{bottom:137.306667pt;}
.y5d{bottom:139.706667pt;}
.y54{bottom:139.866667pt;}
.y53{bottom:144.506667pt;}
.y2b{bottom:150.106667pt;}
.y52{bottom:156.346667pt;}
.y46{bottom:158.746667pt;}
.y5c{bottom:171.546667pt;}
.y2a{bottom:174.746667pt;}
.y45{bottom:183.386667pt;}
.y51{bottom:190.106667pt;}
.y29{bottom:199.546667pt;}
.y44{bottom:208.026667pt;}
.y4b{bottom:214.746667pt;}
.y28{bottom:224.186667pt;}
.y43{bottom:232.826667pt;}
.y27{bottom:248.826667pt;}
.y42{bottom:257.466667pt;}
.y26{bottom:273.626667pt;}
.y41{bottom:282.106667pt;}
.y65{bottom:288.826667pt;}
.y25{bottom:298.266667pt;}
.y40{bottom:306.786667pt;}
.y24{bottom:322.946667pt;}
.y3f{bottom:331.586667pt;}
.y23{bottom:347.586667pt;}
.y3d{bottom:356.226667pt;}
.y3e{bottom:362.946667pt;}
.y22{bottom:372.386667pt;}
.y3c{bottom:380.866667pt;}
.y21{bottom:397.026667pt;}
.y3b{bottom:405.666667pt;}
.y20{bottom:429.186667pt;}
.y3a{bottom:430.306667pt;}
.y39{bottom:454.946667pt;}
.y1f{bottom:461.346667pt;}
.y50{bottom:461.666667pt;}
.y38{bottom:479.586667pt;}
.y1e{bottom:493.666667pt;}
.y37{bottom:504.386667pt;}
.y1d{bottom:525.826667pt;}
.y36{bottom:529.026667pt;}
.y35{bottom:553.693333pt;}
.y1c{bottom:558.013333pt;}
.y34{bottom:578.493333pt;}
.y1b{bottom:590.173333pt;}
.y33{bottom:603.133333pt;}
.y5b{bottom:609.853333pt;}
.y1a{bottom:622.493333pt;}
.y32{bottom:627.773333pt;}
.y31{bottom:652.413333pt;}
.y19{bottom:654.653333pt;}
.y30{bottom:677.213333pt;}
.y18{bottom:686.813333pt;}
.y2f{bottom:701.853333pt;}
.y5a{bottom:708.573333pt;}
.y17{bottom:718.973333pt;}
.y2e{bottom:726.493333pt;}
.y16{bottom:751.133333pt;}
.y15{bottom:775.973333pt;}
.y14{bottom:800.613333pt;}
.y13{bottom:825.253333pt;}
.y59{bottom:831.973333pt;}
.y12{bottom:850.053333pt;}
.y11{bottom:874.693333pt;}
.y4f{bottom:881.413333pt;}
.y10{bottom:899.333333pt;}
.yf{bottom:923.973333pt;}
.ye{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.he{height:33.918750pt;}
.h2{height:36.800000pt;}
.h16{height:47.085938pt;}
.hd{height:47.109375pt;}
.h17{height:47.699063pt;}
.h4{height:47.742188pt;}
.h18{height:49.336436pt;}
.hf{height:52.134375pt;}
.h6{height:59.340000pt;}
.hc{height:62.485312pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.h12{height:65.885625pt;}
.h13{height:69.448852pt;}
.h11{height:71.645625pt;}
.h14{height:73.454062pt;}
.ha{height:73.490625pt;}
.h15{height:73.989375pt;}
.h10{height:74.205625pt;}
.hb{height:75.465000pt;}
.h19{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.xa{left:17.600000pt;}
.x8{left:22.560000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x1a{left:70.879988pt;}
.x7{left:75.519988pt;}
.x18{left:79.871988pt;}
.x1d{left:81.631988pt;}
.xc{left:110.911988pt;}
.x12{left:113.311988pt;}
.x28{left:119.391988pt;}
.xf{left:128.031988pt;}
.x22{left:138.746643pt;}
.x23{left:144.826655pt;}
.x31{left:151.386655pt;}
.x29{left:229.466643pt;}
.x20{left:233.146643pt;}
.x2a{left:235.546655pt;}
.x21{left:239.226655pt;}
.x17{left:267.586655pt;}
.x10{left:272.866655pt;}
.xd{left:306.786655pt;}
.x19{left:320.866655pt;}
.xe{left:326.626655pt;}
.x11{left:327.906655pt;}
.x14{left:334.146655pt;}
.x13{left:345.986655pt;}
.xb{left:396.866655pt;}
.x15{left:401.346643pt;}
.x16{left:407.426655pt;}
.x2f{left:438.973310pt;}
.x30{left:445.053322pt;}
.x1e{left:448.733310pt;}
.x1f{left:454.813322pt;}
.x3{left:471.293333pt;}
.x2e{left:501.373322pt;}
.x1b{left:539.613322pt;}
.x1c{left:574.173322pt;}
.x2b{left:582.693310pt;}
.x2c{left:588.773322pt;}
.x26{left:626.373322pt;}
.x2d{left:699.493322pt;}
.x4{left:704.613333pt;}
.x25{left:707.333322pt;}
.x9{left:708.933333pt;}
.x27{left:710.373322pt;}
.x24{left:714.053310pt;}
}




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