
    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_4c1ddbbbee6554f6ae04a2a4.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_2baef3ee9862786c3824aee8.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_9e0f77a487fffecffe2100a7.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_f16d84c79dfe45c2f06c3f32.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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_027037ee8aa6ccdc8c490a8d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b086da12fd5bf47f77907e90.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_6123b1e34d2a05ecf7f742e9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_f4eaf5ee831eda595efc2da7.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fa7c7610b8d527daf2b577ff.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c1a8bfead8a4197699347b89.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c6e91c6953e272adb3bc3a83.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls13{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.262200px;}
.lsa{letter-spacing:-0.190200px;}
.lsc{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.114000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.lse{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.ls7{letter-spacing:36.720000px;}
.ls11{letter-spacing:38.160000px;}
.ls14{letter-spacing:39.905280px;}
.ls10{letter-spacing:59.345280px;}
.ls16{letter-spacing:847.596000px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.ws0{word-spacing:-24.062880px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.696000px;}
.ws4{word-spacing:-14.650800px;}
.wsb{word-spacing:-10.755600px;}
.wsa{word-spacing:0.000000px;}
._31{margin-left:-2.185920px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._9{width:2.450880px;}
._13{width:3.643200px;}
._2{width:4.835520px;}
._3{width:6.822720px;}
._4{width:7.917840px;}
._5{width:8.942400px;}
._8{width:10.730880px;}
._7{width:12.386880px;}
._6{width:13.777920px;}
._2b{width:15.004800px;}
._27{width:18.149760px;}
._b{width:20.004480px;}
._c{width:21.216960px;}
._18{width:22.425120px;}
._15{width:23.912640px;}
._16{width:25.206480px;}
._36{width:26.557920px;}
._e{width:28.319760px;}
._a{width:29.476800px;}
._17{width:30.521520px;}
._19{width:32.060160px;}
._1d{width:34.047360px;}
._32{width:35.107200px;}
._d{width:37.177680px;}
._45{width:38.203440px;}
._2d{width:39.366720px;}
._39{width:40.982400px;}
._26{width:42.296400px;}
._40{width:43.784640px;}
._f{width:45.639360px;}
._10{width:47.096640px;}
._2a{width:48.222720px;}
._25{width:49.516560px;}
._38{width:50.572080px;}
._1a{width:51.932160px;}
._29{width:53.490960px;}
._37{width:54.699120px;}
._23{width:56.736720px;}
._2f{width:58.006800px;}
._22{width:59.351040px;}
._14{width:60.874560px;}
._3f{width:62.066880px;}
._49{width:65.312640px;}
._24{width:66.637440px;}
._43{width:68.857920px;}
._35{width:70.096800px;}
._1c{width:71.508240px;}
._1b{width:72.965520px;}
._47{width:76.382400px;}
._41{width:78.494400px;}
._12{width:80.185680px;}
._11{width:81.510480px;}
._4d{width:82.866240px;}
._28{width:84.358800px;}
._2c{width:85.648320px;}
._4c{width:86.787360px;}
._3d{width:90.086400px;}
._3e{width:91.115280px;}
._33{width:93.464640px;}
._34{width:94.906800px;}
._48{width:100.552320px;}
._3a{width:102.407040px;}
._3b{width:103.798080px;}
._21{width:110.422080px;}
._30{width:122.742720px;}
._3c{width:124.036560px;}
._2e{width:128.123280px;}
._42{width:132.402960px;}
._4b{width:149.106240px;}
._4a{width:150.431040px;}
._44{width:151.799760px;}
._20{width:152.893440px;}
._1e{width:189.617520px;}
._1f{width:197.647200px;}
._46{width:256.150080px;}
.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;}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y59{bottom:3.780000px;}
.y65{bottom:3.945000px;}
.y5c{bottom:3.960000px;}
.y68{bottom:4.125000px;}
.y60{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y57{bottom:13.170000px;}
.y63{bottom:13.485000px;}
.y5a{bottom:13.500000px;}
.y70{bottom:13.680000px;}
.y58{bottom:22.710000px;}
.y64{bottom:22.845000px;}
.y5e{bottom:22.860000px;}
.y67{bottom:23.025000px;}
.y5b{bottom:23.040000px;}
.y6c{bottom:23.070000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.380000px;}
.y3e{bottom:75.240000px;}
.y13c{bottom:121.140000px;}
.y3a{bottom:127.800000px;}
.y6d{bottom:133.200000px;}
.y93{bottom:133.920000px;}
.y107{bottom:134.100000px;}
.y9b{bottom:135.000000px;}
.y13b{bottom:145.800000px;}
.yea{bottom:148.860000px;}
.y39{bottom:152.460000px;}
.y11a{bottom:154.080000px;}
.yc2{bottom:156.420000px;}
.y92{bottom:158.580000px;}
.y106{bottom:158.760000px;}
.y9a{bottom:159.660000px;}
.y13a{bottom:170.460000px;}
.ye9{bottom:173.700000px;}
.y38{bottom:177.120000px;}
.y119{bottom:178.740000px;}
.yc1{bottom:181.080000px;}
.y105{bottom:183.060000px;}
.y91{bottom:183.240000px;}
.y10a{bottom:183.420000px;}
.y99{bottom:184.320000px;}
.y6b{bottom:186.840000px;}
.y139{bottom:195.120000px;}
.ye8{bottom:198.360000px;}
.y37{bottom:201.780000px;}
.y118{bottom:203.040000px;}
.yc0{bottom:205.740000px;}
.y104{bottom:207.750000px;}
.y90{bottom:207.930000px;}
.y109{bottom:208.110000px;}
.y98{bottom:209.010000px;}
.y138{bottom:219.810000px;}
.ye7{bottom:223.050000px;}
.y36{bottom:226.470000px;}
.y117{bottom:229.170000px;}
.ybf{bottom:230.430000px;}
.y103{bottom:232.770000px;}
.y8f{bottom:233.670000px;}
.y6a{bottom:240.705000px;}
.y137{bottom:244.470000px;}
.ye6{bottom:248.070000px;}
.y35{bottom:251.130000px;}
.y116{bottom:254.010000px;}
.ybe{bottom:255.270000px;}
.y102{bottom:257.430000px;}
.y8e{bottom:258.330000px;}
.y136{bottom:269.130000px;}
.ye5{bottom:272.730000px;}
.y34{bottom:275.790000px;}
.y115{bottom:278.670000px;}
.ybd{bottom:280.650000px;}
.y101{bottom:282.090000px;}
.y8d{bottom:282.990000px;}
.y135{bottom:293.790000px;}
.y69{bottom:294.345000px;}
.ye4{bottom:297.390000px;}
.y33{bottom:300.450000px;}
.y114{bottom:302.970000px;}
.ybc{bottom:305.310000px;}
.y100{bottom:306.750000px;}
.y8c{bottom:307.650000px;}
.y134{bottom:318.450000px;}
.ye3{bottom:322.050000px;}
.y32{bottom:325.110000px;}
.y113{bottom:329.070000px;}
.ybb{bottom:330.330000px;}
.yff{bottom:331.410000px;}
.y8b{bottom:332.310000px;}
.y133{bottom:342.750000px;}
.ye2{bottom:346.710000px;}
.y66{bottom:347.985000px;}
.y31{bottom:349.770000px;}
.y112{bottom:353.730000px;}
.yba{bottom:354.990000px;}
.yfe{bottom:356.070000px;}
.y8a{bottom:356.970000px;}
.y132{bottom:367.770000px;}
.ye1{bottom:371.010000px;}
.y30{bottom:374.430000px;}
.y111{bottom:378.390000px;}
.yb9{bottom:379.650000px;}
.yfd{bottom:380.730000px;}
.y89{bottom:381.630000px;}
.y131{bottom:392.430000px;}
.ye0{bottom:397.110000px;}
.y2f{bottom:399.090000px;}
.y62{bottom:401.805000px;}
.y110{bottom:403.050000px;}
.yb8{bottom:404.310000px;}
.yfc{bottom:405.390000px;}
.y88{bottom:406.290000px;}
.y130{bottom:417.090000px;}
.ydf{bottom:421.770000px;}
.y2e{bottom:423.750000px;}
.y10f{bottom:427.710000px;}
.yb7{bottom:428.970000px;}
.yfb{bottom:430.050000px;}
.y87{bottom:430.950000px;}
.y12f{bottom:441.435000px;}
.yde{bottom:446.475000px;}
.y2d{bottom:448.455000px;}
.y10e{bottom:452.235000px;}
.yb6{bottom:453.675000px;}
.y13e{bottom:454.395000px;}
.yfa{bottom:454.755000px;}
.y61{bottom:455.475000px;}
.y86{bottom:455.655000px;}
.y12e{bottom:466.095000px;}
.ydd{bottom:471.135000px;}
.y2c{bottom:473.115000px;}
.yb5{bottom:478.335000px;}
.y13d{bottom:479.235000px;}
.yf9{bottom:479.595000px;}
.y85{bottom:480.495000px;}
.y12d{bottom:491.295000px;}
.ydc{bottom:495.615000px;}
.y2b{bottom:497.415000px;}
.y3b{bottom:497.775000px;}
.yb4{bottom:502.995000px;}
.yf8{bottom:504.255000px;}
.y84{bottom:505.155000px;}
.y5f{bottom:509.115000px;}
.y12c{bottom:517.035000px;}
.ydb{bottom:521.715000px;}
.y2a{bottom:522.075000px;}
.yb3{bottom:527.655000px;}
.yf7{bottom:528.915000px;}
.y83{bottom:529.815000px;}
.y12b{bottom:541.695000px;}
.y29{bottom:546.195000px;}
.yda{bottom:546.375000px;}
.yb2{bottom:552.315000px;}
.yf6{bottom:553.575000px;}
.y82{bottom:554.475000px;}
.y5d{bottom:562.935000px;}
.y12a{bottom:567.615000px;}
.y28{bottom:568.155000px;}
.yd9{bottom:571.035000px;}
.yb1{bottom:576.975000px;}
.yf5{bottom:578.235000px;}
.y81{bottom:579.135000px;}
.y129{bottom:593.535000px;}
.y27{bottom:594.795000px;}
.yd8{bottom:595.875000px;}
.y10d{bottom:601.455000px;}
.yb0{bottom:601.635000px;}
.yf4{bottom:602.895000px;}
.y97{bottom:603.435000px;}
.y80{bottom:603.795000px;}
.y26{bottom:616.575000px;}
.y128{bottom:618.915000px;}
.yd7{bottom:621.615000px;}
.yaf{bottom:625.935000px;}
.y10c{bottom:627.195000px;}
.yf3{bottom:627.555000px;}
.y7f{bottom:628.095000px;}
.y96{bottom:629.535000px;}
.y25{bottom:638.355000px;}
.y127{bottom:643.935000px;}
.yd6{bottom:646.275000px;}
.yae{bottom:650.595000px;}
.y108{bottom:651.855000px;}
.yf2{bottom:652.215000px;}
.y7e{bottom:654.195000px;}
.y24{bottom:660.135000px;}
.y126{bottom:669.675000px;}
.y56{bottom:670.215000px;}
.yd5{bottom:670.935000px;}
.yad{bottom:675.615000px;}
.y10b{bottom:676.545000px;}
.yf1{bottom:676.905000px;}
.y7d{bottom:678.885000px;}
.y23{bottom:682.125000px;}
.y125{bottom:694.545000px;}
.yd4{bottom:695.265000px;}
.yac{bottom:700.305000px;}
.yf0{bottom:701.565000px;}
.y7c{bottom:703.545000px;}
.y22{bottom:703.905000px;}
.y124{bottom:720.285000px;}
.yd3{bottom:721.365000px;}
.yab{bottom:724.965000px;}
.y21{bottom:725.685000px;}
.y55{bottom:726.225000px;}
.y7b{bottom:728.205000px;}
.yd2{bottom:746.205000px;}
.y20{bottom:747.465000px;}
.yaa{bottom:749.625000px;}
.y50{bottom:750.885000px;}
.y7a{bottom:752.865000px;}
.y1f{bottom:769.245000px;}
.yd1{bottom:770.865000px;}
.ya9{bottom:774.285000px;}
.yef{bottom:775.185000px;}
.y4f{bottom:775.545000px;}
.y79{bottom:777.525000px;}
.y1e{bottom:791.205000px;}
.yd0{bottom:795.525000px;}
.y123{bottom:796.245000px;}
.ya8{bottom:798.945000px;}
.y4e{bottom:800.205000px;}
.y78{bottom:802.185000px;}
.y1d{bottom:812.985000px;}
.ycf{bottom:819.825000px;}
.y122{bottom:821.265000px;}
.ya7{bottom:823.605000px;}
.y4d{bottom:824.865000px;}
.y77{bottom:827.025000px;}
.y1c{bottom:834.765000px;}
.yce{bottom:845.925000px;}
.y121{bottom:846.105000px;}
.ya6{bottom:848.265000px;}
.y4c{bottom:849.525000px;}
.y76{bottom:851.325000px;}
.y95{bottom:851.685000px;}
.y1b{bottom:856.545000px;}
.ycd{bottom:870.585000px;}
.y120{bottom:871.845000px;}
.ya5{bottom:872.925000px;}
.y4b{bottom:874.185000px;}
.y75{bottom:875.985000px;}
.y94{bottom:876.345000px;}
.y1a{bottom:878.505000px;}
.ycc{bottom:895.245000px;}
.y11f{bottom:897.225000px;}
.ya4{bottom:897.585000px;}
.y4a{bottom:898.845000px;}
.y19{bottom:899.925000px;}
.y74{bottom:900.645000px;}
.y17{bottom:915.270000px;}
.ycb{bottom:920.130000px;}
.y11e{bottom:921.930000px;}
.ya3{bottom:922.290000px;}
.y12{bottom:922.470000px;}
.y49{bottom:923.550000px;}
.y73{bottom:924.090000px;}
.y16{bottom:926.396347px;}
.yca{bottom:945.870000px;}
.y11d{bottom:946.770000px;}
.ya2{bottom:947.130000px;}
.y48{bottom:948.210000px;}
.yc9{bottom:970.530000px;}
.y11c{bottom:971.430000px;}
.ya1{bottom:971.790000px;}
.y54{bottom:972.510000px;}
.y47{bottom:972.870000px;}
.y72{bottom:977.910000px;}
.yc8{bottom:995.190000px;}
.ya0{bottom:996.450000px;}
.y53{bottom:997.170000px;}
.y46{bottom:997.530000px;}
.y10{bottom:1018.590000px;}
.yc7{bottom:1019.850000px;}
.y9f{bottom:1021.110000px;}
.y52{bottom:1021.830000px;}
.y45{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y71{bottom:1031.550000px;}
.yc6{bottom:1044.330000px;}
.y9e{bottom:1045.770000px;}
.y51{bottom:1046.490000px;}
.y44{bottom:1046.850000px;}
.y9d{bottom:1070.430000px;}
.y43{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y6f{bottom:1085.190000px;}
.y9c{bottom:1095.090000px;}
.yee{bottom:1095.810000px;}
.y42{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y11b{bottom:1119.390000px;}
.yc5{bottom:1119.750000px;}
.yed{bottom:1120.470000px;}
.y41{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y6e{bottom:1139.010000px;}
.yc4{bottom:1144.410000px;}
.yec{bottom:1145.130000px;}
.y40{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.yc3{bottom:1168.740000px;}
.yeb{bottom:1169.820000px;}
.y3f{bottom:1170.180000px;}
.y3d{bottom:1187.280000px;}
.y3c{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1b{height:30.480469px;}
.h20{height:37.785000px;}
.h1f{height:37.965000px;}
.h22{height:37.978500px;}
.h1e{height:38.010000px;}
.h21{height:38.016000px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1c{height:58.621992px;}
.h24{height:59.383125px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h23{height:68.084282px;}
.h6{height:71.324297px;}
.h1d{height:72.326250px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:161.989500px;}
.w9{width:220.200000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.wa{width:307.815000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.189500px;}
.x13{left:8.989500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x1e{left:32.790000px;}
.xb{left:34.185000px;}
.x21{left:36.165000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x1f{left:77.070000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x1c{left:100.846500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x23{left:113.076000px;}
.x27{left:135.036000px;}
.x24{left:140.076000px;}
.x16{left:153.388500px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x17{left:182.188500px;}
.x6{left:209.010000px;}
.x15{left:241.768500px;}
.x1d{left:263.565000px;}
.x14{left:278.848500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x26{left:478.545000px;}
.x20{left:484.500000px;}
.x28{left:500.505000px;}
.x25{left:505.545000px;}
.x1b{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.233067pt;}
.lsa{letter-spacing:-0.169067pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.ls7{letter-spacing:32.640000pt;}
.ls11{letter-spacing:33.920000pt;}
.ls14{letter-spacing:35.471360pt;}
.ls10{letter-spacing:52.751360pt;}
.ls16{letter-spacing:753.418667pt;}
.wsd{word-spacing:-58.880000pt;}
.ws0{word-spacing:-21.389227pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.022933pt;}
.wsb{word-spacing:-9.560533pt;}
.wsa{word-spacing:0.000000pt;}
._31{margin-left:-1.943040pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._9{width:2.178560pt;}
._13{width:3.238400pt;}
._2{width:4.298240pt;}
._3{width:6.064640pt;}
._4{width:7.038080pt;}
._5{width:7.948800pt;}
._8{width:9.538560pt;}
._7{width:11.010560pt;}
._6{width:12.247040pt;}
._2b{width:13.337600pt;}
._27{width:16.133120pt;}
._b{width:17.781760pt;}
._c{width:18.859520pt;}
._18{width:19.933440pt;}
._15{width:21.255680pt;}
._16{width:22.405760pt;}
._36{width:23.607040pt;}
._e{width:25.173120pt;}
._a{width:26.201600pt;}
._17{width:27.130240pt;}
._19{width:28.497920pt;}
._1d{width:30.264320pt;}
._32{width:31.206400pt;}
._d{width:33.046827pt;}
._45{width:33.958613pt;}
._2d{width:34.992640pt;}
._39{width:36.428800pt;}
._26{width:37.596800pt;}
._40{width:38.919680pt;}
._f{width:40.568320pt;}
._10{width:41.863680pt;}
._2a{width:42.864640pt;}
._25{width:44.014720pt;}
._38{width:44.952960pt;}
._1a{width:46.161920pt;}
._29{width:47.547520pt;}
._37{width:48.621440pt;}
._23{width:50.432640pt;}
._2f{width:51.561600pt;}
._22{width:52.756480pt;}
._14{width:54.110720pt;}
._3f{width:55.170560pt;}
._49{width:58.055680pt;}
._24{width:59.233280pt;}
._43{width:61.207040pt;}
._35{width:62.308267pt;}
._1c{width:63.562880pt;}
._1b{width:64.858240pt;}
._47{width:67.895467pt;}
._41{width:69.772800pt;}
._12{width:71.276160pt;}
._11{width:72.453760pt;}
._4d{width:73.658880pt;}
._28{width:74.985600pt;}
._2c{width:76.131840pt;}
._4c{width:77.144320pt;}
._3d{width:80.076800pt;}
._3e{width:80.991360pt;}
._33{width:83.079680pt;}
._34{width:84.361600pt;}
._48{width:89.379840pt;}
._3a{width:91.028480pt;}
._3b{width:92.264960pt;}
._21{width:98.152960pt;}
._30{width:109.104640pt;}
._3c{width:110.254720pt;}
._2e{width:113.887360pt;}
._42{width:117.691520pt;}
._4b{width:132.538880pt;}
._4a{width:133.716480pt;}
._44{width:134.933120pt;}
._20{width:135.905280pt;}
._1e{width:168.548907pt;}
._1f{width:175.686400pt;}
._46{width:227.688960pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y59{bottom:3.360000pt;}
.y65{bottom:3.506667pt;}
.y5c{bottom:3.520000pt;}
.y68{bottom:3.666667pt;}
.y60{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y57{bottom:11.706667pt;}
.y63{bottom:11.986667pt;}
.y5a{bottom:12.000000pt;}
.y70{bottom:12.160000pt;}
.y58{bottom:20.186667pt;}
.y64{bottom:20.306667pt;}
.y5e{bottom:20.320000pt;}
.y67{bottom:20.466667pt;}
.y5b{bottom:20.480000pt;}
.y6c{bottom:20.506667pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.560000pt;}
.y3e{bottom:66.880000pt;}
.y13c{bottom:107.680000pt;}
.y3a{bottom:113.600000pt;}
.y6d{bottom:118.400000pt;}
.y93{bottom:119.040000pt;}
.y107{bottom:119.200000pt;}
.y9b{bottom:120.000000pt;}
.y13b{bottom:129.600000pt;}
.yea{bottom:132.320000pt;}
.y39{bottom:135.520000pt;}
.y11a{bottom:136.960000pt;}
.yc2{bottom:139.040000pt;}
.y92{bottom:140.960000pt;}
.y106{bottom:141.120000pt;}
.y9a{bottom:141.920000pt;}
.y13a{bottom:151.520000pt;}
.ye9{bottom:154.400000pt;}
.y38{bottom:157.440000pt;}
.y119{bottom:158.880000pt;}
.yc1{bottom:160.960000pt;}
.y105{bottom:162.720000pt;}
.y91{bottom:162.880000pt;}
.y10a{bottom:163.040000pt;}
.y99{bottom:163.840000pt;}
.y6b{bottom:166.080000pt;}
.y139{bottom:173.440000pt;}
.ye8{bottom:176.320000pt;}
.y37{bottom:179.360000pt;}
.y118{bottom:180.480000pt;}
.yc0{bottom:182.880000pt;}
.y104{bottom:184.666667pt;}
.y90{bottom:184.826667pt;}
.y109{bottom:184.986667pt;}
.y98{bottom:185.786667pt;}
.y138{bottom:195.386667pt;}
.ye7{bottom:198.266667pt;}
.y36{bottom:201.306667pt;}
.y117{bottom:203.706667pt;}
.ybf{bottom:204.826667pt;}
.y103{bottom:206.906667pt;}
.y8f{bottom:207.706667pt;}
.y6a{bottom:213.960000pt;}
.y137{bottom:217.306667pt;}
.ye6{bottom:220.506667pt;}
.y35{bottom:223.226667pt;}
.y116{bottom:225.786667pt;}
.ybe{bottom:226.906667pt;}
.y102{bottom:228.826667pt;}
.y8e{bottom:229.626667pt;}
.y136{bottom:239.226667pt;}
.ye5{bottom:242.426667pt;}
.y34{bottom:245.146667pt;}
.y115{bottom:247.706667pt;}
.ybd{bottom:249.466667pt;}
.y101{bottom:250.746667pt;}
.y8d{bottom:251.546667pt;}
.y135{bottom:261.146667pt;}
.y69{bottom:261.640000pt;}
.ye4{bottom:264.346667pt;}
.y33{bottom:267.066667pt;}
.y114{bottom:269.306667pt;}
.ybc{bottom:271.386667pt;}
.y100{bottom:272.666667pt;}
.y8c{bottom:273.466667pt;}
.y134{bottom:283.066667pt;}
.ye3{bottom:286.266667pt;}
.y32{bottom:288.986667pt;}
.y113{bottom:292.506667pt;}
.ybb{bottom:293.626667pt;}
.yff{bottom:294.586667pt;}
.y8b{bottom:295.386667pt;}
.y133{bottom:304.666667pt;}
.ye2{bottom:308.186667pt;}
.y66{bottom:309.320000pt;}
.y31{bottom:310.906667pt;}
.y112{bottom:314.426667pt;}
.yba{bottom:315.546667pt;}
.yfe{bottom:316.506667pt;}
.y8a{bottom:317.306667pt;}
.y132{bottom:326.906667pt;}
.ye1{bottom:329.786667pt;}
.y30{bottom:332.826667pt;}
.y111{bottom:336.346667pt;}
.yb9{bottom:337.466667pt;}
.yfd{bottom:338.426667pt;}
.y89{bottom:339.226667pt;}
.y131{bottom:348.826667pt;}
.ye0{bottom:352.986667pt;}
.y2f{bottom:354.746667pt;}
.y62{bottom:357.160000pt;}
.y110{bottom:358.266667pt;}
.yb8{bottom:359.386667pt;}
.yfc{bottom:360.346667pt;}
.y88{bottom:361.146667pt;}
.y130{bottom:370.746667pt;}
.ydf{bottom:374.906667pt;}
.y2e{bottom:376.666667pt;}
.y10f{bottom:380.186667pt;}
.yb7{bottom:381.306667pt;}
.yfb{bottom:382.266667pt;}
.y87{bottom:383.066667pt;}
.y12f{bottom:392.386667pt;}
.yde{bottom:396.866667pt;}
.y2d{bottom:398.626667pt;}
.y10e{bottom:401.986667pt;}
.yb6{bottom:403.266667pt;}
.y13e{bottom:403.906667pt;}
.yfa{bottom:404.226667pt;}
.y61{bottom:404.866667pt;}
.y86{bottom:405.026667pt;}
.y12e{bottom:414.306667pt;}
.ydd{bottom:418.786667pt;}
.y2c{bottom:420.546667pt;}
.yb5{bottom:425.186667pt;}
.y13d{bottom:425.986667pt;}
.yf9{bottom:426.306667pt;}
.y85{bottom:427.106667pt;}
.y12d{bottom:436.706667pt;}
.ydc{bottom:440.546667pt;}
.y2b{bottom:442.146667pt;}
.y3b{bottom:442.466667pt;}
.yb4{bottom:447.106667pt;}
.yf8{bottom:448.226667pt;}
.y84{bottom:449.026667pt;}
.y5f{bottom:452.546667pt;}
.y12c{bottom:459.586667pt;}
.ydb{bottom:463.746667pt;}
.y2a{bottom:464.066667pt;}
.yb3{bottom:469.026667pt;}
.yf7{bottom:470.146667pt;}
.y83{bottom:470.946667pt;}
.y12b{bottom:481.506667pt;}
.y29{bottom:485.506667pt;}
.yda{bottom:485.666667pt;}
.yb2{bottom:490.946667pt;}
.yf6{bottom:492.066667pt;}
.y82{bottom:492.866667pt;}
.y5d{bottom:500.386667pt;}
.y12a{bottom:504.546667pt;}
.y28{bottom:505.026667pt;}
.yd9{bottom:507.586667pt;}
.yb1{bottom:512.866667pt;}
.yf5{bottom:513.986667pt;}
.y81{bottom:514.786667pt;}
.y129{bottom:527.586667pt;}
.y27{bottom:528.706667pt;}
.yd8{bottom:529.666667pt;}
.y10d{bottom:534.626667pt;}
.yb0{bottom:534.786667pt;}
.yf4{bottom:535.906667pt;}
.y97{bottom:536.386667pt;}
.y80{bottom:536.706667pt;}
.y26{bottom:548.066667pt;}
.y128{bottom:550.146667pt;}
.yd7{bottom:552.546667pt;}
.yaf{bottom:556.386667pt;}
.y10c{bottom:557.506667pt;}
.yf3{bottom:557.826667pt;}
.y7f{bottom:558.306667pt;}
.y96{bottom:559.586667pt;}
.y25{bottom:567.426667pt;}
.y127{bottom:572.386667pt;}
.yd6{bottom:574.466667pt;}
.yae{bottom:578.306667pt;}
.y108{bottom:579.426667pt;}
.yf2{bottom:579.746667pt;}
.y7e{bottom:581.506667pt;}
.y24{bottom:586.786667pt;}
.y126{bottom:595.266667pt;}
.y56{bottom:595.746667pt;}
.yd5{bottom:596.386667pt;}
.yad{bottom:600.546667pt;}
.y10b{bottom:601.373333pt;}
.yf1{bottom:601.693333pt;}
.y7d{bottom:603.453333pt;}
.y23{bottom:606.333333pt;}
.y125{bottom:617.373333pt;}
.yd4{bottom:618.013333pt;}
.yac{bottom:622.493333pt;}
.yf0{bottom:623.613333pt;}
.y7c{bottom:625.373333pt;}
.y22{bottom:625.693333pt;}
.y124{bottom:640.253333pt;}
.yd3{bottom:641.213333pt;}
.yab{bottom:644.413333pt;}
.y21{bottom:645.053333pt;}
.y55{bottom:645.533333pt;}
.y7b{bottom:647.293333pt;}
.yd2{bottom:663.293333pt;}
.y20{bottom:664.413333pt;}
.yaa{bottom:666.333333pt;}
.y50{bottom:667.453333pt;}
.y7a{bottom:669.213333pt;}
.y1f{bottom:683.773333pt;}
.yd1{bottom:685.213333pt;}
.ya9{bottom:688.253333pt;}
.yef{bottom:689.053333pt;}
.y4f{bottom:689.373333pt;}
.y79{bottom:691.133333pt;}
.y1e{bottom:703.293333pt;}
.yd0{bottom:707.133333pt;}
.y123{bottom:707.773333pt;}
.ya8{bottom:710.173333pt;}
.y4e{bottom:711.293333pt;}
.y78{bottom:713.053333pt;}
.y1d{bottom:722.653333pt;}
.ycf{bottom:728.733333pt;}
.y122{bottom:730.013333pt;}
.ya7{bottom:732.093333pt;}
.y4d{bottom:733.213333pt;}
.y77{bottom:735.133333pt;}
.y1c{bottom:742.013333pt;}
.yce{bottom:751.933333pt;}
.y121{bottom:752.093333pt;}
.ya6{bottom:754.013333pt;}
.y4c{bottom:755.133333pt;}
.y76{bottom:756.733333pt;}
.y95{bottom:757.053333pt;}
.y1b{bottom:761.373333pt;}
.ycd{bottom:773.853333pt;}
.y120{bottom:774.973333pt;}
.ya5{bottom:775.933333pt;}
.y4b{bottom:777.053333pt;}
.y75{bottom:778.653333pt;}
.y94{bottom:778.973333pt;}
.y1a{bottom:780.893333pt;}
.ycc{bottom:795.773333pt;}
.y11f{bottom:797.533333pt;}
.ya4{bottom:797.853333pt;}
.y4a{bottom:798.973333pt;}
.y19{bottom:799.933333pt;}
.y74{bottom:800.573333pt;}
.y17{bottom:813.573333pt;}
.ycb{bottom:817.893333pt;}
.y11e{bottom:819.493333pt;}
.ya3{bottom:819.813333pt;}
.y12{bottom:819.973333pt;}
.y49{bottom:820.933333pt;}
.y73{bottom:821.413333pt;}
.y16{bottom:823.463420pt;}
.yca{bottom:840.773333pt;}
.y11d{bottom:841.573333pt;}
.ya2{bottom:841.893333pt;}
.y48{bottom:842.853333pt;}
.yc9{bottom:862.693333pt;}
.y11c{bottom:863.493333pt;}
.ya1{bottom:863.813333pt;}
.y54{bottom:864.453333pt;}
.y47{bottom:864.773333pt;}
.y72{bottom:869.253333pt;}
.yc8{bottom:884.613333pt;}
.ya0{bottom:885.733333pt;}
.y53{bottom:886.373333pt;}
.y46{bottom:886.693333pt;}
.y10{bottom:905.413333pt;}
.yc7{bottom:906.533333pt;}
.y9f{bottom:907.653333pt;}
.y52{bottom:908.293333pt;}
.y45{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y71{bottom:916.933333pt;}
.yc6{bottom:928.293333pt;}
.y9e{bottom:929.573333pt;}
.y51{bottom:930.213333pt;}
.y44{bottom:930.533333pt;}
.y9d{bottom:951.493333pt;}
.y43{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y6f{bottom:964.613333pt;}
.y9c{bottom:973.413333pt;}
.yee{bottom:974.053333pt;}
.y42{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y11b{bottom:995.013333pt;}
.yc5{bottom:995.333333pt;}
.yed{bottom:995.973333pt;}
.y41{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y6e{bottom:1012.453333pt;}
.yc4{bottom:1017.253333pt;}
.yec{bottom:1017.893333pt;}
.y40{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.yc3{bottom:1038.880000pt;}
.yeb{bottom:1039.840000pt;}
.y3f{bottom:1040.160000pt;}
.y3d{bottom:1055.360000pt;}
.y3c{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1b{height:27.093750pt;}
.h20{height:33.586667pt;}
.h1f{height:33.746667pt;}
.h22{height:33.758667pt;}
.h1e{height:33.786667pt;}
.h21{height:33.792000pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1c{height:52.108438pt;}
.h24{height:52.785000pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h23{height:60.519362pt;}
.h6{height:63.399375pt;}
.h1d{height:64.290000pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:143.990667pt;}
.w9{width:195.733333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.wa{width:273.613333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.390667pt;}
.x13{left:7.990667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x1e{left:29.146667pt;}
.xb{left:30.386667pt;}
.x21{left:32.146667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x1f{left:68.506667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x1c{left:89.641333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x23{left:100.512000pt;}
.x27{left:120.032000pt;}
.x24{left:124.512000pt;}
.x16{left:136.345333pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x17{left:161.945333pt;}
.x6{left:185.786667pt;}
.x15{left:214.905333pt;}
.x1d{left:234.280000pt;}
.x14{left:247.865333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x26{left:425.373333pt;}
.x20{left:430.666667pt;}
.x28{left:444.893333pt;}
.x25{left:449.373333pt;}
.x1b{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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