
    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_886605ddb7c943625c78fb1b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_356360cd1c295da051df8ed5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f9925af65275dfed81b514fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096191;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_dd01e311a37570380d56d24a.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab1b151a2b1a8bb563ce25b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_110227ba505af1dd67646ef3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e998f79215afcce59ef98832.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_be064ce2703feafe6e801b42.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_0d97549ae58d3d40b5acc89e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.096191;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_da79e37e8302a53c9e0e748a.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m7{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.530300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530300,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.537875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537875,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.666000px;}
.ls1b{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.170400px;}
.lsf{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1d{letter-spacing:0.034425px;}
.ls18{letter-spacing:0.109200px;}
.ls1c{letter-spacing:0.109440px;}
.lsb{letter-spacing:0.158400px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.235200px;}
.ls19{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.305400px;}
.ls1e{letter-spacing:0.326400px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:4.625280px;}
.ls13{letter-spacing:6.065280px;}
.ls4{letter-spacing:8.121244px;}
.lsc{letter-spacing:16.865280px;}
.ls14{letter-spacing:20.465280px;}
.ls15{letter-spacing:28.385280px;}
.lsd{letter-spacing:135.641280px;}
.ls16{letter-spacing:135.665280px;}
.ls12{letter-spacing:188.201280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-19.675200px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.886400px;}
.ws11{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.102200px;}
.wse{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.274000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-5.677200px;}
._15{margin-left:-4.371840px;}
._7{margin-left:-2.928240px;}
._0{margin-left:-1.254240px;}
._3{width:1.254960px;}
._5{width:2.653680px;}
._f{width:4.637040px;}
._12{width:5.805156px;}
._e{width:6.812640px;}
._11{width:8.127360px;}
._a{width:9.262800px;}
._b{width:10.367760px;}
._10{width:11.653200px;}
._17{width:12.740160px;}
._2e{width:14.063520px;}
._31{width:15.433920px;}
._d{width:17.406720px;}
._1c{width:18.429120px;}
._13{width:19.524960px;}
._21{width:20.660160px;}
._8{width:21.991680px;}
._9{width:23.127120px;}
._6{width:24.580560px;}
._c{width:25.691280px;}
._1f{width:27.555840px;}
._1b{width:29.136960px;}
._16{width:32.457600px;}
._26{width:39.490560px;}
._23{width:40.936320px;}
._24{width:42.791040px;}
._2b{width:43.917120px;}
._2c{width:45.043200px;}
._2d{width:46.368000px;}
._22{width:47.891520px;}
._2f{width:64.319040px;}
._19{width:66.240000px;}
._27{width:86.840640px;}
._1a{width:87.966720px;}
._32{width:91.013760px;}
._29{width:125.222400px;}
._2a{width:126.787680px;}
._20{width:142.614720px;}
._18{width:159.186240px;}
._1e{width:164.076480px;}
._1d{width:165.666240px;}
._25{width:181.427040px;}
._14{width:203.967840px;}
._30{width:213.818400px;}
._2{width:237.900000px;}
._28{width:264.189600px;}
._1{width:1099.048800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.600000px;}
.y85{bottom:3.645000px;}
.y6d{bottom:3.780000px;}
.y2{bottom:6.840000px;}
.ya6{bottom:11.160000px;}
.y75{bottom:22.494000px;}
.yac{bottom:22.500000px;}
.y6c{bottom:22.680000px;}
.y84{bottom:22.725000px;}
.ybf{bottom:27.180000px;}
.ycc{bottom:27.360000px;}
.ya5{bottom:30.060000px;}
.y74{bottom:41.574000px;}
.y6b{bottom:41.580000px;}
.y83{bottom:41.625000px;}
.y6f{bottom:41.760000px;}
.ya4{bottom:48.954000px;}
.y5{bottom:53.100000px;}
.y4{bottom:56.700000px;}
.ya9{bottom:60.480000px;}
.y82{bottom:60.525000px;}
.y6a{bottom:60.660000px;}
.ya3{bottom:68.034000px;}
.ya1{bottom:79.560000px;}
.ya8{bottom:79.590000px;}
.y81{bottom:79.605000px;}
.y80{bottom:98.505000px;}
.yd6{bottom:115.596000px;}
.y7f{bottom:117.585000px;}
.ya2{bottom:119.016000px;}
.y40{bottom:124.236000px;}
.yd5{bottom:134.496000px;}
.y7e{bottom:136.485000px;}
.y3f{bottom:143.136000px;}
.y73{bottom:145.476000px;}
.ye5{bottom:152.850000px;}
.yd4{bottom:153.570000px;}
.y7d{bottom:155.385000px;}
.y3e{bottom:160.950000px;}
.ye4{bottom:171.750000px;}
.yd3{bottom:172.470000px;}
.y7c{bottom:174.465000px;}
.y3d{bottom:174.810000px;}
.y3c{bottom:189.210000px;}
.ye3{bottom:190.830000px;}
.yd2{bottom:191.370000px;}
.y7b{bottom:193.365000px;}
.ya0{bottom:203.070000px;}
.y3b{bottom:206.490000px;}
.y72{bottom:206.670000px;}
.ye2{bottom:209.730000px;}
.yd1{bottom:210.450000px;}
.y7a{bottom:212.445000px;}
.y3a{bottom:223.770000px;}
.y71{bottom:225.750000px;}
.yd0{bottom:226.470000px;}
.ye1{bottom:228.630000px;}
.y79{bottom:231.345000px;}
.y39{bottom:241.050000px;}
.y70{bottom:244.650000px;}
.ycf{bottom:246.090000px;}
.ye0{bottom:247.710000px;}
.y78{bottom:250.245000px;}
.y38{bottom:258.330000px;}
.y6e{bottom:260.670000px;}
.yce{bottom:265.170000px;}
.ydf{bottom:266.610000px;}
.y77{bottom:269.355000px;}
.y37{bottom:275.430000px;}
.ycd{bottom:284.070000px;}
.yde{bottom:285.690000px;}
.y36{bottom:292.710000px;}
.y9f{bottom:298.650000px;}
.ycb{bottom:303.870000px;}
.ydd{bottom:304.590000px;}
.y35{bottom:309.990000px;}
.ydc{bottom:323.490000px;}
.y34{bottom:327.270000px;}
.y69{bottom:337.395000px;}
.y9e{bottom:341.175000px;}
.ydb{bottom:342.615000px;}
.y33{bottom:344.595000px;}
.yca{bottom:350.895000px;}
.y9d{bottom:360.075000px;}
.yda{bottom:361.515000px;}
.y32{bottom:361.875000px;}
.yc9{bottom:369.975000px;}
.y31{bottom:378.975000px;}
.yd9{bottom:380.595000px;}
.yc8{bottom:388.875000px;}
.y30{bottom:396.255000px;}
.y9c{bottom:398.055000px;}
.yd8{bottom:399.495000px;}
.yc7{bottom:407.775000px;}
.y2f{bottom:413.535000px;}
.y67{bottom:414.075000px;}
.y9b{bottom:416.955000px;}
.yd7{bottom:418.575000px;}
.yc6{bottom:426.855000px;}
.y2e{bottom:430.815000px;}
.y9a{bottom:436.035000px;}
.y66{bottom:437.475000px;}
.yc5{bottom:445.755000px;}
.y2d{bottom:448.095000px;}
.y99{bottom:454.935000px;}
.y65{bottom:456.375000px;}
.yc4{bottom:464.835000px;}
.y2c{bottom:465.375000px;}
.y98{bottom:473.835000px;}
.y64{bottom:475.455000px;}
.yc3{bottom:480.855000px;}
.y2b{bottom:482.475000px;}
.y97{bottom:492.915000px;}
.y63{bottom:494.355000px;}
.y2a{bottom:499.755000px;}
.yc2{bottom:500.475000px;}
.y96{bottom:511.815000px;}
.y62{bottom:513.435000px;}
.y29{bottom:517.035000px;}
.yc1{bottom:519.555000px;}
.y95{bottom:530.895000px;}
.y61{bottom:532.335000px;}
.y28{bottom:534.315000px;}
.yc0{bottom:538.455000px;}
.y94{bottom:549.795000px;}
.y60{bottom:551.235000px;}
.y27{bottom:551.595000px;}
.ybe{bottom:558.255000px;}
.y26{bottom:568.695000px;}
.y5f{bottom:570.315000px;}
.y25{bottom:585.975000px;}
.y93{bottom:587.775000px;}
.y5e{bottom:589.215000px;}
.y24{bottom:603.255000px;}
.ybd{bottom:605.265000px;}
.y92{bottom:606.705000px;}
.y5d{bottom:608.325000px;}
.y23{bottom:620.565000px;}
.ybc{bottom:624.165000px;}
.y91{bottom:625.785000px;}
.y5c{bottom:627.225000px;}
.y22{bottom:637.845000px;}
.ybb{bottom:643.245000px;}
.y90{bottom:644.685000px;}
.y5b{bottom:646.125000px;}
.y21{bottom:655.125000px;}
.yba{bottom:662.145000px;}
.y8f{bottom:663.585000px;}
.y5a{bottom:665.205000px;}
.y20{bottom:672.225000px;}
.yb9{bottom:681.225000px;}
.y8e{bottom:682.665000px;}
.y59{bottom:684.105000px;}
.y1f{bottom:689.505000px;}
.yb8{bottom:700.125000px;}
.y8d{bottom:701.565000px;}
.y58{bottom:703.185000px;}
.y1e{bottom:706.785000px;}
.yb7{bottom:719.025000px;}
.y8c{bottom:720.645000px;}
.y57{bottom:722.085000px;}
.y1d{bottom:724.065000px;}
.yb6{bottom:738.105000px;}
.y8b{bottom:739.545000px;}
.y56{bottom:740.985000px;}
.y1c{bottom:741.345000px;}
.yb5{bottom:757.005000px;}
.y1b{bottom:758.625000px;}
.y55{bottom:760.065000px;}
.y1a{bottom:775.725000px;}
.yb4{bottom:776.085000px;}
.y8a{bottom:777.525000px;}
.y54{bottom:778.965000px;}
.y19{bottom:793.005000px;}
.yb3{bottom:794.985000px;}
.y89{bottom:796.425000px;}
.y53{bottom:798.045000px;}
.y18{bottom:810.285000px;}
.yb2{bottom:813.885000px;}
.y88{bottom:815.505000px;}
.y52{bottom:816.945000px;}
.y17{bottom:827.565000px;}
.yb1{bottom:832.965000px;}
.y87{bottom:834.405000px;}
.y51{bottom:835.845000px;}
.y16{bottom:850.065000px;}
.yb0{bottom:851.865000px;}
.y86{bottom:853.485000px;}
.y50{bottom:854.925000px;}
.y15{bottom:861.945000px;}
.y76{bottom:869.505000px;}
.yaf{bottom:870.990000px;}
.y4f{bottom:873.870000px;}
.y14{bottom:884.490000px;}
.yae{bottom:889.890000px;}
.y4e{bottom:892.950000px;}
.y13{bottom:896.550000px;}
.yad{bottom:908.790000px;}
.y4d{bottom:911.850000px;}
.y12{bottom:919.050000px;}
.yab{bottom:924.990000px;}
.y4c{bottom:930.930000px;}
.y11{bottom:931.110000px;}
.y4b{bottom:949.830000px;}
.y10{bottom:953.610000px;}
.yf{bottom:966.030000px;}
.y4a{bottom:968.730000px;}
.yaa{bottom:982.590000px;}
.ye{bottom:984.930000px;}
.y49{bottom:987.810000px;}
.yd{bottom:1004.370000px;}
.y48{bottom:1006.710000px;}
.y47{bottom:1025.790000px;}
.yc{bottom:1026.870000px;}
.y46{bottom:1044.690000px;}
.yb{bottom:1049.190000px;}
.ya7{bottom:1059.270000px;}
.y45{bottom:1063.590000px;}
.ya{bottom:1071.510000px;}
.y44{bottom:1082.670000px;}
.y9{bottom:1089.150000px;}
.y43{bottom:1101.570000px;}
.y8{bottom:1106.430000px;}
.y42{bottom:1120.650000px;}
.y7{bottom:1123.530000px;}
.y41{bottom:1139.580000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1166.040000px;}
.y1{bottom:1183.140000px;}
.h13{height:18.900000px;}
.h1e{height:19.080000px;}
.h2{height:26.640000px;}
.hc{height:28.115859px;}
.hf{height:34.036523px;}
.h10{height:34.884492px;}
.h18{height:38.016000px;}
.h5{height:39.760312px;}
.h7{height:42.164648px;}
.h1d{height:42.480000px;}
.h1f{height:42.696000px;}
.hd{height:43.215117px;}
.ha{height:46.736719px;}
.h11{height:47.901094px;}
.h12{height:48.224531px;}
.he{height:49.255313px;}
.h3{height:50.414062px;}
.h6{height:52.066406px;}
.hb{height:53.224453px;}
.h1c{height:54.596250px;}
.h9{height:54.864844px;}
.h16{height:56.880000px;}
.h8{height:59.439023px;}
.h4{height:71.613281px;}
.h14{height:75.960000px;}
.h15{height:75.996000px;}
.h1a{height:83.340000px;}
.h19{height:94.860000px;}
.h1b{height:94.896000px;}
.h17{height:284.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:36.936000px;}
.wf{width:38.700000px;}
.w5{width:59.616000px;}
.w2{width:61.200000px;}
.w12{width:63.900000px;}
.wd{width:122.220000px;}
.wb{width:122.256000px;}
.wa{width:127.800000px;}
.wc{width:132.696000px;}
.w15{width:148.716000px;}
.w10{width:160.050000px;}
.we{width:183.270000px;}
.w7{width:201.090000px;}
.w6{width:201.270000px;}
.w11{width:203.250000px;}
.w13{width:212.610000px;}
.w14{width:223.410000px;}
.w8{width:264.810000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x26{left:10.836000px;}
.x2{left:12.600000px;}
.x35{left:18.174000px;}
.x30{left:35.100000px;}
.x31{left:44.280000px;}
.x34{left:66.420000px;}
.x32{left:69.480000px;}
.x25{left:81.900000px;}
.x38{left:85.320000px;}
.x3a{left:89.460000px;}
.x37{left:96.480000px;}
.x39{left:100.620000px;}
.x36{left:104.760000px;}
.x1{left:108.036000px;}
.x9{left:111.095987px;}
.x6{left:117.575987px;}
.x29{left:119.736000px;}
.x22{left:120.995987px;}
.x3c{left:122.256000px;}
.x20{left:124.055987px;}
.x21{left:129.275987px;}
.xd{left:131.615987px;}
.xf{left:135.755987px;}
.x11{left:141.875987px;}
.xa{left:144.215987px;}
.xb{left:150.329987px;}
.x14{left:152.309987px;}
.x12{left:155.009987px;}
.x15{left:160.409987px;}
.x23{left:162.029987px;}
.x3{left:169.230000px;}
.xc{left:175.709987px;}
.x1f{left:179.129987px;}
.x2f{left:183.270000px;}
.x3d{left:186.150000px;}
.x41{left:190.289987px;}
.x3b{left:193.529987px;}
.x10{left:209.909987px;}
.x16{left:226.469987px;}
.x8{left:227.909987px;}
.x17{left:234.569987px;}
.x2a{left:248.430000px;}
.x18{left:249.869987px;}
.x19{left:257.969987px;}
.xe{left:267.329987px;}
.x2e{left:305.174987px;}
.x1a{left:313.454987px;}
.x1b{left:321.734987px;}
.x24{left:330.194987px;}
.x27{left:344.415000px;}
.x1c{left:355.214987px;}
.x40{left:358.994987px;}
.x1d{left:363.314987px;}
.x2b{left:371.415000px;}
.x7{left:392.654987px;}
.x3e{left:398.775000px;}
.x1e{left:420.554987px;}
.x13{left:423.974987px;}
.x5{left:449.714987px;}
.x2c{left:505.005000px;}
.x44{left:532.724987px;}
.x28{left:546.405000px;}
.x33{left:548.025000px;}
.x3f{left:622.185000px;}
.x2d{left:627.945000px;}
.x42{left:718.889987px;}
.x43{left:727.169987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls1b{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.151467pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1d{letter-spacing:0.030600pt;}
.ls18{letter-spacing:0.097067pt;}
.ls1c{letter-spacing:0.097280pt;}
.lsb{letter-spacing:0.140800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.209067pt;}
.ls19{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls1e{letter-spacing:0.290133pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:4.111360pt;}
.ls13{letter-spacing:5.391360pt;}
.ls4{letter-spacing:7.218884pt;}
.lsc{letter-spacing:14.991360pt;}
.ls14{letter-spacing:18.191360pt;}
.ls15{letter-spacing:25.231360pt;}
.lsd{letter-spacing:120.570027pt;}
.ls16{letter-spacing:120.591360pt;}
.ls12{letter-spacing:167.290027pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-17.489067pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.010133pt;}
.ws11{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.688000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-5.046400pt;}
._15{margin-left:-3.886080pt;}
._7{margin-left:-2.602880pt;}
._0{margin-left:-1.114880pt;}
._3{width:1.115520pt;}
._5{width:2.358827pt;}
._f{width:4.121813pt;}
._12{width:5.160138pt;}
._e{width:6.055680pt;}
._11{width:7.224320pt;}
._a{width:8.233600pt;}
._b{width:9.215787pt;}
._10{width:10.358400pt;}
._17{width:11.324587pt;}
._2e{width:12.500907pt;}
._31{width:13.719040pt;}
._d{width:15.472640pt;}
._1c{width:16.381440pt;}
._13{width:17.355520pt;}
._21{width:18.364587pt;}
._8{width:19.548160pt;}
._9{width:20.557440pt;}
._6{width:21.849387pt;}
._c{width:22.836693pt;}
._1f{width:24.494080pt;}
._1b{width:25.899520pt;}
._16{width:28.851200pt;}
._26{width:35.102720pt;}
._23{width:36.387840pt;}
._24{width:38.036480pt;}
._2b{width:39.037440pt;}
._2c{width:40.038400pt;}
._2d{width:41.216000pt;}
._22{width:42.570240pt;}
._2f{width:57.172480pt;}
._19{width:58.880000pt;}
._27{width:77.191680pt;}
._1a{width:78.192640pt;}
._32{width:80.901120pt;}
._29{width:111.308800pt;}
._2a{width:112.700160pt;}
._20{width:126.768640pt;}
._18{width:141.498880pt;}
._1e{width:145.845760pt;}
._1d{width:147.258880pt;}
._25{width:161.268480pt;}
._14{width:181.304747pt;}
._30{width:190.060800pt;}
._2{width:211.466667pt;}
._28{width:234.835200pt;}
._1{width:976.932267pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:3.200000pt;}
.y85{bottom:3.240000pt;}
.y6d{bottom:3.360000pt;}
.y2{bottom:6.080000pt;}
.ya6{bottom:9.920000pt;}
.y75{bottom:19.994667pt;}
.yac{bottom:20.000000pt;}
.y6c{bottom:20.160000pt;}
.y84{bottom:20.200000pt;}
.ybf{bottom:24.160000pt;}
.ycc{bottom:24.320000pt;}
.ya5{bottom:26.720000pt;}
.y74{bottom:36.954667pt;}
.y6b{bottom:36.960000pt;}
.y83{bottom:37.000000pt;}
.y6f{bottom:37.120000pt;}
.ya4{bottom:43.514667pt;}
.y5{bottom:47.200000pt;}
.y4{bottom:50.400000pt;}
.ya9{bottom:53.760000pt;}
.y82{bottom:53.800000pt;}
.y6a{bottom:53.920000pt;}
.ya3{bottom:60.474667pt;}
.ya1{bottom:70.720000pt;}
.ya8{bottom:70.746667pt;}
.y81{bottom:70.760000pt;}
.y80{bottom:87.560000pt;}
.yd6{bottom:102.752000pt;}
.y7f{bottom:104.520000pt;}
.ya2{bottom:105.792000pt;}
.y40{bottom:110.432000pt;}
.yd5{bottom:119.552000pt;}
.y7e{bottom:121.320000pt;}
.y3f{bottom:127.232000pt;}
.y73{bottom:129.312000pt;}
.ye5{bottom:135.866667pt;}
.yd4{bottom:136.506667pt;}
.y7d{bottom:138.120000pt;}
.y3e{bottom:143.066667pt;}
.ye4{bottom:152.666667pt;}
.yd3{bottom:153.306667pt;}
.y7c{bottom:155.080000pt;}
.y3d{bottom:155.386667pt;}
.y3c{bottom:168.186667pt;}
.ye3{bottom:169.626667pt;}
.yd2{bottom:170.106667pt;}
.y7b{bottom:171.880000pt;}
.ya0{bottom:180.506667pt;}
.y3b{bottom:183.546667pt;}
.y72{bottom:183.706667pt;}
.ye2{bottom:186.426667pt;}
.yd1{bottom:187.066667pt;}
.y7a{bottom:188.840000pt;}
.y3a{bottom:198.906667pt;}
.y71{bottom:200.666667pt;}
.yd0{bottom:201.306667pt;}
.ye1{bottom:203.226667pt;}
.y79{bottom:205.640000pt;}
.y39{bottom:214.266667pt;}
.y70{bottom:217.466667pt;}
.ycf{bottom:218.746667pt;}
.ye0{bottom:220.186667pt;}
.y78{bottom:222.440000pt;}
.y38{bottom:229.626667pt;}
.y6e{bottom:231.706667pt;}
.yce{bottom:235.706667pt;}
.ydf{bottom:236.986667pt;}
.y77{bottom:239.426667pt;}
.y37{bottom:244.826667pt;}
.ycd{bottom:252.506667pt;}
.yde{bottom:253.946667pt;}
.y36{bottom:260.186667pt;}
.y9f{bottom:265.466667pt;}
.ycb{bottom:270.106667pt;}
.ydd{bottom:270.746667pt;}
.y35{bottom:275.546667pt;}
.ydc{bottom:287.546667pt;}
.y34{bottom:290.906667pt;}
.y69{bottom:299.906667pt;}
.y9e{bottom:303.266667pt;}
.ydb{bottom:304.546667pt;}
.y33{bottom:306.306667pt;}
.yca{bottom:311.906667pt;}
.y9d{bottom:320.066667pt;}
.yda{bottom:321.346667pt;}
.y32{bottom:321.666667pt;}
.yc9{bottom:328.866667pt;}
.y31{bottom:336.866667pt;}
.yd9{bottom:338.306667pt;}
.yc8{bottom:345.666667pt;}
.y30{bottom:352.226667pt;}
.y9c{bottom:353.826667pt;}
.yd8{bottom:355.106667pt;}
.yc7{bottom:362.466667pt;}
.y2f{bottom:367.586667pt;}
.y67{bottom:368.066667pt;}
.y9b{bottom:370.626667pt;}
.yd7{bottom:372.066667pt;}
.yc6{bottom:379.426667pt;}
.y2e{bottom:382.946667pt;}
.y9a{bottom:387.586667pt;}
.y66{bottom:388.866667pt;}
.yc5{bottom:396.226667pt;}
.y2d{bottom:398.306667pt;}
.y99{bottom:404.386667pt;}
.y65{bottom:405.666667pt;}
.yc4{bottom:413.186667pt;}
.y2c{bottom:413.666667pt;}
.y98{bottom:421.186667pt;}
.y64{bottom:422.626667pt;}
.yc3{bottom:427.426667pt;}
.y2b{bottom:428.866667pt;}
.y97{bottom:438.146667pt;}
.y63{bottom:439.426667pt;}
.y2a{bottom:444.226667pt;}
.yc2{bottom:444.866667pt;}
.y96{bottom:454.946667pt;}
.y62{bottom:456.386667pt;}
.y29{bottom:459.586667pt;}
.yc1{bottom:461.826667pt;}
.y95{bottom:471.906667pt;}
.y61{bottom:473.186667pt;}
.y28{bottom:474.946667pt;}
.yc0{bottom:478.626667pt;}
.y94{bottom:488.706667pt;}
.y60{bottom:489.986667pt;}
.y27{bottom:490.306667pt;}
.ybe{bottom:496.226667pt;}
.y26{bottom:505.506667pt;}
.y5f{bottom:506.946667pt;}
.y25{bottom:520.866667pt;}
.y93{bottom:522.466667pt;}
.y5e{bottom:523.746667pt;}
.y24{bottom:536.226667pt;}
.ybd{bottom:538.013333pt;}
.y92{bottom:539.293333pt;}
.y5d{bottom:540.733333pt;}
.y23{bottom:551.613333pt;}
.ybc{bottom:554.813333pt;}
.y91{bottom:556.253333pt;}
.y5c{bottom:557.533333pt;}
.y22{bottom:566.973333pt;}
.ybb{bottom:571.773333pt;}
.y90{bottom:573.053333pt;}
.y5b{bottom:574.333333pt;}
.y21{bottom:582.333333pt;}
.yba{bottom:588.573333pt;}
.y8f{bottom:589.853333pt;}
.y5a{bottom:591.293333pt;}
.y20{bottom:597.533333pt;}
.yb9{bottom:605.533333pt;}
.y8e{bottom:606.813333pt;}
.y59{bottom:608.093333pt;}
.y1f{bottom:612.893333pt;}
.yb8{bottom:622.333333pt;}
.y8d{bottom:623.613333pt;}
.y58{bottom:625.053333pt;}
.y1e{bottom:628.253333pt;}
.yb7{bottom:639.133333pt;}
.y8c{bottom:640.573333pt;}
.y57{bottom:641.853333pt;}
.y1d{bottom:643.613333pt;}
.yb6{bottom:656.093333pt;}
.y8b{bottom:657.373333pt;}
.y56{bottom:658.653333pt;}
.y1c{bottom:658.973333pt;}
.yb5{bottom:672.893333pt;}
.y1b{bottom:674.333333pt;}
.y55{bottom:675.613333pt;}
.y1a{bottom:689.533333pt;}
.yb4{bottom:689.853333pt;}
.y8a{bottom:691.133333pt;}
.y54{bottom:692.413333pt;}
.y19{bottom:704.893333pt;}
.yb3{bottom:706.653333pt;}
.y89{bottom:707.933333pt;}
.y53{bottom:709.373333pt;}
.y18{bottom:720.253333pt;}
.yb2{bottom:723.453333pt;}
.y88{bottom:724.893333pt;}
.y52{bottom:726.173333pt;}
.y17{bottom:735.613333pt;}
.yb1{bottom:740.413333pt;}
.y87{bottom:741.693333pt;}
.y51{bottom:742.973333pt;}
.y16{bottom:755.613333pt;}
.yb0{bottom:757.213333pt;}
.y86{bottom:758.653333pt;}
.y50{bottom:759.933333pt;}
.y15{bottom:766.173333pt;}
.y76{bottom:772.893333pt;}
.yaf{bottom:774.213333pt;}
.y4f{bottom:776.773333pt;}
.y14{bottom:786.213333pt;}
.yae{bottom:791.013333pt;}
.y4e{bottom:793.733333pt;}
.y13{bottom:796.933333pt;}
.yad{bottom:807.813333pt;}
.y4d{bottom:810.533333pt;}
.y12{bottom:816.933333pt;}
.yab{bottom:822.213333pt;}
.y4c{bottom:827.493333pt;}
.y11{bottom:827.653333pt;}
.y4b{bottom:844.293333pt;}
.y10{bottom:847.653333pt;}
.yf{bottom:858.693333pt;}
.y4a{bottom:861.093333pt;}
.yaa{bottom:873.413333pt;}
.ye{bottom:875.493333pt;}
.y49{bottom:878.053333pt;}
.yd{bottom:892.773333pt;}
.y48{bottom:894.853333pt;}
.y47{bottom:911.813333pt;}
.yc{bottom:912.773333pt;}
.y46{bottom:928.613333pt;}
.yb{bottom:932.613333pt;}
.ya7{bottom:941.573333pt;}
.y45{bottom:945.413333pt;}
.ya{bottom:952.453333pt;}
.y44{bottom:962.373333pt;}
.y9{bottom:968.133333pt;}
.y43{bottom:979.173333pt;}
.y8{bottom:983.493333pt;}
.y42{bottom:996.133333pt;}
.y7{bottom:998.693333pt;}
.y41{bottom:1012.960000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1036.480000pt;}
.y1{bottom:1051.680000pt;}
.h13{height:16.800000pt;}
.h1e{height:16.960000pt;}
.h2{height:23.680000pt;}
.hc{height:24.991875pt;}
.hf{height:30.254687pt;}
.h10{height:31.008437pt;}
.h18{height:33.792000pt;}
.h5{height:35.342500pt;}
.h7{height:37.479688pt;}
.h1d{height:37.760000pt;}
.h1f{height:37.952000pt;}
.hd{height:38.413438pt;}
.ha{height:41.543750pt;}
.h11{height:42.578750pt;}
.h12{height:42.866250pt;}
.he{height:43.782500pt;}
.h3{height:44.812500pt;}
.h6{height:46.281250pt;}
.hb{height:47.310625pt;}
.h1c{height:48.530000pt;}
.h9{height:48.768750pt;}
.h16{height:50.560000pt;}
.h8{height:52.834688pt;}
.h4{height:63.656250pt;}
.h14{height:67.520000pt;}
.h15{height:67.552000pt;}
.h1a{height:74.080000pt;}
.h19{height:84.320000pt;}
.h1b{height:84.352000pt;}
.h17{height:253.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:32.832000pt;}
.wf{width:34.400000pt;}
.w5{width:52.992000pt;}
.w2{width:54.400000pt;}
.w12{width:56.800000pt;}
.wd{width:108.640000pt;}
.wb{width:108.672000pt;}
.wa{width:113.600000pt;}
.wc{width:117.952000pt;}
.w15{width:132.192000pt;}
.w10{width:142.266667pt;}
.we{width:162.906667pt;}
.w7{width:178.746667pt;}
.w6{width:178.906667pt;}
.w11{width:180.666667pt;}
.w13{width:188.986667pt;}
.w14{width:198.586667pt;}
.w8{width:235.386667pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x26{left:9.632000pt;}
.x2{left:11.200000pt;}
.x35{left:16.154667pt;}
.x30{left:31.200000pt;}
.x31{left:39.360000pt;}
.x34{left:59.040000pt;}
.x32{left:61.760000pt;}
.x25{left:72.800000pt;}
.x38{left:75.840000pt;}
.x3a{left:79.520000pt;}
.x37{left:85.760000pt;}
.x39{left:89.440000pt;}
.x36{left:93.120000pt;}
.x1{left:96.032000pt;}
.x9{left:98.751988pt;}
.x6{left:104.511988pt;}
.x29{left:106.432000pt;}
.x22{left:107.551988pt;}
.x3c{left:108.672000pt;}
.x20{left:110.271988pt;}
.x21{left:114.911988pt;}
.xd{left:116.991988pt;}
.xf{left:120.671988pt;}
.x11{left:126.111988pt;}
.xa{left:128.191988pt;}
.xb{left:133.626655pt;}
.x14{left:135.386655pt;}
.x12{left:137.786655pt;}
.x15{left:142.586655pt;}
.x23{left:144.026655pt;}
.x3{left:150.426667pt;}
.xc{left:156.186655pt;}
.x1f{left:159.226655pt;}
.x2f{left:162.906667pt;}
.x3d{left:165.466667pt;}
.x41{left:169.146655pt;}
.x3b{left:172.026655pt;}
.x10{left:186.586655pt;}
.x16{left:201.306655pt;}
.x8{left:202.586655pt;}
.x17{left:208.506655pt;}
.x2a{left:220.826667pt;}
.x18{left:222.106655pt;}
.x19{left:229.306655pt;}
.xe{left:237.626655pt;}
.x2e{left:271.266655pt;}
.x1a{left:278.626655pt;}
.x1b{left:285.986655pt;}
.x24{left:293.506655pt;}
.x27{left:306.146667pt;}
.x1c{left:315.746655pt;}
.x40{left:319.106655pt;}
.x1d{left:322.946655pt;}
.x2b{left:330.146667pt;}
.x7{left:349.026655pt;}
.x3e{left:354.466667pt;}
.x1e{left:373.826655pt;}
.x13{left:376.866655pt;}
.x5{left:399.746655pt;}
.x2c{left:448.893333pt;}
.x44{left:473.533322pt;}
.x28{left:485.693333pt;}
.x33{left:487.133333pt;}
.x3f{left:553.053333pt;}
.x2d{left:558.173333pt;}
.x42{left:639.013322pt;}
.x43{left:646.373322pt;}
}




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