
    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_58031be725c2cc460ab072d7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_df6217b7903701820e6f8a40.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90bfbfd731cb7cc11fdf3e0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_096336d9e25a02005c8b0180.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_aa985803ccd65b82395bfb62.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_799aa43caf343257a4b052b6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_65f7cad2a510214f1dd943d4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fc916570fe719b9164236a0c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bba0831a9e654c2616a65d1e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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:ffe;src:url('chunks/assets/font_7afbe46d4edeb93f552eda22.woff')format("woff");}.ffe{font-family:ffe;line-height:0.884766;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:fff;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;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:ff10;src:url('chunks/assets/font_50de3c61c04a487f6c8eceb0.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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:ff12;src:url('chunks/assets/font_be442e7012b239883b74424b.woff')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_10d7c77f6d0f1221c377b327.woff')format("woff");}.ff14{font-family:ff14;line-height:1.040039;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.lsa{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls16{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.ls17{letter-spacing:15.840000px;}
.ls13{letter-spacing:28.800000px;}
.lsc{letter-spacing:39.881280px;}
.ls14{letter-spacing:47.825280px;}
.lsd{letter-spacing:59.321280px;}
.lse{letter-spacing:59.345280px;}
.ls11{letter-spacing:64.385280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsd{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.297800px;}
.ws4{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws8{word-spacing:0.000000px;}
._31{margin-left:-2.115360px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._6{width:2.220000px;}
._8{width:3.458640px;}
._c{width:5.135760px;}
._b{width:6.292800px;}
._9{width:7.418880px;}
._a{width:8.483040px;}
._7{width:9.538560px;}
._4{width:10.797120px;}
._5{width:11.989440px;}
._12{width:13.384800px;}
._3{width:14.572800px;}
._17{width:18.582480px;}
._e{width:19.805760px;}
._29{width:21.039600px;}
._18{width:22.389120px;}
._2a{width:23.448960px;}
._f{width:24.972480px;}
._16{width:26.017200px;}
._15{width:27.820800px;}
._30{width:29.099520px;}
._2c{width:30.205440px;}
._28{width:31.499280px;}
._26{width:32.523840px;}
._25{width:34.422480px;}
._19{width:35.637120px;}
._1a{width:36.972000px;}
._20{width:38.088000px;}
._1b{width:39.147840px;}
._1c{width:41.037840px;}
._39{width:42.058080px;}
._d{width:43.188480px;}
._27{width:44.583120px;}
._11{width:45.705600px;}
._22{width:47.560320px;}
._14{width:48.787920px;}
._2e{width:50.108400px;}
._2b{width:51.468480px;}
._2f{width:52.528320px;}
._41{width:54.316800px;}
._35{width:58.631760px;}
._13{width:60.013440px;}
._38{width:64.716480px;}
._24{width:66.173760px;}
._23{width:67.202640px;}
._10{width:70.346880px;}
._36{width:73.327680px;}
._37{width:75.182400px;}
._3c{width:80.415360px;}
._2d{width:82.667520px;}
._32{width:91.212480px;}
._33{width:92.731680px;}
._21{width:98.136720px;}
._3e{width:103.048320px;}
._1f{width:152.893440px;}
._1d{width:189.617520px;}
._3b{width:191.429280px;}
._1e{width:197.647200px;}
._2{width:199.416000px;}
._3d{width:228.638880px;}
._40{width:295.664400px;}
._3f{width:296.953920px;}
._3a{width:717.365280px;}
._42{width:847.596000px;}
._34{width:1445.316000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.yc1{bottom:-2.700000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1b{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.yc9{bottom:3.780000px;}
.ycb{bottom:3.960000px;}
.yfc{bottom:4.005000px;}
.ycd{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y91{bottom:9.360000px;}
.yb3{bottom:9.390000px;}
.yb5{bottom:9.705000px;}
.y94{bottom:9.720000px;}
.ybe{bottom:9.750000px;}
.y9c{bottom:9.765000px;}
.yef{bottom:13.140000px;}
.yf3{bottom:13.500000px;}
.yfa{bottom:13.545000px;}
.yb2{bottom:21.630000px;}
.yee{bottom:22.680000px;}
.yfe{bottom:22.860000px;}
.yfb{bottom:22.905000px;}
.yf4{bottom:23.040000px;}
.y18{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.yb1{bottom:34.050000px;}
.y17{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y40{bottom:75.240000px;}
.y16{bottom:78.165000px;}
.y15{bottom:93.465000px;}
.yc3{bottom:112.680000px;}
.yec{bottom:113.400000px;}
.y11d{bottom:122.940000px;}
.y14{bottom:123.885000px;}
.y3d{bottom:128.340000px;}
.y8e{bottom:132.660000px;}
.y12c{bottom:134.100000px;}
.yc2{bottom:137.340000px;}
.yeb{bottom:138.060000px;}
.y13{bottom:138.825000px;}
.y11c{bottom:147.600000px;}
.y39{bottom:153.000000px;}
.yc0{bottom:153.540000px;}
.y8d{bottom:157.320000px;}
.y12b{bottom:158.760000px;}
.yea{bottom:162.720000px;}
.y11b{bottom:172.260000px;}
.y38{bottom:177.660000px;}
.ybf{bottom:178.920000px;}
.y8c{bottom:181.980000px;}
.y12a{bottom:183.420000px;}
.ye9{bottom:187.380000px;}
.y11a{bottom:196.920000px;}
.y37{bottom:202.320000px;}
.ybd{bottom:204.300000px;}
.y8b{bottom:206.670000px;}
.y129{bottom:208.110000px;}
.ye8{bottom:212.070000px;}
.y119{bottom:221.610000px;}
.y36{bottom:227.010000px;}
.ybc{bottom:229.725000px;}
.y8a{bottom:231.330000px;}
.y128{bottom:232.770000px;}
.ye7{bottom:236.730000px;}
.y118{bottom:246.270000px;}
.y35{bottom:251.670000px;}
.ybb{bottom:255.105000px;}
.y89{bottom:255.990000px;}
.y127{bottom:257.430000px;}
.ye6{bottom:261.390000px;}
.y117{bottom:270.930000px;}
.y34{bottom:276.330000px;}
.yba{bottom:280.665000px;}
.y65{bottom:281.010000px;}
.y126{bottom:282.090000px;}
.ye5{bottom:286.050000px;}
.y116{bottom:295.590000px;}
.y33{bottom:300.990000px;}
.y64{bottom:305.670000px;}
.yb9{bottom:306.045000px;}
.y125{bottom:306.750000px;}
.ye4{bottom:310.710000px;}
.y115{bottom:320.250000px;}
.y32{bottom:325.650000px;}
.y88{bottom:330.330000px;}
.y63{bottom:331.410000px;}
.yb8{bottom:331.425000px;}
.ye1{bottom:335.730000px;}
.y114{bottom:344.910000px;}
.y31{bottom:350.310000px;}
.y87{bottom:354.990000px;}
.y62{bottom:356.070000px;}
.yb7{bottom:356.805000px;}
.ye0{bottom:360.390000px;}
.y113{bottom:369.570000px;}
.y30{bottom:374.970000px;}
.y86{bottom:379.650000px;}
.y61{bottom:380.370000px;}
.y124{bottom:380.730000px;}
.yb6{bottom:382.185000px;}
.ydf{bottom:385.050000px;}
.y112{bottom:394.230000px;}
.y2f{bottom:399.630000px;}
.y85{bottom:404.310000px;}
.y60{bottom:405.030000px;}
.y123{bottom:405.390000px;}
.yb4{bottom:407.745000px;}
.yde{bottom:409.710000px;}
.y111{bottom:418.890000px;}
.y2e{bottom:424.290000px;}
.y84{bottom:428.970000px;}
.y5f{bottom:430.050000px;}
.yb0{bottom:433.125000px;}
.ydd{bottom:434.370000px;}
.y110{bottom:443.595000px;}
.y2d{bottom:448.995000px;}
.y83{bottom:453.675000px;}
.y5e{bottom:454.755000px;}
.ydc{bottom:459.075000px;}
.y10f{bottom:468.255000px;}
.y3c{bottom:473.295000px;}
.y2c{bottom:473.655000px;}
.y82{bottom:478.335000px;}
.y5d{bottom:479.595000px;}
.ydb{bottom:483.735000px;}
.yaf{bottom:492.555000px;}
.y10e{bottom:492.915000px;}
.y3b{bottom:497.955000px;}
.y2b{bottom:498.315000px;}
.y81{bottom:502.995000px;}
.y5c{bottom:504.255000px;}
.yda{bottom:508.395000px;}
.yac{bottom:517.575000px;}
.y2a{bottom:522.975000px;}
.y80{bottom:527.655000px;}
.y5b{bottom:528.915000px;}
.yd9{bottom:533.055000px;}
.yab{bottom:542.235000px;}
.y10a{bottom:542.595000px;}
.y29{bottom:547.275000px;}
.y3a{bottom:547.635000px;}
.y7f{bottom:552.315000px;}
.y5a{bottom:553.575000px;}
.yd8{bottom:557.355000px;}
.ye3{bottom:557.715000px;}
.yaa{bottom:566.895000px;}
.y109{bottom:567.255000px;}
.y28{bottom:572.835000px;}
.y7e{bottom:576.975000px;}
.y59{bottom:578.235000px;}
.yd7{bottom:582.015000px;}
.ye2{bottom:582.375000px;}
.ya9{bottom:591.555000px;}
.y108{bottom:591.915000px;}
.y27{bottom:598.215000px;}
.y7d{bottom:601.635000px;}
.y58{bottom:602.535000px;}
.y122{bottom:602.895000px;}
.yd6{bottom:606.675000px;}
.ya8{bottom:616.215000px;}
.y107{bottom:616.575000px;}
.y26{bottom:622.695000px;}
.yd5{bottom:622.875000px;}
.y7c{bottom:626.295000px;}
.y57{bottom:627.195000px;}
.y121{bottom:627.555000px;}
.ya7{bottom:640.875000px;}
.y106{bottom:641.235000px;}
.yd4{bottom:642.495000px;}
.y25{bottom:644.655000px;}
.y7b{bottom:650.955000px;}
.y56{bottom:652.215000px;}
.yd3{bottom:662.295000px;}
.ya6{bottom:665.535000px;}
.y105{bottom:665.895000px;}
.y24{bottom:666.435000px;}
.y7a{bottom:675.615000px;}
.y55{bottom:676.905000px;}
.yd2{bottom:681.945000px;}
.y23{bottom:688.245000px;}
.ya5{bottom:690.225000px;}
.y104{bottom:690.585000px;}
.y79{bottom:700.305000px;}
.y54{bottom:701.565000px;}
.yd1{bottom:701.745000px;}
.y22{bottom:710.025000px;}
.ya4{bottom:714.885000px;}
.y103{bottom:715.245000px;}
.yd0{bottom:721.365000px;}
.y78{bottom:724.965000px;}
.y120{bottom:725.865000px;}
.y53{bottom:726.225000px;}
.y21{bottom:731.805000px;}
.ya3{bottom:739.185000px;}
.yae{bottom:739.545000px;}
.y102{bottom:739.905000px;}
.ycf{bottom:741.165000px;}
.y77{bottom:749.625000px;}
.y11f{bottom:750.525000px;}
.y52{bottom:750.885000px;}
.y20{bottom:753.765000px;}
.yce{bottom:760.965000px;}
.ya2{bottom:763.845000px;}
.yad{bottom:764.205000px;}
.y10d{bottom:764.565000px;}
.y76{bottom:774.285000px;}
.y51{bottom:775.185000px;}
.y1f{bottom:775.545000px;}
.ycc{bottom:780.585000px;}
.ya1{bottom:788.505000px;}
.y101{bottom:788.865000px;}
.y10c{bottom:789.225000px;}
.y1e{bottom:797.325000px;}
.y75{bottom:798.585000px;}
.y50{bottom:799.845000px;}
.y11e{bottom:800.205000px;}
.yca{bottom:800.385000px;}
.ya0{bottom:804.705000px;}
.y100{bottom:813.525000px;}
.y10b{bottom:813.885000px;}
.y1d{bottom:818.745000px;}
.yc8{bottom:820.005000px;}
.y74{bottom:823.245000px;}
.y4f{bottom:824.865000px;}
.yff{bottom:829.725000px;}
.y9f{bottom:830.085000px;}
.y1c{bottom:838.185000px;}
.y1a{bottom:846.825000px;}
.y73{bottom:847.905000px;}
.yc7{bottom:849.165000px;}
.y4e{bottom:849.525000px;}
.y12{bottom:854.025000px;}
.y9e{bottom:855.465000px;}
.y19{bottom:857.986587px;}
.yfd{bottom:868.425000px;}
.y72{bottom:872.925000px;}
.yc6{bottom:873.825000px;}
.y4d{bottom:874.185000px;}
.y9d{bottom:880.845000px;}
.y71{bottom:897.585000px;}
.y4c{bottom:898.845000px;}
.y9b{bottom:906.225000px;}
.yf9{bottom:907.125000px;}
.y70{bottom:922.290000px;}
.y4b{bottom:923.550000px;}
.y9a{bottom:931.830000px;}
.yf8{bottom:945.870000px;}
.y6f{bottom:947.130000px;}
.y4a{bottom:948.210000px;}
.y99{bottom:957.210000px;}
.yf7{bottom:965.490000px;}
.y6e{bottom:971.790000px;}
.y49{bottom:972.870000px;}
.y98{bottom:982.590000px;}
.yf6{bottom:985.290000px;}
.y6d{bottom:996.450000px;}
.y48{bottom:997.530000px;}
.yf5{bottom:1004.910000px;}
.y97{bottom:1007.970000px;}
.y10{bottom:1018.590000px;}
.y6c{bottom:1021.110000px;}
.y47{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y96{bottom:1033.350000px;}
.yf2{bottom:1043.610000px;}
.y6b{bottom:1045.770000px;}
.y46{bottom:1046.850000px;}
.y95{bottom:1058.910000px;}
.y6a{bottom:1070.430000px;}
.y45{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yf1{bottom:1082.310000px;}
.y93{bottom:1084.290000px;}
.y69{bottom:1094.730000px;}
.y44{bottom:1096.170000px;}
.yf0{bottom:1102.110000px;}
.y2{bottom:1106.250000px;}
.y92{bottom:1109.670000px;}
.y68{bottom:1119.390000px;}
.yc5{bottom:1120.470000px;}
.y43{bottom:1120.830000px;}
.yed{bottom:1121.730000px;}
.y7{bottom:1128.570000px;}
.y90{bottom:1135.050000px;}
.y67{bottom:1144.410000px;}
.yc4{bottom:1145.130000px;}
.y42{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y66{bottom:1169.100000px;}
.y8f{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h2b{height:18.885000px;}
.h28{height:18.900000px;}
.h29{height:18.930000px;}
.h11{height:19.008000px;}
.h2a{height:19.065000px;}
.h27{height:19.080000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h22{height:24.645000px;}
.h24{height:24.660000px;}
.h23{height:24.682500px;}
.h21{height:24.690000px;}
.h26{height:24.696000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h1a{height:36.861328px;}
.h2f{height:37.800000px;}
.h2e{height:37.822500px;}
.h2d{height:37.965000px;}
.h2c{height:38.010000px;}
.h14{height:44.496211px;}
.h30{height:46.251562px;}
.h25{height:49.341000px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1d{height:65.010937px;}
.h1f{height:65.884219px;}
.h1c{height:66.757500px;}
.h15{height:67.803750px;}
.h20{height:68.084282px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:164.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:52.909500px;}
.w11{width:72.529500px;}
.wa{width:73.069500px;}
.wc{width:84.060000px;}
.wf{width:96.501000px;}
.w10{width:102.045000px;}
.wd{width:105.336000px;}
.wb{width:107.301000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.we{width:109.785000px;}
.w17{width:114.321000px;}
.w13{width:115.941000px;}
.w14{width:116.085000px;}
.w18{width:121.890000px;}
.w9{width:140.421000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w8{width:329.280000px;}
.w12{width:334.860000px;}
.w16{width:424.500000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.089500px;}
.x13{left:9.169500px;}
.x5{left:10.965000px;}
.x35{left:12.049500px;}
.x38{left:13.320000px;}
.x3d{left:14.565000px;}
.x3e{left:16.905000px;}
.x55{left:18.169500px;}
.x4d{left:19.260000px;}
.x10{left:20.685000px;}
.x54{left:22.309500px;}
.x40{left:25.560000px;}
.x3b{left:26.625000px;}
.x47{left:28.249500px;}
.x41{left:30.600000px;}
.x42{left:32.389500px;}
.xb{left:34.185000px;}
.x36{left:36.165000px;}
.x43{left:38.340000px;}
.x46{left:40.665000px;}
.x44{left:43.020000px;}
.x27{left:44.805000px;}
.x45{left:47.160000px;}
.x48{left:48.450000px;}
.xe{left:49.714500px;}
.x2c{left:51.825000px;}
.x9{left:53.265000px;}
.x2d{left:55.965000px;}
.x32{left:58.350000px;}
.x2{left:60.841500px;}
.x29{left:62.130000px;}
.x2e{left:79.950000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x2b{left:86.790000px;}
.x17{left:94.663500px;}
.xd{left:95.925000px;}
.x30{left:97.950000px;}
.x4f{left:100.306500px;}
.x57{left:101.916000px;}
.x34{left:106.246500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:123.516000px;}
.x2a{left:126.750000px;}
.x2f{left:127.830000px;}
.x28{left:129.630000px;}
.x19{left:134.983500px;}
.x31{left:137.910000px;}
.x4a{left:139.890000px;}
.x21{left:150.510000px;}
.x50{left:153.945000px;}
.x15{left:157.168500px;}
.x1d{left:162.030000px;}
.x4{left:168.885000px;}
.x14{left:180.028500px;}
.x51{left:191.190000px;}
.x1a{left:197.848500px;}
.x49{left:199.305000px;}
.x6{left:209.010000px;}
.x25{left:211.545000px;}
.x33{left:261.930000px;}
.x16{left:263.728500px;}
.x37{left:287.715000px;}
.x56{left:290.955000px;}
.x18{left:296.848500px;}
.x4e{left:308.775000px;}
.x1b{left:324.965515px;}
.x12{left:335.578500px;}
.x24{left:342.615000px;}
.x39{left:372.135000px;}
.xa{left:445.620000px;}
.x5a{left:463.245000px;}
.x59{left:467.385000px;}
.x1e{left:473.505000px;}
.x3a{left:477.840000px;}
.x22{left:488.985000px;}
.x58{left:500.505000px;}
.x23{left:515.985000px;}
.x1f{left:527.505000px;}
.x4b{left:534.720000px;}
.x26{left:541.200000px;}
.x52{left:579.360000px;}
.x3c{left:588.000000px;}
.x4c{left:651.030000px;}
.x3f{left:684.870000px;}
.x53{left:694.410000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.lsa{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls16{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls17{letter-spacing:14.080000pt;}
.ls13{letter-spacing:25.600000pt;}
.lsc{letter-spacing:35.450027pt;}
.ls14{letter-spacing:42.511360pt;}
.lsd{letter-spacing:52.730027pt;}
.lse{letter-spacing:52.751360pt;}
.ls11{letter-spacing:57.231360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsd{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.486933pt;}
.ws4{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws8{word-spacing:0.000000pt;}
._31{margin-left:-1.880320pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._6{width:1.973333pt;}
._8{width:3.074347pt;}
._c{width:4.565120pt;}
._b{width:5.593600pt;}
._9{width:6.594560pt;}
._a{width:7.540480pt;}
._7{width:8.478720pt;}
._4{width:9.597440pt;}
._5{width:10.657280pt;}
._12{width:11.897600pt;}
._3{width:12.953600pt;}
._17{width:16.517760pt;}
._e{width:17.605120pt;}
._29{width:18.701867pt;}
._18{width:19.901440pt;}
._2a{width:20.843520pt;}
._f{width:22.197760pt;}
._16{width:23.126400pt;}
._15{width:24.729600pt;}
._30{width:25.866240pt;}
._2c{width:26.849280pt;}
._28{width:27.999360pt;}
._26{width:28.910080pt;}
._25{width:30.597760pt;}
._19{width:31.677440pt;}
._1a{width:32.864000pt;}
._20{width:33.856000pt;}
._1b{width:34.798080pt;}
._1c{width:36.478080pt;}
._39{width:37.384960pt;}
._d{width:38.389760pt;}
._27{width:39.629440pt;}
._11{width:40.627200pt;}
._22{width:42.275840pt;}
._14{width:43.367040pt;}
._2e{width:44.540800pt;}
._2b{width:45.749760pt;}
._2f{width:46.691840pt;}
._41{width:48.281600pt;}
._35{width:52.117120pt;}
._13{width:53.345280pt;}
._38{width:57.525760pt;}
._24{width:58.821120pt;}
._23{width:59.735680pt;}
._10{width:62.530560pt;}
._36{width:65.180160pt;}
._37{width:66.828800pt;}
._3c{width:71.480320pt;}
._2d{width:73.482240pt;}
._32{width:81.077760pt;}
._33{width:82.428160pt;}
._21{width:87.232640pt;}
._3e{width:91.598507pt;}
._1f{width:135.905280pt;}
._1d{width:168.548907pt;}
._3b{width:170.159360pt;}
._1e{width:175.686400pt;}
._2{width:177.258667pt;}
._3d{width:203.234560pt;}
._40{width:262.812800pt;}
._3f{width:263.959040pt;}
._3a{width:637.658027pt;}
._42{width:753.418667pt;}
._34{width:1284.725333pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.yc1{bottom:-2.400000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1b{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.yc9{bottom:3.360000pt;}
.ycb{bottom:3.520000pt;}
.yfc{bottom:3.560000pt;}
.ycd{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y91{bottom:8.320000pt;}
.yb3{bottom:8.346667pt;}
.yb5{bottom:8.626667pt;}
.y94{bottom:8.640000pt;}
.ybe{bottom:8.666667pt;}
.y9c{bottom:8.680000pt;}
.yef{bottom:11.680000pt;}
.yf3{bottom:12.000000pt;}
.yfa{bottom:12.040000pt;}
.yb2{bottom:19.226667pt;}
.yee{bottom:20.160000pt;}
.yfe{bottom:20.320000pt;}
.yfb{bottom:20.360000pt;}
.yf4{bottom:20.480000pt;}
.y18{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.yb1{bottom:30.266667pt;}
.y17{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y40{bottom:66.880000pt;}
.y16{bottom:69.480000pt;}
.y15{bottom:83.080000pt;}
.yc3{bottom:100.160000pt;}
.yec{bottom:100.800000pt;}
.y11d{bottom:109.280000pt;}
.y14{bottom:110.120000pt;}
.y3d{bottom:114.080000pt;}
.y8e{bottom:117.920000pt;}
.y12c{bottom:119.200000pt;}
.yc2{bottom:122.080000pt;}
.yeb{bottom:122.720000pt;}
.y13{bottom:123.400000pt;}
.y11c{bottom:131.200000pt;}
.y39{bottom:136.000000pt;}
.yc0{bottom:136.480000pt;}
.y8d{bottom:139.840000pt;}
.y12b{bottom:141.120000pt;}
.yea{bottom:144.640000pt;}
.y11b{bottom:153.120000pt;}
.y38{bottom:157.920000pt;}
.ybf{bottom:159.040000pt;}
.y8c{bottom:161.760000pt;}
.y12a{bottom:163.040000pt;}
.ye9{bottom:166.560000pt;}
.y11a{bottom:175.040000pt;}
.y37{bottom:179.840000pt;}
.ybd{bottom:181.600000pt;}
.y8b{bottom:183.706667pt;}
.y129{bottom:184.986667pt;}
.ye8{bottom:188.506667pt;}
.y119{bottom:196.986667pt;}
.y36{bottom:201.786667pt;}
.ybc{bottom:204.200000pt;}
.y8a{bottom:205.626667pt;}
.y128{bottom:206.906667pt;}
.ye7{bottom:210.426667pt;}
.y118{bottom:218.906667pt;}
.y35{bottom:223.706667pt;}
.ybb{bottom:226.760000pt;}
.y89{bottom:227.546667pt;}
.y127{bottom:228.826667pt;}
.ye6{bottom:232.346667pt;}
.y117{bottom:240.826667pt;}
.y34{bottom:245.626667pt;}
.yba{bottom:249.480000pt;}
.y65{bottom:249.786667pt;}
.y126{bottom:250.746667pt;}
.ye5{bottom:254.266667pt;}
.y116{bottom:262.746667pt;}
.y33{bottom:267.546667pt;}
.y64{bottom:271.706667pt;}
.yb9{bottom:272.040000pt;}
.y125{bottom:272.666667pt;}
.ye4{bottom:276.186667pt;}
.y115{bottom:284.666667pt;}
.y32{bottom:289.466667pt;}
.y88{bottom:293.626667pt;}
.y63{bottom:294.586667pt;}
.yb8{bottom:294.600000pt;}
.ye1{bottom:298.426667pt;}
.y114{bottom:306.586667pt;}
.y31{bottom:311.386667pt;}
.y87{bottom:315.546667pt;}
.y62{bottom:316.506667pt;}
.yb7{bottom:317.160000pt;}
.ye0{bottom:320.346667pt;}
.y113{bottom:328.506667pt;}
.y30{bottom:333.306667pt;}
.y86{bottom:337.466667pt;}
.y61{bottom:338.106667pt;}
.y124{bottom:338.426667pt;}
.yb6{bottom:339.720000pt;}
.ydf{bottom:342.266667pt;}
.y112{bottom:350.426667pt;}
.y2f{bottom:355.226667pt;}
.y85{bottom:359.386667pt;}
.y60{bottom:360.026667pt;}
.y123{bottom:360.346667pt;}
.yb4{bottom:362.440000pt;}
.yde{bottom:364.186667pt;}
.y111{bottom:372.346667pt;}
.y2e{bottom:377.146667pt;}
.y84{bottom:381.306667pt;}
.y5f{bottom:382.266667pt;}
.yb0{bottom:385.000000pt;}
.ydd{bottom:386.106667pt;}
.y110{bottom:394.306667pt;}
.y2d{bottom:399.106667pt;}
.y83{bottom:403.266667pt;}
.y5e{bottom:404.226667pt;}
.ydc{bottom:408.066667pt;}
.y10f{bottom:416.226667pt;}
.y3c{bottom:420.706667pt;}
.y2c{bottom:421.026667pt;}
.y82{bottom:425.186667pt;}
.y5d{bottom:426.306667pt;}
.ydb{bottom:429.986667pt;}
.yaf{bottom:437.826667pt;}
.y10e{bottom:438.146667pt;}
.y3b{bottom:442.626667pt;}
.y2b{bottom:442.946667pt;}
.y81{bottom:447.106667pt;}
.y5c{bottom:448.226667pt;}
.yda{bottom:451.906667pt;}
.yac{bottom:460.066667pt;}
.y2a{bottom:464.866667pt;}
.y80{bottom:469.026667pt;}
.y5b{bottom:470.146667pt;}
.yd9{bottom:473.826667pt;}
.yab{bottom:481.986667pt;}
.y10a{bottom:482.306667pt;}
.y29{bottom:486.466667pt;}
.y3a{bottom:486.786667pt;}
.y7f{bottom:490.946667pt;}
.y5a{bottom:492.066667pt;}
.yd8{bottom:495.426667pt;}
.ye3{bottom:495.746667pt;}
.yaa{bottom:503.906667pt;}
.y109{bottom:504.226667pt;}
.y28{bottom:509.186667pt;}
.y7e{bottom:512.866667pt;}
.y59{bottom:513.986667pt;}
.yd7{bottom:517.346667pt;}
.ye2{bottom:517.666667pt;}
.ya9{bottom:525.826667pt;}
.y108{bottom:526.146667pt;}
.y27{bottom:531.746667pt;}
.y7d{bottom:534.786667pt;}
.y58{bottom:535.586667pt;}
.y122{bottom:535.906667pt;}
.yd6{bottom:539.266667pt;}
.ya8{bottom:547.746667pt;}
.y107{bottom:548.066667pt;}
.y26{bottom:553.506667pt;}
.yd5{bottom:553.666667pt;}
.y7c{bottom:556.706667pt;}
.y57{bottom:557.506667pt;}
.y121{bottom:557.826667pt;}
.ya7{bottom:569.666667pt;}
.y106{bottom:569.986667pt;}
.yd4{bottom:571.106667pt;}
.y25{bottom:573.026667pt;}
.y7b{bottom:578.626667pt;}
.y56{bottom:579.746667pt;}
.yd3{bottom:588.706667pt;}
.ya6{bottom:591.586667pt;}
.y105{bottom:591.906667pt;}
.y24{bottom:592.386667pt;}
.y7a{bottom:600.546667pt;}
.y55{bottom:601.693333pt;}
.yd2{bottom:606.173333pt;}
.y23{bottom:611.773333pt;}
.ya5{bottom:613.533333pt;}
.y104{bottom:613.853333pt;}
.y79{bottom:622.493333pt;}
.y54{bottom:623.613333pt;}
.yd1{bottom:623.773333pt;}
.y22{bottom:631.133333pt;}
.ya4{bottom:635.453333pt;}
.y103{bottom:635.773333pt;}
.yd0{bottom:641.213333pt;}
.y78{bottom:644.413333pt;}
.y120{bottom:645.213333pt;}
.y53{bottom:645.533333pt;}
.y21{bottom:650.493333pt;}
.ya3{bottom:657.053333pt;}
.yae{bottom:657.373333pt;}
.y102{bottom:657.693333pt;}
.ycf{bottom:658.813333pt;}
.y77{bottom:666.333333pt;}
.y11f{bottom:667.133333pt;}
.y52{bottom:667.453333pt;}
.y20{bottom:670.013333pt;}
.yce{bottom:676.413333pt;}
.ya2{bottom:678.973333pt;}
.yad{bottom:679.293333pt;}
.y10d{bottom:679.613333pt;}
.y76{bottom:688.253333pt;}
.y51{bottom:689.053333pt;}
.y1f{bottom:689.373333pt;}
.ycc{bottom:693.853333pt;}
.ya1{bottom:700.893333pt;}
.y101{bottom:701.213333pt;}
.y10c{bottom:701.533333pt;}
.y1e{bottom:708.733333pt;}
.y75{bottom:709.853333pt;}
.y50{bottom:710.973333pt;}
.y11e{bottom:711.293333pt;}
.yca{bottom:711.453333pt;}
.ya0{bottom:715.293333pt;}
.y100{bottom:723.133333pt;}
.y10b{bottom:723.453333pt;}
.y1d{bottom:727.773333pt;}
.yc8{bottom:728.893333pt;}
.y74{bottom:731.773333pt;}
.y4f{bottom:733.213333pt;}
.yff{bottom:737.533333pt;}
.y9f{bottom:737.853333pt;}
.y1c{bottom:745.053333pt;}
.y1a{bottom:752.733333pt;}
.y73{bottom:753.693333pt;}
.yc7{bottom:754.813333pt;}
.y4e{bottom:755.133333pt;}
.y12{bottom:759.133333pt;}
.y9e{bottom:760.413333pt;}
.y19{bottom:762.654744pt;}
.yfd{bottom:771.933333pt;}
.y72{bottom:775.933333pt;}
.yc6{bottom:776.733333pt;}
.y4d{bottom:777.053333pt;}
.y9d{bottom:782.973333pt;}
.y71{bottom:797.853333pt;}
.y4c{bottom:798.973333pt;}
.y9b{bottom:805.533333pt;}
.yf9{bottom:806.333333pt;}
.y70{bottom:819.813333pt;}
.y4b{bottom:820.933333pt;}
.y9a{bottom:828.293333pt;}
.yf8{bottom:840.773333pt;}
.y6f{bottom:841.893333pt;}
.y4a{bottom:842.853333pt;}
.y99{bottom:850.853333pt;}
.yf7{bottom:858.213333pt;}
.y6e{bottom:863.813333pt;}
.y49{bottom:864.773333pt;}
.y98{bottom:873.413333pt;}
.yf6{bottom:875.813333pt;}
.y6d{bottom:885.733333pt;}
.y48{bottom:886.693333pt;}
.yf5{bottom:893.253333pt;}
.y97{bottom:895.973333pt;}
.y10{bottom:905.413333pt;}
.y6c{bottom:907.653333pt;}
.y47{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y96{bottom:918.533333pt;}
.yf2{bottom:927.653333pt;}
.y6b{bottom:929.573333pt;}
.y46{bottom:930.533333pt;}
.y95{bottom:941.253333pt;}
.y6a{bottom:951.493333pt;}
.y45{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yf1{bottom:962.053333pt;}
.y93{bottom:963.813333pt;}
.y69{bottom:973.093333pt;}
.y44{bottom:974.373333pt;}
.yf0{bottom:979.653333pt;}
.y2{bottom:983.333333pt;}
.y92{bottom:986.373333pt;}
.y68{bottom:995.013333pt;}
.yc5{bottom:995.973333pt;}
.y43{bottom:996.293333pt;}
.yed{bottom:997.093333pt;}
.y7{bottom:1003.173333pt;}
.y90{bottom:1008.933333pt;}
.y67{bottom:1017.253333pt;}
.yc4{bottom:1017.893333pt;}
.y42{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y66{bottom:1039.200000pt;}
.y8f{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h2b{height:16.786667pt;}
.h28{height:16.800000pt;}
.h29{height:16.826667pt;}
.h11{height:16.896000pt;}
.h2a{height:16.946667pt;}
.h27{height:16.960000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h22{height:21.906667pt;}
.h24{height:21.920000pt;}
.h23{height:21.940000pt;}
.h21{height:21.946667pt;}
.h26{height:21.952000pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h2f{height:33.600000pt;}
.h2e{height:33.620000pt;}
.h2d{height:33.746667pt;}
.h2c{height:33.786667pt;}
.h14{height:39.552188pt;}
.h30{height:41.112500pt;}
.h25{height:43.858667pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h1f{height:58.563750pt;}
.h1c{height:59.340000pt;}
.h15{height:60.270000pt;}
.h20{height:60.519362pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:146.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:47.030667pt;}
.w11{width:64.470667pt;}
.wa{width:64.950667pt;}
.wc{width:74.720000pt;}
.wf{width:85.778667pt;}
.w10{width:90.706667pt;}
.wd{width:93.632000pt;}
.wb{width:95.378667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.we{width:97.586667pt;}
.w17{width:101.618667pt;}
.w13{width:103.058667pt;}
.w14{width:103.186667pt;}
.w18{width:108.346667pt;}
.w9{width:124.818667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w8{width:292.693333pt;}
.w12{width:297.653333pt;}
.w16{width:377.333333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.190667pt;}
.x13{left:8.150667pt;}
.x5{left:9.746667pt;}
.x35{left:10.710667pt;}
.x38{left:11.840000pt;}
.x3d{left:12.946667pt;}
.x3e{left:15.026667pt;}
.x55{left:16.150667pt;}
.x4d{left:17.120000pt;}
.x10{left:18.386667pt;}
.x54{left:19.830667pt;}
.x40{left:22.720000pt;}
.x3b{left:23.666667pt;}
.x47{left:25.110667pt;}
.x41{left:27.200000pt;}
.x42{left:28.790667pt;}
.xb{left:30.386667pt;}
.x36{left:32.146667pt;}
.x43{left:34.080000pt;}
.x46{left:36.146667pt;}
.x44{left:38.240000pt;}
.x27{left:39.826667pt;}
.x45{left:41.920000pt;}
.x48{left:43.066667pt;}
.xe{left:44.190667pt;}
.x2c{left:46.066667pt;}
.x9{left:47.346667pt;}
.x2d{left:49.746667pt;}
.x32{left:51.866667pt;}
.x2{left:54.081333pt;}
.x29{left:55.226667pt;}
.x2e{left:71.066667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x2b{left:77.146667pt;}
.x17{left:84.145333pt;}
.xd{left:85.266667pt;}
.x30{left:87.066667pt;}
.x4f{left:89.161333pt;}
.x57{left:90.592000pt;}
.x34{left:94.441333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:109.792000pt;}
.x2a{left:112.666667pt;}
.x2f{left:113.626667pt;}
.x28{left:115.226667pt;}
.x19{left:119.985333pt;}
.x31{left:122.586667pt;}
.x4a{left:124.346667pt;}
.x21{left:133.786667pt;}
.x50{left:136.840000pt;}
.x15{left:139.705333pt;}
.x1d{left:144.026667pt;}
.x4{left:150.120000pt;}
.x14{left:160.025333pt;}
.x51{left:169.946667pt;}
.x1a{left:175.865333pt;}
.x49{left:177.160000pt;}
.x6{left:185.786667pt;}
.x25{left:188.040000pt;}
.x33{left:232.826667pt;}
.x16{left:234.425333pt;}
.x37{left:255.746667pt;}
.x56{left:258.626667pt;}
.x18{left:263.865333pt;}
.x4e{left:274.466667pt;}
.x1b{left:288.858236pt;}
.x12{left:298.292000pt;}
.x24{left:304.546667pt;}
.x39{left:330.786667pt;}
.xa{left:396.106667pt;}
.x5a{left:411.773333pt;}
.x59{left:415.453333pt;}
.x1e{left:420.893333pt;}
.x3a{left:424.746667pt;}
.x22{left:434.653333pt;}
.x58{left:444.893333pt;}
.x23{left:458.653333pt;}
.x1f{left:468.893333pt;}
.x4b{left:475.306667pt;}
.x26{left:481.066667pt;}
.x52{left:514.986667pt;}
.x3c{left:522.666667pt;}
.x4c{left:578.693333pt;}
.x3f{left:608.773333pt;}
.x53{left:617.253333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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