
    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_609c45203f714c6133f7d648.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230000;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_356531d9defd2eb175aa68f1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.458000;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_356531d9defd2eb175aa68f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.458000;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_3c956987f8a50017638952cd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.230000;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_2344a65d0ef1d7446e411a38.woff')format("woff");}.ff5{font-family:ff5;line-height:1.230000;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_9a550bfe0379fc1bf0b52845.woff')format("woff");}.ff6{font-family:ff6;line-height:1.230000;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_6862772fabebd42cf2d525bb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.230000;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_6805b03ac62e4e549d4b567c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d1fe71ccdf84af51ce9c850.woff')format("woff");}.ff9{font-family:ff9;line-height:1.230000;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_356531d9defd2eb175aa68f1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.458000;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_97d477c100defafd0cdb25b4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.066000;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_a5b6983fa155763cb7436ab1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.173000;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_cdc3169a18a4ec2f0a1a74b3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.984000px;}
.ls20{letter-spacing:-3.528000px;}
.ls2{letter-spacing:-2.754000px;}
.ls7{letter-spacing:-2.688000px;}
.ls4{letter-spacing:-1.656000px;}
.ls8{letter-spacing:-1.320000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.384000px;}
.ls1d{letter-spacing:-0.335808px;}
.ls10{letter-spacing:-0.192000px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.111936px;}
.ls12{letter-spacing:0.112056px;}
.ls1a{letter-spacing:0.167904px;}
.ls11{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.251856px;}
.ls15{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.384000px;}
.ls1b{letter-spacing:0.391776px;}
.ls19{letter-spacing:0.392136px;}
.lsa{letter-spacing:0.447744px;}
.ls1e{letter-spacing:0.588000px;}
.lsd{letter-spacing:0.615360px;}
.lsc{letter-spacing:0.615456px;}
.lse{letter-spacing:0.615648px;}
.ls0{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.672000px;}
.ls21{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.783552px;}
.ls1f{letter-spacing:0.840000px;}
.lsb{letter-spacing:1.056000px;}
.ls13{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.344000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(13,1,75),0 0.015em rgb(13,1,75),0.015em 0 rgb(13,1,75),0 -0.015em  rgb(13,1,75);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(13,1,75);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-23.712000px;}
.ws35{word-spacing:-17.580000px;}
.wsc{word-spacing:-16.416000px;}
.ws1a{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.760000px;}
.ws10{word-spacing:-14.544000px;}
.ws22{word-spacing:-14.448000px;}
.ws2b{word-spacing:-14.016000px;}
.ws24{word-spacing:-13.872000px;}
.ws1{word-spacing:-13.776000px;}
.ws2a{word-spacing:-13.344000px;}
.ws25{word-spacing:-13.200000px;}
.ws3{word-spacing:-13.104000px;}
.ws2d{word-spacing:-12.894000px;}
.ws2f{word-spacing:-12.054000px;}
.ws29{word-spacing:-11.550000px;}
.ws1b{word-spacing:-8.814960px;}
.ws14{word-spacing:-8.647056px;}
.ws11{word-spacing:-8.479152px;}
.ws23{word-spacing:-8.423184px;}
.ws13{word-spacing:-8.283264px;}
.ws4{word-spacing:-8.208000px;}
.ws21{word-spacing:-8.199312px;}
.ws19{word-spacing:-8.143344px;}
.ws15{word-spacing:-8.031408px;}
.ws2c{word-spacing:-8.022000px;}
.ws26{word-spacing:-7.695600px;}
.ws17{word-spacing:-1.920000px;}
.ws7{word-spacing:-1.440000px;}
.ws1e{word-spacing:-1.344000px;}
.ws18{word-spacing:-1.056000px;}
.ws1f{word-spacing:-0.783552px;}
.ws16{word-spacing:-0.768000px;}
.ws27{word-spacing:-0.672000px;}
.ws31{word-spacing:-0.588000px;}
.ws9{word-spacing:-0.384000px;}
.wsb{word-spacing:-0.336000px;}
.ws8{word-spacing:-0.306000px;}
.ws20{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.111936px;}
.ws6{word-spacing:-0.108000px;}
.ws36{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wse{word-spacing:0.192000px;}
.wsa{word-spacing:0.384000px;}
.ws28{word-spacing:0.576000px;}
.ws33{word-spacing:0.714000px;}
.ws34{word-spacing:1.092000px;}
.wsd{word-spacing:2.016000px;}
.ws30{word-spacing:2.184000px;}
.ws32{word-spacing:2.310000px;}
.ws2e{word-spacing:2.394000px;}
.wsf{word-spacing:3.312000px;}
._7{margin-left:-1780.320000px;}
._6{margin-left:-1756.104000px;}
._8{margin-left:-735.840000px;}
._f{margin-left:-12.054000px;}
._10{margin-left:-9.426000px;}
._4{margin-left:-7.540800px;}
._d{margin-left:-6.528000px;}
._5{margin-left:-5.148000px;}
._1{margin-left:-3.672000px;}
._9{margin-left:-2.311200px;}
._0{margin-left:-1.296000px;}
._2{width:1.044000px;}
._3{width:2.462400px;}
._e{width:3.549600px;}
._b{width:9.499200px;}
._a{width:1280.750400px;}
._c{width:1895.126400px;}
.fc8{color:rgb(237,28,36);}
.fc6{color:rgb(42,62,146);}
.fc5{color:transparent;}
.fc7{color:rgb(25,27,65);}
.fc4{color:rgb(13,1,75);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(32,52,128);}
.fc0{color:rgb(5,13,66);}
.fsa{font-size:27.984000px;}
.fs0{font-size:36.000000px;}
.fs6{font-size:37.800000px;}
.fsb{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fsc{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs8{font-size:120.000000px;}
.fs1{font-size:153.000000px;}
.fs3{font-size:234.000000px;}
.fs2{font-size:438.000000px;}
.y1d{bottom:-5.632650px;}
.y0{bottom:0.000000px;}
.y38{bottom:16.828650px;}
.y8a{bottom:16.828800px;}
.y2b{bottom:17.463600px;}
.y14b{bottom:53.044650px;}
.y5{bottom:66.615300px;}
.y4{bottom:83.373300px;}
.yc{bottom:89.200950px;}
.y3{bottom:100.131300px;}
.y2e{bottom:106.765650px;}
.y14a{bottom:116.758200px;}
.y2{bottom:116.889300px;}
.yb{bottom:117.204900px;}
.yb3{bottom:125.091900px;}
.ycd{bottom:125.724450px;}
.y2d{bottom:129.265650px;}
.y61{bottom:132.600600px;}
.y88{bottom:132.606150px;}
.y1{bottom:133.647300px;}
.ya{bottom:136.704900px;}
.y149{bottom:138.502200px;}
.yb2{bottom:147.591900px;}
.ycc{bottom:148.224450px;}
.y60{bottom:155.100600px;}
.y87{bottom:155.106150px;}
.y148{bottom:160.246200px;}
.y2c{bottom:160.869600px;}
.y9{bottom:164.708850px;}
.y11e{bottom:166.347900px;}
.ycb{bottom:170.724450px;}
.y5f{bottom:177.600600px;}
.y86{bottom:177.606150px;}
.y146{bottom:179.045400px;}
.y147{bottom:181.990200px;}
.yb1{bottom:185.091900px;}
.y11d{bottom:188.844900px;}
.yca{bottom:193.224450px;}
.y5e{bottom:200.100600px;}
.y85{bottom:200.106150px;}
.y145{bottom:201.546900px;}
.yb0{bottom:207.591900px;}
.y11c{bottom:211.346400px;}
.yc9{bottom:215.724450px;}
.y5d{bottom:222.600600px;}
.y84{bottom:222.606150px;}
.y156{bottom:222.829650px;}
.y144{bottom:224.043900px;}
.yaf{bottom:230.091900px;}
.y11b{bottom:233.847900px;}
.yc8{bottom:238.224450px;}
.y155{bottom:240.829650px;}
.y5c{bottom:245.100600px;}
.y83{bottom:245.106150px;}
.y143{bottom:246.545400px;}
.yae{bottom:252.591900px;}
.y11a{bottom:256.332750px;}
.ye9{bottom:258.147750px;}
.y154{bottom:258.829650px;}
.yff{bottom:259.087950px;}
.yc7{bottom:260.724450px;}
.y5b{bottom:267.600600px;}
.y142{bottom:269.046900px;}
.yad{bottom:275.091900px;}
.y153{bottom:276.829650px;}
.y82{bottom:277.926150px;}
.y119{bottom:278.834250px;}
.ye8{bottom:280.647750px;}
.yfe{bottom:281.587950px;}
.yc6{bottom:283.224450px;}
.y5a{bottom:290.100600px;}
.y141{bottom:291.543900px;}
.y152{bottom:294.829650px;}
.yac{bottom:297.591900px;}
.y81{bottom:300.426150px;}
.y118{bottom:301.335750px;}
.ye7{bottom:303.147750px;}
.yfd{bottom:304.087950px;}
.y59{bottom:312.600600px;}
.y151{bottom:312.829650px;}
.y140{bottom:314.045400px;}
.yab{bottom:320.091900px;}
.yc5{bottom:320.408250px;}
.y80{bottom:322.926150px;}
.y117{bottom:323.837250px;}
.ye6{bottom:325.647750px;}
.yfc{bottom:326.587950px;}
.y150{bottom:330.829650px;}
.y58{bottom:335.100600px;}
.y13f{bottom:336.546900px;}
.yaa{bottom:342.591900px;}
.yc4{bottom:342.908250px;}
.y7f{bottom:345.426150px;}
.y116{bottom:346.338750px;}
.ye5{bottom:348.147750px;}
.y14f{bottom:348.829650px;}
.yfb{bottom:349.083900px;}
.y57{bottom:357.600600px;}
.y13e{bottom:359.046900px;}
.ya9{bottom:365.091900px;}
.yc3{bottom:365.403900px;}
.y7e{bottom:367.926150px;}
.y115{bottom:368.840250px;}
.ye4{bottom:370.647750px;}
.yfa{bottom:371.583900px;}
.y56{bottom:380.100600px;}
.y13d{bottom:381.545400px;}
.y14e{bottom:383.839650px;}
.ya8{bottom:387.591900px;}
.yc2{bottom:387.903900px;}
.y7d{bottom:390.426150px;}
.y114{bottom:391.341750px;}
.ye3{bottom:393.147750px;}
.yf9{bottom:394.083900px;}
.y14d{bottom:401.839650px;}
.y55{bottom:402.600600px;}
.y13c{bottom:404.046900px;}
.ya7{bottom:410.091900px;}
.yc1{bottom:410.403900px;}
.y7c{bottom:412.926150px;}
.y113{bottom:413.843250px;}
.ye2{bottom:415.647750px;}
.yf8{bottom:416.583900px;}
.y14c{bottom:419.839650px;}
.y54{bottom:425.100600px;}
.y13b{bottom:426.546900px;}
.ya6{bottom:432.591900px;}
.yc0{bottom:432.903900px;}
.y7b{bottom:435.426150px;}
.y112{bottom:436.344750px;}
.ye1{bottom:438.147750px;}
.yf7{bottom:447.591900px;}
.y53{bottom:447.600600px;}
.y13a{bottom:449.037900px;}
.ya5{bottom:455.091900px;}
.ybf{bottom:455.403900px;}
.y7a{bottom:457.926150px;}
.y111{bottom:458.846250px;}
.ye0{bottom:460.647750px;}
.yf6{bottom:470.091900px;}
.y52{bottom:470.100600px;}
.y139{bottom:471.539400px;}
.ya4{bottom:477.591900px;}
.ybe{bottom:477.903900px;}
.y79{bottom:480.426150px;}
.y110{bottom:481.347750px;}
.ydf{bottom:483.147750px;}
.yf5{bottom:492.591900px;}
.y51{bottom:492.600600px;}
.y138{bottom:494.040900px;}
.ya3{bottom:500.091900px;}
.ybd{bottom:500.403900px;}
.y78{bottom:502.926150px;}
.y10f{bottom:503.844750px;}
.yde{bottom:505.647750px;}
.yf4{bottom:515.091900px;}
.y50{bottom:515.100600px;}
.y137{bottom:516.542400px;}
.ya2{bottom:522.591900px;}
.ybc{bottom:522.903900px;}
.y77{bottom:525.426150px;}
.y10e{bottom:526.346250px;}
.ydd{bottom:528.147750px;}
.yf3{bottom:537.591900px;}
.y4f{bottom:537.600600px;}
.y136{bottom:539.043900px;}
.ya1{bottom:545.091900px;}
.ybb{bottom:545.403900px;}
.y76{bottom:547.926150px;}
.y10d{bottom:548.847750px;}
.ydc{bottom:550.647750px;}
.yf2{bottom:560.091900px;}
.y4e{bottom:560.100600px;}
.y135{bottom:561.545400px;}
.ya0{bottom:567.591900px;}
.yba{bottom:567.903900px;}
.y75{bottom:570.426150px;}
.y10c{bottom:571.341750px;}
.ydb{bottom:573.147750px;}
.yf1{bottom:582.591900px;}
.y4d{bottom:582.594900px;}
.y134{bottom:584.046900px;}
.y9f{bottom:590.091900px;}
.yb9{bottom:590.403900px;}
.y74{bottom:592.926150px;}
.y10b{bottom:593.843250px;}
.yda{bottom:595.647750px;}
.y24{bottom:601.927200px;}
.yf0{bottom:605.091900px;}
.y133{bottom:606.534900px;}
.y4c{bottom:607.146900px;}
.y9e{bottom:612.591900px;}
.yb8{bottom:612.903900px;}
.y73{bottom:615.426150px;}
.y10a{bottom:616.344750px;}
.y23{bottom:616.930200px;}
.yd9{bottom:618.147750px;}
.yef{bottom:627.591900px;}
.y132{bottom:629.036400px;}
.y4b{bottom:629.646900px;}
.y22{bottom:631.933200px;}
.y9d{bottom:635.091900px;}
.yb7{bottom:635.403900px;}
.y72{bottom:637.926150px;}
.y109{bottom:638.846250px;}
.yd8{bottom:640.647750px;}
.yee{bottom:650.091900px;}
.y131{bottom:651.537900px;}
.y4a{bottom:652.146900px;}
.y21{bottom:655.018200px;}
.y9c{bottom:657.591900px;}
.yb6{bottom:657.903900px;}
.y71{bottom:660.426150px;}
.y108{bottom:661.347750px;}
.yd7{bottom:663.147750px;}
.yed{bottom:672.591900px;}
.y130{bottom:674.039400px;}
.y49{bottom:674.646900px;}
.y9b{bottom:680.091900px;}
.yb5{bottom:680.403900px;}
.y70{bottom:682.926150px;}
.y107{bottom:683.847750px;}
.yd6{bottom:685.647750px;}
.yec{bottom:695.091900px;}
.y12f{bottom:696.540900px;}
.y48{bottom:697.146900px;}
.y20{bottom:700.189200px;}
.y9a{bottom:702.591900px;}
.y18{bottom:702.629100px;}
.y6f{bottom:705.426150px;}
.y106{bottom:706.344750px;}
.yd5{bottom:708.147750px;}
.y1f{bottom:715.192200px;}
.yb4{bottom:717.591900px;}
.y12e{bottom:719.042400px;}
.y47{bottom:719.646900px;}
.y17{bottom:725.537100px;}
.y6e{bottom:727.926150px;}
.y105{bottom:728.846250px;}
.yd4{bottom:730.647750px;}
.y1e{bottom:738.277200px;}
.y99{bottom:740.091900px;}
.y12d{bottom:741.543900px;}
.y46{bottom:742.146900px;}
.y16{bottom:748.445100px;}
.y104{bottom:751.347750px;}
.yd3{bottom:753.147750px;}
.y98{bottom:762.591900px;}
.y12c{bottom:764.045400px;}
.y45{bottom:764.646900px;}
.y6d{bottom:765.051150px;}
.y15{bottom:770.945100px;}
.y103{bottom:773.847900px;}
.yd2{bottom:775.647750px;}
.y97{bottom:785.091900px;}
.y12b{bottom:786.546900px;}
.y6c{bottom:786.651150px;}
.y2a{bottom:787.084200px;}
.y44{bottom:787.146900px;}
.y102{bottom:796.344900px;}
.yd1{bottom:798.147750px;}
.y29{bottom:802.087200px;}
.y96{bottom:807.591900px;}
.y12a{bottom:809.043900px;}
.y14{bottom:809.453100px;}
.y43{bottom:809.646900px;}
.y28{bottom:817.090200px;}
.y101{bottom:818.846400px;}
.y95{bottom:830.091900px;}
.y129{bottom:831.545400px;}
.y27{bottom:832.093200px;}
.y42{bottom:832.146900px;}
.yd0{bottom:835.272900px;}
.y100{bottom:841.347900px;}
.y26{bottom:847.096200px;}
.y6b{bottom:852.591750px;}
.y94{bottom:852.591900px;}
.y128{bottom:854.046900px;}
.y41{bottom:854.646900px;}
.ycf{bottom:856.872900px;}
.y13{bottom:867.053100px;}
.y25{bottom:870.181200px;}
.y6a{bottom:875.091750px;}
.y93{bottom:875.091900px;}
.y127{bottom:876.542400px;}
.y40{bottom:877.146900px;}
.yce{bottom:878.472900px;}
.y36{bottom:891.518100px;}
.y69{bottom:897.591750px;}
.y92{bottom:897.591900px;}
.y126{bottom:899.043900px;}
.y3f{bottom:899.646900px;}
.y12{bottom:903.053100px;}
.y35{bottom:914.018100px;}
.yf{bottom:916.395150px;}
.y68{bottom:920.091750px;}
.y91{bottom:920.091900px;}
.y15d{bottom:921.540750px;}
.y125{bottom:921.545400px;}
.y3e{bottom:922.146900px;}
.ye{bottom:932.895450px;}
.y34{bottom:936.518100px;}
.y11{bottom:939.053100px;}
.y67{bottom:942.591750px;}
.y90{bottom:942.591900px;}
.y15c{bottom:944.042250px;}
.y124{bottom:944.046900px;}
.y3d{bottom:944.646900px;}
.yd{bottom:949.395150px;}
.y33{bottom:959.018100px;}
.y1b{bottom:964.781250px;}
.y66{bottom:965.091750px;}
.y8f{bottom:965.091900px;}
.y15b{bottom:966.543750px;}
.y123{bottom:966.546900px;}
.y3c{bottom:967.146900px;}
.y32{bottom:981.518100px;}
.y65{bottom:987.591750px;}
.y8e{bottom:987.591900px;}
.y122{bottom:989.042400px;}
.y15a{bottom:989.045250px;}
.y3b{bottom:989.646900px;}
.y10{bottom:993.203100px;}
.y1c{bottom:1002.419250px;}
.y31{bottom:1004.018100px;}
.y64{bottom:1010.091750px;}
.y8d{bottom:1010.091900px;}
.y121{bottom:1011.543900px;}
.y159{bottom:1011.546750px;}
.y3a{bottom:1012.146900px;}
.y30{bottom:1026.518100px;}
.y63{bottom:1032.588600px;}
.yeb{bottom:1032.591750px;}
.y8c{bottom:1032.591900px;}
.y120{bottom:1034.045400px;}
.y158{bottom:1034.046750px;}
.y2f{bottom:1049.122050px;}
.y39{bottom:1049.271900px;}
.y62{bottom:1055.088600px;}
.yea{bottom:1055.091750px;}
.y8b{bottom:1055.091900px;}
.y157{bottom:1056.546750px;}
.y11f{bottom:1056.546900px;}
.y1a{bottom:1066.180800px;}
.y7{bottom:1071.900300px;}
.y8{bottom:1096.335300px;}
.y6{bottom:1097.592750px;}
.y37{bottom:1131.586800px;}
.y89{bottom:1131.586950px;}
.y19{bottom:1145.212800px;}
.h2{height:34.920000px;}
.h8{height:36.666000px;}
.h13{height:40.740000px;}
.hc{height:43.092000px;}
.h14{height:45.696000px;}
.h16{height:45.708000px;}
.h18{height:45.714000px;}
.h15{height:45.720000px;}
.h19{height:45.744000px;}
.h17{height:45.756600px;}
.h7{height:46.560000px;}
.h11{height:46.560600px;}
.hf{height:46.572600px;}
.h12{height:46.576200px;}
.h10{height:46.577400px;}
.he{height:46.582800px;}
.hb{height:49.470000px;}
.hd{height:57.456000px;}
.h1a{height:58.200000px;}
.h6{height:86.184000px;}
.h9{height:93.120000px;}
.ha{height:143.640000px;}
.h3{height:183.141000px;}
.h5{height:280.098000px;}
.h4{height:524.286000px;}
.h1{height:1170.000000px;}
.h0{height:1170.013500px;}
.w0{width:810.000000px;}
.xa{left:-564.000000px;}
.xc{left:-384.750000px;}
.xb{left:-198.000000px;}
.x0{left:0.000000px;}
.x7{left:17.220450px;}
.x2{left:20.844300px;}
.x1{left:27.405300px;}
.x3{left:31.707300px;}
.xf{left:51.448800px;}
.x13{left:87.602400px;}
.x14{left:96.732300px;}
.x5{left:117.300000px;}
.xe{left:119.055150px;}
.x10{left:145.630500px;}
.x4{left:186.783600px;}
.xd{left:192.401550px;}
.x6{left:214.511850px;}
.x9{left:224.736000px;}
.x8{left:268.594500px;}
.x12{left:279.676350px;}
.x11{left:462.405750px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.208000pt;}
.ls20{letter-spacing:-3.136000pt;}
.ls2{letter-spacing:-2.448000pt;}
.ls7{letter-spacing:-2.389333pt;}
.ls4{letter-spacing:-1.472000pt;}
.ls8{letter-spacing:-1.173333pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.341333pt;}
.ls1d{letter-spacing:-0.298496pt;}
.ls10{letter-spacing:-0.170667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.099499pt;}
.ls12{letter-spacing:0.099605pt;}
.ls1a{letter-spacing:0.149248pt;}
.ls11{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.223872pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls1b{letter-spacing:0.348245pt;}
.ls19{letter-spacing:0.348565pt;}
.lsa{letter-spacing:0.397995pt;}
.ls1e{letter-spacing:0.522667pt;}
.lsd{letter-spacing:0.546987pt;}
.lsc{letter-spacing:0.547072pt;}
.lse{letter-spacing:0.547243pt;}
.ls0{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.597333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.696491pt;}
.ls1f{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.938667pt;}
.ls13{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.194667pt;}
.ws2{word-spacing:-21.077333pt;}
.ws35{word-spacing:-15.626667pt;}
.wsc{word-spacing:-14.592000pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.184000pt;}
.ws0{word-spacing:-13.120000pt;}
.ws10{word-spacing:-12.928000pt;}
.ws22{word-spacing:-12.842667pt;}
.ws2b{word-spacing:-12.458667pt;}
.ws24{word-spacing:-12.330667pt;}
.ws1{word-spacing:-12.245333pt;}
.ws2a{word-spacing:-11.861333pt;}
.ws25{word-spacing:-11.733333pt;}
.ws3{word-spacing:-11.648000pt;}
.ws2d{word-spacing:-11.461333pt;}
.ws2f{word-spacing:-10.714667pt;}
.ws29{word-spacing:-10.266667pt;}
.ws1b{word-spacing:-7.835520pt;}
.ws14{word-spacing:-7.686272pt;}
.ws11{word-spacing:-7.537024pt;}
.ws23{word-spacing:-7.487275pt;}
.ws13{word-spacing:-7.362901pt;}
.ws4{word-spacing:-7.296000pt;}
.ws21{word-spacing:-7.288277pt;}
.ws19{word-spacing:-7.238528pt;}
.ws15{word-spacing:-7.139029pt;}
.ws2c{word-spacing:-7.130667pt;}
.ws26{word-spacing:-6.840533pt;}
.ws17{word-spacing:-1.706667pt;}
.ws7{word-spacing:-1.280000pt;}
.ws1e{word-spacing:-1.194667pt;}
.ws18{word-spacing:-0.938667pt;}
.ws1f{word-spacing:-0.696491pt;}
.ws16{word-spacing:-0.682667pt;}
.ws27{word-spacing:-0.597333pt;}
.ws31{word-spacing:-0.522667pt;}
.ws9{word-spacing:-0.341333pt;}
.wsb{word-spacing:-0.298667pt;}
.ws8{word-spacing:-0.272000pt;}
.ws20{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.099499pt;}
.ws6{word-spacing:-0.096000pt;}
.ws36{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wse{word-spacing:0.170667pt;}
.wsa{word-spacing:0.341333pt;}
.ws28{word-spacing:0.512000pt;}
.ws33{word-spacing:0.634667pt;}
.ws34{word-spacing:0.970667pt;}
.wsd{word-spacing:1.792000pt;}
.ws30{word-spacing:1.941333pt;}
.ws32{word-spacing:2.053333pt;}
.ws2e{word-spacing:2.128000pt;}
.wsf{word-spacing:2.944000pt;}
._7{margin-left:-1582.506667pt;}
._6{margin-left:-1560.981333pt;}
._8{margin-left:-654.080000pt;}
._f{margin-left:-10.714667pt;}
._10{margin-left:-8.378667pt;}
._4{margin-left:-6.702933pt;}
._d{margin-left:-5.802667pt;}
._5{margin-left:-4.576000pt;}
._1{margin-left:-3.264000pt;}
._9{margin-left:-2.054400pt;}
._0{margin-left:-1.152000pt;}
._2{width:0.928000pt;}
._3{width:2.188800pt;}
._e{width:3.155200pt;}
._b{width:8.443733pt;}
._a{width:1138.444800pt;}
._c{width:1684.556800pt;}
.fsa{font-size:24.874667pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:33.600000pt;}
.fsb{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fsc{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs8{font-size:106.666667pt;}
.fs1{font-size:136.000000pt;}
.fs3{font-size:208.000000pt;}
.fs2{font-size:389.333333pt;}
.y1d{bottom:-5.006800pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:14.958800pt;}
.y8a{bottom:14.958933pt;}
.y2b{bottom:15.523200pt;}
.y14b{bottom:47.150800pt;}
.y5{bottom:59.213600pt;}
.y4{bottom:74.109600pt;}
.yc{bottom:79.289733pt;}
.y3{bottom:89.005600pt;}
.y2e{bottom:94.902800pt;}
.y14a{bottom:103.785067pt;}
.y2{bottom:103.901600pt;}
.yb{bottom:104.182133pt;}
.yb3{bottom:111.192800pt;}
.ycd{bottom:111.755067pt;}
.y2d{bottom:114.902800pt;}
.y61{bottom:117.867200pt;}
.y88{bottom:117.872133pt;}
.y1{bottom:118.797600pt;}
.ya{bottom:121.515467pt;}
.y149{bottom:123.113067pt;}
.yb2{bottom:131.192800pt;}
.ycc{bottom:131.755067pt;}
.y60{bottom:137.867200pt;}
.y87{bottom:137.872133pt;}
.y148{bottom:142.441067pt;}
.y2c{bottom:142.995200pt;}
.y9{bottom:146.407867pt;}
.y11e{bottom:147.864800pt;}
.ycb{bottom:151.755067pt;}
.y5f{bottom:157.867200pt;}
.y86{bottom:157.872133pt;}
.y146{bottom:159.151467pt;}
.y147{bottom:161.769067pt;}
.yb1{bottom:164.526133pt;}
.y11d{bottom:167.862133pt;}
.yca{bottom:171.755067pt;}
.y5e{bottom:177.867200pt;}
.y85{bottom:177.872133pt;}
.y145{bottom:179.152800pt;}
.yb0{bottom:184.526133pt;}
.y11c{bottom:187.863467pt;}
.yc9{bottom:191.755067pt;}
.y5d{bottom:197.867200pt;}
.y84{bottom:197.872133pt;}
.y156{bottom:198.070800pt;}
.y144{bottom:199.150133pt;}
.yaf{bottom:204.526133pt;}
.y11b{bottom:207.864800pt;}
.yc8{bottom:211.755067pt;}
.y155{bottom:214.070800pt;}
.y5c{bottom:217.867200pt;}
.y83{bottom:217.872133pt;}
.y143{bottom:219.151467pt;}
.yae{bottom:224.526133pt;}
.y11a{bottom:227.851333pt;}
.ye9{bottom:229.464667pt;}
.y154{bottom:230.070800pt;}
.yff{bottom:230.300400pt;}
.yc7{bottom:231.755067pt;}
.y5b{bottom:237.867200pt;}
.y142{bottom:239.152800pt;}
.yad{bottom:244.526133pt;}
.y153{bottom:246.070800pt;}
.y82{bottom:247.045467pt;}
.y119{bottom:247.852667pt;}
.ye8{bottom:249.464667pt;}
.yfe{bottom:250.300400pt;}
.yc6{bottom:251.755067pt;}
.y5a{bottom:257.867200pt;}
.y141{bottom:259.150133pt;}
.y152{bottom:262.070800pt;}
.yac{bottom:264.526133pt;}
.y81{bottom:267.045467pt;}
.y118{bottom:267.854000pt;}
.ye7{bottom:269.464667pt;}
.yfd{bottom:270.300400pt;}
.y59{bottom:277.867200pt;}
.y151{bottom:278.070800pt;}
.y140{bottom:279.151467pt;}
.yab{bottom:284.526133pt;}
.yc5{bottom:284.807333pt;}
.y80{bottom:287.045467pt;}
.y117{bottom:287.855333pt;}
.ye6{bottom:289.464667pt;}
.yfc{bottom:290.300400pt;}
.y150{bottom:294.070800pt;}
.y58{bottom:297.867200pt;}
.y13f{bottom:299.152800pt;}
.yaa{bottom:304.526133pt;}
.yc4{bottom:304.807333pt;}
.y7f{bottom:307.045467pt;}
.y116{bottom:307.856667pt;}
.ye5{bottom:309.464667pt;}
.y14f{bottom:310.070800pt;}
.yfb{bottom:310.296800pt;}
.y57{bottom:317.867200pt;}
.y13e{bottom:319.152800pt;}
.ya9{bottom:324.526133pt;}
.yc3{bottom:324.803467pt;}
.y7e{bottom:327.045467pt;}
.y115{bottom:327.858000pt;}
.ye4{bottom:329.464667pt;}
.yfa{bottom:330.296800pt;}
.y56{bottom:337.867200pt;}
.y13d{bottom:339.151467pt;}
.y14e{bottom:341.190800pt;}
.ya8{bottom:344.526133pt;}
.yc2{bottom:344.803467pt;}
.y7d{bottom:347.045467pt;}
.y114{bottom:347.859333pt;}
.ye3{bottom:349.464667pt;}
.yf9{bottom:350.296800pt;}
.y14d{bottom:357.190800pt;}
.y55{bottom:357.867200pt;}
.y13c{bottom:359.152800pt;}
.ya7{bottom:364.526133pt;}
.yc1{bottom:364.803467pt;}
.y7c{bottom:367.045467pt;}
.y113{bottom:367.860667pt;}
.ye2{bottom:369.464667pt;}
.yf8{bottom:370.296800pt;}
.y14c{bottom:373.190800pt;}
.y54{bottom:377.867200pt;}
.y13b{bottom:379.152800pt;}
.ya6{bottom:384.526133pt;}
.yc0{bottom:384.803467pt;}
.y7b{bottom:387.045467pt;}
.y112{bottom:387.862000pt;}
.ye1{bottom:389.464667pt;}
.yf7{bottom:397.859467pt;}
.y53{bottom:397.867200pt;}
.y13a{bottom:399.144800pt;}
.ya5{bottom:404.526133pt;}
.ybf{bottom:404.803467pt;}
.y7a{bottom:407.045467pt;}
.y111{bottom:407.863333pt;}
.ye0{bottom:409.464667pt;}
.yf6{bottom:417.859467pt;}
.y52{bottom:417.867200pt;}
.y139{bottom:419.146133pt;}
.ya4{bottom:424.526133pt;}
.ybe{bottom:424.803467pt;}
.y79{bottom:427.045467pt;}
.y110{bottom:427.864667pt;}
.ydf{bottom:429.464667pt;}
.yf5{bottom:437.859467pt;}
.y51{bottom:437.867200pt;}
.y138{bottom:439.147467pt;}
.ya3{bottom:444.526133pt;}
.ybd{bottom:444.803467pt;}
.y78{bottom:447.045467pt;}
.y10f{bottom:447.862000pt;}
.yde{bottom:449.464667pt;}
.yf4{bottom:457.859467pt;}
.y50{bottom:457.867200pt;}
.y137{bottom:459.148800pt;}
.ya2{bottom:464.526133pt;}
.ybc{bottom:464.803467pt;}
.y77{bottom:467.045467pt;}
.y10e{bottom:467.863333pt;}
.ydd{bottom:469.464667pt;}
.yf3{bottom:477.859467pt;}
.y4f{bottom:477.867200pt;}
.y136{bottom:479.150133pt;}
.ya1{bottom:484.526133pt;}
.ybb{bottom:484.803467pt;}
.y76{bottom:487.045467pt;}
.y10d{bottom:487.864667pt;}
.ydc{bottom:489.464667pt;}
.yf2{bottom:497.859467pt;}
.y4e{bottom:497.867200pt;}
.y135{bottom:499.151467pt;}
.ya0{bottom:504.526133pt;}
.yba{bottom:504.803467pt;}
.y75{bottom:507.045467pt;}
.y10c{bottom:507.859333pt;}
.ydb{bottom:509.464667pt;}
.yf1{bottom:517.859467pt;}
.y4d{bottom:517.862133pt;}
.y134{bottom:519.152800pt;}
.y9f{bottom:524.526133pt;}
.yb9{bottom:524.803467pt;}
.y74{bottom:527.045467pt;}
.y10b{bottom:527.860667pt;}
.yda{bottom:529.464667pt;}
.y24{bottom:535.046400pt;}
.yf0{bottom:537.859467pt;}
.y133{bottom:539.142133pt;}
.y4c{bottom:539.686133pt;}
.y9e{bottom:544.526133pt;}
.yb8{bottom:544.803467pt;}
.y73{bottom:547.045467pt;}
.y10a{bottom:547.862000pt;}
.y23{bottom:548.382400pt;}
.yd9{bottom:549.464667pt;}
.yef{bottom:557.859467pt;}
.y132{bottom:559.143467pt;}
.y4b{bottom:559.686133pt;}
.y22{bottom:561.718400pt;}
.y9d{bottom:564.526133pt;}
.yb7{bottom:564.803467pt;}
.y72{bottom:567.045467pt;}
.y109{bottom:567.863333pt;}
.yd8{bottom:569.464667pt;}
.yee{bottom:577.859467pt;}
.y131{bottom:579.144800pt;}
.y4a{bottom:579.686133pt;}
.y21{bottom:582.238400pt;}
.y9c{bottom:584.526133pt;}
.yb6{bottom:584.803467pt;}
.y71{bottom:587.045467pt;}
.y108{bottom:587.864667pt;}
.yd7{bottom:589.464667pt;}
.yed{bottom:597.859467pt;}
.y130{bottom:599.146133pt;}
.y49{bottom:599.686133pt;}
.y9b{bottom:604.526133pt;}
.yb5{bottom:604.803467pt;}
.y70{bottom:607.045467pt;}
.y107{bottom:607.864667pt;}
.yd6{bottom:609.464667pt;}
.yec{bottom:617.859467pt;}
.y12f{bottom:619.147467pt;}
.y48{bottom:619.686133pt;}
.y20{bottom:622.390400pt;}
.y9a{bottom:624.526133pt;}
.y18{bottom:624.559200pt;}
.y6f{bottom:627.045467pt;}
.y106{bottom:627.862000pt;}
.yd5{bottom:629.464667pt;}
.y1f{bottom:635.726400pt;}
.yb4{bottom:637.859467pt;}
.y12e{bottom:639.148800pt;}
.y47{bottom:639.686133pt;}
.y17{bottom:644.921867pt;}
.y6e{bottom:647.045467pt;}
.y105{bottom:647.863333pt;}
.yd4{bottom:649.464667pt;}
.y1e{bottom:656.246400pt;}
.y99{bottom:657.859467pt;}
.y12d{bottom:659.150133pt;}
.y46{bottom:659.686133pt;}
.y16{bottom:665.284533pt;}
.y104{bottom:667.864667pt;}
.yd3{bottom:669.464667pt;}
.y98{bottom:677.859467pt;}
.y12c{bottom:679.151467pt;}
.y45{bottom:679.686133pt;}
.y6d{bottom:680.045467pt;}
.y15{bottom:685.284533pt;}
.y103{bottom:687.864800pt;}
.yd2{bottom:689.464667pt;}
.y97{bottom:697.859467pt;}
.y12b{bottom:699.152800pt;}
.y6c{bottom:699.245467pt;}
.y2a{bottom:699.630400pt;}
.y44{bottom:699.686133pt;}
.y102{bottom:707.862133pt;}
.yd1{bottom:709.464667pt;}
.y29{bottom:712.966400pt;}
.y96{bottom:717.859467pt;}
.y12a{bottom:719.150133pt;}
.y14{bottom:719.513867pt;}
.y43{bottom:719.686133pt;}
.y28{bottom:726.302400pt;}
.y101{bottom:727.863467pt;}
.y95{bottom:737.859467pt;}
.y129{bottom:739.151467pt;}
.y27{bottom:739.638400pt;}
.y42{bottom:739.686133pt;}
.yd0{bottom:742.464800pt;}
.y100{bottom:747.864800pt;}
.y26{bottom:752.974400pt;}
.y6b{bottom:757.859333pt;}
.y94{bottom:757.859467pt;}
.y128{bottom:759.152800pt;}
.y41{bottom:759.686133pt;}
.ycf{bottom:761.664800pt;}
.y13{bottom:770.713867pt;}
.y25{bottom:773.494400pt;}
.y6a{bottom:777.859333pt;}
.y93{bottom:777.859467pt;}
.y127{bottom:779.148800pt;}
.y40{bottom:779.686133pt;}
.yce{bottom:780.864800pt;}
.y36{bottom:792.460533pt;}
.y69{bottom:797.859333pt;}
.y92{bottom:797.859467pt;}
.y126{bottom:799.150133pt;}
.y3f{bottom:799.686133pt;}
.y12{bottom:802.713867pt;}
.y35{bottom:812.460533pt;}
.yf{bottom:814.573467pt;}
.y68{bottom:817.859333pt;}
.y91{bottom:817.859467pt;}
.y15d{bottom:819.147333pt;}
.y125{bottom:819.151467pt;}
.y3e{bottom:819.686133pt;}
.ye{bottom:829.240400pt;}
.y34{bottom:832.460533pt;}
.y11{bottom:834.713867pt;}
.y67{bottom:837.859333pt;}
.y90{bottom:837.859467pt;}
.y15c{bottom:839.148667pt;}
.y124{bottom:839.152800pt;}
.y3d{bottom:839.686133pt;}
.yd{bottom:843.906800pt;}
.y33{bottom:852.460533pt;}
.y1b{bottom:857.583333pt;}
.y66{bottom:857.859333pt;}
.y8f{bottom:857.859467pt;}
.y15b{bottom:859.150000pt;}
.y123{bottom:859.152800pt;}
.y3c{bottom:859.686133pt;}
.y32{bottom:872.460533pt;}
.y65{bottom:877.859333pt;}
.y8e{bottom:877.859467pt;}
.y122{bottom:879.148800pt;}
.y15a{bottom:879.151333pt;}
.y3b{bottom:879.686133pt;}
.y10{bottom:882.847200pt;}
.y1c{bottom:891.039333pt;}
.y31{bottom:892.460533pt;}
.y64{bottom:897.859333pt;}
.y8d{bottom:897.859467pt;}
.y121{bottom:899.150133pt;}
.y159{bottom:899.152667pt;}
.y3a{bottom:899.686133pt;}
.y30{bottom:912.460533pt;}
.y63{bottom:917.856533pt;}
.yeb{bottom:917.859333pt;}
.y8c{bottom:917.859467pt;}
.y120{bottom:919.151467pt;}
.y158{bottom:919.152667pt;}
.y2f{bottom:932.552933pt;}
.y39{bottom:932.686133pt;}
.y62{bottom:937.856533pt;}
.yea{bottom:937.859333pt;}
.y8b{bottom:937.859467pt;}
.y157{bottom:939.152667pt;}
.y11f{bottom:939.152800pt;}
.y1a{bottom:947.716267pt;}
.y7{bottom:952.800267pt;}
.y8{bottom:974.520267pt;}
.y6{bottom:975.638000pt;}
.y37{bottom:1005.854933pt;}
.y89{bottom:1005.855067pt;}
.y19{bottom:1017.966933pt;}
.h2{height:31.040000pt;}
.h8{height:32.592000pt;}
.h13{height:36.213333pt;}
.hc{height:38.304000pt;}
.h14{height:40.618667pt;}
.h16{height:40.629333pt;}
.h18{height:40.634667pt;}
.h15{height:40.640000pt;}
.h19{height:40.661333pt;}
.h17{height:40.672533pt;}
.h7{height:41.386667pt;}
.h11{height:41.387200pt;}
.hf{height:41.397867pt;}
.h12{height:41.401067pt;}
.h10{height:41.402133pt;}
.he{height:41.406933pt;}
.hb{height:43.973333pt;}
.hd{height:51.072000pt;}
.h1a{height:51.733333pt;}
.h6{height:76.608000pt;}
.h9{height:82.773333pt;}
.ha{height:127.680000pt;}
.h3{height:162.792000pt;}
.h5{height:248.976000pt;}
.h4{height:466.032000pt;}
.h1{height:1040.000000pt;}
.h0{height:1040.012000pt;}
.w0{width:720.000000pt;}
.xa{left:-501.333333pt;}
.xc{left:-342.000000pt;}
.xb{left:-176.000000pt;}
.x0{left:0.000000pt;}
.x7{left:15.307067pt;}
.x2{left:18.528267pt;}
.x1{left:24.360267pt;}
.x3{left:28.184267pt;}
.xf{left:45.732267pt;}
.x13{left:77.868800pt;}
.x14{left:85.984267pt;}
.x5{left:104.266667pt;}
.xe{left:105.826800pt;}
.x10{left:129.449333pt;}
.x4{left:166.029867pt;}
.xd{left:171.023600pt;}
.x6{left:190.677200pt;}
.x9{left:199.765333pt;}
.x8{left:238.750667pt;}
.x12{left:248.601200pt;}
.x11{left:411.027333pt;}
}




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