
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_66de7fa7b722d965bafe0eea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6ec88c3e88aa2cb6c874050c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_66eb5104a75b8ff9ca4541f7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e6ab27f445d28304248225a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_2d585cb89f6a6923123a56c4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f3857f29e8902402142c0759.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_abf0d7875671dca51340d682.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls4f{letter-spacing:-1.686000px;}
.ls27{letter-spacing:-1.626000px;}
.ls47{letter-spacing:-1.446000px;}
.ls48{letter-spacing:-1.266000px;}
.ls22{letter-spacing:-1.242000px;}
.ls49{letter-spacing:-0.906000px;}
.ls4c{letter-spacing:-0.756000px;}
.ls2a{letter-spacing:-0.726000px;}
.ls42{letter-spacing:-0.672000px;}
.ls50{letter-spacing:-0.546600px;}
.ls3a{letter-spacing:-0.513600px;}
.ls1b{letter-spacing:-0.453000px;}
.ls32{letter-spacing:-0.427200px;}
.ls30{letter-spacing:-0.426000px;}
.ls29{letter-spacing:-0.397800px;}
.ls51{letter-spacing:-0.375000px;}
.ls2e{letter-spacing:-0.368400px;}
.ls37{letter-spacing:-0.318000px;}
.ls1e{letter-spacing:-0.254400px;}
.ls46{letter-spacing:-0.244200px;}
.ls1d{letter-spacing:-0.243600px;}
.ls55{letter-spacing:-0.232800px;}
.ls2f{letter-spacing:-0.216600px;}
.ls16{letter-spacing:-0.186600px;}
.ls56{letter-spacing:-0.178800px;}
.ls18{letter-spacing:-0.160800px;}
.ls17{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls60{letter-spacing:-0.128400px;}
.ls28{letter-spacing:-0.125400px;}
.ls2b{letter-spacing:-0.124200px;}
.lse{letter-spacing:-0.121200px;}
.ls1f{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.070800px;}
.ls5b{letter-spacing:-0.068400px;}
.ls4b{letter-spacing:-0.066000px;}
.lsa{letter-spacing:-0.064800px;}
.ls1c{letter-spacing:-0.060600px;}
.ls33{letter-spacing:-0.038880px;}
.ls52{letter-spacing:-0.037800px;}
.ls5c{letter-spacing:-0.018360px;}
.ls59{letter-spacing:-0.015480px;}
.ls5e{letter-spacing:-0.014760px;}
.ls3b{letter-spacing:-0.013320px;}
.ls20{letter-spacing:-0.011160px;}
.ls9{letter-spacing:-0.008400px;}
.ls36{letter-spacing:-0.008280px;}
.ls5a{letter-spacing:-0.007560px;}
.ls2c{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000360px;}
.ls35{letter-spacing:0.005400px;}
.ls2d{letter-spacing:0.016200px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls3e{letter-spacing:0.051120px;}
.ls3c{letter-spacing:0.061200px;}
.ls40{letter-spacing:0.062400px;}
.ls53{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls41{letter-spacing:0.068400px;}
.lsf{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls31{letter-spacing:0.098400px;}
.ls8{letter-spacing:0.099600px;}
.ls25{letter-spacing:0.113400px;}
.ls5f{letter-spacing:0.115800px;}
.ls19{letter-spacing:0.116400px;}
.ls39{letter-spacing:0.127200px;}
.ls3f{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.160800px;}
.lsd{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.199200px;}
.ls5d{letter-spacing:0.206400px;}
.ls3d{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:1.533600px;}
.ls14{letter-spacing:1.893600px;}
.ls10{letter-spacing:2.253600px;}
.ls4d{letter-spacing:5.136000px;}
.ls34{letter-spacing:6.933600px;}
.ls4e{letter-spacing:8.400000px;}
.ls23{letter-spacing:9.093600px;}
.ls38{letter-spacing:11.613600px;}
.ls24{letter-spacing:21.693600px;}
.ls43{letter-spacing:38.253600px;}
.ls44{letter-spacing:38.613600px;}
.ls58{letter-spacing:47.726640px;}
.ls54{letter-spacing:63.566640px;}
.ls57{letter-spacing:80.846640px;}
.ls45{letter-spacing:202.773600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.553200px;}
.ws8{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws40{word-spacing:-13.432800px;}
.ws17{word-spacing:-13.425600px;}
.ws10{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws35{word-spacing:-13.387200px;}
.ws2e{word-spacing:-13.369800px;}
.ws2b{word-spacing:-13.353600px;}
.wsf{word-spacing:-13.342800px;}
.ws42{word-spacing:-13.342200px;}
.ws23{word-spacing:-13.324800px;}
.ws2f{word-spacing:-13.294800px;}
.ws2d{word-spacing:-13.288800px;}
.ws2c{word-spacing:-13.277520px;}
.wse{word-spacing:-13.275360px;}
.ws1f{word-spacing:-13.242600px;}
.ws26{word-spacing:-13.231800px;}
.ws4{word-spacing:-13.226400px;}
.ws1e{word-spacing:-13.220280px;}
.ws3d{word-spacing:-13.218840px;}
.ws27{word-spacing:-13.218120px;}
.ws16{word-spacing:-13.215240px;}
.ws2a{word-spacing:-13.213080px;}
.ws41{word-spacing:-13.211640px;}
.ws3c{word-spacing:-13.210920px;}
.ws3f{word-spacing:-13.208040px;}
.ws39{word-spacing:-13.188600px;}
.ws25{word-spacing:-13.187520px;}
.ws12{word-spacing:-13.165800px;}
.ws3{word-spacing:-13.161600px;}
.ws36{word-spacing:-13.160400px;}
.ws3e{word-spacing:-13.158000px;}
.ws5{word-spacing:-13.155600px;}
.ws15{word-spacing:-13.134000px;}
.ws1d{word-spacing:-13.102200px;}
.ws1a{word-spacing:-13.101000px;}
.ws43{word-spacing:-13.098000px;}
.wsb{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.ws3b{word-spacing:-13.047600px;}
.wsa{word-spacing:-13.039800px;}
.ws21{word-spacing:-13.009800px;}
.ws3a{word-spacing:-12.993600px;}
.ws13{word-spacing:-12.982800px;}
.ws31{word-spacing:-12.982200px;}
.ws14{word-spacing:-12.972000px;}
.ws28{word-spacing:-12.908400px;}
.ws20{word-spacing:-12.858000px;}
.ws1b{word-spacing:-12.828600px;}
.ws22{word-spacing:-12.800400px;}
.ws24{word-spacing:-12.799200px;}
.ws11{word-spacing:-12.773400px;}
.ws29{word-spacing:-12.712800px;}
.ws38{word-spacing:-12.679800px;}
.ws30{word-spacing:-12.554400px;}
.ws1c{word-spacing:-12.500400px;}
.ws34{word-spacing:-12.320400px;}
.ws18{word-spacing:-11.984400px;}
.ws33{word-spacing:-11.960400px;}
.ws32{word-spacing:-11.780400px;}
.ws19{word-spacing:-11.600400px;}
.ws37{word-spacing:-11.540400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._b{margin-left:-3.318000px;}
._2{margin-left:-2.302200px;}
._0{margin-left:-1.110000px;}
._1{width:1.155096px;}
._4{width:2.344800px;}
._7{width:3.907800px;}
._a{width:5.290800px;}
._3{width:6.493200px;}
._6{width:7.574399px;}
._9{width:8.744398px;}
._5{width:9.859800px;}
._d{width:11.362800px;}
._e{width:14.488800px;}
._10{width:16.149000px;}
._c{width:17.260920px;}
._11{width:19.338480px;}
._8{width:20.636400px;}
._f{width:22.274400px;}
._2d{width:23.435760px;}
._20{width:25.226640px;}
._12{width:26.468056px;}
._18{width:27.760184px;}
._22{width:28.981080px;}
._28{width:33.966720px;}
._17{width:35.742360px;}
._16{width:36.793440px;}
._2a{width:45.272400px;}
._2b{width:48.138840px;}
._19{width:50.861520px;}
._30{width:57.739320px;}
._14{width:61.643848px;}
._2c{width:70.555080px;}
._1a{width:73.338240px;}
._21{width:77.322600px;}
._13{width:79.180080px;}
._26{width:87.092880px;}
._1c{width:92.765160px;}
._29{width:121.743000px;}
._2e{width:132.143760px;}
._1e{width:141.385576px;}
._1b{width:144.149520px;}
._15{width:148.006799px;}
._27{width:155.916360px;}
._2f{width:160.247640px;}
._25{width:168.636840px;}
._23{width:171.881399px;}
._1f{width:182.805600px;}
._24{width:187.685520px;}
._1d{width:202.773600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:7.830000px;}
.yfd{bottom:7.860000px;}
.y10c{bottom:7.920000px;}
.y105{bottom:12.330000px;}
.yf8{bottom:18.900000px;}
.yfe{bottom:20.910000px;}
.y110{bottom:25.380000px;}
.yfc{bottom:25.410000px;}
.y106{bottom:25.470000px;}
.yf3{bottom:29.880000px;}
.y104{bottom:29.970000px;}
.yf9{bottom:31.950000px;}
.yf7{bottom:36.450000px;}
.y102{bottom:43.020000px;}
.yfb{bottom:43.050000px;}
.y101{bottom:47.520000px;}
.y10b{bottom:47.610000px;}
.yf6{bottom:54.000000px;}
.y108{bottom:54.090000px;}
.y112{bottom:60.570000px;}
.y10e{bottom:60.660000px;}
.y100{bottom:65.070000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y10a{bottom:111.630000px;}
.y94{bottom:112.170000px;}
.y4b{bottom:115.770000px;}
.y70{bottom:129.180000px;}
.y93{bottom:129.810000px;}
.y27{bottom:131.070000px;}
.yb7{bottom:132.060000px;}
.y4a{bottom:133.320000px;}
.yd9{bottom:138.810000px;}
.y92{bottom:147.360000px;}
.y26{bottom:148.620000px;}
.y6f{bottom:164.730000px;}
.y91{bottom:165.000000px;}
.y25{bottom:166.260000px;}
.yb6{bottom:167.700000px;}
.y49{bottom:168.960000px;}
.yd8{bottom:174.450000px;}
.y136{bottom:177.780000px;}
.y109{bottom:178.680000px;}
.y24{bottom:183.810000px;}
.y48{bottom:186.510000px;}
.y90{bottom:191.550000px;}
.y6e{bottom:200.370000px;}
.yb5{bottom:203.250000px;}
.y8f{bottom:209.100000px;}
.yd7{bottom:210.000000px;}
.y135{bottom:213.420000px;}
.y47{bottom:218.730000px;}
.y23{bottom:219.450000px;}
.yd6{bottom:227.550000px;}
.y134{bottom:230.970000px;}
.y6d{bottom:235.920000px;}
.y22{bottom:237.000000px;}
.yb4{bottom:238.890000px;}
.y107{bottom:241.140000px;}
.y8e{bottom:244.740000px;}
.yd5{bottom:245.190000px;}
.y133{bottom:248.610000px;}
.y21{bottom:254.550000px;}
.yb3{bottom:256.440000px;}
.yd4{bottom:262.740000px;}
.y132{bottom:266.160000px;}
.y6c{bottom:271.470000px;}
.yb2{bottom:273.990000px;}
.y8d{bottom:280.290000px;}
.yd3{bottom:280.380000px;}
.y131{bottom:283.710000px;}
.y46{bottom:287.400000px;}
.yed{bottom:287.580000px;}
.y20{bottom:290.190000px;}
.yb1{bottom:291.630000px;}
.yd2{bottom:297.930000px;}
.y130{bottom:301.350000px;}
.y6b{bottom:307.110000px;}
.y1f{bottom:307.740000px;}
.yb0{bottom:309.180000px;}
.y103{bottom:314.670000px;}
.yd1{bottom:315.480000px;}
.y8c{bottom:315.930000px;}
.y12f{bottom:318.900000px;}
.y45{bottom:322.950000px;}
.yec{bottom:323.220000px;}
.y1e{bottom:325.380000px;}
.yaf{bottom:326.730000px;}
.yd0{bottom:333.120000px;}
.y12e{bottom:336.540000px;}
.yeb{bottom:340.770000px;}
.y6a{bottom:342.660000px;}
.y1d{bottom:342.930000px;}
.yae{bottom:344.370000px;}
.y8b{bottom:351.480000px;}
.y12d{bottom:354.090000px;}
.y44{bottom:355.170000px;}
.yea{bottom:358.320000px;}
.ycf{bottom:359.670000px;}
.y69{bottom:360.300000px;}
.yad{bottom:370.920000px;}
.y12c{bottom:371.640000px;}
.ye9{bottom:375.960000px;}
.yce{bottom:377.310000px;}
.y68{bottom:377.850000px;}
.y1c{bottom:378.480000px;}
.yff{bottom:381.720000px;}
.yac{bottom:388.560000px;}
.y12b{bottom:389.280000px;}
.y67{bottom:395.400000px;}
.y1b{bottom:396.120000px;}
.ye8{bottom:402.510000px;}
.y12a{bottom:406.830000px;}
.ycd{bottom:412.860000px;}
.y66{bottom:413.040000px;}
.y1a{bottom:413.670000px;}
.yab{bottom:424.110000px;}
.y129{bottom:424.470000px;}
.y8a{bottom:424.740000px;}
.y65{bottom:430.590000px;}
.y19{bottom:431.310000px;}
.y43{bottom:433.380000px;}
.ye7{bottom:438.150000px;}
.y128{bottom:442.020000px;}
.y64{bottom:448.230000px;}
.ycc{bottom:448.410000px;}
.y18{bottom:448.860000px;}
.y42{bottom:450.930000px;}
.ye6{bottom:455.700000px;}
.y127{bottom:459.570000px;}
.yaa{bottom:459.660000px;}
.y89{bottom:460.290000px;}
.y63{bottom:465.780000px;}
.yfa{bottom:466.320000px;}
.ye5{bottom:473.280000px;}
.y17{bottom:475.800000px;}
.y88{bottom:477.960000px;}
.y62{bottom:483.360000px;}
.ycb{bottom:484.080000px;}
.y41{bottom:486.600000px;}
.ye4{bottom:490.920000px;}
.y126{bottom:495.240000px;}
.ya9{bottom:495.330000px;}
.y87{bottom:495.510000px;}
.y61{bottom:501.000000px;}
.y40{bottom:504.150000px;}
.y125{bottom:512.790000px;}
.y86{bottom:513.060000px;}
.yca{bottom:516.300000px;}
.y16{bottom:524.400000px;}
.ye3{bottom:526.470000px;}
.y60{bottom:527.550000px;}
.yf5{bottom:528.810000px;}
.y124{bottom:530.430000px;}
.y85{bottom:530.700000px;}
.ya8{bottom:530.880000px;}
.y3f{bottom:539.790000px;}
.y5f{bottom:545.190000px;}
.y123{bottom:547.980000px;}
.y84{bottom:548.250000px;}
.y3e{bottom:557.340000px;}
.ye2{bottom:558.690000px;}
.y15{bottom:561.390000px;}
.ya7{bottom:563.100000px;}
.y122{bottom:565.530000px;}
.y83{bottom:565.890000px;}
.y14{bottom:579.030000px;}
.y5e{bottom:580.740000px;}
.y121{bottom:583.170000px;}
.y82{bottom:583.440000px;}
.yc9{bottom:585.150000px;}
.y3d{bottom:589.560000px;}
.y13{bottom:596.580000px;}
.yf2{bottom:602.340000px;}
.ya6{bottom:607.020000px;}
.y81{bottom:609.990000px;}
.y120{bottom:610.080000px;}
.y12{bottom:614.130000px;}
.y5d{bottom:616.290000px;}
.yc8{bottom:617.370000px;}
.y14b{bottom:625.830000px;}
.y80{bottom:627.630000px;}
.y11{bottom:631.770000px;}
.y5c{bottom:633.930000px;}
.ya5{bottom:642.570000px;}
.y14a{bottom:643.380000px;}
.y10{bottom:649.320000px;}
.y5b{bottom:651.480000px;}
.y11f{bottom:658.230000px;}
.y7f{bottom:663.180000px;}
.yf{bottom:666.960000px;}
.y5a{bottom:669.030000px;}
.y149{bottom:669.930000px;}
.yf1{bottom:673.080000px;}
.y3c{bottom:675.690000px;}
.y11e{bottom:676.680000px;}
.ya4{bottom:678.120000px;}
.ye{bottom:684.510000px;}
.y59{bottom:686.670000px;}
.y148{bottom:687.570000px;}
.y3b{bottom:693.330000px;}
.yc7{bottom:695.040000px;}
.y11d{bottom:695.130000px;}
.ya3{bottom:695.760000px;}
.y7e{bottom:698.730000px;}
.yf0{bottom:699.720000px;}
.yd{bottom:702.060000px;}
.ya2{bottom:713.310000px;}
.y147{bottom:714.120000px;}
.yc{bottom:719.700000px;}
.y58{bottom:722.220000px;}
.y3a{bottom:728.880000px;}
.yc6{bottom:730.590000px;}
.ya1{bottom:730.950000px;}
.y11c{bottom:731.580000px;}
.y146{bottom:731.670000px;}
.y7d{bottom:734.370000px;}
.yef{bottom:735.270000px;}
.yb{bottom:737.250000px;}
.y39{bottom:746.520000px;}
.ya0{bottom:748.500000px;}
.y11b{bottom:749.130000px;}
.y57{bottom:754.440000px;}
.y145{bottom:758.310000px;}
.ya{bottom:764.160000px;}
.y9f{bottom:766.050000px;}
.yc5{bottom:766.230000px;}
.y7c{bottom:766.590000px;}
.y11a{bottom:766.770000px;}
.yee{bottom:767.490000px;}
.y144{bottom:775.860000px;}
.y38{bottom:782.070000px;}
.y9e{bottom:783.690000px;}
.y119{bottom:784.320000px;}
.y37{bottom:799.620000px;}
.y9d{bottom:801.240000px;}
.yc4{bottom:801.780000px;}
.y118{bottom:801.870000px;}
.y143{bottom:802.500000px;}
.y9{bottom:812.490000px;}
.yc3{bottom:819.330000px;}
.y117{bottom:819.510000px;}
.y9c{bottom:827.880000px;}
.y142{bottom:829.050000px;}
.y56{bottom:829.860000px;}
.y36{bottom:835.260000px;}
.yc2{bottom:836.970000px;}
.y116{bottom:837.060000px;}
.y9b{bottom:845.430000px;}
.y141{bottom:846.600000px;}
.y55{bottom:847.410000px;}
.y8{bottom:848.040000px;}
.y35{bottom:852.810000px;}
.yc1{bottom:854.520000px;}
.y115{bottom:854.700000px;}
.yc0{bottom:872.160000px;}
.y114{bottom:872.250000px;}
.y140{bottom:873.240000px;}
.y9a{bottom:880.980000px;}
.y54{bottom:882.960000px;}
.y7{bottom:883.860000px;}
.y34{bottom:888.450000px;}
.ybf{bottom:889.710000px;}
.y113{bottom:898.800000px;}
.y13f{bottom:899.790000px;}
.y7b{bottom:902.220000px;}
.ye1{bottom:906.360000px;}
.ybe{bottom:907.260000px;}
.y99{bottom:916.620000px;}
.y13e{bottom:917.430000px;}
.y53{bottom:918.600000px;}
.y6{bottom:923.640000px;}
.y33{bottom:924.000000px;}
.y111{bottom:931.830000px;}
.ybd{bottom:933.900000px;}
.y52{bottom:936.150000px;}
.y7a{bottom:937.860000px;}
.y32{bottom:941.550000px;}
.y5{bottom:941.640000px;}
.ye0{bottom:941.910000px;}
.y13d{bottom:943.980000px;}
.ybc{bottom:951.450000px;}
.y98{bottom:952.170000px;}
.y79{bottom:955.410000px;}
.y31{bottom:959.190000px;}
.ydf{bottom:959.460000px;}
.y13c{bottom:961.530000px;}
.y51{bottom:962.790000px;}
.y78{bottom:972.960000px;}
.y4{bottom:973.950000px;}
.y30{bottom:976.740000px;}
.yde{bottom:977.100000px;}
.ybb{bottom:987.090000px;}
.y97{bottom:987.810000px;}
.y13b{bottom:988.170000px;}
.y77{bottom:990.600000px;}
.y2f{bottom:994.290000px;}
.ydd{bottom:994.650000px;}
.y50{bottom:998.340000px;}
.y76{bottom:1008.150000px;}
.y10f{bottom:1011.960000px;}
.y3{bottom:1012.230000px;}
.ydc{bottom:1012.320000px;}
.y13a{bottom:1015.110000px;}
.y4f{bottom:1015.920000px;}
.y2e{bottom:1020.960000px;}
.yba{bottom:1022.670000px;}
.y75{bottom:1025.820000px;}
.ydb{bottom:1029.870000px;}
.y74{bottom:1043.370000px;}
.y4e{bottom:1051.560000px;}
.y96{bottom:1051.920000px;}
.y2d{bottom:1056.870000px;}
.yb9{bottom:1058.220000px;}
.y73{bottom:1060.920000px;}
.yda{bottom:1062.090000px;}
.y139{bottom:1063.350000px;}
.y10d{bottom:1074.420000px;}
.y72{bottom:1078.560000px;}
.y4d{bottom:1087.110000px;}
.y95{bottom:1087.560000px;}
.y138{bottom:1090.260000px;}
.yb8{bottom:1090.440000px;}
.y71{bottom:1096.110000px;}
.y4c{bottom:1104.750000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y137{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.ha{height:48.600000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.740000px;}
.hc{height:61.770000px;}
.h14{height:61.793886px;}
.h9{height:62.585859px;}
.he{height:66.240000px;}
.h11{height:66.330000px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:72.720000px;}
.hf{height:72.810000px;}
.h13{height:79.320000px;}
.h12{height:79.380000px;}
.hd{height:83.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:93.150000px;}
.w6{width:127.800000px;}
.w7{width:146.520000px;}
.w5{width:183.090000px;}
.w3{width:202.170000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:69.389987px;}
.x18{left:95.039987px;}
.x19{left:111.239987px;}
.x12{left:176.519987px;}
.x2{left:202.799987px;}
.x10{left:227.819987px;}
.x14{left:271.650000px;}
.x15{left:365.520000px;}
.x4{left:416.729987px;}
.xd{left:505.109987px;}
.x7{left:506.729987px;}
.x6{left:524.399987px;}
.x16{left:549.330000px;}
.x5{left:581.549987px;}
.xe{left:596.309987px;}
.xb{left:617.639987px;}
.xc{left:620.159987px;}
.xa{left:635.189987px;}
.x8{left:646.889987px;}
.x17{left:677.940000px;}
.xf{left:730.319987px;}
.x11{left:734.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls4f{letter-spacing:-1.498667pt;}
.ls27{letter-spacing:-1.445333pt;}
.ls47{letter-spacing:-1.285333pt;}
.ls48{letter-spacing:-1.125333pt;}
.ls22{letter-spacing:-1.104000pt;}
.ls49{letter-spacing:-0.805333pt;}
.ls4c{letter-spacing:-0.672000pt;}
.ls2a{letter-spacing:-0.645333pt;}
.ls42{letter-spacing:-0.597333pt;}
.ls50{letter-spacing:-0.485867pt;}
.ls3a{letter-spacing:-0.456533pt;}
.ls1b{letter-spacing:-0.402667pt;}
.ls32{letter-spacing:-0.379733pt;}
.ls30{letter-spacing:-0.378667pt;}
.ls29{letter-spacing:-0.353600pt;}
.ls51{letter-spacing:-0.333333pt;}
.ls2e{letter-spacing:-0.327467pt;}
.ls37{letter-spacing:-0.282667pt;}
.ls1e{letter-spacing:-0.226133pt;}
.ls46{letter-spacing:-0.217067pt;}
.ls1d{letter-spacing:-0.216533pt;}
.ls55{letter-spacing:-0.206933pt;}
.ls2f{letter-spacing:-0.192533pt;}
.ls16{letter-spacing:-0.165867pt;}
.ls56{letter-spacing:-0.158933pt;}
.ls18{letter-spacing:-0.142933pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls60{letter-spacing:-0.114133pt;}
.ls28{letter-spacing:-0.111467pt;}
.ls2b{letter-spacing:-0.110400pt;}
.lse{letter-spacing:-0.107733pt;}
.ls1f{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.062933pt;}
.ls5b{letter-spacing:-0.060800pt;}
.ls4b{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls1c{letter-spacing:-0.053867pt;}
.ls33{letter-spacing:-0.034560pt;}
.ls52{letter-spacing:-0.033600pt;}
.ls5c{letter-spacing:-0.016320pt;}
.ls59{letter-spacing:-0.013760pt;}
.ls5e{letter-spacing:-0.013120pt;}
.ls3b{letter-spacing:-0.011840pt;}
.ls20{letter-spacing:-0.009920pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls36{letter-spacing:-0.007360pt;}
.ls5a{letter-spacing:-0.006720pt;}
.ls2c{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000320pt;}
.ls35{letter-spacing:0.004800pt;}
.ls2d{letter-spacing:0.014400pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls3e{letter-spacing:0.045440pt;}
.ls3c{letter-spacing:0.054400pt;}
.ls40{letter-spacing:0.055467pt;}
.ls53{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls41{letter-spacing:0.060800pt;}
.lsf{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls31{letter-spacing:0.087467pt;}
.ls8{letter-spacing:0.088533pt;}
.ls25{letter-spacing:0.100800pt;}
.ls5f{letter-spacing:0.102933pt;}
.ls19{letter-spacing:0.103467pt;}
.ls39{letter-spacing:0.113067pt;}
.ls3f{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.142933pt;}
.lsd{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.177067pt;}
.ls5d{letter-spacing:0.183467pt;}
.ls3d{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:1.363200pt;}
.ls14{letter-spacing:1.683200pt;}
.ls10{letter-spacing:2.003200pt;}
.ls4d{letter-spacing:4.565333pt;}
.ls34{letter-spacing:6.163200pt;}
.ls4e{letter-spacing:7.466667pt;}
.ls23{letter-spacing:8.083200pt;}
.ls38{letter-spacing:10.323200pt;}
.ls24{letter-spacing:19.283200pt;}
.ls43{letter-spacing:34.003200pt;}
.ls44{letter-spacing:34.323200pt;}
.ls58{letter-spacing:42.423680pt;}
.ls54{letter-spacing:56.503680pt;}
.ls57{letter-spacing:71.863680pt;}
.ls45{letter-spacing:180.243200pt;}
.ws2{word-spacing:-16.491733pt;}
.ws8{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws40{word-spacing:-11.940267pt;}
.ws17{word-spacing:-11.933867pt;}
.ws10{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws35{word-spacing:-11.899733pt;}
.ws2e{word-spacing:-11.884267pt;}
.ws2b{word-spacing:-11.869867pt;}
.wsf{word-spacing:-11.860267pt;}
.ws42{word-spacing:-11.859733pt;}
.ws23{word-spacing:-11.844267pt;}
.ws2f{word-spacing:-11.817600pt;}
.ws2d{word-spacing:-11.812267pt;}
.ws2c{word-spacing:-11.802240pt;}
.wse{word-spacing:-11.800320pt;}
.ws1f{word-spacing:-11.771200pt;}
.ws26{word-spacing:-11.761600pt;}
.ws4{word-spacing:-11.756800pt;}
.ws1e{word-spacing:-11.751360pt;}
.ws3d{word-spacing:-11.750080pt;}
.ws27{word-spacing:-11.749440pt;}
.ws16{word-spacing:-11.746880pt;}
.ws2a{word-spacing:-11.744960pt;}
.ws41{word-spacing:-11.743680pt;}
.ws3c{word-spacing:-11.743040pt;}
.ws3f{word-spacing:-11.740480pt;}
.ws39{word-spacing:-11.723200pt;}
.ws25{word-spacing:-11.722240pt;}
.ws12{word-spacing:-11.702933pt;}
.ws3{word-spacing:-11.699200pt;}
.ws36{word-spacing:-11.698133pt;}
.ws3e{word-spacing:-11.696000pt;}
.ws5{word-spacing:-11.693867pt;}
.ws15{word-spacing:-11.674667pt;}
.ws1d{word-spacing:-11.646400pt;}
.ws1a{word-spacing:-11.645333pt;}
.ws43{word-spacing:-11.642667pt;}
.wsb{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws3b{word-spacing:-11.597867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws21{word-spacing:-11.564267pt;}
.ws3a{word-spacing:-11.549867pt;}
.ws13{word-spacing:-11.540267pt;}
.ws31{word-spacing:-11.539733pt;}
.ws14{word-spacing:-11.530667pt;}
.ws28{word-spacing:-11.474133pt;}
.ws20{word-spacing:-11.429333pt;}
.ws1b{word-spacing:-11.403200pt;}
.ws22{word-spacing:-11.378133pt;}
.ws24{word-spacing:-11.377067pt;}
.ws11{word-spacing:-11.354133pt;}
.ws29{word-spacing:-11.300267pt;}
.ws38{word-spacing:-11.270933pt;}
.ws30{word-spacing:-11.159467pt;}
.ws1c{word-spacing:-11.111467pt;}
.ws34{word-spacing:-10.951467pt;}
.ws18{word-spacing:-10.652800pt;}
.ws33{word-spacing:-10.631467pt;}
.ws32{word-spacing:-10.471467pt;}
.ws19{word-spacing:-10.311467pt;}
.ws37{word-spacing:-10.258133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._b{margin-left:-2.949334pt;}
._2{margin-left:-2.046400pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.026752pt;}
._4{width:2.084267pt;}
._7{width:3.473600pt;}
._a{width:4.702934pt;}
._3{width:5.771734pt;}
._6{width:6.732799pt;}
._9{width:7.772799pt;}
._5{width:8.764267pt;}
._d{width:10.100267pt;}
._e{width:12.878933pt;}
._10{width:14.354667pt;}
._c{width:15.343040pt;}
._11{width:17.189760pt;}
._8{width:18.343467pt;}
._f{width:19.799467pt;}
._2d{width:20.831787pt;}
._20{width:22.423680pt;}
._12{width:23.527161pt;}
._18{width:24.675719pt;}
._22{width:25.760960pt;}
._28{width:30.192640pt;}
._17{width:31.770986pt;}
._16{width:32.705280pt;}
._2a{width:40.242133pt;}
._2b{width:42.790080pt;}
._19{width:45.210240pt;}
._30{width:51.323840pt;}
._14{width:54.794531pt;}
._2c{width:62.715626pt;}
._1a{width:65.189546pt;}
._21{width:68.731200pt;}
._13{width:70.382293pt;}
._26{width:77.415893pt;}
._1c{width:82.457920pt;}
._29{width:108.216000pt;}
._2e{width:117.461120pt;}
._1e{width:125.676067pt;}
._1b{width:128.132906pt;}
._15{width:131.561599pt;}
._27{width:138.592320pt;}
._2f{width:142.442347pt;}
._25{width:149.899414pt;}
._23{width:152.783466pt;}
._1f{width:162.493866pt;}
._24{width:166.831573pt;}
._1d{width:180.243200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:6.960000pt;}
.yfd{bottom:6.986667pt;}
.y10c{bottom:7.040000pt;}
.y105{bottom:10.960000pt;}
.yf8{bottom:16.800000pt;}
.yfe{bottom:18.586667pt;}
.y110{bottom:22.560000pt;}
.yfc{bottom:22.586667pt;}
.y106{bottom:22.640000pt;}
.yf3{bottom:26.560000pt;}
.y104{bottom:26.640000pt;}
.yf9{bottom:28.400000pt;}
.yf7{bottom:32.400000pt;}
.y102{bottom:38.240000pt;}
.yfb{bottom:38.266667pt;}
.y101{bottom:42.240000pt;}
.y10b{bottom:42.320000pt;}
.yf6{bottom:48.000000pt;}
.y108{bottom:48.080000pt;}
.y112{bottom:53.840000pt;}
.y10e{bottom:53.920000pt;}
.y100{bottom:57.840000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y10a{bottom:99.226667pt;}
.y94{bottom:99.706667pt;}
.y4b{bottom:102.906667pt;}
.y70{bottom:114.826667pt;}
.y93{bottom:115.386667pt;}
.y27{bottom:116.506667pt;}
.yb7{bottom:117.386667pt;}
.y4a{bottom:118.506667pt;}
.yd9{bottom:123.386667pt;}
.y92{bottom:130.986667pt;}
.y26{bottom:132.106667pt;}
.y6f{bottom:146.426667pt;}
.y91{bottom:146.666667pt;}
.y25{bottom:147.786667pt;}
.yb6{bottom:149.066667pt;}
.y49{bottom:150.186667pt;}
.yd8{bottom:155.066667pt;}
.y136{bottom:158.026667pt;}
.y109{bottom:158.826667pt;}
.y24{bottom:163.386667pt;}
.y48{bottom:165.786667pt;}
.y90{bottom:170.266667pt;}
.y6e{bottom:178.106667pt;}
.yb5{bottom:180.666667pt;}
.y8f{bottom:185.866667pt;}
.yd7{bottom:186.666667pt;}
.y135{bottom:189.706667pt;}
.y47{bottom:194.426667pt;}
.y23{bottom:195.066667pt;}
.yd6{bottom:202.266667pt;}
.y134{bottom:205.306667pt;}
.y6d{bottom:209.706667pt;}
.y22{bottom:210.666667pt;}
.yb4{bottom:212.346667pt;}
.y107{bottom:214.346667pt;}
.y8e{bottom:217.546667pt;}
.yd5{bottom:217.946667pt;}
.y133{bottom:220.986667pt;}
.y21{bottom:226.266667pt;}
.yb3{bottom:227.946667pt;}
.yd4{bottom:233.546667pt;}
.y132{bottom:236.586667pt;}
.y6c{bottom:241.306667pt;}
.yb2{bottom:243.546667pt;}
.y8d{bottom:249.146667pt;}
.yd3{bottom:249.226667pt;}
.y131{bottom:252.186667pt;}
.y46{bottom:255.466667pt;}
.yed{bottom:255.626667pt;}
.y20{bottom:257.946667pt;}
.yb1{bottom:259.226667pt;}
.yd2{bottom:264.826667pt;}
.y130{bottom:267.866667pt;}
.y6b{bottom:272.986667pt;}
.y1f{bottom:273.546667pt;}
.yb0{bottom:274.826667pt;}
.y103{bottom:279.706667pt;}
.yd1{bottom:280.426667pt;}
.y8c{bottom:280.826667pt;}
.y12f{bottom:283.466667pt;}
.y45{bottom:287.066667pt;}
.yec{bottom:287.306667pt;}
.y1e{bottom:289.226667pt;}
.yaf{bottom:290.426667pt;}
.yd0{bottom:296.106667pt;}
.y12e{bottom:299.146667pt;}
.yeb{bottom:302.906667pt;}
.y6a{bottom:304.586667pt;}
.y1d{bottom:304.826667pt;}
.yae{bottom:306.106667pt;}
.y8b{bottom:312.426667pt;}
.y12d{bottom:314.746667pt;}
.y44{bottom:315.706667pt;}
.yea{bottom:318.506667pt;}
.ycf{bottom:319.706667pt;}
.y69{bottom:320.266667pt;}
.yad{bottom:329.706667pt;}
.y12c{bottom:330.346667pt;}
.ye9{bottom:334.186667pt;}
.yce{bottom:335.386667pt;}
.y68{bottom:335.866667pt;}
.y1c{bottom:336.426667pt;}
.yff{bottom:339.306667pt;}
.yac{bottom:345.386667pt;}
.y12b{bottom:346.026667pt;}
.y67{bottom:351.466667pt;}
.y1b{bottom:352.106667pt;}
.ye8{bottom:357.786667pt;}
.y12a{bottom:361.626667pt;}
.ycd{bottom:366.986667pt;}
.y66{bottom:367.146667pt;}
.y1a{bottom:367.706667pt;}
.yab{bottom:376.986667pt;}
.y129{bottom:377.306667pt;}
.y8a{bottom:377.546667pt;}
.y65{bottom:382.746667pt;}
.y19{bottom:383.386667pt;}
.y43{bottom:385.226667pt;}
.ye7{bottom:389.466667pt;}
.y128{bottom:392.906667pt;}
.y64{bottom:398.426667pt;}
.ycc{bottom:398.586667pt;}
.y18{bottom:398.986667pt;}
.y42{bottom:400.826667pt;}
.ye6{bottom:405.066667pt;}
.y127{bottom:408.506667pt;}
.yaa{bottom:408.586667pt;}
.y89{bottom:409.146667pt;}
.y63{bottom:414.026667pt;}
.yfa{bottom:414.506667pt;}
.ye5{bottom:420.693333pt;}
.y17{bottom:422.933333pt;}
.y88{bottom:424.853333pt;}
.y62{bottom:429.653333pt;}
.ycb{bottom:430.293333pt;}
.y41{bottom:432.533333pt;}
.ye4{bottom:436.373333pt;}
.y126{bottom:440.213333pt;}
.ya9{bottom:440.293333pt;}
.y87{bottom:440.453333pt;}
.y61{bottom:445.333333pt;}
.y40{bottom:448.133333pt;}
.y125{bottom:455.813333pt;}
.y86{bottom:456.053333pt;}
.yca{bottom:458.933333pt;}
.y16{bottom:466.133333pt;}
.ye3{bottom:467.973333pt;}
.y60{bottom:468.933333pt;}
.yf5{bottom:470.053333pt;}
.y124{bottom:471.493333pt;}
.y85{bottom:471.733333pt;}
.ya8{bottom:471.893333pt;}
.y3f{bottom:479.813333pt;}
.y5f{bottom:484.613333pt;}
.y123{bottom:487.093333pt;}
.y84{bottom:487.333333pt;}
.y3e{bottom:495.413333pt;}
.ye2{bottom:496.613333pt;}
.y15{bottom:499.013333pt;}
.ya7{bottom:500.533333pt;}
.y122{bottom:502.693333pt;}
.y83{bottom:503.013333pt;}
.y14{bottom:514.693333pt;}
.y5e{bottom:516.213333pt;}
.y121{bottom:518.373333pt;}
.y82{bottom:518.613333pt;}
.yc9{bottom:520.133333pt;}
.y3d{bottom:524.053333pt;}
.y13{bottom:530.293333pt;}
.yf2{bottom:535.413333pt;}
.ya6{bottom:539.573333pt;}
.y81{bottom:542.213333pt;}
.y120{bottom:542.293333pt;}
.y12{bottom:545.893333pt;}
.y5d{bottom:547.813333pt;}
.yc8{bottom:548.773333pt;}
.y14b{bottom:556.293333pt;}
.y80{bottom:557.893333pt;}
.y11{bottom:561.573333pt;}
.y5c{bottom:563.493333pt;}
.ya5{bottom:571.173333pt;}
.y14a{bottom:571.893333pt;}
.y10{bottom:577.173333pt;}
.y5b{bottom:579.093333pt;}
.y11f{bottom:585.093333pt;}
.y7f{bottom:589.493333pt;}
.yf{bottom:592.853333pt;}
.y5a{bottom:594.693333pt;}
.y149{bottom:595.493333pt;}
.yf1{bottom:598.293333pt;}
.y3c{bottom:600.613333pt;}
.y11e{bottom:601.493333pt;}
.ya4{bottom:602.773333pt;}
.ye{bottom:608.453333pt;}
.y59{bottom:610.373333pt;}
.y148{bottom:611.173333pt;}
.y3b{bottom:616.293333pt;}
.yc7{bottom:617.813333pt;}
.y11d{bottom:617.893333pt;}
.ya3{bottom:618.453333pt;}
.y7e{bottom:621.093333pt;}
.yf0{bottom:621.973333pt;}
.yd{bottom:624.053333pt;}
.ya2{bottom:634.053333pt;}
.y147{bottom:634.773333pt;}
.yc{bottom:639.733333pt;}
.y58{bottom:641.973333pt;}
.y3a{bottom:647.893333pt;}
.yc6{bottom:649.413333pt;}
.ya1{bottom:649.733333pt;}
.y11c{bottom:650.293333pt;}
.y146{bottom:650.373333pt;}
.y7d{bottom:652.773333pt;}
.yef{bottom:653.573333pt;}
.yb{bottom:655.333333pt;}
.y39{bottom:663.573333pt;}
.ya0{bottom:665.333333pt;}
.y11b{bottom:665.893333pt;}
.y57{bottom:670.613333pt;}
.y145{bottom:674.053333pt;}
.ya{bottom:679.253333pt;}
.y9f{bottom:680.933333pt;}
.yc5{bottom:681.093333pt;}
.y7c{bottom:681.413333pt;}
.y11a{bottom:681.573333pt;}
.yee{bottom:682.213333pt;}
.y144{bottom:689.653333pt;}
.y38{bottom:695.173333pt;}
.y9e{bottom:696.613333pt;}
.y119{bottom:697.173333pt;}
.y37{bottom:710.773333pt;}
.y9d{bottom:712.213333pt;}
.yc4{bottom:712.693333pt;}
.y118{bottom:712.773333pt;}
.y143{bottom:713.333333pt;}
.y9{bottom:722.213333pt;}
.yc3{bottom:728.293333pt;}
.y117{bottom:728.453333pt;}
.y9c{bottom:735.893333pt;}
.y142{bottom:736.933333pt;}
.y56{bottom:737.653333pt;}
.y36{bottom:742.453333pt;}
.yc2{bottom:743.973333pt;}
.y116{bottom:744.053333pt;}
.y9b{bottom:751.493333pt;}
.y141{bottom:752.533333pt;}
.y55{bottom:753.253333pt;}
.y8{bottom:753.813333pt;}
.y35{bottom:758.053333pt;}
.yc1{bottom:759.573333pt;}
.y115{bottom:759.733333pt;}
.yc0{bottom:775.253333pt;}
.y114{bottom:775.333333pt;}
.y140{bottom:776.213333pt;}
.y9a{bottom:783.093333pt;}
.y54{bottom:784.853333pt;}
.y7{bottom:785.653333pt;}
.y34{bottom:789.733333pt;}
.ybf{bottom:790.853333pt;}
.y113{bottom:798.933333pt;}
.y13f{bottom:799.813333pt;}
.y7b{bottom:801.973333pt;}
.ye1{bottom:805.653333pt;}
.ybe{bottom:806.453333pt;}
.y99{bottom:814.773333pt;}
.y13e{bottom:815.493333pt;}
.y53{bottom:816.533333pt;}
.y6{bottom:821.013333pt;}
.y33{bottom:821.333333pt;}
.y111{bottom:828.293333pt;}
.ybd{bottom:830.133333pt;}
.y52{bottom:832.133333pt;}
.y7a{bottom:833.653333pt;}
.y32{bottom:836.933333pt;}
.y5{bottom:837.013333pt;}
.ye0{bottom:837.253333pt;}
.y13d{bottom:839.093333pt;}
.ybc{bottom:845.733333pt;}
.y98{bottom:846.373333pt;}
.y79{bottom:849.253333pt;}
.y31{bottom:852.613333pt;}
.ydf{bottom:852.853333pt;}
.y13c{bottom:854.693333pt;}
.y51{bottom:855.813333pt;}
.y78{bottom:864.853333pt;}
.y4{bottom:865.733333pt;}
.y30{bottom:868.213333pt;}
.yde{bottom:868.533333pt;}
.ybb{bottom:877.413333pt;}
.y97{bottom:878.053333pt;}
.y13b{bottom:878.373333pt;}
.y77{bottom:880.533333pt;}
.y2f{bottom:883.813333pt;}
.ydd{bottom:884.133333pt;}
.y50{bottom:887.413333pt;}
.y76{bottom:896.133333pt;}
.y10f{bottom:899.520000pt;}
.y3{bottom:899.760000pt;}
.ydc{bottom:899.840000pt;}
.y13a{bottom:902.320000pt;}
.y4f{bottom:903.040000pt;}
.y2e{bottom:907.520000pt;}
.yba{bottom:909.040000pt;}
.y75{bottom:911.840000pt;}
.ydb{bottom:915.440000pt;}
.y74{bottom:927.440000pt;}
.y4e{bottom:934.720000pt;}
.y96{bottom:935.040000pt;}
.y2d{bottom:939.440000pt;}
.yb9{bottom:940.640000pt;}
.y73{bottom:943.040000pt;}
.yda{bottom:944.080000pt;}
.y139{bottom:945.200000pt;}
.y10d{bottom:955.040000pt;}
.y72{bottom:958.720000pt;}
.y4d{bottom:966.320000pt;}
.y95{bottom:966.720000pt;}
.y138{bottom:969.120000pt;}
.yb8{bottom:969.280000pt;}
.y71{bottom:974.320000pt;}
.y4c{bottom:982.000000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y137{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.ha{height:43.200000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.880000pt;}
.hc{height:54.906667pt;}
.h14{height:54.927899pt;}
.h9{height:55.631875pt;}
.he{height:58.880000pt;}
.h11{height:58.960000pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:64.640000pt;}
.hf{height:64.720000pt;}
.h13{height:70.506667pt;}
.h12{height:70.560000pt;}
.hd{height:74.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:82.800000pt;}
.w6{width:113.600000pt;}
.w7{width:130.240000pt;}
.w5{width:162.746667pt;}
.w3{width:179.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:61.679988pt;}
.x18{left:84.479988pt;}
.x19{left:98.879988pt;}
.x12{left:156.906655pt;}
.x2{left:180.266655pt;}
.x10{left:202.506655pt;}
.x14{left:241.466667pt;}
.x15{left:324.906667pt;}
.x4{left:370.426655pt;}
.xd{left:448.986655pt;}
.x7{left:450.426655pt;}
.x6{left:466.133322pt;}
.x16{left:488.293333pt;}
.x5{left:516.933322pt;}
.xe{left:530.053322pt;}
.xb{left:549.013322pt;}
.xc{left:551.253322pt;}
.xa{left:564.613322pt;}
.x8{left:575.013322pt;}
.x17{left:602.613333pt;}
.xf{left:649.173322pt;}
.x11{left:653.013322pt;}
.x3{left:704.053322pt;}
}




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