
    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_67557d736131c79a5f321a9a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8f53164764455f9ade8f6ad1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d2b927aedc3c0260e8d87c0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_bc6622c9a3f634c143a468ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_7b4ba86aba89cabb996931d7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.649414;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_e30c4982f73ba7f063e113fb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_868112290bde75c7a7ff9b03.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_849a1ef9b6a956201628cb49.woff')format("woff");}.ff9{font-family:ff9;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.v5{vertical-align:12.240000px;}
.v9{vertical-align:14.400000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:47.520000px;}
.ls35{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.544800px;}
.ls11{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.414000px;}
.lse{letter-spacing:-0.326400px;}
.ls25{letter-spacing:-0.305400px;}
.ls38{letter-spacing:-0.247200px;}
.lsf{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.175800px;}
.ls3{letter-spacing:-0.132600px;}
.ls2e{letter-spacing:-0.107400px;}
.ls26{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.078600px;}
.ls2b{letter-spacing:-0.069600px;}
.lsa{letter-spacing:-0.064800px;}
.ls9{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.lsd{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls2c{letter-spacing:0.112320px;}
.ls36{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.ls29{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.175200px;}
.ls19{letter-spacing:0.175680px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.ls34{letter-spacing:0.243600px;}
.ls28{letter-spacing:0.274800px;}
.ls15{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.393600px;}
.ls1d{letter-spacing:0.399600px;}
.ls14{letter-spacing:0.479400px;}
.ls37{letter-spacing:0.479520px;}
.ls39{letter-spacing:0.642000px;}
.ls2d{letter-spacing:0.816480px;}
.ls27{letter-spacing:0.894000px;}
.ls2a{letter-spacing:0.894240px;}
.ls24{letter-spacing:1.026000px;}
.ls21{letter-spacing:2.460960px;}
.ls1f{letter-spacing:3.180960px;}
.ls23{letter-spacing:4.062240px;}
.ls32{letter-spacing:12.186720px;}
.ls33{letter-spacing:13.626720px;}
.ls1e{letter-spacing:15.420960px;}
.ls20{letter-spacing:17.742240px;}
.ls22{letter-spacing:18.462240px;}
.ls1b{letter-spacing:20.622240px;}
.ls31{letter-spacing:42.426720px;}
.ls1c{letter-spacing:45.359280px;}
.ls30{letter-spacing:46.026720px;}
.ls2f{letter-spacing:91.530720px;}
.ls1a{letter-spacing:189.678240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-59.760000px;}
.ws12{word-spacing:-59.454600px;}
.ws14{word-spacing:-42.962400px;}
.ws13{word-spacing:-30.332640px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.399760px;}
.wse{word-spacing:-13.899360px;}
.wsd{word-spacing:-13.811760px;}
.ws16{word-spacing:-13.780560px;}
.ws1b{word-spacing:-13.749360px;}
.wsa{word-spacing:-13.692360px;}
.ws9{word-spacing:-13.680960px;}
.ws1a{word-spacing:-13.646160px;}
.ws5{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.ws17{word-spacing:-13.436160px;}
.wsf{word-spacing:-13.427160px;}
.ws18{word-spacing:-13.398360px;}
.wsb{word-spacing:-13.265160px;}
.ws1c{word-spacing:-13.258560px;}
.wsc{word-spacing:-13.091760px;}
.ws19{word-spacing:-12.725760px;}
.ws4{word-spacing:-9.437760px;}
.ws10{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._28{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._27{margin-left:-144.648000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._25{margin-left:-114.622560px;}
._26{margin-left:-110.010240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._24{margin-left:-54.085440px;}
._14{margin-left:-49.492560px;}
._22{margin-left:-48.382560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._3b{margin-left:-6.826200px;}
._2b{margin-left:-4.441920px;}
._29{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.317240px;}
._2e{width:2.689200px;}
._2f{width:3.921960px;}
._32{width:5.258880px;}
._33{width:7.168680px;}
._31{width:9.017280px;}
._30{width:10.311840px;}
._34{width:11.610120px;}
._3c{width:13.371960px;}
._35{width:14.537160px;}
._38{width:15.740520px;}
._39{width:16.797120px;}
._36{width:17.808480px;}
._37{width:19.156200px;}
._3a{width:20.855160px;}
._55{width:22.111200px;}
._56{width:23.164800px;}
._54{width:25.463520px;}
._3e{width:26.533440px;}
._45{width:28.220400px;}
._57{width:29.461680px;}
._44{width:31.103280px;}
._2c{width:35.431200px;}
._2d{width:36.643440px;}
._58{width:38.604960px;}
._46{width:41.984640px;}
._47{width:43.086960px;}
._3d{width:44.879760px;}
._4b{width:48.199680px;}
._3f{width:49.600800px;}
._40{width:50.769360px;}
._50{width:54.118440px;}
._4e{width:55.788840px;}
._4c{width:57.013920px;}
._4f{width:58.045680px;}
._4a{width:60.570000px;}
._51{width:78.918840px;}
._52{width:84.261600px;}
._53{width:85.337880px;}
._43{width:87.787440px;}
._42{width:89.161920px;}
._48{width:94.361040px;}
._49{width:95.410080px;}
._41{width:98.424720px;}
._4d{width:178.084800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:6.480000px;}
.yac{bottom:6.660000px;}
.y124{bottom:6.690000px;}
.y10d{bottom:7.380000px;}
.y100{bottom:13.140000px;}
.y157{bottom:16.020000px;}
.y15c{bottom:16.200000px;}
.yd7{bottom:18.750000px;}
.ycb{bottom:27.720000px;}
.yd4{bottom:27.750000px;}
.y10c{bottom:28.440000px;}
.y122{bottom:28.470000px;}
.yca{bottom:48.780000px;}
.yd3{bottom:48.810000px;}
.y13f{bottom:49.500000px;}
.y6{bottom:61.560000px;}
.y126{bottom:70.560000px;}
.y137{bottom:70.590000px;}
.y110{bottom:70.740000px;}
.y109{bottom:90.000000px;}
.y74{bottom:91.260000px;}
.y15f{bottom:93.780000px;}
.yeb{bottom:93.810000px;}
.ya5{bottom:94.320000px;}
.y13a{bottom:96.480000px;}
.y159{bottom:100.290000px;}
.yd5{bottom:101.520000px;}
.y65{bottom:103.320000px;}
.y31{bottom:106.560000px;}
.y15e{bottom:107.460000px;}
.ybb{bottom:108.540000px;}
.y108{bottom:111.060000px;}
.y139{bottom:111.780000px;}
.y73{bottom:112.320000px;}
.ya4{bottom:115.380000px;}
.y64{bottom:124.380000px;}
.y30{bottom:127.620000px;}
.y15d{bottom:128.520000px;}
.yba{bottom:129.600000px;}
.y107{bottom:132.120000px;}
.y72{bottom:133.380000px;}
.y136{bottom:133.560000px;}
.ya3{bottom:136.440000px;}
.y158{bottom:143.640000px;}
.yd2{bottom:144.360000px;}
.y63{bottom:145.440000px;}
.y2f{bottom:148.680000px;}
.yb9{bottom:150.660000px;}
.y106{bottom:153.210000px;}
.y71{bottom:154.470000px;}
.y138{bottom:155.370000px;}
.ya2{bottom:157.530000px;}
.y15b{bottom:165.450000px;}
.y62{bottom:166.530000px;}
.y2e{bottom:169.770000px;}
.yb8{bottom:171.750000px;}
.y105{bottom:174.270000px;}
.y70{bottom:175.530000px;}
.ya1{bottom:178.590000px;}
.y61{bottom:187.590000px;}
.y2d{bottom:190.830000px;}
.yb7{bottom:192.810000px;}
.y104{bottom:195.330000px;}
.y6f{bottom:196.590000px;}
.y15a{bottom:196.770000px;}
.ya0{bottom:199.650000px;}
.yd1{bottom:208.470000px;}
.y60{bottom:208.650000px;}
.y2c{bottom:211.890000px;}
.yb6{bottom:213.870000px;}
.y103{bottom:216.390000px;}
.y6e{bottom:217.650000px;}
.y134{bottom:219.270000px;}
.y9f{bottom:220.710000px;}
.y156{bottom:227.910000px;}
.y5f{bottom:229.710000px;}
.y2b{bottom:232.950000px;}
.yb5{bottom:234.930000px;}
.y102{bottom:237.450000px;}
.y6d{bottom:238.710000px;}
.y135{bottom:241.050000px;}
.y9e{bottom:241.770000px;}
.y5e{bottom:250.770000px;}
.yd0{bottom:251.310000px;}
.y101{bottom:252.570000px;}
.y2a{bottom:254.010000px;}
.yb4{bottom:255.990000px;}
.y155{bottom:259.050000px;}
.y6c{bottom:259.770000px;}
.y9d{bottom:262.830000px;}
.yb3{bottom:271.110000px;}
.y5d{bottom:271.830000px;}
.yff{bottom:274.350000px;}
.y29{bottom:275.070000px;}
.y6b{bottom:280.830000px;}
.y9c{bottom:283.890000px;}
.y154{bottom:287.670000px;}
.y133{bottom:291.270000px;}
.y5c{bottom:292.890000px;}
.yb2{bottom:293.070000px;}
.y28{bottom:296.130000px;}
.y6a{bottom:301.890000px;}
.y9b{bottom:304.950000px;}
.y153{bottom:308.730000px;}
.yfe{bottom:309.450000px;}
.y132{bottom:312.330000px;}
.y5b{bottom:313.950000px;}
.yb1{bottom:314.850000px;}
.ycf{bottom:315.210000px;}
.y27{bottom:317.190000px;}
.y69{bottom:322.950000px;}
.y9a{bottom:326.010000px;}
.y152{bottom:329.790000px;}
.yfd{bottom:330.510000px;}
.y131{bottom:333.390000px;}
.y5a{bottom:335.010000px;}
.yb0{bottom:336.630000px;}
.y26{bottom:338.250000px;}
.y68{bottom:344.010000px;}
.y99{bottom:347.070000px;}
.y151{bottom:350.850000px;}
.yfc{bottom:351.570000px;}
.y130{bottom:354.450000px;}
.y59{bottom:356.070000px;}
.yce{bottom:358.050000px;}
.yaf{bottom:358.410000px;}
.y25{bottom:359.310000px;}
.y67{bottom:365.070000px;}
.y98{bottom:368.130000px;}
.y150{bottom:371.910000px;}
.yfb{bottom:372.450000px;}
.y12f{bottom:375.510000px;}
.y58{bottom:377.130000px;}
.yae{bottom:380.190000px;}
.y24{bottom:380.370000px;}
.y66{bottom:386.130000px;}
.y97{bottom:389.190000px;}
.y14f{bottom:392.970000px;}
.yfa{bottom:393.510000px;}
.y12e{bottom:396.570000px;}
.ycd{bottom:400.935000px;}
.y23{bottom:401.475000px;}
.yad{bottom:402.015000px;}
.y57{bottom:407.235000px;}
.y96{bottom:410.295000px;}
.y14e{bottom:413.895000px;}
.yf9{bottom:414.615000px;}
.y12d{bottom:417.675000px;}
.y22{bottom:422.535000px;}
.yab{bottom:423.795000px;}
.y56{bottom:428.295000px;}
.y14d{bottom:434.955000px;}
.yf8{bottom:435.675000px;}
.y12c{bottom:438.735000px;}
.y95{bottom:440.355000px;}
.y21{bottom:443.595000px;}
.ycc{bottom:443.775000px;}
.y55{bottom:449.355000px;}
.yaa{bottom:452.415000px;}
.y14c{bottom:456.015000px;}
.yf7{bottom:456.735000px;}
.y12b{bottom:459.795000px;}
.y94{bottom:461.415000px;}
.y20{bottom:464.655000px;}
.y54{bottom:470.415000px;}
.ya9{bottom:473.475000px;}
.y14b{bottom:477.075000px;}
.y12a{bottom:480.855000px;}
.y93{bottom:482.475000px;}
.y1f{bottom:485.715000px;}
.yc9{bottom:486.615000px;}
.yf6{bottom:486.795000px;}
.y53{bottom:491.475000px;}
.ya8{bottom:494.535000px;}
.y129{bottom:501.915000px;}
.y92{bottom:503.535000px;}
.y1e{bottom:506.775000px;}
.y14a{bottom:507.135000px;}
.yf5{bottom:507.855000px;}
.y52{bottom:512.535000px;}
.ya7{bottom:515.595000px;}
.y128{bottom:517.035000px;}
.y91{bottom:524.595000px;}
.y1d{bottom:527.835000px;}
.y149{bottom:528.195000px;}
.yf4{bottom:528.915000px;}
.y51{bottom:533.595000px;}
.ya6{bottom:536.655000px;}
.y125{bottom:538.995000px;}
.y90{bottom:545.655000px;}
.y148{bottom:549.255000px;}
.yf3{bottom:549.975000px;}
.yc8{bottom:550.515000px;}
.y1c{bottom:551.235000px;}
.y50{bottom:554.655000px;}
.y127{bottom:560.775000px;}
.y8f{bottom:566.715000px;}
.y147{bottom:570.315000px;}
.yf2{bottom:571.035000px;}
.y4f{bottom:575.715000px;}
.yc7{bottom:579.135000px;}
.y1b{bottom:581.115000px;}
.y8e{bottom:587.775000px;}
.y146{bottom:591.375000px;}
.yf1{bottom:592.095000px;}
.y4e{bottom:596.775000px;}
.yc6{bottom:600.195000px;}
.y1a{bottom:602.175000px;}
.yea{bottom:607.395000px;}
.y8d{bottom:608.835000px;}
.y145{bottom:612.435000px;}
.y4d{bottom:617.835000px;}
.yc5{bottom:621.255000px;}
.y19{bottom:623.235000px;}
.y121{bottom:624.675000px;}
.yef{bottom:629.175000px;}
.y8c{bottom:629.895000px;}
.y144{bottom:633.495000px;}
.y4c{bottom:638.895000px;}
.yc4{bottom:642.315000px;}
.y18{bottom:644.295000px;}
.y123{bottom:646.455000px;}
.y8b{bottom:650.805000px;}
.yee{bottom:650.985000px;}
.y143{bottom:654.585000px;}
.y4b{bottom:659.805000px;}
.yc3{bottom:663.405000px;}
.y17{bottom:665.385000px;}
.y120{bottom:668.265000px;}
.y8a{bottom:671.865000px;}
.yed{bottom:672.765000px;}
.y142{bottom:675.645000px;}
.y4a{bottom:680.865000px;}
.y16{bottom:686.445000px;}
.y89{bottom:692.925000px;}
.yc2{bottom:693.465000px;}
.yec{bottom:694.545000px;}
.y11f{bottom:696.705000px;}
.y49{bottom:701.925000px;}
.y15{bottom:707.505000px;}
.y88{bottom:713.985000px;}
.yc1{bottom:714.525000px;}
.ye9{bottom:716.325000px;}
.y11e{bottom:717.765000px;}
.y48{bottom:722.985000px;}
.y14{bottom:728.565000px;}
.y87{bottom:735.045000px;}
.yc0{bottom:735.405000px;}
.ye8{bottom:738.105000px;}
.y11d{bottom:738.825000px;}
.y47{bottom:744.045000px;}
.y13{bottom:749.625000px;}
.y141{bottom:753.945000px;}
.y86{bottom:756.105000px;}
.ybf{bottom:756.465000px;}
.y11c{bottom:759.885000px;}
.ye7{bottom:760.065000px;}
.y46{bottom:765.105000px;}
.y12{bottom:770.685000px;}
.y13e{bottom:775.905000px;}
.y85{bottom:777.165000px;}
.ybe{bottom:777.525000px;}
.y11b{bottom:780.945000px;}
.ye6{bottom:781.845000px;}
.y45{bottom:786.165000px;}
.y11{bottom:791.745000px;}
.ybd{bottom:795.165000px;}
.y140{bottom:797.685000px;}
.y84{bottom:798.225000px;}
.y11a{bottom:802.005000px;}
.ybc{bottom:802.725000px;}
.ye5{bottom:803.625000px;}
.y44{bottom:807.225000px;}
.y10{bottom:812.805000px;}
.y83{bottom:819.285000px;}
.y119{bottom:823.065000px;}
.ye4{bottom:825.405000px;}
.y43{bottom:828.285000px;}
.yf{bottom:833.865000px;}
.y82{bottom:840.345000px;}
.y13c{bottom:840.525000px;}
.y118{bottom:844.125000px;}
.ye3{bottom:847.185000px;}
.y42{bottom:849.345000px;}
.ye{bottom:854.925000px;}
.y81{bottom:861.405000px;}
.y13d{bottom:862.305000px;}
.y117{bottom:865.185000px;}
.ye2{bottom:868.965000px;}
.y41{bottom:870.405000px;}
.yd{bottom:875.985000px;}
.y80{bottom:882.465000px;}
.y13b{bottom:884.085000px;}
.y116{bottom:886.245000px;}
.ye1{bottom:890.745000px;}
.y40{bottom:891.465000px;}
.yc{bottom:899.250000px;}
.y7f{bottom:903.570000px;}
.y115{bottom:907.350000px;}
.y3f{bottom:912.570000px;}
.ye0{bottom:919.410000px;}
.y7e{bottom:924.630000px;}
.yb{bottom:925.530000px;}
.y114{bottom:928.410000px;}
.y3e{bottom:933.630000px;}
.ydf{bottom:940.470000px;}
.ya{bottom:942.270000px;}
.y7d{bottom:945.690000px;}
.y113{bottom:949.470000px;}
.y3d{bottom:954.690000px;}
.yde{bottom:961.530000px;}
.y112{bottom:964.590000px;}
.y9{bottom:965.490000px;}
.y7c{bottom:966.750000px;}
.y3c{bottom:975.750000px;}
.ydd{bottom:982.590000px;}
.y10f{bottom:986.370000px;}
.y7b{bottom:987.810000px;}
.y8{bottom:991.950000px;}
.y3b{bottom:996.810000px;}
.ydc{bottom:1003.650000px;}
.y111{bottom:1008.330000px;}
.y7a{bottom:1008.870000px;}
.y3a{bottom:1017.870000px;}
.ydb{bottom:1024.710000px;}
.y7{bottom:1025.610000px;}
.y79{bottom:1029.930000px;}
.y39{bottom:1038.930000px;}
.yda{bottom:1045.590000px;}
.y78{bottom:1050.990000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1064.310000px;}
.yd9{bottom:1066.650000px;}
.y77{bottom:1072.050000px;}
.y10b{bottom:1072.230000px;}
.y37{bottom:1081.050000px;}
.yd8{bottom:1081.950000px;}
.y76{bottom:1093.110000px;}
.y10e{bottom:1094.010000px;}
.y4{bottom:1095.090000px;}
.y36{bottom:1102.110000px;}
.y75{bottom:1114.170000px;}
.y10a{bottom:1115.790000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1125.870000px;}
.y34{bottom:1144.230000px;}
.yd6{bottom:1145.850000px;}
.y2{bottom:1156.500000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1188.720000px;}
.y32{bottom:1193.220000px;}
.h14{height:20.880000px;}
.h9{height:21.060000px;}
.ha{height:21.096000px;}
.h15{height:27.540000px;}
.h1c{height:30.420000px;}
.h1e{height:30.600000px;}
.h12{height:33.156000px;}
.h6{height:38.671172px;}
.h10{height:42.120000px;}
.h16{height:42.840000px;}
.h18{height:42.876000px;}
.h1f{height:48.088125px;}
.h7{height:59.439023px;}
.hb{height:59.551172px;}
.h8{height:61.189805px;}
.hf{height:63.180000px;}
.h11{height:63.216000px;}
.h1b{height:63.900000px;}
.h3{height:65.884219px;}
.hc{height:66.383789px;}
.h5{height:67.824844px;}
.hd{height:81.668672px;}
.h19{height:84.960000px;}
.h1a{height:84.996000px;}
.h17{height:85.140000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.he{height:98.783789px;}
.h13{height:108.216000px;}
.h1d{height:114.696000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:46.440000px;}
.w3{width:52.416000px;}
.w20{width:64.800000px;}
.w18{width:66.960000px;}
.w9{width:67.356000px;}
.w1f{width:71.496000px;}
.w21{width:72.720000px;}
.w28{width:73.260000px;}
.w17{width:73.836000px;}
.w29{width:89.316000px;}
.w2a{width:89.460000px;}
.w16{width:94.140000px;}
.w1e{width:97.740000px;}
.w26{width:99.216000px;}
.w14{width:103.356000px;}
.w1c{width:105.156000px;}
.w24{width:109.836000px;}
.w1b{width:112.176000px;}
.w23{width:113.436000px;}
.w1a{width:115.596000px;}
.w1d{width:143.316000px;}
.w15{width:145.656000px;}
.w6{width:167.250000px;}
.wc{width:169.590000px;}
.we{width:173.190000px;}
.w12{width:174.240000px;}
.wb{width:174.630000px;}
.wa{width:199.110000px;}
.w11{width:199.290000px;}
.w22{width:223.995000px;}
.w19{width:228.495000px;}
.w25{width:266.430000px;}
.w7{width:276.015000px;}
.w5{width:309.135000px;}
.w8{width:321.375000px;}
.w13{width:336.810000px;}
.wf{width:341.715000px;}
.w4{width:399.315000px;}
.w10{width:511.995000px;}
.wd{width:783.720000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.560000px;}
.x9{left:10.980000px;}
.x15{left:12.240000px;}
.x6{left:53.999987px;}
.x17{left:55.079987px;}
.x7{left:56.699987px;}
.xd{left:63.540000px;}
.x8{left:65.340000px;}
.x2d{left:69.659987px;}
.x2e{left:80.999987px;}
.x18{left:90.576000px;}
.x2c{left:108.035987px;}
.x27{left:112.716000px;}
.xa{left:118.476000px;}
.xc{left:120.995987px;}
.x11{left:122.796000px;}
.x1b{left:158.790000px;}
.x22{left:160.590000px;}
.x5{left:168.509987px;}
.xf{left:231.510000px;}
.x1a{left:265.755000px;}
.x3{left:272.414987px;}
.x1c{left:305.175000px;}
.x12{left:322.815000px;}
.x2{left:350.714987px;}
.x28{left:379.875000px;}
.x1d{left:400.035000px;}
.x23{left:403.275000px;}
.x4{left:419.294987px;}
.x1e{left:474.585000px;}
.x1{left:479.444987px;}
.x16{left:496.725000px;}
.x13{left:498.345000px;}
.x10{left:508.245000px;}
.xb{left:518.505000px;}
.x29{left:526.965000px;}
.x24{left:541.005000px;}
.x1f{left:542.265000px;}
.x2a{left:600.945000px;}
.x19{left:603.285000px;}
.x20{left:609.945000px;}
.x25{left:614.445000px;}
.x14{left:668.850000px;}
.x2b{left:690.990000px;}
.x21{left:726.270000px;}
.x26{left:728.610000px;}
.x2f{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.v5{vertical-align:10.880000pt;}
.v9{vertical-align:12.800000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:42.240000pt;}
.ls35{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.484267pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.368000pt;}
.lse{letter-spacing:-0.290133pt;}
.ls25{letter-spacing:-0.271467pt;}
.ls38{letter-spacing:-0.219733pt;}
.lsf{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.156267pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls2e{letter-spacing:-0.095467pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.069867pt;}
.ls2b{letter-spacing:-0.061867pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.lsd{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls2c{letter-spacing:0.099840pt;}
.ls36{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.ls29{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.155733pt;}
.ls19{letter-spacing:0.156160pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.ls34{letter-spacing:0.216533pt;}
.ls28{letter-spacing:0.244267pt;}
.ls15{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.349867pt;}
.ls1d{letter-spacing:0.355200pt;}
.ls14{letter-spacing:0.426133pt;}
.ls37{letter-spacing:0.426240pt;}
.ls39{letter-spacing:0.570667pt;}
.ls2d{letter-spacing:0.725760pt;}
.ls27{letter-spacing:0.794667pt;}
.ls2a{letter-spacing:0.794880pt;}
.ls24{letter-spacing:0.912000pt;}
.ls21{letter-spacing:2.187520pt;}
.ls1f{letter-spacing:2.827520pt;}
.ls23{letter-spacing:3.610880pt;}
.ls32{letter-spacing:10.832640pt;}
.ls33{letter-spacing:12.112640pt;}
.ls1e{letter-spacing:13.707520pt;}
.ls20{letter-spacing:15.770880pt;}
.ls22{letter-spacing:16.410880pt;}
.ls1b{letter-spacing:18.330880pt;}
.ls31{letter-spacing:37.712640pt;}
.ls1c{letter-spacing:40.319360pt;}
.ls30{letter-spacing:40.912640pt;}
.ls2f{letter-spacing:81.360640pt;}
.ls1a{letter-spacing:168.602880pt;}
.ws11{word-spacing:-53.120000pt;}
.ws12{word-spacing:-52.848533pt;}
.ws14{word-spacing:-38.188800pt;}
.ws13{word-spacing:-26.962347pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.799787pt;}
.wse{word-spacing:-12.354987pt;}
.wsd{word-spacing:-12.277120pt;}
.ws16{word-spacing:-12.249387pt;}
.ws1b{word-spacing:-12.221653pt;}
.wsa{word-spacing:-12.170987pt;}
.ws9{word-spacing:-12.160853pt;}
.ws1a{word-spacing:-12.129920pt;}
.ws5{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.ws17{word-spacing:-11.943253pt;}
.wsf{word-spacing:-11.935253pt;}
.ws18{word-spacing:-11.909653pt;}
.wsb{word-spacing:-11.791253pt;}
.ws1c{word-spacing:-11.785387pt;}
.wsc{word-spacing:-11.637120pt;}
.ws19{word-spacing:-11.311787pt;}
.ws4{word-spacing:-8.389120pt;}
.ws10{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._28{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._27{margin-left:-128.576000pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._25{margin-left:-101.886720pt;}
._26{margin-left:-97.786880pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._24{margin-left:-48.075947pt;}
._14{margin-left:-43.993387pt;}
._22{margin-left:-43.006720pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._3b{margin-left:-6.067733pt;}
._2b{margin-left:-3.948373pt;}
._29{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.170880pt;}
._2e{width:2.390400pt;}
._2f{width:3.486187pt;}
._32{width:4.674560pt;}
._33{width:6.372160pt;}
._31{width:8.015360pt;}
._30{width:9.166080pt;}
._34{width:10.320107pt;}
._3c{width:11.886187pt;}
._35{width:12.921920pt;}
._38{width:13.991573pt;}
._39{width:14.930773pt;}
._36{width:15.829760pt;}
._37{width:17.027733pt;}
._3a{width:18.537920pt;}
._55{width:19.654400pt;}
._56{width:20.590933pt;}
._54{width:22.634240pt;}
._3e{width:23.585280pt;}
._45{width:25.084800pt;}
._57{width:26.188160pt;}
._44{width:27.647360pt;}
._2c{width:31.494400pt;}
._2d{width:32.571947pt;}
._58{width:34.315520pt;}
._46{width:37.319680pt;}
._47{width:38.299520pt;}
._3d{width:39.893120pt;}
._4b{width:42.844160pt;}
._3f{width:44.089600pt;}
._40{width:45.128320pt;}
._50{width:48.105280pt;}
._4e{width:49.590080pt;}
._4c{width:50.679040pt;}
._4f{width:51.596160pt;}
._4a{width:53.840000pt;}
._51{width:70.150080pt;}
._52{width:74.899200pt;}
._53{width:75.855893pt;}
._43{width:78.033280pt;}
._42{width:79.255040pt;}
._48{width:83.876480pt;}
._49{width:84.808960pt;}
._41{width:87.488640pt;}
._4d{width:158.297600pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:5.760000pt;}
.yac{bottom:5.920000pt;}
.y124{bottom:5.946667pt;}
.y10d{bottom:6.560000pt;}
.y100{bottom:11.680000pt;}
.y157{bottom:14.240000pt;}
.y15c{bottom:14.400000pt;}
.yd7{bottom:16.666667pt;}
.ycb{bottom:24.640000pt;}
.yd4{bottom:24.666667pt;}
.y10c{bottom:25.280000pt;}
.y122{bottom:25.306667pt;}
.yca{bottom:43.360000pt;}
.yd3{bottom:43.386667pt;}
.y13f{bottom:44.000000pt;}
.y6{bottom:54.720000pt;}
.y126{bottom:62.720000pt;}
.y137{bottom:62.746667pt;}
.y110{bottom:62.880000pt;}
.y109{bottom:80.000000pt;}
.y74{bottom:81.120000pt;}
.y15f{bottom:83.360000pt;}
.yeb{bottom:83.386667pt;}
.ya5{bottom:83.840000pt;}
.y13a{bottom:85.760000pt;}
.y159{bottom:89.146667pt;}
.yd5{bottom:90.240000pt;}
.y65{bottom:91.840000pt;}
.y31{bottom:94.720000pt;}
.y15e{bottom:95.520000pt;}
.ybb{bottom:96.480000pt;}
.y108{bottom:98.720000pt;}
.y139{bottom:99.360000pt;}
.y73{bottom:99.840000pt;}
.ya4{bottom:102.560000pt;}
.y64{bottom:110.560000pt;}
.y30{bottom:113.440000pt;}
.y15d{bottom:114.240000pt;}
.yba{bottom:115.200000pt;}
.y107{bottom:117.440000pt;}
.y72{bottom:118.560000pt;}
.y136{bottom:118.720000pt;}
.ya3{bottom:121.280000pt;}
.y158{bottom:127.680000pt;}
.yd2{bottom:128.320000pt;}
.y63{bottom:129.280000pt;}
.y2f{bottom:132.160000pt;}
.yb9{bottom:133.920000pt;}
.y106{bottom:136.186667pt;}
.y71{bottom:137.306667pt;}
.y138{bottom:138.106667pt;}
.ya2{bottom:140.026667pt;}
.y15b{bottom:147.066667pt;}
.y62{bottom:148.026667pt;}
.y2e{bottom:150.906667pt;}
.yb8{bottom:152.666667pt;}
.y105{bottom:154.906667pt;}
.y70{bottom:156.026667pt;}
.ya1{bottom:158.746667pt;}
.y61{bottom:166.746667pt;}
.y2d{bottom:169.626667pt;}
.yb7{bottom:171.386667pt;}
.y104{bottom:173.626667pt;}
.y6f{bottom:174.746667pt;}
.y15a{bottom:174.906667pt;}
.ya0{bottom:177.466667pt;}
.yd1{bottom:185.306667pt;}
.y60{bottom:185.466667pt;}
.y2c{bottom:188.346667pt;}
.yb6{bottom:190.106667pt;}
.y103{bottom:192.346667pt;}
.y6e{bottom:193.466667pt;}
.y134{bottom:194.906667pt;}
.y9f{bottom:196.186667pt;}
.y156{bottom:202.586667pt;}
.y5f{bottom:204.186667pt;}
.y2b{bottom:207.066667pt;}
.yb5{bottom:208.826667pt;}
.y102{bottom:211.066667pt;}
.y6d{bottom:212.186667pt;}
.y135{bottom:214.266667pt;}
.y9e{bottom:214.906667pt;}
.y5e{bottom:222.906667pt;}
.yd0{bottom:223.386667pt;}
.y101{bottom:224.506667pt;}
.y2a{bottom:225.786667pt;}
.yb4{bottom:227.546667pt;}
.y155{bottom:230.266667pt;}
.y6c{bottom:230.906667pt;}
.y9d{bottom:233.626667pt;}
.yb3{bottom:240.986667pt;}
.y5d{bottom:241.626667pt;}
.yff{bottom:243.866667pt;}
.y29{bottom:244.506667pt;}
.y6b{bottom:249.626667pt;}
.y9c{bottom:252.346667pt;}
.y154{bottom:255.706667pt;}
.y133{bottom:258.906667pt;}
.y5c{bottom:260.346667pt;}
.yb2{bottom:260.506667pt;}
.y28{bottom:263.226667pt;}
.y6a{bottom:268.346667pt;}
.y9b{bottom:271.066667pt;}
.y153{bottom:274.426667pt;}
.yfe{bottom:275.066667pt;}
.y132{bottom:277.626667pt;}
.y5b{bottom:279.066667pt;}
.yb1{bottom:279.866667pt;}
.ycf{bottom:280.186667pt;}
.y27{bottom:281.946667pt;}
.y69{bottom:287.066667pt;}
.y9a{bottom:289.786667pt;}
.y152{bottom:293.146667pt;}
.yfd{bottom:293.786667pt;}
.y131{bottom:296.346667pt;}
.y5a{bottom:297.786667pt;}
.yb0{bottom:299.226667pt;}
.y26{bottom:300.666667pt;}
.y68{bottom:305.786667pt;}
.y99{bottom:308.506667pt;}
.y151{bottom:311.866667pt;}
.yfc{bottom:312.506667pt;}
.y130{bottom:315.066667pt;}
.y59{bottom:316.506667pt;}
.yce{bottom:318.266667pt;}
.yaf{bottom:318.586667pt;}
.y25{bottom:319.386667pt;}
.y67{bottom:324.506667pt;}
.y98{bottom:327.226667pt;}
.y150{bottom:330.586667pt;}
.yfb{bottom:331.066667pt;}
.y12f{bottom:333.786667pt;}
.y58{bottom:335.226667pt;}
.yae{bottom:337.946667pt;}
.y24{bottom:338.106667pt;}
.y66{bottom:343.226667pt;}
.y97{bottom:345.946667pt;}
.y14f{bottom:349.306667pt;}
.yfa{bottom:349.786667pt;}
.y12e{bottom:352.506667pt;}
.ycd{bottom:356.386667pt;}
.y23{bottom:356.866667pt;}
.yad{bottom:357.346667pt;}
.y57{bottom:361.986667pt;}
.y96{bottom:364.706667pt;}
.y14e{bottom:367.906667pt;}
.yf9{bottom:368.546667pt;}
.y12d{bottom:371.266667pt;}
.y22{bottom:375.586667pt;}
.yab{bottom:376.706667pt;}
.y56{bottom:380.706667pt;}
.y14d{bottom:386.626667pt;}
.yf8{bottom:387.266667pt;}
.y12c{bottom:389.986667pt;}
.y95{bottom:391.426667pt;}
.y21{bottom:394.306667pt;}
.ycc{bottom:394.466667pt;}
.y55{bottom:399.426667pt;}
.yaa{bottom:402.146667pt;}
.y14c{bottom:405.346667pt;}
.yf7{bottom:405.986667pt;}
.y12b{bottom:408.706667pt;}
.y94{bottom:410.146667pt;}
.y20{bottom:413.026667pt;}
.y54{bottom:418.146667pt;}
.ya9{bottom:420.866667pt;}
.y14b{bottom:424.066667pt;}
.y12a{bottom:427.426667pt;}
.y93{bottom:428.866667pt;}
.y1f{bottom:431.746667pt;}
.yc9{bottom:432.546667pt;}
.yf6{bottom:432.706667pt;}
.y53{bottom:436.866667pt;}
.ya8{bottom:439.586667pt;}
.y129{bottom:446.146667pt;}
.y92{bottom:447.586667pt;}
.y1e{bottom:450.466667pt;}
.y14a{bottom:450.786667pt;}
.yf5{bottom:451.426667pt;}
.y52{bottom:455.586667pt;}
.ya7{bottom:458.306667pt;}
.y128{bottom:459.586667pt;}
.y91{bottom:466.306667pt;}
.y1d{bottom:469.186667pt;}
.y149{bottom:469.506667pt;}
.yf4{bottom:470.146667pt;}
.y51{bottom:474.306667pt;}
.ya6{bottom:477.026667pt;}
.y125{bottom:479.106667pt;}
.y90{bottom:485.026667pt;}
.y148{bottom:488.226667pt;}
.yf3{bottom:488.866667pt;}
.yc8{bottom:489.346667pt;}
.y1c{bottom:489.986667pt;}
.y50{bottom:493.026667pt;}
.y127{bottom:498.466667pt;}
.y8f{bottom:503.746667pt;}
.y147{bottom:506.946667pt;}
.yf2{bottom:507.586667pt;}
.y4f{bottom:511.746667pt;}
.yc7{bottom:514.786667pt;}
.y1b{bottom:516.546667pt;}
.y8e{bottom:522.466667pt;}
.y146{bottom:525.666667pt;}
.yf1{bottom:526.306667pt;}
.y4e{bottom:530.466667pt;}
.yc6{bottom:533.506667pt;}
.y1a{bottom:535.266667pt;}
.yea{bottom:539.906667pt;}
.y8d{bottom:541.186667pt;}
.y145{bottom:544.386667pt;}
.y4d{bottom:549.186667pt;}
.yc5{bottom:552.226667pt;}
.y19{bottom:553.986667pt;}
.y121{bottom:555.266667pt;}
.yef{bottom:559.266667pt;}
.y8c{bottom:559.906667pt;}
.y144{bottom:563.106667pt;}
.y4c{bottom:567.906667pt;}
.yc4{bottom:570.946667pt;}
.y18{bottom:572.706667pt;}
.y123{bottom:574.626667pt;}
.y8b{bottom:578.493333pt;}
.yee{bottom:578.653333pt;}
.y143{bottom:581.853333pt;}
.y4b{bottom:586.493333pt;}
.yc3{bottom:589.693333pt;}
.y17{bottom:591.453333pt;}
.y120{bottom:594.013333pt;}
.y8a{bottom:597.213333pt;}
.yed{bottom:598.013333pt;}
.y142{bottom:600.573333pt;}
.y4a{bottom:605.213333pt;}
.y16{bottom:610.173333pt;}
.y89{bottom:615.933333pt;}
.yc2{bottom:616.413333pt;}
.yec{bottom:617.373333pt;}
.y11f{bottom:619.293333pt;}
.y49{bottom:623.933333pt;}
.y15{bottom:628.893333pt;}
.y88{bottom:634.653333pt;}
.yc1{bottom:635.133333pt;}
.ye9{bottom:636.733333pt;}
.y11e{bottom:638.013333pt;}
.y48{bottom:642.653333pt;}
.y14{bottom:647.613333pt;}
.y87{bottom:653.373333pt;}
.yc0{bottom:653.693333pt;}
.ye8{bottom:656.093333pt;}
.y11d{bottom:656.733333pt;}
.y47{bottom:661.373333pt;}
.y13{bottom:666.333333pt;}
.y141{bottom:670.173333pt;}
.y86{bottom:672.093333pt;}
.ybf{bottom:672.413333pt;}
.y11c{bottom:675.453333pt;}
.ye7{bottom:675.613333pt;}
.y46{bottom:680.093333pt;}
.y12{bottom:685.053333pt;}
.y13e{bottom:689.693333pt;}
.y85{bottom:690.813333pt;}
.ybe{bottom:691.133333pt;}
.y11b{bottom:694.173333pt;}
.ye6{bottom:694.973333pt;}
.y45{bottom:698.813333pt;}
.y11{bottom:703.773333pt;}
.ybd{bottom:706.813333pt;}
.y140{bottom:709.053333pt;}
.y84{bottom:709.533333pt;}
.y11a{bottom:712.893333pt;}
.ybc{bottom:713.533333pt;}
.ye5{bottom:714.333333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:722.493333pt;}
.y83{bottom:728.253333pt;}
.y119{bottom:731.613333pt;}
.ye4{bottom:733.693333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:741.213333pt;}
.y82{bottom:746.973333pt;}
.y13c{bottom:747.133333pt;}
.y118{bottom:750.333333pt;}
.ye3{bottom:753.053333pt;}
.y42{bottom:754.973333pt;}
.ye{bottom:759.933333pt;}
.y81{bottom:765.693333pt;}
.y13d{bottom:766.493333pt;}
.y117{bottom:769.053333pt;}
.ye2{bottom:772.413333pt;}
.y41{bottom:773.693333pt;}
.yd{bottom:778.653333pt;}
.y80{bottom:784.413333pt;}
.y13b{bottom:785.853333pt;}
.y116{bottom:787.773333pt;}
.ye1{bottom:791.773333pt;}
.y40{bottom:792.413333pt;}
.yc{bottom:799.333333pt;}
.y7f{bottom:803.173333pt;}
.y115{bottom:806.533333pt;}
.y3f{bottom:811.173333pt;}
.ye0{bottom:817.253333pt;}
.y7e{bottom:821.893333pt;}
.yb{bottom:822.693333pt;}
.y114{bottom:825.253333pt;}
.y3e{bottom:829.893333pt;}
.ydf{bottom:835.973333pt;}
.ya{bottom:837.573333pt;}
.y7d{bottom:840.613333pt;}
.y113{bottom:843.973333pt;}
.y3d{bottom:848.613333pt;}
.yde{bottom:854.693333pt;}
.y112{bottom:857.413333pt;}
.y9{bottom:858.213333pt;}
.y7c{bottom:859.333333pt;}
.y3c{bottom:867.333333pt;}
.ydd{bottom:873.413333pt;}
.y10f{bottom:876.773333pt;}
.y7b{bottom:878.053333pt;}
.y8{bottom:881.733333pt;}
.y3b{bottom:886.053333pt;}
.ydc{bottom:892.133333pt;}
.y111{bottom:896.293333pt;}
.y7a{bottom:896.773333pt;}
.y3a{bottom:904.773333pt;}
.ydb{bottom:910.853333pt;}
.y7{bottom:911.653333pt;}
.y79{bottom:915.493333pt;}
.y39{bottom:923.493333pt;}
.yda{bottom:929.413333pt;}
.y78{bottom:934.213333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:946.053333pt;}
.yd9{bottom:948.133333pt;}
.y77{bottom:952.933333pt;}
.y10b{bottom:953.093333pt;}
.y37{bottom:960.933333pt;}
.yd8{bottom:961.733333pt;}
.y76{bottom:971.653333pt;}
.y10e{bottom:972.453333pt;}
.y4{bottom:973.413333pt;}
.y36{bottom:979.653333pt;}
.y75{bottom:990.373333pt;}
.y10a{bottom:991.813333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:1000.773333pt;}
.y34{bottom:1017.093333pt;}
.yd6{bottom:1018.533333pt;}
.y2{bottom:1028.000000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1056.640000pt;}
.y32{bottom:1060.640000pt;}
.h14{height:18.560000pt;}
.h9{height:18.720000pt;}
.ha{height:18.752000pt;}
.h15{height:24.480000pt;}
.h1c{height:27.040000pt;}
.h1e{height:27.200000pt;}
.h12{height:29.472000pt;}
.h6{height:34.374375pt;}
.h10{height:37.440000pt;}
.h16{height:38.080000pt;}
.h18{height:38.112000pt;}
.h1f{height:42.745000pt;}
.h7{height:52.834688pt;}
.hb{height:52.934375pt;}
.h8{height:54.390938pt;}
.hf{height:56.160000pt;}
.h11{height:56.192000pt;}
.h1b{height:56.800000pt;}
.h3{height:58.563750pt;}
.hc{height:59.007812pt;}
.h5{height:60.288750pt;}
.hd{height:72.594375pt;}
.h19{height:75.520000pt;}
.h1a{height:75.552000pt;}
.h17{height:75.680000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.he{height:87.807813pt;}
.h13{height:96.192000pt;}
.h1d{height:101.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:41.280000pt;}
.w3{width:46.592000pt;}
.w20{width:57.600000pt;}
.w18{width:59.520000pt;}
.w9{width:59.872000pt;}
.w1f{width:63.552000pt;}
.w21{width:64.640000pt;}
.w28{width:65.120000pt;}
.w17{width:65.632000pt;}
.w29{width:79.392000pt;}
.w2a{width:79.520000pt;}
.w16{width:83.680000pt;}
.w1e{width:86.880000pt;}
.w26{width:88.192000pt;}
.w14{width:91.872000pt;}
.w1c{width:93.472000pt;}
.w24{width:97.632000pt;}
.w1b{width:99.712000pt;}
.w23{width:100.832000pt;}
.w1a{width:102.752000pt;}
.w1d{width:127.392000pt;}
.w15{width:129.472000pt;}
.w6{width:148.666667pt;}
.wc{width:150.746667pt;}
.we{width:153.946667pt;}
.w12{width:154.880000pt;}
.wb{width:155.226667pt;}
.wa{width:176.986667pt;}
.w11{width:177.146667pt;}
.w22{width:199.106667pt;}
.w19{width:203.106667pt;}
.w25{width:236.826667pt;}
.w7{width:245.346667pt;}
.w5{width:274.786667pt;}
.w8{width:285.666667pt;}
.w13{width:299.386667pt;}
.wf{width:303.746667pt;}
.w4{width:354.946667pt;}
.w10{width:455.106667pt;}
.wd{width:696.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.720000pt;}
.x9{left:9.760000pt;}
.x15{left:10.880000pt;}
.x6{left:47.999988pt;}
.x17{left:48.959988pt;}
.x7{left:50.399988pt;}
.xd{left:56.480000pt;}
.x8{left:58.080000pt;}
.x2d{left:61.919988pt;}
.x2e{left:71.999988pt;}
.x18{left:80.512000pt;}
.x2c{left:96.031988pt;}
.x27{left:100.192000pt;}
.xa{left:105.312000pt;}
.xc{left:107.551988pt;}
.x11{left:109.152000pt;}
.x1b{left:141.146667pt;}
.x22{left:142.746667pt;}
.x5{left:149.786655pt;}
.xf{left:205.786667pt;}
.x1a{left:236.226667pt;}
.x3{left:242.146655pt;}
.x1c{left:271.266667pt;}
.x12{left:286.946667pt;}
.x2{left:311.746655pt;}
.x28{left:337.666667pt;}
.x1d{left:355.586667pt;}
.x23{left:358.466667pt;}
.x4{left:372.706655pt;}
.x1e{left:421.853333pt;}
.x1{left:426.173322pt;}
.x16{left:441.533333pt;}
.x13{left:442.973333pt;}
.x10{left:451.773333pt;}
.xb{left:460.893333pt;}
.x29{left:468.413333pt;}
.x24{left:480.893333pt;}
.x1f{left:482.013333pt;}
.x2a{left:534.173333pt;}
.x19{left:536.253333pt;}
.x20{left:542.173333pt;}
.x25{left:546.173333pt;}
.x14{left:594.533333pt;}
.x2b{left:614.213333pt;}
.x21{left:645.573333pt;}
.x26{left:647.653333pt;}
.x2f{left:746.079988pt;}
}




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