
    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_45ae66e3ffc2003ac2f3dd8f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_0e7cce389a8167dcf70ae647.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_8767489009a982cada546931.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_407f4ad660de08bfad7c6a0c.woff')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_da10cb2444180ddbb8865294.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_baef0fae55533aba3983f6d2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.888184;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_2254385ac597ee0e42b108bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_1fed32cb6d2b6ad9bc63487c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_e6c25dbe3d13d11ac83d5813.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:-23.760000px;}
.v3{vertical-align:-12.110400px;}
.v6{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:46.189440px;}
.ls2f{letter-spacing:-0.776880px;}
.ls13{letter-spacing:-0.537840px;}
.ls11{letter-spacing:-0.478080px;}
.ls12{letter-spacing:-0.358560px;}
.ls10{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.132480px;}
.ls24{letter-spacing:-0.119520px;}
.lsf{letter-spacing:-0.059760px;}
.lsd{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.071712px;}
.ls5{letter-spacing:0.119520px;}
.ls30{letter-spacing:0.125496px;}
.lse{letter-spacing:0.132480px;}
.ls32{letter-spacing:0.173304px;}
.ls1{letter-spacing:0.179280px;}
.ls2d{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.185256px;}
.ls27{letter-spacing:0.197208px;}
.ls33{letter-spacing:0.209160px;}
.ls35{letter-spacing:0.215136px;}
.ls37{letter-spacing:0.233064px;}
.ls4{letter-spacing:0.239040px;}
.ls38{letter-spacing:0.245016px;}
.ls2e{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.264960px;}
.ls36{letter-spacing:0.286848px;}
.ls18{letter-spacing:0.292824px;}
.ls15{letter-spacing:0.298800px;}
.ls26{letter-spacing:0.300672px;}
.ls25{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.364536px;}
.ls1a{letter-spacing:0.717120px;}
.ls29{letter-spacing:1.613520px;}
.ls2c{letter-spacing:2.460960px;}
.ls2a{letter-spacing:3.047760px;}
.ls21{letter-spacing:3.252960px;}
.ls22{letter-spacing:4.062240px;}
.ls34{letter-spacing:5.916240px;}
.ls7{letter-spacing:7.350480px;}
.lsb{letter-spacing:8.814600px;}
.lsa{letter-spacing:8.844480px;}
.ls2b{letter-spacing:9.561600px;}
.ls20{letter-spacing:10.039680px;}
.ls6{letter-spacing:10.995840px;}
.ls9{letter-spacing:12.430080px;}
.ls1e{letter-spacing:12.967920px;}
.ls1f{letter-spacing:13.685040px;}
.ls1d{letter-spacing:16.140960px;}
.ls1c{letter-spacing:16.553520px;}
.ls8{letter-spacing:19.601280px;}
.ls1b{letter-spacing:19.740960px;}
.ls31{letter-spacing:20.340000px;}
.ls28{letter-spacing:46.015200px;}
.lsc{letter-spacing:64.002960px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2e{word-spacing:-42.094080px;}
.ws38{word-spacing:-42.060672px;}
.ws2f{word-spacing:-41.760000px;}
.ws37{word-spacing:-26.939520px;}
.ws36{word-spacing:-23.339520px;}
.ws1{word-spacing:-16.692480px;}
.ws9{word-spacing:-16.427520px;}
.ws8{word-spacing:-15.298560px;}
.ws52{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.179040px;}
.ws7{word-spacing:-15.059520px;}
.ws2b{word-spacing:-14.999760px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.880240px;}
.ws2c{word-spacing:-14.820480px;}
.ws5{word-spacing:-14.700960px;}
.ws6{word-spacing:-14.581440px;}
.ws4{word-spacing:-14.461920px;}
.ws39{word-spacing:-14.163120px;}
.ws2d{word-spacing:-13.147200px;}
.ws35{word-spacing:-13.087440px;}
.ws34{word-spacing:-12.908160px;}
.ws0{word-spacing:-10.440000px;}
.ws3c{word-spacing:-3.525840px;}
.ws3d{word-spacing:-3.346560px;}
.ws4e{word-spacing:-3.047760px;}
.ws42{word-spacing:-2.808720px;}
.ws26{word-spacing:-2.330640px;}
.ws1e{word-spacing:-1.613520px;}
.ws25{word-spacing:-1.374480px;}
.ws24{word-spacing:-1.195200px;}
.ws17{word-spacing:-0.896400px;}
.ws4d{word-spacing:-0.657360px;}
.ws3f{word-spacing:-0.596160px;}
.ws18{word-spacing:-0.478080px;}
.ws13{word-spacing:-0.358560px;}
.ws27{word-spacing:-0.298800px;}
.ws30{word-spacing:-0.264960px;}
.ws16{word-spacing:-0.239040px;}
.wsc{word-spacing:-0.191520px;}
.wsf{word-spacing:-0.179280px;}
.wse{word-spacing:-0.132480px;}
.ws14{word-spacing:-0.119520px;}
.ws32{word-spacing:-0.059760px;}
.wsd{word-spacing:0.000000px;}
.ws12{word-spacing:0.059760px;}
.ws2a{word-spacing:0.119520px;}
.ws3e{word-spacing:0.132480px;}
.ws10{word-spacing:0.239040px;}
.ws31{word-spacing:0.298800px;}
.ws33{word-spacing:0.358560px;}
.ws11{word-spacing:0.418320px;}
.ws15{word-spacing:0.537840px;}
.ws41{word-spacing:1.254960px;}
.ws49{word-spacing:1.494000px;}
.ws47{word-spacing:1.673280px;}
.ws48{word-spacing:1.852560px;}
.ws43{word-spacing:2.211120px;}
.ws40{word-spacing:2.689200px;}
.ws4a{word-spacing:2.928240px;}
.ws46{word-spacing:3.406320px;}
.ws44{word-spacing:4.123440px;}
.ws21{word-spacing:5.557680px;}
.ws20{word-spacing:5.796720px;}
.ws53{word-spacing:5.976000px;}
.ws1a{word-spacing:7.051680px;}
.ws1b{word-spacing:7.470000px;}
.ws50{word-spacing:7.768800px;}
.ws4f{word-spacing:8.007840px;}
.ws29{word-spacing:8.485920px;}
.ws28{word-spacing:8.904240px;}
.ws4b{word-spacing:9.203040px;}
.ws4c{word-spacing:9.442080px;}
.ws23{word-spacing:9.920160px;}
.ws19{word-spacing:10.637280px;}
.ws22{word-spacing:12.489840px;}
.ws3a{word-spacing:14.222880px;}
.ws3b{word-spacing:14.461920px;}
.ws51{word-spacing:16.075440px;}
.ws1f{word-spacing:18.525600px;}
.ws45{word-spacing:19.242720px;}
.ws1d{word-spacing:19.481760px;}
.ws1c{word-spacing:19.661040px;}
._4{margin-left:-3.985200px;}
._5{margin-left:-2.754720px;}
._1{margin-left:-1.556640px;}
._0{width:1.474704px;}
._3{width:2.964960px;}
._6{width:4.976352px;}
._2{width:8.606448px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.240000px;}
.y83{bottom:29.340000px;}
.yc2{bottom:114.409440px;}
.y81{bottom:115.915140px;}
.yf2{bottom:119.886660px;}
.y33{bottom:120.240000px;}
.y53{bottom:124.015140px;}
.yc1{bottom:131.695020px;}
.y80{bottom:133.380000px;}
.yf1{bottom:139.682160px;}
.y32{bottom:140.131620px;}
.y52{bottom:141.473520px;}
.yc0{bottom:148.980600px;}
.y7f{bottom:151.380000px;}
.y31{bottom:157.417200px;}
.ybf{bottom:166.266180px;}
.yf0{bottom:168.665760px;}
.y51{bottom:169.707600px;}
.y7e{bottom:171.277740px;}
.y30{bottom:175.778460px;}
.ybe{bottom:183.551760px;}
.y7d{bottom:188.384040px;}
.yef{bottom:188.461260px;}
.y2f{bottom:194.139720px;}
.y50{bottom:196.166340px;}
.yab{bottom:198.640980px;}
.ybd{bottom:203.347260px;}
.y7c{bottom:205.669620px;}
.yee{bottom:208.256760px;}
.y2e{bottom:211.425300px;}
.y4f{bottom:213.451920px;}
.yaa{bottom:215.926560px;}
.y7b{bottom:222.955200px;}
.ybc{bottom:223.142760px;}
.y2d{bottom:228.531600px;}
.y4e{bottom:230.737500px;}
.ya9{bottom:233.212140px;}
.yed{bottom:237.061080px;}
.ybb{bottom:237.186360px;}
.y7a{bottom:240.420060px;}
.y2c{bottom:245.817180px;}
.y4d{bottom:248.023080px;}
.ya8{bottom:250.497720px;}
.yec{bottom:256.856580px;}
.y79{bottom:257.884920px;}
.y2b{bottom:263.102760px;}
.ya7{bottom:267.604020px;}
.y4c{bottom:274.123260px;}
.y78{bottom:274.991220px;}
.y2a{bottom:280.388340px;}
.ya6{bottom:284.889600px;}
.yeb{bottom:285.840180px;}
.y4b{bottom:291.408840px;}
.y77{bottom:292.276800px;}
.y29{bottom:297.673920px;}
.ya5{bottom:302.175180px;}
.yea{bottom:305.635680px;}
.y4a{bottom:308.694420px;}
.y76{bottom:309.562380px;}
.y28{bottom:314.959500px;}
.ya4{bottom:319.460760px;}
.y49{bottom:325.980000px;}
.y75{bottom:327.027240px;}
.y27{bottom:332.065800px;}
.ye9{bottom:334.440000px;}
.ya3{bottom:336.746340px;}
.y48{bottom:343.622880px;}
.y74{bottom:344.492100px;}
.y26{bottom:349.351380px;}
.ya2{bottom:354.031920px;}
.ye8{bottom:354.235500px;}
.y73{bottom:361.598400px;}
.y47{bottom:362.700000px;}
.y25{bottom:366.636960px;}
.ya1{bottom:371.138220px;}
.y72{bottom:378.883980px;}
.ye7{bottom:383.039820px;}
.y24{bottom:383.922540px;}
.y46{bottom:390.020580px;}
.y71{bottom:396.169560px;}
.ya0{bottom:397.417680px;}
.y23{bottom:401.208120px;}
.ye6{bottom:403.014600px;}
.y45{bottom:409.995360px;}
.y70{bottom:413.455140px;}
.y9f{bottom:414.703260px;}
.y22{bottom:418.493700px;}
.y44{bottom:429.790860px;}
.y6f{bottom:430.908840px;}
.ye5{bottom:431.818920px;}
.y9e{bottom:431.988840px;}
.y21{bottom:435.600000px;}
.y6e{bottom:448.194420px;}
.y9d{bottom:449.274420px;}
.y43{bottom:449.586360px;}
.ye4{bottom:451.614420px;}
.y20{bottom:453.600000px;}
.y6d{bottom:465.480000px;}
.y9c{bottom:466.560000px;}
.ye3{bottom:468.900000px;}
.y42{bottom:472.623840px;}
.y1f{bottom:474.120000px;}
.y6c{bottom:483.127920px;}
.y9b{bottom:484.380000px;}
.ye2{bottom:486.540000px;}
.y1e{bottom:493.380000px;}
.y6b{bottom:502.205040px;}
.y9a{bottom:504.900000px;}
.y1d{bottom:514.080000px;}
.y6a{bottom:521.100000px;}
.ye1{bottom:526.105800px;}
.y99{bottom:532.400580px;}
.y1c{bottom:533.980800px;}
.y69{bottom:540.360000px;}
.ye0{bottom:543.391380px;}
.y1b{bottom:551.087100px;}
.y98{bottom:558.500760px;}
.y68{bottom:560.284560px;}
.ydf{bottom:560.497680px;}
.y97{bottom:575.786340px;}
.y1a{bottom:577.366560px;}
.y67{bottom:577.570140px;}
.yde{bottom:577.783260px;}
.y96{bottom:593.071920px;}
.y19{bottom:594.652140px;}
.y66{bottom:594.855720px;}
.ydd{bottom:595.068840px;}
.y95{bottom:610.357500px;}
.y18{bottom:611.937720px;}
.y65{bottom:612.141300px;}
.ydc{bottom:612.354420px;}
.yba{bottom:613.928340px;}
.y17{bottom:629.223300px;}
.y64{bottom:629.247600px;}
.ydb{bottom:629.640000px;}
.yb9{bottom:631.213920px;}
.y94{bottom:636.636960px;}
.y16{bottom:646.508880px;}
.y63{bottom:646.533180px;}
.yda{bottom:647.640000px;}
.yb8{bottom:648.320220px;}
.y93{bottom:653.922540px;}
.y15{bottom:663.615180px;}
.y62{bottom:663.818760px;}
.yb7{bottom:665.605800px;}
.yd9{bottom:667.980000px;}
.y92{bottom:671.208120px;}
.y14{bottom:680.900760px;}
.y61{bottom:681.104340px;}
.yb6{bottom:682.891380px;}
.yd8{bottom:687.240000px;}
.y91{bottom:688.314420px;}
.y13{bottom:698.186340px;}
.y60{bottom:698.389920px;}
.yb5{bottom:700.176960px;}
.y90{bottom:705.600000px;}
.yd7{bottom:707.196960px;}
.y12{bottom:715.471920px;}
.y5f{bottom:715.675500px;}
.yb4{bottom:717.462540px;}
.yd6{bottom:724.482540px;}
.y8f{bottom:725.940000px;}
.y89{bottom:729.540000px;}
.yb3{bottom:734.748120px;}
.y11{bottom:741.572100px;}
.yd5{bottom:741.768120px;}
.y88{bottom:746.820000px;}
.yb2{bottom:751.854420px;}
.y8e{bottom:753.662880px;}
.y10{bottom:758.857680px;}
.yd4{bottom:758.874420px;}
.y87{bottom:764.100000px;}
.yb1{bottom:769.140000px;}
.yf{bottom:776.143260px;}
.yd3{bottom:776.160000px;}
.y8d{bottom:779.942340px;}
.y86{bottom:781.380000px;}
.yb0{bottom:787.140000px;}
.ye{bottom:793.428840px;}
.yd2{bottom:794.160000px;}
.y84{bottom:798.660000px;}
.y8c{bottom:799.195860px;}
.yaf{bottom:809.649720px;}
.yd{bottom:810.714420px;}
.yd1{bottom:814.123260px;}
.y82{bottom:815.940000px;}
.y8b{bottom:816.835500px;}
.y41{bottom:827.583300px;}
.yc{bottom:828.000000px;}
.yae{bottom:829.445220px;}
.yd0{bottom:831.408840px;}
.y8a{bottom:839.872980px;}
.y40{bottom:844.868880px;}
.yb{bottom:845.640000px;}
.ycf{bottom:848.694420px;}
.yad{bottom:849.420000px;}
.y3f{bottom:861.975180px;}
.yac{bottom:863.460000px;}
.ya{bottom:864.900000px;}
.yce{bottom:865.980000px;}
.y5e{bottom:872.455860px;}
.y3e{bottom:879.260760px;}
.ycd{bottom:883.800000px;}
.y9{bottom:892.445040px;}
.y3d{bottom:896.546340px;}
.y5d{bottom:898.735320px;}
.ycc{bottom:903.763260px;}
.y8{bottom:913.140000px;}
.y3c{bottom:913.831920px;}
.ycb{bottom:921.048840px;}
.y5b{bottom:924.840000px;}
.y7{bottom:926.642880px;}
.y3b{bottom:931.117500px;}
.y5a{bottom:934.891380px;}
.y5c{bottom:934.920000px;}
.yca{bottom:938.334420px;}
.y6{bottom:951.660000px;}
.yc9{bottom:955.620000px;}
.y3a{bottom:957.217680px;}
.y5{bottom:965.160000px;}
.y59{bottom:970.717500px;}
.yc8{bottom:973.620000px;}
.y39{bottom:974.503260px;}
.y4{bottom:987.300000px;}
.y58{bottom:988.003080px;}
.y38{bottom:991.788840px;}
.yc7{bottom:993.588120px;}
.y57{bottom:1005.288660px;}
.y3{bottom:1008.000000px;}
.y37{bottom:1009.074420px;}
.yc6{bottom:1010.873700px;}
.y56{bottom:1022.574240px;}
.y36{bottom:1026.360000px;}
.yc5{bottom:1027.980000px;}
.y2{bottom:1030.149000px;}
.y35{bottom:1044.000000px;}
.yc4{bottom:1045.805040px;}
.y55{bottom:1048.674420px;}
.y1{bottom:1057.680000px;}
.y34{bottom:1063.260000px;}
.yc3{bottom:1064.700000px;}
.y54{bottom:1065.960000px;}
.h10{height:17.280000px;}
.h4{height:29.015859px;}
.h6{height:33.518320px;}
.ha{height:40.501406px;}
.h11{height:41.493516px;}
.h9{height:41.522695px;}
.he{height:41.756133px;}
.h12{height:41.772693px;}
.hc{height:41.782053px;}
.hb{height:41.885733px;}
.hf{height:43.380000px;}
.h8{height:44.893125px;}
.h5{height:46.025156px;}
.h7{height:48.796875px;}
.h2{height:50.027344px;}
.h13{height:50.164144px;}
.h3{height:62.879414px;}
.h1{height:64.899844px;}
.hd{height:87.950613px;}
.h0{height:1188.000000px;}
.w2{width:84.780000px;}
.w3{width:84.960000px;}
.w4{width:85.140000px;}
.w1{width:594.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.xf{left:21.060000px;}
.x13{left:31.500000px;}
.x3{left:162.000000px;}
.xd{left:188.983980px;}
.x5{left:193.860000px;}
.x1{left:207.180000px;}
.x6{left:225.178560px;}
.x2{left:244.981260px;}
.x12{left:246.240000px;}
.xe{left:270.540000px;}
.xa{left:288.526860px;}
.x14{left:331.020000px;}
.x9{left:347.943240px;}
.x10{left:364.860000px;}
.x1a{left:390.600000px;}
.x7{left:405.720000px;}
.x19{left:409.500000px;}
.x4{left:411.660000px;}
.x15{left:415.980000px;}
.x1b{left:420.480000px;}
.xb{left:473.580000px;}
.x16{left:500.760000px;}
.x17{left:585.540000px;}
.xc{left:629.460000px;}
.x18{left:670.320000px;}
.x8{left:755.999460px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-10.764800pt;}
.v6{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:41.057280pt;}
.ls2f{letter-spacing:-0.690560pt;}
.ls13{letter-spacing:-0.478080pt;}
.ls11{letter-spacing:-0.424960pt;}
.ls12{letter-spacing:-0.318720pt;}
.ls10{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls24{letter-spacing:-0.106240pt;}
.lsf{letter-spacing:-0.053120pt;}
.lsd{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.063744pt;}
.ls5{letter-spacing:0.106240pt;}
.ls30{letter-spacing:0.111552pt;}
.lse{letter-spacing:0.117760pt;}
.ls32{letter-spacing:0.154048pt;}
.ls1{letter-spacing:0.159360pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.164672pt;}
.ls27{letter-spacing:0.175296pt;}
.ls33{letter-spacing:0.185920pt;}
.ls35{letter-spacing:0.191232pt;}
.ls37{letter-spacing:0.207168pt;}
.ls4{letter-spacing:0.212480pt;}
.ls38{letter-spacing:0.217792pt;}
.ls2e{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.235520pt;}
.ls36{letter-spacing:0.254976pt;}
.ls18{letter-spacing:0.260288pt;}
.ls15{letter-spacing:0.265600pt;}
.ls26{letter-spacing:0.267264pt;}
.ls25{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.324032pt;}
.ls1a{letter-spacing:0.637440pt;}
.ls29{letter-spacing:1.434240pt;}
.ls2c{letter-spacing:2.187520pt;}
.ls2a{letter-spacing:2.709120pt;}
.ls21{letter-spacing:2.891520pt;}
.ls22{letter-spacing:3.610880pt;}
.ls34{letter-spacing:5.258880pt;}
.ls7{letter-spacing:6.533760pt;}
.lsb{letter-spacing:7.835200pt;}
.lsa{letter-spacing:7.861760pt;}
.ls2b{letter-spacing:8.499200pt;}
.ls20{letter-spacing:8.924160pt;}
.ls6{letter-spacing:9.774080pt;}
.ls9{letter-spacing:11.048960pt;}
.ls1e{letter-spacing:11.527040pt;}
.ls1f{letter-spacing:12.164480pt;}
.ls1d{letter-spacing:14.347520pt;}
.ls1c{letter-spacing:14.714240pt;}
.ls8{letter-spacing:17.423360pt;}
.ls1b{letter-spacing:17.547520pt;}
.ls31{letter-spacing:18.080000pt;}
.ls28{letter-spacing:40.902400pt;}
.lsc{letter-spacing:56.891520pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2e{word-spacing:-37.416960pt;}
.ws38{word-spacing:-37.387264pt;}
.ws2f{word-spacing:-37.120000pt;}
.ws37{word-spacing:-23.946240pt;}
.ws36{word-spacing:-20.746240pt;}
.ws1{word-spacing:-14.837760pt;}
.ws9{word-spacing:-14.602240pt;}
.ws8{word-spacing:-13.598720pt;}
.ws52{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.492480pt;}
.ws7{word-spacing:-13.386240pt;}
.ws2b{word-spacing:-13.333120pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.226880pt;}
.ws2c{word-spacing:-13.173760pt;}
.ws5{word-spacing:-13.067520pt;}
.ws6{word-spacing:-12.961280pt;}
.ws4{word-spacing:-12.855040pt;}
.ws39{word-spacing:-12.589440pt;}
.ws2d{word-spacing:-11.686400pt;}
.ws35{word-spacing:-11.633280pt;}
.ws34{word-spacing:-11.473920pt;}
.ws0{word-spacing:-9.280000pt;}
.ws3c{word-spacing:-3.134080pt;}
.ws3d{word-spacing:-2.974720pt;}
.ws4e{word-spacing:-2.709120pt;}
.ws42{word-spacing:-2.496640pt;}
.ws26{word-spacing:-2.071680pt;}
.ws1e{word-spacing:-1.434240pt;}
.ws25{word-spacing:-1.221760pt;}
.ws24{word-spacing:-1.062400pt;}
.ws17{word-spacing:-0.796800pt;}
.ws4d{word-spacing:-0.584320pt;}
.ws3f{word-spacing:-0.529920pt;}
.ws18{word-spacing:-0.424960pt;}
.ws13{word-spacing:-0.318720pt;}
.ws27{word-spacing:-0.265600pt;}
.ws30{word-spacing:-0.235520pt;}
.ws16{word-spacing:-0.212480pt;}
.wsc{word-spacing:-0.170240pt;}
.wsf{word-spacing:-0.159360pt;}
.wse{word-spacing:-0.117760pt;}
.ws14{word-spacing:-0.106240pt;}
.ws32{word-spacing:-0.053120pt;}
.wsd{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053120pt;}
.ws2a{word-spacing:0.106240pt;}
.ws3e{word-spacing:0.117760pt;}
.ws10{word-spacing:0.212480pt;}
.ws31{word-spacing:0.265600pt;}
.ws33{word-spacing:0.318720pt;}
.ws11{word-spacing:0.371840pt;}
.ws15{word-spacing:0.478080pt;}
.ws41{word-spacing:1.115520pt;}
.ws49{word-spacing:1.328000pt;}
.ws47{word-spacing:1.487360pt;}
.ws48{word-spacing:1.646720pt;}
.ws43{word-spacing:1.965440pt;}
.ws40{word-spacing:2.390400pt;}
.ws4a{word-spacing:2.602880pt;}
.ws46{word-spacing:3.027840pt;}
.ws44{word-spacing:3.665280pt;}
.ws21{word-spacing:4.940160pt;}
.ws20{word-spacing:5.152640pt;}
.ws53{word-spacing:5.312000pt;}
.ws1a{word-spacing:6.268160pt;}
.ws1b{word-spacing:6.640000pt;}
.ws50{word-spacing:6.905600pt;}
.ws4f{word-spacing:7.118080pt;}
.ws29{word-spacing:7.543040pt;}
.ws28{word-spacing:7.914880pt;}
.ws4b{word-spacing:8.180480pt;}
.ws4c{word-spacing:8.392960pt;}
.ws23{word-spacing:8.817920pt;}
.ws19{word-spacing:9.455360pt;}
.ws22{word-spacing:11.102080pt;}
.ws3a{word-spacing:12.642560pt;}
.ws3b{word-spacing:12.855040pt;}
.ws51{word-spacing:14.289280pt;}
.ws1f{word-spacing:16.467200pt;}
.ws45{word-spacing:17.104640pt;}
.ws1d{word-spacing:17.317120pt;}
.ws1c{word-spacing:17.476480pt;}
._4{margin-left:-3.542400pt;}
._5{margin-left:-2.448640pt;}
._1{margin-left:-1.383680pt;}
._0{width:1.310848pt;}
._3{width:2.635520pt;}
._6{width:4.423424pt;}
._2{width:7.650176pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.880000pt;}
.y83{bottom:26.080000pt;}
.yc2{bottom:101.697280pt;}
.y81{bottom:103.035680pt;}
.yf2{bottom:106.565920pt;}
.y33{bottom:106.880000pt;}
.y53{bottom:110.235680pt;}
.yc1{bottom:117.062240pt;}
.y80{bottom:118.560000pt;}
.yf1{bottom:124.161920pt;}
.y32{bottom:124.561440pt;}
.y52{bottom:125.754240pt;}
.yc0{bottom:132.427200pt;}
.y7f{bottom:134.560000pt;}
.y31{bottom:139.926400pt;}
.ybf{bottom:147.792160pt;}
.yf0{bottom:149.925120pt;}
.y51{bottom:150.851200pt;}
.y7e{bottom:152.246880pt;}
.y30{bottom:156.247520pt;}
.ybe{bottom:163.157120pt;}
.y7d{bottom:167.452480pt;}
.yef{bottom:167.521120pt;}
.y2f{bottom:172.568640pt;}
.y50{bottom:174.370080pt;}
.yab{bottom:176.569760pt;}
.ybd{bottom:180.753120pt;}
.y7c{bottom:182.817440pt;}
.yee{bottom:185.117120pt;}
.y2e{bottom:187.933600pt;}
.y4f{bottom:189.735040pt;}
.yaa{bottom:191.934720pt;}
.y7b{bottom:198.182400pt;}
.ybc{bottom:198.349120pt;}
.y2d{bottom:203.139200pt;}
.y4e{bottom:205.100000pt;}
.ya9{bottom:207.299680pt;}
.yed{bottom:210.720960pt;}
.ybb{bottom:210.832320pt;}
.y7a{bottom:213.706720pt;}
.y2c{bottom:218.504160pt;}
.y4d{bottom:220.464960pt;}
.ya8{bottom:222.664640pt;}
.yec{bottom:228.316960pt;}
.y79{bottom:229.231040pt;}
.y2b{bottom:233.869120pt;}
.ya7{bottom:237.870240pt;}
.y4c{bottom:243.665120pt;}
.y78{bottom:244.436640pt;}
.y2a{bottom:249.234080pt;}
.ya6{bottom:253.235200pt;}
.yeb{bottom:254.080160pt;}
.y4b{bottom:259.030080pt;}
.y77{bottom:259.801600pt;}
.y29{bottom:264.599040pt;}
.ya5{bottom:268.600160pt;}
.yea{bottom:271.676160pt;}
.y4a{bottom:274.395040pt;}
.y76{bottom:275.166560pt;}
.y28{bottom:279.964000pt;}
.ya4{bottom:283.965120pt;}
.y49{bottom:289.760000pt;}
.y75{bottom:290.690880pt;}
.y27{bottom:295.169600pt;}
.ye9{bottom:297.280000pt;}
.ya3{bottom:299.330080pt;}
.y48{bottom:305.442560pt;}
.y74{bottom:306.215200pt;}
.y26{bottom:310.534560pt;}
.ya2{bottom:314.695040pt;}
.ye8{bottom:314.876000pt;}
.y73{bottom:321.420800pt;}
.y47{bottom:322.400000pt;}
.y25{bottom:325.899520pt;}
.ya1{bottom:329.900640pt;}
.y72{bottom:336.785760pt;}
.ye7{bottom:340.479840pt;}
.y24{bottom:341.264480pt;}
.y46{bottom:346.684960pt;}
.y71{bottom:352.150720pt;}
.ya0{bottom:353.260160pt;}
.y23{bottom:356.629440pt;}
.ye6{bottom:358.235200pt;}
.y45{bottom:364.440320pt;}
.y70{bottom:367.515680pt;}
.y9f{bottom:368.625120pt;}
.y22{bottom:371.994400pt;}
.y44{bottom:382.036320pt;}
.y6f{bottom:383.030080pt;}
.ye5{bottom:383.839040pt;}
.y9e{bottom:383.990080pt;}
.y21{bottom:387.200000pt;}
.y6e{bottom:398.395040pt;}
.y9d{bottom:399.355040pt;}
.y43{bottom:399.632320pt;}
.ye4{bottom:401.435040pt;}
.y20{bottom:403.200000pt;}
.y6d{bottom:413.760000pt;}
.y9c{bottom:414.720000pt;}
.ye3{bottom:416.800000pt;}
.y42{bottom:420.110080pt;}
.y1f{bottom:421.440000pt;}
.y6c{bottom:429.447040pt;}
.y9b{bottom:430.560000pt;}
.ye2{bottom:432.480000pt;}
.y1e{bottom:438.560000pt;}
.y6b{bottom:446.404480pt;}
.y9a{bottom:448.800000pt;}
.y1d{bottom:456.960000pt;}
.y6a{bottom:463.200000pt;}
.ye1{bottom:467.649600pt;}
.y99{bottom:473.244960pt;}
.y1c{bottom:474.649600pt;}
.y69{bottom:480.320000pt;}
.ye0{bottom:483.014560pt;}
.y1b{bottom:489.855200pt;}
.y98{bottom:496.445120pt;}
.y68{bottom:498.030720pt;}
.ydf{bottom:498.220160pt;}
.y97{bottom:511.810080pt;}
.y1a{bottom:513.214720pt;}
.y67{bottom:513.395680pt;}
.yde{bottom:513.585120pt;}
.y96{bottom:527.175040pt;}
.y19{bottom:528.579680pt;}
.y66{bottom:528.760640pt;}
.ydd{bottom:528.950080pt;}
.y95{bottom:542.540000pt;}
.y18{bottom:543.944640pt;}
.y65{bottom:544.125600pt;}
.ydc{bottom:544.315040pt;}
.yba{bottom:545.714080pt;}
.y17{bottom:559.309600pt;}
.y64{bottom:559.331200pt;}
.ydb{bottom:559.680000pt;}
.yb9{bottom:561.079040pt;}
.y94{bottom:565.899520pt;}
.y16{bottom:574.674560pt;}
.y63{bottom:574.696160pt;}
.yda{bottom:575.680000pt;}
.yb8{bottom:576.284640pt;}
.y93{bottom:581.264480pt;}
.y15{bottom:589.880160pt;}
.y62{bottom:590.061120pt;}
.yb7{bottom:591.649600pt;}
.yd9{bottom:593.760000pt;}
.y92{bottom:596.629440pt;}
.y14{bottom:605.245120pt;}
.y61{bottom:605.426080pt;}
.yb6{bottom:607.014560pt;}
.yd8{bottom:610.880000pt;}
.y91{bottom:611.835040pt;}
.y13{bottom:620.610080pt;}
.y60{bottom:620.791040pt;}
.yb5{bottom:622.379520pt;}
.y90{bottom:627.200000pt;}
.yd7{bottom:628.619520pt;}
.y12{bottom:635.975040pt;}
.y5f{bottom:636.156000pt;}
.yb4{bottom:637.744480pt;}
.yd6{bottom:643.984480pt;}
.y8f{bottom:645.280000pt;}
.y89{bottom:648.480000pt;}
.yb3{bottom:653.109440pt;}
.y11{bottom:659.175200pt;}
.yd5{bottom:659.349440pt;}
.y88{bottom:663.840000pt;}
.yb2{bottom:668.315040pt;}
.y8e{bottom:669.922560pt;}
.y10{bottom:674.540160pt;}
.yd4{bottom:674.555040pt;}
.y87{bottom:679.200000pt;}
.yb1{bottom:683.680000pt;}
.yf{bottom:689.905120pt;}
.yd3{bottom:689.920000pt;}
.y8d{bottom:693.282080pt;}
.y86{bottom:694.560000pt;}
.yb0{bottom:699.680000pt;}
.ye{bottom:705.270080pt;}
.yd2{bottom:705.920000pt;}
.y84{bottom:709.920000pt;}
.y8c{bottom:710.396320pt;}
.yaf{bottom:719.688640pt;}
.yd{bottom:720.635040pt;}
.yd1{bottom:723.665120pt;}
.y82{bottom:725.280000pt;}
.y8b{bottom:726.076000pt;}
.y41{bottom:735.629600pt;}
.yc{bottom:736.000000pt;}
.yae{bottom:737.284640pt;}
.yd0{bottom:739.030080pt;}
.y8a{bottom:746.553760pt;}
.y40{bottom:750.994560pt;}
.yb{bottom:751.680000pt;}
.ycf{bottom:754.395040pt;}
.yad{bottom:755.040000pt;}
.y3f{bottom:766.200160pt;}
.yac{bottom:767.520000pt;}
.ya{bottom:768.800000pt;}
.yce{bottom:769.760000pt;}
.y5e{bottom:775.516320pt;}
.y3e{bottom:781.565120pt;}
.ycd{bottom:785.600000pt;}
.y9{bottom:793.284480pt;}
.y3d{bottom:796.930080pt;}
.y5d{bottom:798.875840pt;}
.ycc{bottom:803.345120pt;}
.y8{bottom:811.680000pt;}
.y3c{bottom:812.295040pt;}
.ycb{bottom:818.710080pt;}
.y5b{bottom:822.080000pt;}
.y7{bottom:823.682560pt;}
.y3b{bottom:827.660000pt;}
.y5a{bottom:831.014560pt;}
.y5c{bottom:831.040000pt;}
.yca{bottom:834.075040pt;}
.y6{bottom:845.920000pt;}
.yc9{bottom:849.440000pt;}
.y3a{bottom:850.860160pt;}
.y5{bottom:857.920000pt;}
.y59{bottom:862.860000pt;}
.yc8{bottom:865.440000pt;}
.y39{bottom:866.225120pt;}
.y4{bottom:877.600000pt;}
.y58{bottom:878.224960pt;}
.y38{bottom:881.590080pt;}
.yc7{bottom:883.189440pt;}
.y57{bottom:893.589920pt;}
.y3{bottom:896.000000pt;}
.y37{bottom:896.955040pt;}
.yc6{bottom:898.554400pt;}
.y56{bottom:908.954880pt;}
.y36{bottom:912.320000pt;}
.yc5{bottom:913.760000pt;}
.y2{bottom:915.688000pt;}
.y35{bottom:928.000000pt;}
.yc4{bottom:929.604480pt;}
.y55{bottom:932.155040pt;}
.y1{bottom:940.160000pt;}
.y34{bottom:945.120000pt;}
.yc3{bottom:946.400000pt;}
.y54{bottom:947.520000pt;}
.h10{height:15.360000pt;}
.h4{height:25.791875pt;}
.h6{height:29.794062pt;}
.ha{height:36.001250pt;}
.h11{height:36.883125pt;}
.h9{height:36.909063pt;}
.he{height:37.116563pt;}
.h12{height:37.131283pt;}
.hc{height:37.139602pt;}
.hb{height:37.231763pt;}
.hf{height:38.560000pt;}
.h8{height:39.905000pt;}
.h5{height:40.911250pt;}
.h7{height:43.375000pt;}
.h2{height:44.468750pt;}
.h13{height:44.590350pt;}
.h3{height:55.892813pt;}
.h1{height:57.688750pt;}
.hd{height:78.178322pt;}
.h0{height:1056.000000pt;}
.w2{width:75.360000pt;}
.w3{width:75.520000pt;}
.w4{width:75.680000pt;}
.w1{width:528.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.xf{left:18.720000pt;}
.x13{left:28.000000pt;}
.x3{left:144.000000pt;}
.xd{left:167.985760pt;}
.x5{left:172.320000pt;}
.x1{left:184.160000pt;}
.x6{left:200.158720pt;}
.x2{left:217.761120pt;}
.x12{left:218.880000pt;}
.xe{left:240.480000pt;}
.xa{left:256.468320pt;}
.x14{left:294.240000pt;}
.x9{left:309.282880pt;}
.x10{left:324.320000pt;}
.x1a{left:347.200000pt;}
.x7{left:360.640000pt;}
.x19{left:364.000000pt;}
.x4{left:365.920000pt;}
.x15{left:369.760000pt;}
.x1b{left:373.760000pt;}
.xb{left:420.960000pt;}
.x16{left:445.120000pt;}
.x17{left:520.480000pt;}
.xc{left:559.520000pt;}
.x18{left:595.840000pt;}
.x8{left:671.999520pt;}
}




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