
    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_b8c327195112a0643c21cae7.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_5b61d36f48ed6e1258e34bc8.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_4c193de8e8552acb17bd9bd3.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_8fd038bfea07f602db89e169.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_1e08cf7d37f18b4d5316fe4f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b972a1c559e3ef610a4b9c10.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c8df638659316ea5d1f616c4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_47fbbcaf33bbf20cf3c1b564.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8c6e32f619edb73d1c4165ce.woff')format("woff");}.ff9{font-family:ff9;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls22{letter-spacing:-1.956000px;}
.lsf{letter-spacing:-1.596000px;}
.lsd{letter-spacing:-1.236000px;}
.ls14{letter-spacing:-1.206000px;}
.ls4f{letter-spacing:-1.146000px;}
.ls4d{letter-spacing:-1.116000px;}
.ls13{letter-spacing:-1.092000px;}
.ls5a{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.954000px;}
.ls24{letter-spacing:-0.936000px;}
.ls63{letter-spacing:-0.930000px;}
.ls23{letter-spacing:-0.876000px;}
.ls50{letter-spacing:-0.846000px;}
.ls46{letter-spacing:-0.756000px;}
.ls4e{letter-spacing:-0.738000px;}
.lse{letter-spacing:-0.732000px;}
.ls37{letter-spacing:-0.624000px;}
.ls4a{letter-spacing:-0.592800px;}
.ls36{letter-spacing:-0.576600px;}
.ls47{letter-spacing:-0.559200px;}
.ls2c{letter-spacing:-0.538800px;}
.ls49{letter-spacing:-0.485400px;}
.ls1c{letter-spacing:-0.481200px;}
.ls64{letter-spacing:-0.453000px;}
.ls4b{letter-spacing:-0.399000px;}
.ls2f{letter-spacing:-0.371400px;}
.ls56{letter-spacing:-0.291600px;}
.ls4c{letter-spacing:-0.261600px;}
.ls19{letter-spacing:-0.244200px;}
.ls1b{letter-spacing:-0.243600px;}
.ls34{letter-spacing:-0.199200px;}
.ls1f{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.178800px;}
.ls1d{letter-spacing:-0.160800px;}
.ls2e{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.125400px;}
.ls65{letter-spacing:-0.093000px;}
.lsa{letter-spacing:-0.090000px;}
.ls29{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.039000px;}
.ls2d{letter-spacing:-0.038880px;}
.ls2b{letter-spacing:-0.011160px;}
.ls57{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls25{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.051600px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6a{letter-spacing:0.098400px;}
.ls5f{letter-spacing:0.105600px;}
.ls3d{letter-spacing:0.115800px;}
.ls58{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.127200px;}
.ls9{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.160800px;}
.ls2a{letter-spacing:0.173400px;}
.ls68{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181200px;}
.ls45{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.199200px;}
.ls3e{letter-spacing:0.200160px;}
.ls5c{letter-spacing:0.348600px;}
.ls0{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.428400px;}
.ls55{letter-spacing:0.453600px;}
.ls10{letter-spacing:0.476400px;}
.ls66{letter-spacing:0.487200px;}
.ls1e{letter-spacing:0.541200px;}
.ls15{letter-spacing:0.559200px;}
.ls59{letter-spacing:0.594600px;}
.ls42{letter-spacing:0.813600px;}
.ls20{letter-spacing:0.834000px;}
.ls51{letter-spacing:0.918000px;}
.ls62{letter-spacing:1.044000px;}
.ls21{letter-spacing:1.194000px;}
.ls44{letter-spacing:1.533600px;}
.ls54{letter-spacing:2.253600px;}
.ls3f{letter-spacing:2.610000px;}
.ls61{letter-spacing:2.613600px;}
.ls33{letter-spacing:2.616000px;}
.ls5{letter-spacing:3.333600px;}
.ls3a{letter-spacing:3.693600px;}
.ls39{letter-spacing:4.413600px;}
.ls3b{letter-spacing:4.773600px;}
.ls38{letter-spacing:5.853600px;}
.ls43{letter-spacing:6.573600px;}
.ls6{letter-spacing:7.293600px;}
.ls40{letter-spacing:7.653600px;}
.ls26{letter-spacing:8.733600px;}
.ls31{letter-spacing:9.453600px;}
.ls52{letter-spacing:10.173600px;}
.ls32{letter-spacing:11.613600px;}
.ls5d{letter-spacing:11.973600px;}
.ls41{letter-spacing:12.333600px;}
.ls7{letter-spacing:13.053600px;}
.ls5e{letter-spacing:13.413600px;}
.ls53{letter-spacing:14.133600px;}
.ls5b{letter-spacing:14.493600px;}
.ls60{letter-spacing:18.093600px;}
.ls3c{letter-spacing:18.453600px;}
.ls28{letter-spacing:23.493600px;}
.ls27{letter-spacing:27.933600px;}
.ls69{letter-spacing:47.726640px;}
.ls67{letter-spacing:80.846640px;}
.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;}
}
.ws26{word-spacing:-60.120000px;}
.ws15{word-spacing:-14.493600px;}
.ws1a{word-spacing:-14.420400px;}
.ws3f{word-spacing:-14.270400px;}
.ws38{word-spacing:-14.144400px;}
.ws19{word-spacing:-14.060400px;}
.ws27{word-spacing:-14.012400px;}
.ws3c{word-spacing:-13.821000px;}
.wsd{word-spacing:-13.785600px;}
.ws17{word-spacing:-13.767600px;}
.ws44{word-spacing:-13.713600px;}
.ws7{word-spacing:-13.702800px;}
.ws3e{word-spacing:-13.575000px;}
.ws12{word-spacing:-13.425600px;}
.ws2b{word-spacing:-13.424400px;}
.wsf{word-spacing:-13.407600px;}
.ws1f{word-spacing:-13.399800px;}
.ws29{word-spacing:-13.387200px;}
.ws8{word-spacing:-13.353600px;}
.ws3b{word-spacing:-13.342800px;}
.ws31{word-spacing:-13.342200px;}
.ws40{word-spacing:-13.332000px;}
.ws45{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.278000px;}
.ws20{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws39{word-spacing:-13.218840px;}
.ws21{word-spacing:-13.215240px;}
.ws23{word-spacing:-13.187520px;}
.wse{word-spacing:-13.187400px;}
.ws2{word-spacing:-13.162800px;}
.ws43{word-spacing:-13.133400px;}
.ws9{word-spacing:-13.101000px;}
.ws24{word-spacing:-13.072800px;}
.ws16{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.047600px;}
.ws18{word-spacing:-13.039800px;}
.ws28{word-spacing:-13.027200px;}
.ws13{word-spacing:-12.982800px;}
.ws11{word-spacing:-12.982200px;}
.ws33{word-spacing:-12.964800px;}
.ws25{word-spacing:-12.855000px;}
.ws32{word-spacing:-12.827400px;}
.ws42{word-spacing:-12.773400px;}
.ws2f{word-spacing:-12.741000px;}
.ws22{word-spacing:-12.687600px;}
.ws2d{word-spacing:-12.667200px;}
.ws2a{word-spacing:-12.649800px;}
.ws30{word-spacing:-12.633600px;}
.ws3a{word-spacing:-12.602400px;}
.ws5{word-spacing:-12.494400px;}
.ws35{word-spacing:-12.488400px;}
.ws2c{word-spacing:-12.470400px;}
.ws37{word-spacing:-12.380400px;}
.ws1c{word-spacing:-12.350400px;}
.ws41{word-spacing:-12.296400px;}
.ws1d{word-spacing:-12.290400px;}
.ws2e{word-spacing:-12.272400px;}
.ws3d{word-spacing:-12.218400px;}
.wsb{word-spacing:-12.134400px;}
.ws34{word-spacing:-12.110400px;}
.ws36{word-spacing:-12.080400px;}
.wsc{word-spacing:-12.020400px;}
.ws4{word-spacing:-11.990400px;}
.ws6{word-spacing:-11.630400px;}
.ws1b{word-spacing:-11.270400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1e{word-spacing:0.000000px;}
.ws14{word-spacing:3.584880px;}
._24{margin-left:-6.707328px;}
._14{margin-left:-5.289167px;}
._11{margin-left:-3.685680px;}
._12{margin-left:-2.271240px;}
._0{margin-left:-1.158000px;}
._1{width:1.174152px;}
._9{width:2.336280px;}
._7{width:3.522480px;}
._c{width:4.704312px;}
._5{width:5.959440px;}
._3{width:7.080840px;}
._2{width:8.676720px;}
._f{width:9.953328px;}
._4{width:11.153736px;}
._1e{width:12.186577px;}
._8{width:15.213288px;}
._13{width:17.137440px;}
._d{width:18.560880px;}
._17{width:19.738944px;}
._b{width:21.117528px;}
._6{width:22.190760px;}
._16{width:23.477208px;}
._10{width:24.489240px;}
._a{width:26.100792px;}
._1c{width:27.189168px;}
._e{width:28.216320px;}
._1a{width:30.021146px;}
._18{width:31.885703px;}
._20{width:33.276888px;}
._22{width:34.986047px;}
._1b{width:37.306440px;}
._21{width:38.747544px;}
._23{width:40.028183px;}
._1f{width:42.463920px;}
._19{width:44.940024px;}
._1d{width:47.846521px;}
._15{width:57.099408px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2e{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y2d{bottom:109.830000px;}
.y2a{bottom:128.370000px;}
.y103{bottom:131.520000px;}
.yd5{bottom:136.200000px;}
.y73{bottom:138.360000px;}
.ya3{bottom:142.860000px;}
.y29{bottom:145.920000px;}
.y102{bottom:149.160000px;}
.yd4{bottom:153.840000px;}
.y72{bottom:155.910000px;}
.ya2{bottom:160.410000px;}
.y28{bottom:163.560000px;}
.y120{bottom:165.630000px;}
.y101{bottom:166.710000px;}
.yd3{bottom:171.390000px;}
.y71{bottom:173.550000px;}
.ya1{bottom:178.050000px;}
.y27{bottom:181.110000px;}
.y100{bottom:184.350000px;}
.yd2{bottom:188.940000px;}
.y70{bottom:191.100000px;}
.y11f{bottom:192.180000px;}
.ya0{bottom:195.600000px;}
.y26{bottom:198.750000px;}
.yd1{bottom:206.580000px;}
.y6f{bottom:208.740000px;}
.y11e{bottom:209.730000px;}
.yff{bottom:211.530000px;}
.y9f{bottom:213.150000px;}
.y25{bottom:216.300000px;}
.yd0{bottom:224.130000px;}
.y6e{bottom:226.290000px;}
.y9e{bottom:230.790000px;}
.y24{bottom:233.850000px;}
.y11d{bottom:236.370000px;}
.y6d{bottom:243.840000px;}
.y9d{bottom:248.340000px;}
.ycf{bottom:250.680000px;}
.y23{bottom:251.490000px;}
.y11c{bottom:253.920000px;}
.yfe{bottom:260.580000px;}
.y6c{bottom:261.480000px;}
.y9c{bottom:265.980000px;}
.y22{bottom:269.040000px;}
.yfd{bottom:278.130000px;}
.y11b{bottom:280.560000px;}
.y9b{bottom:283.530000px;}
.yce{bottom:286.320000px;}
.y21{bottom:286.680000px;}
.yfc{bottom:295.680000px;}
.y6b{bottom:297.030000px;}
.y11a{bottom:298.110000px;}
.y9a{bottom:301.080000px;}
.ycd{bottom:303.870000px;}
.y20{bottom:304.230000px;}
.y58{bottom:307.020000px;}
.yfb{bottom:313.320000px;}
.y6a{bottom:314.670000px;}
.y99{bottom:318.720000px;}
.ycc{bottom:321.510000px;}
.y1f{bottom:321.780000px;}
.y57{bottom:324.570000px;}
.y119{bottom:324.660000px;}
.yfa{bottom:330.870000px;}
.y69{bottom:332.220000px;}
.y98{bottom:336.270000px;}
.ycb{bottom:339.060000px;}
.y1e{bottom:339.420000px;}
.y56{bottom:342.210000px;}
.yf9{bottom:348.510000px;}
.y68{bottom:349.770000px;}
.y118{bottom:351.300000px;}
.y97{bottom:353.820000px;}
.yca{bottom:356.610000px;}
.y1d{bottom:356.970000px;}
.y55{bottom:359.760000px;}
.yf8{bottom:366.060000px;}
.y67{bottom:367.410000px;}
.yc9{bottom:374.250000px;}
.y54{bottom:377.310000px;}
.y117{bottom:377.850000px;}
.yf7{bottom:383.610000px;}
.y1c{bottom:384.240000px;}
.y66{bottom:384.960000px;}
.y96{bottom:389.460000px;}
.yc8{bottom:391.800000px;}
.y53{bottom:394.950000px;}
.y116{bottom:395.490000px;}
.yf6{bottom:401.250000px;}
.y65{bottom:402.600000px;}
.y95{bottom:407.010000px;}
.yc7{bottom:409.440000px;}
.y52{bottom:412.500000px;}
.yf5{bottom:418.800000px;}
.y64{bottom:420.150000px;}
.y115{bottom:422.040000px;}
.y94{bottom:424.650000px;}
.yc6{bottom:426.990000px;}
.y51{bottom:430.140000px;}
.y1b{bottom:433.560000px;}
.yf4{bottom:436.440000px;}
.y63{bottom:437.700000px;}
.y93{bottom:442.200000px;}
.y50{bottom:447.690000px;}
.y114{bottom:448.590000px;}
.yf3{bottom:453.990000px;}
.yc5{bottom:462.540000px;}
.y4f{bottom:465.240000px;}
.y113{bottom:466.230000px;}
.y92{bottom:468.750000px;}
.y1a{bottom:470.580000px;}
.yf2{bottom:471.570000px;}
.y62{bottom:473.370000px;}
.yc4{bottom:480.210000px;}
.y4e{bottom:482.910000px;}
.y19{bottom:488.220000px;}
.yf1{bottom:489.210000px;}
.y112{bottom:492.810000px;}
.y4d{bottom:500.460000px;}
.y61{bottom:500.550000px;}
.y91{bottom:504.420000px;}
.y18{bottom:505.770000px;}
.yc3{bottom:506.760000px;}
.y111{bottom:510.360000px;}
.y90{bottom:521.970000px;}
.y17{bottom:523.320000px;}
.yf0{bottom:524.400000px;}
.y138{bottom:531.330000px;}
.y4c{bottom:536.100000px;}
.y110{bottom:537.000000px;}
.y8f{bottom:539.610000px;}
.y16{bottom:540.960000px;}
.yef{bottom:541.950000px;}
.yc2{bottom:542.400000px;}
.y137{bottom:548.880000px;}
.y60{bottom:549.600000px;}
.y4b{bottom:553.650000px;}
.y8e{bottom:557.160000px;}
.y15{bottom:558.510000px;}
.yee{bottom:559.500000px;}
.yc1{bottom:559.950000px;}
.y10f{bottom:563.550000px;}
.y5f{bottom:567.150000px;}
.y4a{bottom:571.200000px;}
.y8d{bottom:574.710000px;}
.y136{bottom:575.430000px;}
.y14{bottom:576.150000px;}
.yed{bottom:577.140000px;}
.yc0{bottom:577.500000px;}
.y10e{bottom:581.190000px;}
.y5e{bottom:584.790000px;}
.y8c{bottom:592.350000px;}
.y135{bottom:593.070000px;}
.y13{bottom:593.700000px;}
.yec{bottom:594.690000px;}
.ybf{bottom:595.140000px;}
.y5d{bottom:602.340000px;}
.y49{bottom:606.840000px;}
.y10d{bottom:607.740000px;}
.y8b{bottom:609.900000px;}
.y134{bottom:610.620000px;}
.y12{bottom:611.250000px;}
.yeb{bottom:612.330000px;}
.ybe{bottom:612.690000px;}
.y5c{bottom:619.890000px;}
.y48{bottom:624.390000px;}
.y10c{bottom:625.290000px;}
.y8a{bottom:627.540000px;}
.y11{bottom:628.890000px;}
.yea{bottom:629.880000px;}
.ybd{bottom:630.330000px;}
.y133{bottom:637.260000px;}
.y5b{bottom:637.530000px;}
.y47{bottom:641.940000px;}
.y10b{bottom:642.930000px;}
.y89{bottom:645.090000px;}
.y10{bottom:646.440000px;}
.ye9{bottom:647.430000px;}
.ybc{bottom:647.880000px;}
.y132{bottom:654.810000px;}
.y5a{bottom:655.080000px;}
.y46{bottom:659.580000px;}
.yf{bottom:663.990000px;}
.ye8{bottom:665.070000px;}
.ybb{bottom:665.430000px;}
.y10a{bottom:669.480000px;}
.y45{bottom:677.130000px;}
.y88{bottom:680.640000px;}
.y131{bottom:681.360000px;}
.ye{bottom:681.630000px;}
.yba{bottom:683.070000px;}
.y109{bottom:687.120000px;}
.y59{bottom:687.300000px;}
.ye7{bottom:691.620000px;}
.y44{bottom:694.770000px;}
.y87{bottom:698.280000px;}
.yd{bottom:699.180000px;}
.yb9{bottom:700.620000px;}
.y130{bottom:708.000000px;}
.y108{bottom:713.670000px;}
.y86{bottom:715.830000px;}
.yc{bottom:716.820000px;}
.yb8{bottom:718.260000px;}
.y12f{bottom:725.550000px;}
.ye6{bottom:727.260000px;}
.y43{bottom:730.320000px;}
.y85{bottom:733.470000px;}
.yb{bottom:734.370000px;}
.yb7{bottom:735.810000px;}
.y107{bottom:740.940000px;}
.ye5{bottom:744.810000px;}
.y42{bottom:747.870000px;}
.y84{bottom:751.020000px;}
.ya{bottom:751.920000px;}
.y12e{bottom:752.190000px;}
.yb6{bottom:753.360000px;}
.ye4{bottom:762.360000px;}
.y41{bottom:765.510000px;}
.y12d{bottom:769.740000px;}
.yb5{bottom:771.000000px;}
.y83{bottom:778.290000px;}
.y9{bottom:779.190000px;}
.ye3{bottom:780.000000px;}
.y40{bottom:783.060000px;}
.yb4{bottom:788.550000px;}
.y106{bottom:789.900000px;}
.y12c{bottom:796.290000px;}
.y3f{bottom:800.700000px;}
.yb3{bottom:806.190000px;}
.y12b{bottom:813.930000px;}
.ye2{bottom:815.550000px;}
.y105{bottom:816.810000px;}
.y3e{bottom:818.250000px;}
.yb2{bottom:823.740000px;}
.y82{bottom:827.250000px;}
.y8{bottom:828.240000px;}
.ye1{bottom:833.190000px;}
.y12a{bottom:840.480000px;}
.yb1{bottom:841.290000px;}
.y81{bottom:844.800000px;}
.y3d{bottom:845.520000px;}
.ye0{bottom:850.740000px;}
.y104{bottom:854.520000px;}
.y129{bottom:858.030000px;}
.yb0{bottom:858.930000px;}
.y80{bottom:862.440000px;}
.y7{bottom:863.790000px;}
.ydf{bottom:868.290000px;}
.yaf{bottom:876.480000px;}
.y7f{bottom:879.990000px;}
.y128{bottom:884.670000px;}
.yde{bottom:885.930000px;}
.yae{bottom:894.030000px;}
.y3c{bottom:894.480000px;}
.y7e{bottom:897.630000px;}
.y6{bottom:899.610000px;}
.y127{bottom:902.220000px;}
.ydd{bottom:903.480000px;}
.yad{bottom:911.670000px;}
.y3b{bottom:912.030000px;}
.y7d{bottom:915.180000px;}
.ydc{bottom:921.030000px;}
.y126{bottom:928.860000px;}
.yac{bottom:929.220000px;}
.y3a{bottom:929.670000px;}
.y7c{bottom:932.730000px;}
.y5{bottom:935.610000px;}
.ydb{bottom:938.670000px;}
.y125{bottom:946.410000px;}
.yab{bottom:946.860000px;}
.y39{bottom:947.220000px;}
.y7b{bottom:950.370000px;}
.yda{bottom:956.220000px;}
.yaa{bottom:964.410000px;}
.y38{bottom:964.860000px;}
.y7a{bottom:967.920000px;}
.y4{bottom:971.700000px;}
.y124{bottom:972.960000px;}
.yd9{bottom:973.860000px;}
.ya9{bottom:981.960000px;}
.y37{bottom:982.410000px;}
.y79{bottom:985.560000px;}
.yd8{bottom:991.410000px;}
.y123{bottom:999.600000px;}
.y36{bottom:999.960000px;}
.y78{bottom:1003.110000px;}
.ya8{bottom:1008.600000px;}
.yd7{bottom:1008.960000px;}
.y3{bottom:1009.980000px;}
.y122{bottom:1017.180000px;}
.y35{bottom:1017.630000px;}
.y77{bottom:1020.690000px;}
.yd6{bottom:1026.630000px;}
.y34{bottom:1035.180000px;}
.y76{bottom:1038.330000px;}
.y121{bottom:1043.820000px;}
.ya7{bottom:1044.180000px;}
.y33{bottom:1052.820000px;}
.ya6{bottom:1061.820000px;}
.y75{bottom:1065.510000px;}
.y32{bottom:1070.370000px;}
.ya5{bottom:1079.370000px;}
.y31{bottom:1087.920000px;}
.ya4{bottom:1096.920000px;}
.y30{bottom:1105.560000px;}
.y74{bottom:1114.560000px;}
.y2f{bottom:1132.110000px;}
.y2c{bottom:1167.750000px;}
.y2b{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.004492px;}
.h7{height:60.960938px;}
.hb{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x5{left:72.449987px;}
.x7{left:77.939987px;}
.x6{left:79.649987px;}
.x8{left:101.249987px;}
.x9{left:111.239987px;}
.x2{left:192.719987px;}
.x4{left:771.809987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls22{letter-spacing:-1.738667pt;}
.lsf{letter-spacing:-1.418667pt;}
.lsd{letter-spacing:-1.098667pt;}
.ls14{letter-spacing:-1.072000pt;}
.ls4f{letter-spacing:-1.018667pt;}
.ls4d{letter-spacing:-0.992000pt;}
.ls13{letter-spacing:-0.970667pt;}
.ls5a{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.848000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls63{letter-spacing:-0.826667pt;}
.ls23{letter-spacing:-0.778667pt;}
.ls50{letter-spacing:-0.752000pt;}
.ls46{letter-spacing:-0.672000pt;}
.ls4e{letter-spacing:-0.656000pt;}
.lse{letter-spacing:-0.650667pt;}
.ls37{letter-spacing:-0.554667pt;}
.ls4a{letter-spacing:-0.526933pt;}
.ls36{letter-spacing:-0.512533pt;}
.ls47{letter-spacing:-0.497067pt;}
.ls2c{letter-spacing:-0.478933pt;}
.ls49{letter-spacing:-0.431467pt;}
.ls1c{letter-spacing:-0.427733pt;}
.ls64{letter-spacing:-0.402667pt;}
.ls4b{letter-spacing:-0.354667pt;}
.ls2f{letter-spacing:-0.330133pt;}
.ls56{letter-spacing:-0.259200pt;}
.ls4c{letter-spacing:-0.232533pt;}
.ls19{letter-spacing:-0.217067pt;}
.ls1b{letter-spacing:-0.216533pt;}
.ls34{letter-spacing:-0.177067pt;}
.ls1f{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls1d{letter-spacing:-0.142933pt;}
.ls2e{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.111467pt;}
.ls65{letter-spacing:-0.082667pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls29{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.034667pt;}
.ls2d{letter-spacing:-0.034560pt;}
.ls2b{letter-spacing:-0.009920pt;}
.ls57{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls25{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.045867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6a{letter-spacing:0.087467pt;}
.ls5f{letter-spacing:0.093867pt;}
.ls3d{letter-spacing:0.102933pt;}
.ls58{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.113067pt;}
.ls9{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.142933pt;}
.ls2a{letter-spacing:0.154133pt;}
.ls68{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161067pt;}
.ls45{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls3e{letter-spacing:0.177920pt;}
.ls5c{letter-spacing:0.309867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.380800pt;}
.ls55{letter-spacing:0.403200pt;}
.ls10{letter-spacing:0.423467pt;}
.ls66{letter-spacing:0.433067pt;}
.ls1e{letter-spacing:0.481067pt;}
.ls15{letter-spacing:0.497067pt;}
.ls59{letter-spacing:0.528533pt;}
.ls42{letter-spacing:0.723200pt;}
.ls20{letter-spacing:0.741333pt;}
.ls51{letter-spacing:0.816000pt;}
.ls62{letter-spacing:0.928000pt;}
.ls21{letter-spacing:1.061333pt;}
.ls44{letter-spacing:1.363200pt;}
.ls54{letter-spacing:2.003200pt;}
.ls3f{letter-spacing:2.320000pt;}
.ls61{letter-spacing:2.323200pt;}
.ls33{letter-spacing:2.325333pt;}
.ls5{letter-spacing:2.963200pt;}
.ls3a{letter-spacing:3.283200pt;}
.ls39{letter-spacing:3.923200pt;}
.ls3b{letter-spacing:4.243200pt;}
.ls38{letter-spacing:5.203200pt;}
.ls43{letter-spacing:5.843200pt;}
.ls6{letter-spacing:6.483200pt;}
.ls40{letter-spacing:6.803200pt;}
.ls26{letter-spacing:7.763200pt;}
.ls31{letter-spacing:8.403200pt;}
.ls52{letter-spacing:9.043200pt;}
.ls32{letter-spacing:10.323200pt;}
.ls5d{letter-spacing:10.643200pt;}
.ls41{letter-spacing:10.963200pt;}
.ls7{letter-spacing:11.603200pt;}
.ls5e{letter-spacing:11.923200pt;}
.ls53{letter-spacing:12.563200pt;}
.ls5b{letter-spacing:12.883200pt;}
.ls60{letter-spacing:16.083200pt;}
.ls3c{letter-spacing:16.403200pt;}
.ls28{letter-spacing:20.883200pt;}
.ls27{letter-spacing:24.829867pt;}
.ls69{letter-spacing:42.423680pt;}
.ls67{letter-spacing:71.863680pt;}
.ws26{word-spacing:-53.440000pt;}
.ws15{word-spacing:-12.883200pt;}
.ws1a{word-spacing:-12.818133pt;}
.ws3f{word-spacing:-12.684800pt;}
.ws38{word-spacing:-12.572800pt;}
.ws19{word-spacing:-12.498133pt;}
.ws27{word-spacing:-12.455467pt;}
.ws3c{word-spacing:-12.285333pt;}
.wsd{word-spacing:-12.253867pt;}
.ws17{word-spacing:-12.237867pt;}
.ws44{word-spacing:-12.189867pt;}
.ws7{word-spacing:-12.180267pt;}
.ws3e{word-spacing:-12.066667pt;}
.ws12{word-spacing:-11.933867pt;}
.ws2b{word-spacing:-11.932800pt;}
.wsf{word-spacing:-11.917867pt;}
.ws1f{word-spacing:-11.910933pt;}
.ws29{word-spacing:-11.899733pt;}
.ws8{word-spacing:-11.869867pt;}
.ws3b{word-spacing:-11.860267pt;}
.ws31{word-spacing:-11.859733pt;}
.ws40{word-spacing:-11.850667pt;}
.ws45{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.802667pt;}
.ws20{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws39{word-spacing:-11.750080pt;}
.ws21{word-spacing:-11.746880pt;}
.ws23{word-spacing:-11.722240pt;}
.wse{word-spacing:-11.722133pt;}
.ws2{word-spacing:-11.700267pt;}
.ws43{word-spacing:-11.674133pt;}
.ws9{word-spacing:-11.645333pt;}
.ws24{word-spacing:-11.620267pt;}
.ws16{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.597867pt;}
.ws18{word-spacing:-11.590933pt;}
.ws28{word-spacing:-11.579733pt;}
.ws13{word-spacing:-11.540267pt;}
.ws11{word-spacing:-11.539733pt;}
.ws33{word-spacing:-11.524267pt;}
.ws25{word-spacing:-11.426667pt;}
.ws32{word-spacing:-11.402133pt;}
.ws42{word-spacing:-11.354133pt;}
.ws2f{word-spacing:-11.325333pt;}
.ws22{word-spacing:-11.277867pt;}
.ws2d{word-spacing:-11.259733pt;}
.ws2a{word-spacing:-11.244267pt;}
.ws30{word-spacing:-11.229867pt;}
.ws3a{word-spacing:-11.202133pt;}
.ws5{word-spacing:-11.106133pt;}
.ws35{word-spacing:-11.100800pt;}
.ws2c{word-spacing:-11.084800pt;}
.ws37{word-spacing:-11.004800pt;}
.ws1c{word-spacing:-10.978133pt;}
.ws41{word-spacing:-10.930133pt;}
.ws1d{word-spacing:-10.924800pt;}
.ws2e{word-spacing:-10.908800pt;}
.ws3d{word-spacing:-10.860800pt;}
.wsb{word-spacing:-10.786133pt;}
.ws34{word-spacing:-10.764800pt;}
.ws36{word-spacing:-10.738133pt;}
.wsc{word-spacing:-10.684800pt;}
.ws4{word-spacing:-10.658133pt;}
.ws6{word-spacing:-10.338133pt;}
.ws1b{word-spacing:-10.018133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1e{word-spacing:0.000000pt;}
.ws14{word-spacing:3.186560pt;}
._24{margin-left:-5.962069pt;}
._14{margin-left:-4.701481pt;}
._11{margin-left:-3.276160pt;}
._12{margin-left:-2.018880pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.043691pt;}
._9{width:2.076693pt;}
._7{width:3.131093pt;}
._c{width:4.181611pt;}
._5{width:5.297280pt;}
._3{width:6.294080pt;}
._2{width:7.712640pt;}
._f{width:8.847402pt;}
._4{width:9.914432pt;}
._1e{width:10.832513pt;}
._8{width:13.522922pt;}
._13{width:15.233280pt;}
._d{width:16.498560pt;}
._17{width:17.545728pt;}
._b{width:18.771136pt;}
._6{width:19.725120pt;}
._16{width:20.868629pt;}
._10{width:21.768213pt;}
._a{width:23.200704pt;}
._1c{width:24.168149pt;}
._e{width:25.081173pt;}
._1a{width:26.685463pt;}
._18{width:28.342847pt;}
._20{width:29.579456pt;}
._22{width:31.098708pt;}
._1b{width:33.161280pt;}
._21{width:34.442262pt;}
._23{width:35.580607pt;}
._1f{width:37.745707pt;}
._19{width:39.946688pt;}
._1d{width:42.530241pt;}
._15{width:50.755029pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2e{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y2d{bottom:97.626667pt;}
.y2a{bottom:114.106667pt;}
.y103{bottom:116.906667pt;}
.yd5{bottom:121.066667pt;}
.y73{bottom:122.986667pt;}
.ya3{bottom:126.986667pt;}
.y29{bottom:129.706667pt;}
.y102{bottom:132.586667pt;}
.yd4{bottom:136.746667pt;}
.y72{bottom:138.586667pt;}
.ya2{bottom:142.586667pt;}
.y28{bottom:145.386667pt;}
.y120{bottom:147.226667pt;}
.y101{bottom:148.186667pt;}
.yd3{bottom:152.346667pt;}
.y71{bottom:154.266667pt;}
.ya1{bottom:158.266667pt;}
.y27{bottom:160.986667pt;}
.y100{bottom:163.866667pt;}
.yd2{bottom:167.946667pt;}
.y70{bottom:169.866667pt;}
.y11f{bottom:170.826667pt;}
.ya0{bottom:173.866667pt;}
.y26{bottom:176.666667pt;}
.yd1{bottom:183.626667pt;}
.y6f{bottom:185.546667pt;}
.y11e{bottom:186.426667pt;}
.yff{bottom:188.026667pt;}
.y9f{bottom:189.466667pt;}
.y25{bottom:192.266667pt;}
.yd0{bottom:199.226667pt;}
.y6e{bottom:201.146667pt;}
.y9e{bottom:205.146667pt;}
.y24{bottom:207.866667pt;}
.y11d{bottom:210.106667pt;}
.y6d{bottom:216.746667pt;}
.y9d{bottom:220.746667pt;}
.ycf{bottom:222.826667pt;}
.y23{bottom:223.546667pt;}
.y11c{bottom:225.706667pt;}
.yfe{bottom:231.626667pt;}
.y6c{bottom:232.426667pt;}
.y9c{bottom:236.426667pt;}
.y22{bottom:239.146667pt;}
.yfd{bottom:247.226667pt;}
.y11b{bottom:249.386667pt;}
.y9b{bottom:252.026667pt;}
.yce{bottom:254.506667pt;}
.y21{bottom:254.826667pt;}
.yfc{bottom:262.826667pt;}
.y6b{bottom:264.026667pt;}
.y11a{bottom:264.986667pt;}
.y9a{bottom:267.626667pt;}
.ycd{bottom:270.106667pt;}
.y20{bottom:270.426667pt;}
.y58{bottom:272.906667pt;}
.yfb{bottom:278.506667pt;}
.y6a{bottom:279.706667pt;}
.y99{bottom:283.306667pt;}
.ycc{bottom:285.786667pt;}
.y1f{bottom:286.026667pt;}
.y57{bottom:288.506667pt;}
.y119{bottom:288.586667pt;}
.yfa{bottom:294.106667pt;}
.y69{bottom:295.306667pt;}
.y98{bottom:298.906667pt;}
.ycb{bottom:301.386667pt;}
.y1e{bottom:301.706667pt;}
.y56{bottom:304.186667pt;}
.yf9{bottom:309.786667pt;}
.y68{bottom:310.906667pt;}
.y118{bottom:312.266667pt;}
.y97{bottom:314.506667pt;}
.yca{bottom:316.986667pt;}
.y1d{bottom:317.306667pt;}
.y55{bottom:319.786667pt;}
.yf8{bottom:325.386667pt;}
.y67{bottom:326.586667pt;}
.yc9{bottom:332.666667pt;}
.y54{bottom:335.386667pt;}
.y117{bottom:335.866667pt;}
.yf7{bottom:340.986667pt;}
.y1c{bottom:341.546667pt;}
.y66{bottom:342.186667pt;}
.y96{bottom:346.186667pt;}
.yc8{bottom:348.266667pt;}
.y53{bottom:351.066667pt;}
.y116{bottom:351.546667pt;}
.yf6{bottom:356.666667pt;}
.y65{bottom:357.866667pt;}
.y95{bottom:361.786667pt;}
.yc7{bottom:363.946667pt;}
.y52{bottom:366.666667pt;}
.yf5{bottom:372.266667pt;}
.y64{bottom:373.466667pt;}
.y115{bottom:375.146667pt;}
.y94{bottom:377.466667pt;}
.yc6{bottom:379.546667pt;}
.y51{bottom:382.346667pt;}
.y1b{bottom:385.386667pt;}
.yf4{bottom:387.946667pt;}
.y63{bottom:389.066667pt;}
.y93{bottom:393.066667pt;}
.y50{bottom:397.946667pt;}
.y114{bottom:398.746667pt;}
.yf3{bottom:403.546667pt;}
.yc5{bottom:411.146667pt;}
.y4f{bottom:413.546667pt;}
.y113{bottom:414.426667pt;}
.y92{bottom:416.666667pt;}
.y1a{bottom:418.293333pt;}
.yf2{bottom:419.173333pt;}
.y62{bottom:420.773333pt;}
.yc4{bottom:426.853333pt;}
.y4e{bottom:429.253333pt;}
.y19{bottom:433.973333pt;}
.yf1{bottom:434.853333pt;}
.y112{bottom:438.053333pt;}
.y4d{bottom:444.853333pt;}
.y61{bottom:444.933333pt;}
.y91{bottom:448.373333pt;}
.y18{bottom:449.573333pt;}
.yc3{bottom:450.453333pt;}
.y111{bottom:453.653333pt;}
.y90{bottom:463.973333pt;}
.y17{bottom:465.173333pt;}
.yf0{bottom:466.133333pt;}
.y138{bottom:472.293333pt;}
.y4c{bottom:476.533333pt;}
.y110{bottom:477.333333pt;}
.y8f{bottom:479.653333pt;}
.y16{bottom:480.853333pt;}
.yef{bottom:481.733333pt;}
.yc2{bottom:482.133333pt;}
.y137{bottom:487.893333pt;}
.y60{bottom:488.533333pt;}
.y4b{bottom:492.133333pt;}
.y8e{bottom:495.253333pt;}
.y15{bottom:496.453333pt;}
.yee{bottom:497.333333pt;}
.yc1{bottom:497.733333pt;}
.y10f{bottom:500.933333pt;}
.y5f{bottom:504.133333pt;}
.y4a{bottom:507.733333pt;}
.y8d{bottom:510.853333pt;}
.y136{bottom:511.493333pt;}
.y14{bottom:512.133333pt;}
.yed{bottom:513.013333pt;}
.yc0{bottom:513.333333pt;}
.y10e{bottom:516.613333pt;}
.y5e{bottom:519.813333pt;}
.y8c{bottom:526.533333pt;}
.y135{bottom:527.173333pt;}
.y13{bottom:527.733333pt;}
.yec{bottom:528.613333pt;}
.ybf{bottom:529.013333pt;}
.y5d{bottom:535.413333pt;}
.y49{bottom:539.413333pt;}
.y10d{bottom:540.213333pt;}
.y8b{bottom:542.133333pt;}
.y134{bottom:542.773333pt;}
.y12{bottom:543.333333pt;}
.yeb{bottom:544.293333pt;}
.ybe{bottom:544.613333pt;}
.y5c{bottom:551.013333pt;}
.y48{bottom:555.013333pt;}
.y10c{bottom:555.813333pt;}
.y8a{bottom:557.813333pt;}
.y11{bottom:559.013333pt;}
.yea{bottom:559.893333pt;}
.ybd{bottom:560.293333pt;}
.y133{bottom:566.453333pt;}
.y5b{bottom:566.693333pt;}
.y47{bottom:570.613333pt;}
.y10b{bottom:571.493333pt;}
.y89{bottom:573.413333pt;}
.y10{bottom:574.613333pt;}
.ye9{bottom:575.493333pt;}
.ybc{bottom:575.893333pt;}
.y132{bottom:582.053333pt;}
.y5a{bottom:582.293333pt;}
.y46{bottom:586.293333pt;}
.yf{bottom:590.213333pt;}
.ye8{bottom:591.173333pt;}
.ybb{bottom:591.493333pt;}
.y10a{bottom:595.093333pt;}
.y45{bottom:601.893333pt;}
.y88{bottom:605.013333pt;}
.y131{bottom:605.653333pt;}
.ye{bottom:605.893333pt;}
.yba{bottom:607.173333pt;}
.y109{bottom:610.773333pt;}
.y59{bottom:610.933333pt;}
.ye7{bottom:614.773333pt;}
.y44{bottom:617.573333pt;}
.y87{bottom:620.693333pt;}
.yd{bottom:621.493333pt;}
.yb9{bottom:622.773333pt;}
.y130{bottom:629.333333pt;}
.y108{bottom:634.373333pt;}
.y86{bottom:636.293333pt;}
.yc{bottom:637.173333pt;}
.yb8{bottom:638.453333pt;}
.y12f{bottom:644.933333pt;}
.ye6{bottom:646.453333pt;}
.y43{bottom:649.173333pt;}
.y85{bottom:651.973333pt;}
.yb{bottom:652.773333pt;}
.yb7{bottom:654.053333pt;}
.y107{bottom:658.613333pt;}
.ye5{bottom:662.053333pt;}
.y42{bottom:664.773333pt;}
.y84{bottom:667.573333pt;}
.ya{bottom:668.373333pt;}
.y12e{bottom:668.613333pt;}
.yb6{bottom:669.653333pt;}
.ye4{bottom:677.653333pt;}
.y41{bottom:680.453333pt;}
.y12d{bottom:684.213333pt;}
.yb5{bottom:685.333333pt;}
.y83{bottom:691.813333pt;}
.y9{bottom:692.613333pt;}
.ye3{bottom:693.333333pt;}
.y40{bottom:696.053333pt;}
.yb4{bottom:700.933333pt;}
.y106{bottom:702.133333pt;}
.y12c{bottom:707.813333pt;}
.y3f{bottom:711.733333pt;}
.yb3{bottom:716.613333pt;}
.y12b{bottom:723.493333pt;}
.ye2{bottom:724.933333pt;}
.y105{bottom:726.053333pt;}
.y3e{bottom:727.333333pt;}
.yb2{bottom:732.213333pt;}
.y82{bottom:735.333333pt;}
.y8{bottom:736.213333pt;}
.ye1{bottom:740.613333pt;}
.y12a{bottom:747.093333pt;}
.yb1{bottom:747.813333pt;}
.y81{bottom:750.933333pt;}
.y3d{bottom:751.573333pt;}
.ye0{bottom:756.213333pt;}
.y104{bottom:759.573333pt;}
.y129{bottom:762.693333pt;}
.yb0{bottom:763.493333pt;}
.y80{bottom:766.613333pt;}
.y7{bottom:767.813333pt;}
.ydf{bottom:771.813333pt;}
.yaf{bottom:779.093333pt;}
.y7f{bottom:782.213333pt;}
.y128{bottom:786.373333pt;}
.yde{bottom:787.493333pt;}
.yae{bottom:794.693333pt;}
.y3c{bottom:795.093333pt;}
.y7e{bottom:797.893333pt;}
.y6{bottom:799.653333pt;}
.y127{bottom:801.973333pt;}
.ydd{bottom:803.093333pt;}
.yad{bottom:810.373333pt;}
.y3b{bottom:810.693333pt;}
.y7d{bottom:813.493333pt;}
.ydc{bottom:818.693333pt;}
.y126{bottom:825.653333pt;}
.yac{bottom:825.973333pt;}
.y3a{bottom:826.373333pt;}
.y7c{bottom:829.093333pt;}
.y5{bottom:831.653333pt;}
.ydb{bottom:834.373333pt;}
.y125{bottom:841.253333pt;}
.yab{bottom:841.653333pt;}
.y39{bottom:841.973333pt;}
.y7b{bottom:844.773333pt;}
.yda{bottom:849.973333pt;}
.yaa{bottom:857.253333pt;}
.y38{bottom:857.653333pt;}
.y7a{bottom:860.373333pt;}
.y4{bottom:863.733333pt;}
.y124{bottom:864.853333pt;}
.yd9{bottom:865.653333pt;}
.ya9{bottom:872.853333pt;}
.y37{bottom:873.253333pt;}
.y79{bottom:876.053333pt;}
.yd8{bottom:881.253333pt;}
.y123{bottom:888.533333pt;}
.y36{bottom:888.853333pt;}
.y78{bottom:891.653333pt;}
.ya8{bottom:896.533333pt;}
.yd7{bottom:896.853333pt;}
.y3{bottom:897.760000pt;}
.y122{bottom:904.160000pt;}
.y35{bottom:904.560000pt;}
.y77{bottom:907.280000pt;}
.yd6{bottom:912.560000pt;}
.y34{bottom:920.160000pt;}
.y76{bottom:922.960000pt;}
.y121{bottom:927.840000pt;}
.ya7{bottom:928.160000pt;}
.y33{bottom:935.840000pt;}
.ya6{bottom:943.840000pt;}
.y75{bottom:947.120000pt;}
.y32{bottom:951.440000pt;}
.ya5{bottom:959.440000pt;}
.y31{bottom:967.040000pt;}
.ya4{bottom:975.040000pt;}
.y30{bottom:982.720000pt;}
.y74{bottom:990.720000pt;}
.y2f{bottom:1006.320000pt;}
.y2c{bottom:1038.000000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:52.448437pt;}
.h7{height:54.187500pt;}
.hb{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x5{left:64.399988pt;}
.x7{left:69.279988pt;}
.x6{left:70.799988pt;}
.x8{left:89.999988pt;}
.x9{left:98.879988pt;}
.x2{left:171.306655pt;}
.x4{left:686.053322pt;}
.x3{left:711.413322pt;}
}




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