
    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_414da274499e46e64a043dce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_4a5d65f4d0a8dcabd4c6512e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080078;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_8b90a88707a02888dc7a22af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_4391b4c7f1ae387fdde1030e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_b485b88fa4ed4c2f5c96efe7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_8697ff7cc1b4372c36cb9f3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_a24da339a29250ea456914a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_6b31799a9e3192cb4dc79f66.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ef96f7981b64dcd77af3567d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v2{vertical-align:-14.400000px;}
.v3{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.129600px;}
.ls14{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.014400px;}
.ls3c{letter-spacing:0.015600px;}
.ls3b{letter-spacing:0.055680px;}
.ls19{letter-spacing:0.075168px;}
.ls54{letter-spacing:0.095040px;}
.ls40{letter-spacing:0.114048px;}
.ls44{letter-spacing:0.118800px;}
.ls42{letter-spacing:0.123552px;}
.ls7{letter-spacing:0.138528px;}
.ls1{letter-spacing:0.142560px;}
.ls2{letter-spacing:0.150336px;}
.ls2c{letter-spacing:0.154512px;}
.ls1a{letter-spacing:0.158688px;}
.ls9{letter-spacing:0.159840px;}
.ls4c{letter-spacing:0.161568px;}
.ls22{letter-spacing:0.165168px;}
.ls5a{letter-spacing:0.170496px;}
.ls2a{letter-spacing:0.181152px;}
.ls2d{letter-spacing:0.191808px;}
.ls16{letter-spacing:0.194832px;}
.ls5f{letter-spacing:0.197136px;}
.ls2e{letter-spacing:0.207792px;}
.ls8{letter-spacing:0.213120px;}
.ls6c{letter-spacing:0.218448px;}
.ls66{letter-spacing:0.223776px;}
.ls45{letter-spacing:0.228096px;}
.ls27{letter-spacing:0.229104px;}
.ls3{letter-spacing:0.233856px;}
.ls13{letter-spacing:0.237600px;}
.ls6{letter-spacing:0.239760px;}
.ls4a{letter-spacing:0.242352px;}
.ls5c{letter-spacing:0.245088px;}
.ls17{letter-spacing:0.247104px;}
.ls4d{letter-spacing:0.249000px;}
.ls31{letter-spacing:0.251856px;}
.ls3d{letter-spacing:0.256608px;}
.ls15{letter-spacing:0.261360px;}
.ls0{letter-spacing:0.262392px;}
.ls12{letter-spacing:0.270864px;}
.ls41{letter-spacing:0.275616px;}
.ls18{letter-spacing:0.285120px;}
.ls24{letter-spacing:0.287712px;}
.ls29{letter-spacing:0.298368px;}
.ls6e{letter-spacing:0.303696px;}
.ls43{letter-spacing:0.304128px;}
.ls2b{letter-spacing:0.309024px;}
.ls4b{letter-spacing:0.318384px;}
.ls67{letter-spacing:0.319680px;}
.ls26{letter-spacing:0.325008px;}
.ls69{letter-spacing:0.330336px;}
.ls2f{letter-spacing:0.335664px;}
.ls68{letter-spacing:0.340992px;}
.ls25{letter-spacing:0.346320px;}
.ls1e{letter-spacing:0.351648px;}
.ls57{letter-spacing:0.356400px;}
.ls23{letter-spacing:0.356976px;}
.ls49{letter-spacing:0.365904px;}
.ls1c{letter-spacing:0.367632px;}
.ls5{letter-spacing:0.372960px;}
.ls48{letter-spacing:0.378288px;}
.ls59{letter-spacing:0.383616px;}
.ls21{letter-spacing:0.388944px;}
.lsc{letter-spacing:0.394272px;}
.ls1b{letter-spacing:0.395280px;}
.ls1d{letter-spacing:0.399600px;}
.ls38{letter-spacing:0.404928px;}
.ls58{letter-spacing:0.426240px;}
.ls56{letter-spacing:0.431568px;}
.ls47{letter-spacing:0.436896px;}
.ls6a{letter-spacing:0.442224px;}
.ls6d{letter-spacing:0.447552px;}
.ls28{letter-spacing:0.452880px;}
.ls5b{letter-spacing:0.458208px;}
.ls3e{letter-spacing:0.475200px;}
.ls1f{letter-spacing:0.484848px;}
.ls30{letter-spacing:0.506160px;}
.ls3f{letter-spacing:0.513216px;}
.ls39{letter-spacing:0.532800px;}
.ls37{letter-spacing:0.562200px;}
.ls20{letter-spacing:0.564768px;}
.ls6b{letter-spacing:0.612720px;}
.ls46{letter-spacing:0.623376px;}
.ls4{letter-spacing:0.648000px;}
.ls53{letter-spacing:0.657000px;}
.ls33{letter-spacing:0.692640px;}
.lsa{letter-spacing:0.959040px;}
.lse{letter-spacing:0.980352px;}
.ls51{letter-spacing:1.124208px;}
.ls52{letter-spacing:1.225440px;}
.ls4f{letter-spacing:1.918080px;}
.ls64{letter-spacing:2.131200px;}
.ls4e{letter-spacing:2.184480px;}
.ls36{letter-spacing:2.610720px;}
.ls5d{letter-spacing:2.770560px;}
.ls63{letter-spacing:2.983680px;}
.ls61{letter-spacing:3.463200px;}
.ls62{letter-spacing:3.996000px;}
.lsf{letter-spacing:4.582080px;}
.ls10{letter-spacing:4.635360px;}
.lsb{letter-spacing:4.795200px;}
.ls32{letter-spacing:5.061600px;}
.ls34{letter-spacing:5.700960px;}
.ls60{letter-spacing:5.860800px;}
.ls65{letter-spacing:6.660000px;}
.ls50{letter-spacing:7.459200px;}
.lsd{letter-spacing:7.832160px;}
.ls35{letter-spacing:11.508480px;}
.ls11{letter-spacing:14.012640px;}
.ls5e{letter-spacing:136.663200px;}
.ls55{letter-spacing:200.652480px;}
.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;}
}
.ws49{word-spacing:-200.705760px;}
.ws39{word-spacing:-13.528944px;}
.ws3a{word-spacing:-13.334112px;}
.ws2d{word-spacing:-0.676656px;}
.ws5c{word-spacing:-0.666000px;}
.wsf{word-spacing:-0.618048px;}
.ws25{word-spacing:-0.559440px;}
.wse{word-spacing:-0.538128px;}
.ws4b{word-spacing:-0.511488px;}
.ws1b{word-spacing:-0.506160px;}
.ws5d{word-spacing:-0.500832px;}
.ws59{word-spacing:-0.495504px;}
.ws31{word-spacing:-0.490176px;}
.ws3b{word-spacing:-0.484848px;}
.ws48{word-spacing:-0.479520px;}
.ws8{word-spacing:-0.460080px;}
.ws37{word-spacing:-0.458208px;}
.wsc{word-spacing:-0.452880px;}
.ws19{word-spacing:-0.447552px;}
.ws11{word-spacing:-0.442224px;}
.ws4a{word-spacing:-0.436896px;}
.ws36{word-spacing:-0.431568px;}
.wsb{word-spacing:-0.420912px;}
.ws52{word-spacing:-0.410256px;}
.wsd{word-spacing:-0.404928px;}
.ws15{word-spacing:-0.399600px;}
.ws5b{word-spacing:-0.394272px;}
.ws24{word-spacing:-0.388944px;}
.ws58{word-spacing:-0.383616px;}
.ws1d{word-spacing:-0.378288px;}
.ws20{word-spacing:-0.362304px;}
.ws5e{word-spacing:-0.356976px;}
.ws1c{word-spacing:-0.351648px;}
.ws13{word-spacing:-0.340992px;}
.ws4{word-spacing:-0.332640px;}
.ws0{word-spacing:-0.318384px;}
.ws6{word-spacing:-0.317376px;}
.ws1{word-spacing:-0.308880px;}
.ws4c{word-spacing:-0.298368px;}
.ws3{word-spacing:-0.294624px;}
.ws16{word-spacing:-0.293040px;}
.ws1a{word-spacing:-0.282384px;}
.ws2c{word-spacing:-0.275616px;}
.ws23{word-spacing:-0.261072px;}
.ws22{word-spacing:-0.245088px;}
.ws2{word-spacing:-0.242352px;}
.ws7{word-spacing:-0.242208px;}
.ws1f{word-spacing:-0.234432px;}
.ws5{word-spacing:-0.233856px;}
.ws5a{word-spacing:-0.223776px;}
.ws21{word-spacing:-0.207792px;}
.ws2b{word-spacing:-0.166320px;}
.wsa{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.086400px;}
.ws9{word-spacing:-0.064800px;}
.ws10{word-spacing:-0.053280px;}
.ws33{word-spacing:-0.036000px;}
.ws2a{word-spacing:0.000000px;}
.ws42{word-spacing:7.800192px;}
.ws43{word-spacing:7.864128px;}
.ws3f{word-spacing:8.125200px;}
.ws40{word-spacing:8.242416px;}
.ws46{word-spacing:8.359632px;}
.ws47{word-spacing:8.498160px;}
.ws14{word-spacing:8.599392px;}
.ws4f{word-spacing:8.658000px;}
.ws12{word-spacing:9.020304px;}
.ws41{word-spacing:9.308016px;}
.ws18{word-spacing:9.510480px;}
.ws17{word-spacing:9.691632px;}
.ws4e{word-spacing:9.947376px;}
.ws56{word-spacing:10.144512px;}
.ws45{word-spacing:10.203120px;}
.ws44{word-spacing:10.208448px;}
.ws4d{word-spacing:10.251072px;}
.ws50{word-spacing:10.362960px;}
.ws2e{word-spacing:10.464192px;}
.ws51{word-spacing:10.581408px;}
.ws35{word-spacing:10.682640px;}
.ws57{word-spacing:10.687968px;}
.ws2f{word-spacing:10.789200px;}
.ws34{word-spacing:10.799856px;}
.ws30{word-spacing:11.274048px;}
.ws32{word-spacing:11.599056px;}
.ws3d{word-spacing:11.854800px;}
.ws3e{word-spacing:12.062592px;}
.ws3c{word-spacing:12.185136px;}
.ws28{word-spacing:12.920400px;}
.ws26{word-spacing:13.133520px;}
.ws27{word-spacing:13.229424px;}
.ws29{word-spacing:13.517136px;}
.ws1e{word-spacing:16.447536px;}
.ws55{word-spacing:146.093760px;}
.ws54{word-spacing:155.891952px;}
.ws53{word-spacing:155.897280px;}
._9{margin-left:-200.652480px;}
._8{margin-left:-7.992000px;}
._a{margin-left:-6.008544px;}
._0{margin-left:-1.092960px;}
._1{width:1.101600px;}
._3{width:2.930400px;}
._4{width:4.155840px;}
._2{width:5.994720px;}
._5{width:7.297920px;}
._6{width:8.472960px;}
._7{width:10.081440px;}
._b{width:155.950560px;}
._e{width:1231.185360px;}
._c{width:1283.985960px;}
._d{width:1292.625960px;}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.800000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs4{font-size:53.280000px;}
.fs8{font-size:59.040000px;}
.fs3{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.941440px;}
.yb2{bottom:7.943040px;}
.y3{bottom:20.340000px;}
.yb1{bottom:24.140160px;}
.yb0{bottom:39.977640px;}
.yaf{bottom:55.815120px;}
.y1{bottom:61.500000px;}
.ya7{bottom:69.660000px;}
.yae{bottom:71.652600px;}
.y6b{bottom:73.260000px;}
.y31{bottom:76.140000px;}
.y6a{bottom:86.205600px;}
.ya6{bottom:86.212080px;}
.yad{bottom:87.490080px;}
.y30{bottom:92.340000px;}
.y69{bottom:100.247760px;}
.ya5{bottom:100.254240px;}
.yac{bottom:103.327560px;}
.y2f{bottom:108.900000px;}
.y68{bottom:113.933520px;}
.ya4{bottom:116.820000px;}
.yf2{bottom:117.955080px;}
.yab{bottom:119.165040px;}
.y2e{bottom:125.460000px;}
.y67{bottom:127.619280px;}
.ya3{bottom:129.420000px;}
.yf1{bottom:134.511840px;}
.yaa{bottom:135.002520px;}
.y66{bottom:141.661440px;}
.ya9{bottom:150.840000px;}
.yf0{bottom:151.068600px;}
.ya2{bottom:155.128320px;}
.y65{bottom:159.660000px;}
.y2d{bottom:160.020000px;}
.yef{bottom:167.625360px;}
.ya1{bottom:171.685080px;}
.y64{bottom:172.985040px;}
.y2c{bottom:176.220000px;}
.ya0{bottom:187.882200px;}
.y63{bottom:191.340000px;}
.y2b{bottom:192.780000px;}
.yce{bottom:196.379280px;}
.yee{bottom:201.831120px;}
.y9f{bottom:204.438960px;}
.y62{bottom:205.740000px;}
.ycd{bottom:208.980000px;}
.y9e{bottom:220.995720px;}
.y2a{bottom:227.340000px;}
.y61{bottom:228.098160px;}
.yed{bottom:236.396520px;}
.y9d{bottom:237.552480px;}
.y29{bottom:243.900000px;}
.y60{bottom:244.654920px;}
.yec{bottom:252.953280px;}
.y9c{bottom:254.109240px;}
.y28{bottom:260.460000px;}
.y5f{bottom:261.211680px;}
.y9b{bottom:270.306360px;}
.y5e{bottom:277.768440px;}
.y9a{bottom:286.863120px;}
.yeb{bottom:287.518680px;}
.y5d{bottom:294.325200px;}
.y27{bottom:294.660000px;}
.y99{bottom:303.419880px;}
.yea{bottom:303.715800px;}
.yc8{bottom:310.142520px;}
.y5c{bottom:310.522320px;}
.y26{bottom:311.274720px;}
.y98{bottom:319.976640px;}
.yc7{bottom:326.699280px;}
.y5b{bottom:327.079080px;}
.y25{bottom:327.831480px;}
.y97{bottom:336.173760px;}
.ye9{bottom:338.281200px;}
.yc6{bottom:339.300000px;}
.y5a{bottom:343.635840px;}
.y24{bottom:344.388240px;}
.y96{bottom:352.730520px;}
.y59{bottom:360.192600px;}
.y23{bottom:360.585360px;}
.y95{bottom:369.287280px;}
.ye8{bottom:372.846600px;}
.y58{bottom:376.389720px;}
.y22{bottom:377.142120px;}
.y94{bottom:385.844040px;}
.y57{bottom:392.946480px;}
.y21{bottom:393.698880px;}
.y93{bottom:402.400800px;}
.ye7{bottom:407.412000px;}
.y56{bottom:409.503240px;}
.y20{bottom:410.255640px;}
.y92{bottom:418.597920px;}
.ye6{bottom:423.968760px;}
.y55{bottom:426.063240px;}
.y1f{bottom:426.812400px;}
.y91{bottom:435.154680px;}
.ya8{bottom:435.720000px;}
.ye5{bottom:440.165880px;}
.y54{bottom:442.629360px;}
.y1e{bottom:443.009520px;}
.y90{bottom:451.711440px;}
.ye4{bottom:456.722640px;}
.y53{bottom:458.826480px;}
.y1d{bottom:459.566280px;}
.y8f{bottom:468.268200px;}
.ye3{bottom:473.279400px;}
.y52{bottom:475.383240px;}
.y1c{bottom:476.123040px;}
.y8e{bottom:484.465320px;}
.ycc{bottom:489.419280px;}
.ye2{bottom:489.836160px;}
.y51{bottom:491.997600px;}
.y1b{bottom:492.679800px;}
.y8d{bottom:501.022080px;}
.ycb{bottom:502.020000px;}
.ye1{bottom:506.033280px;}
.y50{bottom:508.554360px;}
.y1a{bottom:508.876920px;}
.y8c{bottom:517.578840px;}
.ye0{bottom:522.590040px;}
.y4f{bottom:524.751480px;}
.y19{bottom:525.433680px;}
.y8b{bottom:534.135600px;}
.ydf{bottom:539.146800px;}
.y4e{bottom:541.308240px;}
.y18{bottom:541.990440px;}
.y8a{bottom:550.692360px;}
.yde{bottom:555.703560px;}
.y4d{bottom:557.865000px;}
.y17{bottom:558.547200px;}
.y89{bottom:566.889480px;}
.ydd{bottom:572.260320px;}
.y4c{bottom:574.421760px;}
.y16{bottom:574.744320px;}
.y88{bottom:583.446240px;}
.ydc{bottom:588.457440px;}
.y4b{bottom:590.978520px;}
.y15{bottom:591.301080px;}
.y87{bottom:600.003000px;}
.ydb{bottom:605.014200px;}
.y4a{bottom:607.175640px;}
.y14{bottom:607.857840px;}
.y86{bottom:616.559760px;}
.yc5{bottom:616.585320px;}
.yda{bottom:621.570960px;}
.y49{bottom:623.732400px;}
.y13{bottom:624.414600px;}
.y85{bottom:632.756880px;}
.yc4{bottom:632.782440px;}
.yd9{bottom:638.127720px;}
.y48{bottom:640.289160px;}
.y84{bottom:649.313640px;}
.yc3{bottom:649.339200px;}
.yd8{bottom:654.324840px;}
.y47{bottom:656.845920px;}
.y12{bottom:658.980000px;}
.y83{bottom:665.870400px;}
.yc2{bottom:665.895960px;}
.yd7{bottom:670.881600px;}
.y46{bottom:673.043040px;}
.y82{bottom:682.427160px;}
.yc1{bottom:682.452720px;}
.yd6{bottom:687.438360px;}
.y45{bottom:689.599800px;}
.y11{bottom:693.180000px;}
.y81{bottom:698.983920px;}
.yc0{bottom:699.009480px;}
.yd5{bottom:703.995120px;}
.y44{bottom:706.156560px;}
.y80{bottom:715.181040px;}
.ybf{bottom:715.206600px;}
.yd4{bottom:720.551880px;}
.y43{bottom:722.713320px;}
.y10{bottom:727.740000px;}
.y7f{bottom:731.737800px;}
.ybe{bottom:731.763360px;}
.yfc{bottom:735.985800px;}
.yd3{bottom:736.749000px;}
.y42{bottom:739.270080px;}
.y7e{bottom:748.294560px;}
.ybd{bottom:748.320120px;}
.yd2{bottom:753.305760px;}
.y41{bottom:755.467200px;}
.yf{bottom:762.300000px;}
.y7d{bottom:764.851320px;}
.ybc{bottom:764.876880px;}
.yd1{bottom:769.862520px;}
.yfb{bottom:770.551200px;}
.y40{bottom:772.023960px;}
.y7c{bottom:781.048440px;}
.ybb{bottom:781.074000px;}
.yca{bottom:783.179280px;}
.yd0{bottom:786.419280px;}
.y3f{bottom:788.580720px;}
.yc9{bottom:795.780000px;}
.ye{bottom:796.860000px;}
.y7b{bottom:797.605200px;}
.yba{bottom:797.630760px;}
.ycf{bottom:799.020000px;}
.yfa{bottom:805.116600px;}
.y3e{bottom:805.137480px;}
.y7a{bottom:814.161960px;}
.yb9{bottom:814.187520px;}
.y3d{bottom:821.334600px;}
.y79{bottom:830.718720px;}
.yb8{bottom:830.744280px;}
.yd{bottom:831.060000px;}
.yf9{bottom:839.322360px;}
.y78{bottom:847.275480px;}
.yb7{bottom:847.301040px;}
.y3c{bottom:855.900000px;}
.y77{bottom:863.472600px;}
.yb6{bottom:863.498160px;}
.yc{bottom:865.620000px;}
.yf8{bottom:873.887760px;}
.y76{bottom:880.029360px;}
.yb5{bottom:880.054920px;}
.y3b{bottom:890.460000px;}
.y75{bottom:896.586120px;}
.yb4{bottom:896.611680px;}
.yb{bottom:900.180000px;}
.yf7{bottom:908.453160px;}
.y74{bottom:913.142880px;}
.yb3{bottom:913.168440px;}
.ya{bottom:920.340000px;}
.yf6{bottom:925.009920px;}
.y3a{bottom:925.020000px;}
.y73{bottom:929.365560px;}
.y72{bottom:945.922320px;}
.y9{bottom:953.100000px;}
.yf5{bottom:959.575320px;}
.y39{bottom:959.580000px;}
.y71{bottom:962.479080px;}
.y70{bottom:979.035840px;}
.y8{bottom:986.220000px;}
.y38{bottom:993.780000px;}
.yf4{bottom:993.781080px;}
.y6f{bottom:995.592600px;}
.yf3{bottom:1010.337840px;}
.y37{bottom:1010.340000px;}
.y6e{bottom:1011.789720px;}
.y7{bottom:1015.380000px;}
.y6d{bottom:1028.346480px;}
.y6{bottom:1032.660000px;}
.y36{bottom:1044.900000px;}
.y6c{bottom:1044.903240px;}
.y5{bottom:1054.260000px;}
.y35{bottom:1061.460000px;}
.y34{bottom:1087.380000px;}
.y33{bottom:1107.900000px;}
.y32{bottom:1122.660000px;}
.y2{bottom:1137.060000px;}
.h13{height:29.827969px;}
.h10{height:34.595859px;}
.h7{height:36.473906px;}
.ha{height:36.525937px;}
.h3{height:37.681875px;}
.hf{height:40.860703px;}
.h9{height:42.249375px;}
.h6{height:44.360156px;}
.h17{height:45.813516px;}
.h16{height:46.359844px;}
.he{height:48.248438px;}
.h14{height:51.371719px;}
.h11{height:51.429319px;}
.hc{height:51.967091px;}
.hb{height:55.676475px;}
.h12{height:55.804635px;}
.hd{height:55.893915px;}
.h5{height:57.175312px;}
.h4{height:62.642677px;}
.h2{height:62.648438px;}
.h8{height:73.933594px;}
.h15{height:163.440000px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w2{width:633.600000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:10.800150px;}
.x1{left:27.000000px;}
.x5{left:49.680150px;}
.xd{left:63.893670px;}
.xb{left:77.040000px;}
.x4{left:88.817040px;}
.x11{left:91.678110px;}
.xe{left:116.987190px;}
.x8{left:125.876550px;}
.xf{left:130.480350px;}
.x7{left:234.884400px;}
.x3{left:269.832600px;}
.x2{left:310.751550px;}
.x10{left:343.214070px;}
.x12{left:346.128300px;}
.x6{left:362.270100px;}
.x9{left:419.355000px;}
.xa{left:698.734050px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v3{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.115200pt;}
.ls14{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.012800pt;}
.ls3c{letter-spacing:0.013867pt;}
.ls3b{letter-spacing:0.049493pt;}
.ls19{letter-spacing:0.066816pt;}
.ls54{letter-spacing:0.084480pt;}
.ls40{letter-spacing:0.101376pt;}
.ls44{letter-spacing:0.105600pt;}
.ls42{letter-spacing:0.109824pt;}
.ls7{letter-spacing:0.123136pt;}
.ls1{letter-spacing:0.126720pt;}
.ls2{letter-spacing:0.133632pt;}
.ls2c{letter-spacing:0.137344pt;}
.ls1a{letter-spacing:0.141056pt;}
.ls9{letter-spacing:0.142080pt;}
.ls4c{letter-spacing:0.143616pt;}
.ls22{letter-spacing:0.146816pt;}
.ls5a{letter-spacing:0.151552pt;}
.ls2a{letter-spacing:0.161024pt;}
.ls2d{letter-spacing:0.170496pt;}
.ls16{letter-spacing:0.173184pt;}
.ls5f{letter-spacing:0.175232pt;}
.ls2e{letter-spacing:0.184704pt;}
.ls8{letter-spacing:0.189440pt;}
.ls6c{letter-spacing:0.194176pt;}
.ls66{letter-spacing:0.198912pt;}
.ls45{letter-spacing:0.202752pt;}
.ls27{letter-spacing:0.203648pt;}
.ls3{letter-spacing:0.207872pt;}
.ls13{letter-spacing:0.211200pt;}
.ls6{letter-spacing:0.213120pt;}
.ls4a{letter-spacing:0.215424pt;}
.ls5c{letter-spacing:0.217856pt;}
.ls17{letter-spacing:0.219648pt;}
.ls4d{letter-spacing:0.221333pt;}
.ls31{letter-spacing:0.223872pt;}
.ls3d{letter-spacing:0.228096pt;}
.ls15{letter-spacing:0.232320pt;}
.ls0{letter-spacing:0.233237pt;}
.ls12{letter-spacing:0.240768pt;}
.ls41{letter-spacing:0.244992pt;}
.ls18{letter-spacing:0.253440pt;}
.ls24{letter-spacing:0.255744pt;}
.ls29{letter-spacing:0.265216pt;}
.ls6e{letter-spacing:0.269952pt;}
.ls43{letter-spacing:0.270336pt;}
.ls2b{letter-spacing:0.274688pt;}
.ls4b{letter-spacing:0.283008pt;}
.ls67{letter-spacing:0.284160pt;}
.ls26{letter-spacing:0.288896pt;}
.ls69{letter-spacing:0.293632pt;}
.ls2f{letter-spacing:0.298368pt;}
.ls68{letter-spacing:0.303104pt;}
.ls25{letter-spacing:0.307840pt;}
.ls1e{letter-spacing:0.312576pt;}
.ls57{letter-spacing:0.316800pt;}
.ls23{letter-spacing:0.317312pt;}
.ls49{letter-spacing:0.325248pt;}
.ls1c{letter-spacing:0.326784pt;}
.ls5{letter-spacing:0.331520pt;}
.ls48{letter-spacing:0.336256pt;}
.ls59{letter-spacing:0.340992pt;}
.ls21{letter-spacing:0.345728pt;}
.lsc{letter-spacing:0.350464pt;}
.ls1b{letter-spacing:0.351360pt;}
.ls1d{letter-spacing:0.355200pt;}
.ls38{letter-spacing:0.359936pt;}
.ls58{letter-spacing:0.378880pt;}
.ls56{letter-spacing:0.383616pt;}
.ls47{letter-spacing:0.388352pt;}
.ls6a{letter-spacing:0.393088pt;}
.ls6d{letter-spacing:0.397824pt;}
.ls28{letter-spacing:0.402560pt;}
.ls5b{letter-spacing:0.407296pt;}
.ls3e{letter-spacing:0.422400pt;}
.ls1f{letter-spacing:0.430976pt;}
.ls30{letter-spacing:0.449920pt;}
.ls3f{letter-spacing:0.456192pt;}
.ls39{letter-spacing:0.473600pt;}
.ls37{letter-spacing:0.499733pt;}
.ls20{letter-spacing:0.502016pt;}
.ls6b{letter-spacing:0.544640pt;}
.ls46{letter-spacing:0.554112pt;}
.ls4{letter-spacing:0.576000pt;}
.ls53{letter-spacing:0.584000pt;}
.ls33{letter-spacing:0.615680pt;}
.lsa{letter-spacing:0.852480pt;}
.lse{letter-spacing:0.871424pt;}
.ls51{letter-spacing:0.999296pt;}
.ls52{letter-spacing:1.089280pt;}
.ls4f{letter-spacing:1.704960pt;}
.ls64{letter-spacing:1.894400pt;}
.ls4e{letter-spacing:1.941760pt;}
.ls36{letter-spacing:2.320640pt;}
.ls5d{letter-spacing:2.462720pt;}
.ls63{letter-spacing:2.652160pt;}
.ls61{letter-spacing:3.078400pt;}
.ls62{letter-spacing:3.552000pt;}
.lsf{letter-spacing:4.072960pt;}
.ls10{letter-spacing:4.120320pt;}
.lsb{letter-spacing:4.262400pt;}
.ls32{letter-spacing:4.499200pt;}
.ls34{letter-spacing:5.067520pt;}
.ls60{letter-spacing:5.209600pt;}
.ls65{letter-spacing:5.920000pt;}
.ls50{letter-spacing:6.630400pt;}
.lsd{letter-spacing:6.961920pt;}
.ls35{letter-spacing:10.229760pt;}
.ls11{letter-spacing:12.455680pt;}
.ls5e{letter-spacing:121.478400pt;}
.ls55{letter-spacing:178.357760pt;}
.ws49{word-spacing:-178.405120pt;}
.ws39{word-spacing:-12.025728pt;}
.ws3a{word-spacing:-11.852544pt;}
.ws2d{word-spacing:-0.601472pt;}
.ws5c{word-spacing:-0.592000pt;}
.wsf{word-spacing:-0.549376pt;}
.ws25{word-spacing:-0.497280pt;}
.wse{word-spacing:-0.478336pt;}
.ws4b{word-spacing:-0.454656pt;}
.ws1b{word-spacing:-0.449920pt;}
.ws5d{word-spacing:-0.445184pt;}
.ws59{word-spacing:-0.440448pt;}
.ws31{word-spacing:-0.435712pt;}
.ws3b{word-spacing:-0.430976pt;}
.ws48{word-spacing:-0.426240pt;}
.ws8{word-spacing:-0.408960pt;}
.ws37{word-spacing:-0.407296pt;}
.wsc{word-spacing:-0.402560pt;}
.ws19{word-spacing:-0.397824pt;}
.ws11{word-spacing:-0.393088pt;}
.ws4a{word-spacing:-0.388352pt;}
.ws36{word-spacing:-0.383616pt;}
.wsb{word-spacing:-0.374144pt;}
.ws52{word-spacing:-0.364672pt;}
.wsd{word-spacing:-0.359936pt;}
.ws15{word-spacing:-0.355200pt;}
.ws5b{word-spacing:-0.350464pt;}
.ws24{word-spacing:-0.345728pt;}
.ws58{word-spacing:-0.340992pt;}
.ws1d{word-spacing:-0.336256pt;}
.ws20{word-spacing:-0.322048pt;}
.ws5e{word-spacing:-0.317312pt;}
.ws1c{word-spacing:-0.312576pt;}
.ws13{word-spacing:-0.303104pt;}
.ws4{word-spacing:-0.295680pt;}
.ws0{word-spacing:-0.283008pt;}
.ws6{word-spacing:-0.282112pt;}
.ws1{word-spacing:-0.274560pt;}
.ws4c{word-spacing:-0.265216pt;}
.ws3{word-spacing:-0.261888pt;}
.ws16{word-spacing:-0.260480pt;}
.ws1a{word-spacing:-0.251008pt;}
.ws2c{word-spacing:-0.244992pt;}
.ws23{word-spacing:-0.232064pt;}
.ws22{word-spacing:-0.217856pt;}
.ws2{word-spacing:-0.215424pt;}
.ws7{word-spacing:-0.215296pt;}
.ws1f{word-spacing:-0.208384pt;}
.ws5{word-spacing:-0.207872pt;}
.ws5a{word-spacing:-0.198912pt;}
.ws21{word-spacing:-0.184704pt;}
.ws2b{word-spacing:-0.147840pt;}
.wsa{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.076800pt;}
.ws9{word-spacing:-0.057600pt;}
.ws10{word-spacing:-0.047360pt;}
.ws33{word-spacing:-0.032000pt;}
.ws2a{word-spacing:0.000000pt;}
.ws42{word-spacing:6.933504pt;}
.ws43{word-spacing:6.990336pt;}
.ws3f{word-spacing:7.222400pt;}
.ws40{word-spacing:7.326592pt;}
.ws46{word-spacing:7.430784pt;}
.ws47{word-spacing:7.553920pt;}
.ws14{word-spacing:7.643904pt;}
.ws4f{word-spacing:7.696000pt;}
.ws12{word-spacing:8.018048pt;}
.ws41{word-spacing:8.273792pt;}
.ws18{word-spacing:8.453760pt;}
.ws17{word-spacing:8.614784pt;}
.ws4e{word-spacing:8.842112pt;}
.ws56{word-spacing:9.017344pt;}
.ws45{word-spacing:9.069440pt;}
.ws44{word-spacing:9.074176pt;}
.ws4d{word-spacing:9.112064pt;}
.ws50{word-spacing:9.211520pt;}
.ws2e{word-spacing:9.301504pt;}
.ws51{word-spacing:9.405696pt;}
.ws35{word-spacing:9.495680pt;}
.ws57{word-spacing:9.500416pt;}
.ws2f{word-spacing:9.590400pt;}
.ws34{word-spacing:9.599872pt;}
.ws30{word-spacing:10.021376pt;}
.ws32{word-spacing:10.310272pt;}
.ws3d{word-spacing:10.537600pt;}
.ws3e{word-spacing:10.722304pt;}
.ws3c{word-spacing:10.831232pt;}
.ws28{word-spacing:11.484800pt;}
.ws26{word-spacing:11.674240pt;}
.ws27{word-spacing:11.759488pt;}
.ws29{word-spacing:12.015232pt;}
.ws1e{word-spacing:14.620032pt;}
.ws55{word-spacing:129.861120pt;}
.ws54{word-spacing:138.570624pt;}
.ws53{word-spacing:138.575360pt;}
._9{margin-left:-178.357760pt;}
._8{margin-left:-7.104000pt;}
._a{margin-left:-5.340928pt;}
._0{margin-left:-0.971520pt;}
._1{width:0.979200pt;}
._3{width:2.604800pt;}
._4{width:3.694080pt;}
._2{width:5.328640pt;}
._5{width:6.487040pt;}
._6{width:7.531520pt;}
._7{width:8.961280pt;}
._b{width:138.622720pt;}
._e{width:1094.386987pt;}
._c{width:1141.320853pt;}
._d{width:1149.000853pt;}
.fs9{font-size:25.600000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs4{font-size:47.360000pt;}
.fs8{font-size:52.480000pt;}
.fs3{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.281280pt;}
.yb2{bottom:7.060480pt;}
.y3{bottom:18.080000pt;}
.yb1{bottom:21.457920pt;}
.yb0{bottom:35.535680pt;}
.yaf{bottom:49.613440pt;}
.y1{bottom:54.666667pt;}
.ya7{bottom:61.920000pt;}
.yae{bottom:63.691200pt;}
.y6b{bottom:65.120000pt;}
.y31{bottom:67.680000pt;}
.y6a{bottom:76.627200pt;}
.ya6{bottom:76.632960pt;}
.yad{bottom:77.768960pt;}
.y30{bottom:82.080000pt;}
.y69{bottom:89.109120pt;}
.ya5{bottom:89.114880pt;}
.yac{bottom:91.846720pt;}
.y2f{bottom:96.800000pt;}
.y68{bottom:101.274240pt;}
.ya4{bottom:103.840000pt;}
.yf2{bottom:104.848960pt;}
.yab{bottom:105.924480pt;}
.y2e{bottom:111.520000pt;}
.y67{bottom:113.439360pt;}
.ya3{bottom:115.040000pt;}
.yf1{bottom:119.566080pt;}
.yaa{bottom:120.002240pt;}
.y66{bottom:125.921280pt;}
.ya9{bottom:134.080000pt;}
.yf0{bottom:134.283200pt;}
.ya2{bottom:137.891840pt;}
.y65{bottom:141.920000pt;}
.y2d{bottom:142.240000pt;}
.yef{bottom:149.000320pt;}
.ya1{bottom:152.608960pt;}
.y64{bottom:153.764480pt;}
.y2c{bottom:156.640000pt;}
.ya0{bottom:167.006400pt;}
.y63{bottom:170.080000pt;}
.y2b{bottom:171.360000pt;}
.yce{bottom:174.559360pt;}
.yee{bottom:179.405440pt;}
.y9f{bottom:181.723520pt;}
.y62{bottom:182.880000pt;}
.ycd{bottom:185.760000pt;}
.y9e{bottom:196.440640pt;}
.y2a{bottom:202.080000pt;}
.y61{bottom:202.753920pt;}
.yed{bottom:210.130240pt;}
.y9d{bottom:211.157760pt;}
.y29{bottom:216.800000pt;}
.y60{bottom:217.471040pt;}
.yec{bottom:224.847360pt;}
.y9c{bottom:225.874880pt;}
.y28{bottom:231.520000pt;}
.y5f{bottom:232.188160pt;}
.y9b{bottom:240.272320pt;}
.y5e{bottom:246.905280pt;}
.y9a{bottom:254.989440pt;}
.yeb{bottom:255.572160pt;}
.y5d{bottom:261.622400pt;}
.y27{bottom:261.920000pt;}
.y99{bottom:269.706560pt;}
.yea{bottom:269.969600pt;}
.yc8{bottom:275.682240pt;}
.y5c{bottom:276.019840pt;}
.y26{bottom:276.688640pt;}
.y98{bottom:284.423680pt;}
.yc7{bottom:290.399360pt;}
.y5b{bottom:290.736960pt;}
.y25{bottom:291.405760pt;}
.y97{bottom:298.821120pt;}
.ye9{bottom:300.694400pt;}
.yc6{bottom:301.600000pt;}
.y5a{bottom:305.454080pt;}
.y24{bottom:306.122880pt;}
.y96{bottom:313.538240pt;}
.y59{bottom:320.171200pt;}
.y23{bottom:320.520320pt;}
.y95{bottom:328.255360pt;}
.ye8{bottom:331.419200pt;}
.y58{bottom:334.568640pt;}
.y22{bottom:335.237440pt;}
.y94{bottom:342.972480pt;}
.y57{bottom:349.285760pt;}
.y21{bottom:349.954560pt;}
.y93{bottom:357.689600pt;}
.ye7{bottom:362.144000pt;}
.y56{bottom:364.002880pt;}
.y20{bottom:364.671680pt;}
.y92{bottom:372.087040pt;}
.ye6{bottom:376.861120pt;}
.y55{bottom:378.722880pt;}
.y1f{bottom:379.388800pt;}
.y91{bottom:386.804160pt;}
.ya8{bottom:387.306667pt;}
.ye5{bottom:391.258560pt;}
.y54{bottom:393.448320pt;}
.y1e{bottom:393.786240pt;}
.y90{bottom:401.521280pt;}
.ye4{bottom:405.975680pt;}
.y53{bottom:407.845760pt;}
.y1d{bottom:408.503360pt;}
.y8f{bottom:416.238400pt;}
.ye3{bottom:420.692800pt;}
.y52{bottom:422.562880pt;}
.y1c{bottom:423.220480pt;}
.y8e{bottom:430.635840pt;}
.ycc{bottom:435.039360pt;}
.ye2{bottom:435.409920pt;}
.y51{bottom:437.331200pt;}
.y1b{bottom:437.937600pt;}
.y8d{bottom:445.352960pt;}
.ycb{bottom:446.240000pt;}
.ye1{bottom:449.807360pt;}
.y50{bottom:452.048320pt;}
.y1a{bottom:452.335040pt;}
.y8c{bottom:460.070080pt;}
.ye0{bottom:464.524480pt;}
.y4f{bottom:466.445760pt;}
.y19{bottom:467.052160pt;}
.y8b{bottom:474.787200pt;}
.ydf{bottom:479.241600pt;}
.y4e{bottom:481.162880pt;}
.y18{bottom:481.769280pt;}
.y8a{bottom:489.504320pt;}
.yde{bottom:493.958720pt;}
.y4d{bottom:495.880000pt;}
.y17{bottom:496.486400pt;}
.y89{bottom:503.901760pt;}
.ydd{bottom:508.675840pt;}
.y4c{bottom:510.597120pt;}
.y16{bottom:510.883840pt;}
.y88{bottom:518.618880pt;}
.ydc{bottom:523.073280pt;}
.y4b{bottom:525.314240pt;}
.y15{bottom:525.600960pt;}
.y87{bottom:533.336000pt;}
.ydb{bottom:537.790400pt;}
.y4a{bottom:539.711680pt;}
.y14{bottom:540.318080pt;}
.y86{bottom:548.053120pt;}
.yc5{bottom:548.075840pt;}
.yda{bottom:552.507520pt;}
.y49{bottom:554.428800pt;}
.y13{bottom:555.035200pt;}
.y85{bottom:562.450560pt;}
.yc4{bottom:562.473280pt;}
.yd9{bottom:567.224640pt;}
.y48{bottom:569.145920pt;}
.y84{bottom:577.167680pt;}
.yc3{bottom:577.190400pt;}
.yd8{bottom:581.622080pt;}
.y47{bottom:583.863040pt;}
.y12{bottom:585.760000pt;}
.y83{bottom:591.884800pt;}
.yc2{bottom:591.907520pt;}
.yd7{bottom:596.339200pt;}
.y46{bottom:598.260480pt;}
.y82{bottom:606.601920pt;}
.yc1{bottom:606.624640pt;}
.yd6{bottom:611.056320pt;}
.y45{bottom:612.977600pt;}
.y11{bottom:616.160000pt;}
.y81{bottom:621.319040pt;}
.yc0{bottom:621.341760pt;}
.yd5{bottom:625.773440pt;}
.y44{bottom:627.694720pt;}
.y80{bottom:635.716480pt;}
.ybf{bottom:635.739200pt;}
.yd4{bottom:640.490560pt;}
.y43{bottom:642.411840pt;}
.y10{bottom:646.880000pt;}
.y7f{bottom:650.433600pt;}
.ybe{bottom:650.456320pt;}
.yfc{bottom:654.209600pt;}
.yd3{bottom:654.888000pt;}
.y42{bottom:657.128960pt;}
.y7e{bottom:665.150720pt;}
.ybd{bottom:665.173440pt;}
.yd2{bottom:669.605120pt;}
.y41{bottom:671.526400pt;}
.yf{bottom:677.600000pt;}
.y7d{bottom:679.867840pt;}
.ybc{bottom:679.890560pt;}
.yd1{bottom:684.322240pt;}
.yfb{bottom:684.934400pt;}
.y40{bottom:686.243520pt;}
.y7c{bottom:694.265280pt;}
.ybb{bottom:694.288000pt;}
.yca{bottom:696.159360pt;}
.yd0{bottom:699.039360pt;}
.y3f{bottom:700.960640pt;}
.yc9{bottom:707.360000pt;}
.ye{bottom:708.320000pt;}
.y7b{bottom:708.982400pt;}
.yba{bottom:709.005120pt;}
.ycf{bottom:710.240000pt;}
.yfa{bottom:715.659200pt;}
.y3e{bottom:715.677760pt;}
.y7a{bottom:723.699520pt;}
.yb9{bottom:723.722240pt;}
.y3d{bottom:730.075200pt;}
.y79{bottom:738.416640pt;}
.yb8{bottom:738.439360pt;}
.yd{bottom:738.720000pt;}
.yf9{bottom:746.064320pt;}
.y78{bottom:753.133760pt;}
.yb7{bottom:753.156480pt;}
.y3c{bottom:760.800000pt;}
.y77{bottom:767.531200pt;}
.yb6{bottom:767.553920pt;}
.yc{bottom:769.440000pt;}
.yf8{bottom:776.789120pt;}
.y76{bottom:782.248320pt;}
.yb5{bottom:782.271040pt;}
.y3b{bottom:791.520000pt;}
.y75{bottom:796.965440pt;}
.yb4{bottom:796.988160pt;}
.yb{bottom:800.160000pt;}
.yf7{bottom:807.513920pt;}
.y74{bottom:811.682560pt;}
.yb3{bottom:811.705280pt;}
.ya{bottom:818.080000pt;}
.yf6{bottom:822.231040pt;}
.y3a{bottom:822.240000pt;}
.y73{bottom:826.102720pt;}
.y72{bottom:840.819840pt;}
.y9{bottom:847.200000pt;}
.yf5{bottom:852.955840pt;}
.y39{bottom:852.960000pt;}
.y71{bottom:855.536960pt;}
.y70{bottom:870.254080pt;}
.y8{bottom:876.640000pt;}
.y38{bottom:883.360000pt;}
.yf4{bottom:883.360960pt;}
.y6f{bottom:884.971200pt;}
.yf3{bottom:898.078080pt;}
.y37{bottom:898.080000pt;}
.y6e{bottom:899.368640pt;}
.y7{bottom:902.560000pt;}
.y6d{bottom:914.085760pt;}
.y6{bottom:917.920000pt;}
.y36{bottom:928.800000pt;}
.y6c{bottom:928.802880pt;}
.y5{bottom:937.120000pt;}
.y35{bottom:943.520000pt;}
.y34{bottom:966.560000pt;}
.y33{bottom:984.800000pt;}
.y32{bottom:997.920000pt;}
.y2{bottom:1010.720000pt;}
.h13{height:26.513750pt;}
.h10{height:30.751875pt;}
.h7{height:32.421250pt;}
.ha{height:32.467500pt;}
.h3{height:33.495000pt;}
.hf{height:36.320625pt;}
.h9{height:37.555000pt;}
.h6{height:39.431250pt;}
.h17{height:40.723125pt;}
.h16{height:41.208750pt;}
.he{height:42.887500pt;}
.h14{height:45.663750pt;}
.h11{height:45.714950pt;}
.hc{height:46.192970pt;}
.hb{height:49.490200pt;}
.h12{height:49.604120pt;}
.hd{height:49.683480pt;}
.h5{height:50.822500pt;}
.h4{height:55.682380pt;}
.h2{height:55.687500pt;}
.h8{height:65.718750pt;}
.h15{height:145.280000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:563.200000pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:9.600133pt;}
.x1{left:24.000000pt;}
.x5{left:44.160133pt;}
.xd{left:56.794373pt;}
.xb{left:68.480000pt;}
.x4{left:78.948480pt;}
.x11{left:81.491653pt;}
.xe{left:103.988613pt;}
.x8{left:111.890267pt;}
.xf{left:115.982533pt;}
.x7{left:208.786133pt;}
.x3{left:239.851200pt;}
.x2{left:276.223600pt;}
.x10{left:305.079173pt;}
.x12{left:307.669600pt;}
.x6{left:322.017867pt;}
.x9{left:372.760000pt;}
.xa{left:621.096933pt;}
}




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