
    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_4ec80d491bbb654eed88d9a9.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_39710dfad619b17df3ec8548.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_f6d4adc6b0e9e798f85907ae.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_beff3d630886c27f9116520c.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_2544dab6858792d81be601e8.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_4e388a90e401f02c183489c0.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_4c7099141b5d06f092f25d5d.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_7c382fa5b16a4e2e4bf8df40.woff')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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_2df9a4ad520bad596794a237.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_36ad384e74b1fca37de5a482.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a0310c004a190580d3507297.woff')format("woff");}.fff{font-family:fff;line-height:0.978027;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_12b3f7858abb66f1c6938282.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2c23be1fb209f8de66c7fa3b.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_2a0bbba7a154dc0fa295b8d3.woff')format("woff");}.ff13{font-family:ff13;line-height:1.372070;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;}
.lsa{letter-spacing:-3.492000px;}
.lsb{letter-spacing:-3.186000px;}
.lsc{letter-spacing:-2.574000px;}
.lsf{letter-spacing:-1.746000px;}
.ls6{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.483600px;}
.ls11{letter-spacing:-0.457800px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.840000px;}
.lsd{letter-spacing:1.560000px;}
.ls14{letter-spacing:7.505280px;}
.ls8{letter-spacing:19.440000px;}
.ls3{letter-spacing:28.200000px;}
.ls12{letter-spacing:40.625280px;}
.ls13{letter-spacing:40.637280px;}
.lse{letter-spacing:59.345280px;}
.ls9{letter-spacing:129.000000px;}
.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;}
}
.ws1{word-spacing:-83.520000px;}
.wsf{word-spacing:-66.240000px;}
.ws4{word-spacing:-60.480000px;}
.ws0{word-spacing:-19.010880px;}
.ws6{word-spacing:-17.890800px;}
.ws8{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.wse{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.426000px;}
.ws7{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.814000px;}
.ws2{word-spacing:-14.650800px;}
.wsc{word-spacing:-13.986000px;}
.wsb{word-spacing:-13.374000px;}
.wsa{word-spacing:-13.068000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2.744640px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._a{width:3.976800px;}
._9{width:6.008160px;}
._5{width:7.793280px;}
._4{width:9.207360px;}
._b{width:10.414080px;}
._7{width:11.592000px;}
._6{width:13.645440px;}
._18{width:15.171840px;}
._2c{width:17.688960px;}
._2d{width:18.757440px;}
._2b{width:19.848960px;}
._2a{width:20.931840px;}
._35{width:22.920480px;}
._1f{width:24.537600px;}
._39{width:25.646400px;}
._26{width:27.149760px;}
._8{width:28.152000px;}
._19{width:29.278080px;}
._1a{width:30.324000px;}
._1e{width:31.469760px;}
._17{width:33.137280px;}
._2f{width:34.709760px;}
._14{width:35.945280px;}
._23{width:37.296000px;}
._22{width:38.793600px;}
._2e{width:39.919680px;}
._21{width:40.965120px;}
._15{width:42.897600px;}
._16{width:44.790240px;}
._f{width:45.878400px;}
._e{width:47.099520px;}
._10{width:48.870720px;}
._30{width:50.114880px;}
._24{width:51.350400px;}
._d{width:52.464960px;}
._20{width:54.319680px;}
._34{width:56.306880px;}
._12{width:57.735360px;}
._11{width:59.019840px;}
._37{width:60.517440px;}
._36{width:67.455360px;}
._13{width:69.814080px;}
._38{width:71.824320px;}
._c{width:75.991680px;}
._41{width:77.495040px;}
._32{width:79.093440px;}
._33{width:80.510400px;}
._48{width:82.071360px;}
._45{width:83.396160px;}
._25{width:85.518720px;}
._1c{width:88.626240px;}
._49{width:89.701920px;}
._1d{width:90.924480px;}
._31{width:102.211200px;}
._3a{width:103.507680px;}
._1b{width:105.825600px;}
._43{width:106.980480px;}
._3b{width:108.233760px;}
._3c{width:112.539360px;}
._3d{width:127.172640px;}
._40{width:131.103360px;}
._3f{width:139.680480px;}
._3e{width:143.735520px;}
._44{width:153.478080px;}
._29{width:154.875840px;}
._42{width:166.298400px;}
._27{width:190.783200px;}
._28{width:197.745600px;}
._46{width:240.735360px;}
._47{width:730.229760px;}
._4a{width:847.176000px;}
.fc3{color:rgb(17,84,204);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1b{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yc9{bottom:3.945000px;}
.ya8{bottom:3.960000px;}
.yb5{bottom:4.305000px;}
.ybf{bottom:4.315500px;}
.ya5{bottom:4.320000px;}
.ybb{bottom:4.350000px;}
.yae{bottom:4.365000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.yb7{bottom:23.025000px;}
.ybe{bottom:23.035500px;}
.yac{bottom:23.040000px;}
.yc8{bottom:23.055000px;}
.ya7{bottom:23.070000px;}
.yb9{bottom:23.385000px;}
.ya4{bottom:23.400000px;}
.yb4{bottom:23.415000px;}
.y18{bottom:26.625000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y17{bottom:47.865000px;}
.y1{bottom:51.120000px;}
.y16{bottom:70.575000px;}
.y4e{bottom:75.240000px;}
.y15{bottom:93.255000px;}
.y4b{bottom:119.196000px;}
.ye3{bottom:119.556000px;}
.ybd{bottom:122.080500px;}
.y75{bottom:123.516000px;}
.y9d{bottom:134.316000px;}
.ye2{bottom:140.076000px;}
.y4a{bottom:144.036000px;}
.y74{bottom:148.356000px;}
.y3c{bottom:149.436000px;}
.y112{bottom:155.190000px;}
.y9c{bottom:158.790000px;}
.ybc{bottom:160.605000px;}
.y49{bottom:168.510000px;}
.y73{bottom:173.190000px;}
.y3b{bottom:174.270000px;}
.y111{bottom:180.030000px;}
.y9b{bottom:183.270000px;}
.yea{bottom:183.630000px;}
.y48{bottom:193.350000px;}
.y72{bottom:197.670000px;}
.y3a{bottom:198.750000px;}
.yba{bottom:199.485000px;}
.y110{bottom:204.555000px;}
.y9a{bottom:208.155000px;}
.y47{bottom:217.875000px;}
.y71{bottom:222.555000px;}
.y39{bottom:223.635000px;}
.y10f{bottom:229.395000px;}
.y99{bottom:232.995000px;}
.yb8{bottom:238.050000px;}
.y46{bottom:242.715000px;}
.y70{bottom:247.035000px;}
.y38{bottom:248.115000px;}
.y10e{bottom:253.875000px;}
.y98{bottom:257.475000px;}
.y45{bottom:267.195000px;}
.ye1{bottom:267.555000px;}
.y6f{bottom:271.875000px;}
.y37{bottom:272.955000px;}
.yb6{bottom:276.930000px;}
.y10d{bottom:278.715000px;}
.y97{bottom:282.315000px;}
.y44{bottom:292.035000px;}
.y6e{bottom:296.355000px;}
.y36{bottom:297.795000px;}
.y10c{bottom:303.195000px;}
.y96{bottom:306.795000px;}
.yb3{bottom:315.450000px;}
.y43{bottom:316.515000px;}
.ye0{bottom:316.875000px;}
.y6d{bottom:321.195000px;}
.y35{bottom:322.275000px;}
.y10b{bottom:328.065000px;}
.y95{bottom:331.665000px;}
.ydf{bottom:337.425000px;}
.y42{bottom:341.385000px;}
.y6c{bottom:345.705000px;}
.y34{bottom:347.145000px;}
.y10a{bottom:352.545000px;}
.yb2{bottom:354.345000px;}
.y94{bottom:356.145000px;}
.yde{bottom:361.905000px;}
.y41{bottom:365.865000px;}
.y6b{bottom:370.545000px;}
.y33{bottom:371.625000px;}
.y109{bottom:377.385000px;}
.y93{bottom:380.985000px;}
.yb1{bottom:383.505000px;}
.ydd{bottom:386.745000px;}
.y40{bottom:390.705000px;}
.y6a{bottom:395.025000px;}
.y32{bottom:396.465000px;}
.y108{bottom:401.865000px;}
.y92{bottom:405.465000px;}
.yb0{bottom:408.345000px;}
.ydc{bottom:412.305000px;}
.y3f{bottom:415.185000px;}
.y69{bottom:419.865000px;}
.y31{bottom:420.945000px;}
.y107{bottom:426.705000px;}
.y91{bottom:430.305000px;}
.yaf{bottom:433.185000px;}
.ydb{bottom:438.225000px;}
.y3e{bottom:440.025000px;}
.y68{bottom:444.345000px;}
.y30{bottom:445.785000px;}
.yad{bottom:448.665000px;}
.y106{bottom:451.230000px;}
.y113{bottom:453.750000px;}
.y90{bottom:454.830000px;}
.yda{bottom:463.110000px;}
.y3d{bottom:464.910000px;}
.yab{bottom:468.510000px;}
.y67{bottom:469.230000px;}
.y2f{bottom:469.950000px;}
.y105{bottom:476.070000px;}
.y8f{bottom:479.670000px;}
.yd9{bottom:488.670000px;}
.y2e{bottom:489.390000px;}
.y66{bottom:493.350000px;}
.y104{bottom:500.550000px;}
.y8e{bottom:504.150000px;}
.yaa{bottom:507.390000px;}
.y2d{bottom:513.150000px;}
.yd8{bottom:513.510000px;}
.y65{bottom:518.550000px;}
.y103{bottom:525.390000px;}
.ya9{bottom:526.830000px;}
.y8d{bottom:528.630000px;}
.ye9{bottom:528.990000px;}
.y2c{bottom:535.110000px;}
.yd7{bottom:539.430000px;}
.y64{bottom:543.030000px;}
.y102{bottom:549.870000px;}
.ye8{bottom:553.110000px;}
.y8c{bottom:553.470000px;}
.y2b{bottom:559.230000px;}
.yd6{bottom:563.910000px;}
.ya6{bottom:565.710000px;}
.y63{bottom:567.870000px;}
.y101{bottom:574.710000px;}
.ye7{bottom:577.980000px;}
.y8b{bottom:578.340000px;}
.y2a{bottom:581.220000px;}
.yd5{bottom:588.780000px;}
.y62{bottom:592.380000px;}
.y100{bottom:599.220000px;}
.y8a{bottom:602.820000px;}
.y29{bottom:603.180000px;}
.ya3{bottom:604.260000px;}
.yd4{bottom:613.260000px;}
.y61{bottom:617.220000px;}
.yff{bottom:624.060000px;}
.y28{bottom:624.780000px;}
.y89{bottom:627.660000px;}
.yd3{bottom:638.100000px;}
.y60{bottom:642.060000px;}
.y27{bottom:646.740000px;}
.yfe{bottom:648.540000px;}
.y88{bottom:652.140000px;}
.ya2{bottom:652.500000px;}
.yd2{bottom:662.220000px;}
.y5f{bottom:666.540000px;}
.y26{bottom:668.340000px;}
.yfd{bottom:673.380000px;}
.y87{bottom:676.980000px;}
.ya1{bottom:677.340000px;}
.yd1{bottom:687.060000px;}
.y25{bottom:690.300000px;}
.y5e{bottom:691.380000px;}
.yfc{bottom:698.220000px;}
.y86{bottom:701.490000px;}
.ya0{bottom:702.210000px;}
.yd0{bottom:711.930000px;}
.y24{bottom:712.290000px;}
.y5d{bottom:715.890000px;}
.yfb{bottom:722.730000px;}
.y85{bottom:726.330000px;}
.y9f{bottom:727.050000px;}
.ycf{bottom:727.425000px;}
.y23{bottom:733.890000px;}
.y5c{bottom:740.730000px;}
.yfa{bottom:747.570000px;}
.y9e{bottom:747.930000px;}
.y84{bottom:750.810000px;}
.y22{bottom:755.850000px;}
.y5b{bottom:765.210000px;}
.yce{bottom:766.305000px;}
.yf9{bottom:772.050000px;}
.y83{bottom:775.650000px;}
.y21{bottom:777.450000px;}
.ycd{bottom:786.105000px;}
.y5a{bottom:790.050000px;}
.yf8{bottom:796.890000px;}
.y20{bottom:799.410000px;}
.y82{bottom:800.130000px;}
.y59{bottom:814.170000px;}
.y1f{bottom:821.370000px;}
.ycc{bottom:824.625000px;}
.y81{bottom:824.970000px;}
.y58{bottom:839.055000px;}
.y1e{bottom:843.015000px;}
.yf7{bottom:846.255000px;}
.y80{bottom:849.495000px;}
.y57{bottom:863.535000px;}
.ycb{bottom:863.550000px;}
.y1d{bottom:864.615000px;}
.yf6{bottom:870.375000px;}
.y7f{bottom:873.975000px;}
.ye6{bottom:874.335000px;}
.y1c{bottom:884.055000px;}
.y56{bottom:888.735000px;}
.y1a{bottom:892.350000px;}
.yf5{bottom:895.575000px;}
.y7e{bottom:898.815000px;}
.ye5{bottom:899.175000px;}
.y14{bottom:899.550000px;}
.yca{bottom:902.070000px;}
.y19{bottom:903.893143px;}
.y55{bottom:913.215000px;}
.yf4{bottom:920.055000px;}
.y7d{bottom:923.655000px;}
.y54{bottom:938.055000px;}
.yc7{bottom:940.950000px;}
.yf3{bottom:944.895000px;}
.y7c{bottom:948.495000px;}
.y53{bottom:958.605000px;}
.yf2{bottom:969.405000px;}
.y7b{bottom:973.005000px;}
.yc6{bottom:979.485000px;}
.yf1{bottom:994.245000px;}
.y7a{bottom:997.845000px;}
.yc5{bottom:1008.645000px;}
.y12{bottom:1018.365000px;}
.yf0{bottom:1020.165000px;}
.y79{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.yc4{bottom:1033.485000px;}
.yef{bottom:1044.645000px;}
.y78{bottom:1047.165000px;}
.yc3{bottom:1049.325000px;}
.yee{bottom:1070.565000px;}
.y77{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.yc2{bottom:1087.890000px;}
.yed{bottom:1095.090000px;}
.y52{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.yc1{bottom:1107.690000px;}
.yec{bottom:1119.930000px;}
.y51{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.yeb{bottom:1144.770000px;}
.ye4{bottom:1145.490000px;}
.y50{bottom:1145.850000px;}
.yc0{bottom:1146.570000px;}
.y4{bottom:1156.650000px;}
.y76{bottom:1169.970000px;}
.y4f{bottom:1170.330000px;}
.y4d{bottom:1187.250000px;}
.y4c{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.857187px;}
.h17{height:18.120938px;}
.h23{height:18.705000px;}
.h26{height:19.065000px;}
.h25{height:19.110000px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1e{height:30.480469px;}
.h18{height:36.861328px;}
.h24{height:37.785000px;}
.h28{height:37.795500px;}
.h29{height:37.800000px;}
.h27{height:37.821000px;}
.h21{height:37.830000px;}
.h22{height:38.145000px;}
.h20{height:38.160000px;}
.h1d{height:47.901094px;}
.h1a{height:50.488594px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.h1f{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h2b{height:66.078281px;}
.h1c{height:66.757500px;}
.h14{height:67.803750px;}
.h2a{height:68.084282px;}
.h6{height:70.714687px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.350000px;}
.h12{height:118.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.wc{width:109.110000px;}
.wb{width:129.645000px;}
.wd{width:133.230000px;}
.w8{width:149.760000px;}
.we{width:151.275000px;}
.wf{width:174.645000px;}
.w12{width:187.605000px;}
.wa{width:213.525000px;}
.w9{width:217.545000px;}
.w10{width:238.770000px;}
.w11{width:249.585000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.266500px;}
.x5{left:11.145000px;}
.x12{left:15.826500px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.x27{left:44.302500px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.x16{left:92.905500px;}
.xd{left:96.150000px;}
.x26{left:100.489500px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x1e{left:112.356000px;}
.x35{left:135.072000px;}
.x2e{left:150.555000px;}
.x23{left:155.610000px;}
.x1a{left:162.075000px;}
.x4{left:168.930000px;}
.x22{left:181.875000px;}
.x15{left:183.295500px;}
.x17{left:205.660500px;}
.x6{left:208.860000px;}
.x1f{left:226.545000px;}
.x28{left:230.865000px;}
.x13{left:238.060500px;}
.x14{left:268.300500px;}
.x33{left:295.305000px;}
.x24{left:306.105000px;}
.x18{left:325.030998px;}
.x11{left:335.650500px;}
.x29{left:340.710000px;}
.x2c{left:347.550000px;}
.xa{left:445.860000px;}
.x1c{left:473.580000px;}
.x2a{left:475.020000px;}
.x30{left:476.460000px;}
.x34{left:500.610000px;}
.x25{left:524.385000px;}
.x1b{left:527.610000px;}
.x21{left:566.130000px;}
.x2d{left:597.870000px;}
.x31{left:600.375000px;}
.x2b{left:627.030000px;}
.x20{left:629.175000px;}
.x32{left:655.455000px;}
.x7{left:722.445000px;}
.x1{left:773.610000px;}
.x1d{left:778.650000px;}
.x2f{left:799.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-3.104000pt;}
.lsb{letter-spacing:-2.832000pt;}
.lsc{letter-spacing:-2.288000pt;}
.lsf{letter-spacing:-1.552000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.429867pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.746667pt;}
.lsd{letter-spacing:1.386667pt;}
.ls14{letter-spacing:6.671360pt;}
.ls8{letter-spacing:17.280000pt;}
.ls3{letter-spacing:25.066667pt;}
.ls12{letter-spacing:36.111360pt;}
.ls13{letter-spacing:36.122027pt;}
.lse{letter-spacing:52.751360pt;}
.ls9{letter-spacing:114.666667pt;}
.ws1{word-spacing:-74.240000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws6{word-spacing:-15.902933pt;}
.ws8{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.wse{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.712000pt;}
.ws7{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.168000pt;}
.ws2{word-spacing:-13.022933pt;}
.wsc{word-spacing:-12.432000pt;}
.wsb{word-spacing:-11.888000pt;}
.wsa{word-spacing:-11.616000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2.439680pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._a{width:3.534933pt;}
._9{width:5.340587pt;}
._5{width:6.927360pt;}
._4{width:8.184320pt;}
._b{width:9.256960pt;}
._7{width:10.304000pt;}
._6{width:12.129280pt;}
._18{width:13.486080pt;}
._2c{width:15.723520pt;}
._2d{width:16.673280pt;}
._2b{width:17.643520pt;}
._2a{width:18.606080pt;}
._35{width:20.373760pt;}
._1f{width:21.811200pt;}
._39{width:22.796800pt;}
._26{width:24.133120pt;}
._8{width:25.024000pt;}
._19{width:26.024960pt;}
._1a{width:26.954667pt;}
._1e{width:27.973120pt;}
._17{width:29.455360pt;}
._2f{width:30.853120pt;}
._14{width:31.951360pt;}
._23{width:33.152000pt;}
._22{width:34.483200pt;}
._2e{width:35.484160pt;}
._21{width:36.413440pt;}
._15{width:38.131200pt;}
._16{width:39.813547pt;}
._f{width:40.780800pt;}
._e{width:41.866240pt;}
._10{width:43.440640pt;}
._30{width:44.546560pt;}
._24{width:45.644800pt;}
._d{width:46.635520pt;}
._20{width:48.284160pt;}
._34{width:50.050560pt;}
._12{width:51.320320pt;}
._11{width:52.462080pt;}
._37{width:53.793280pt;}
._36{width:59.960320pt;}
._13{width:62.056960pt;}
._38{width:63.843840pt;}
._c{width:67.548160pt;}
._41{width:68.884480pt;}
._32{width:70.305280pt;}
._33{width:71.564800pt;}
._48{width:72.952320pt;}
._45{width:74.129920pt;}
._25{width:76.016640pt;}
._1c{width:78.778880pt;}
._49{width:79.735040pt;}
._1d{width:80.821760pt;}
._31{width:90.854400pt;}
._3a{width:92.006827pt;}
._1b{width:94.067200pt;}
._43{width:95.093760pt;}
._3b{width:96.207787pt;}
._3c{width:100.034987pt;}
._3d{width:113.042347pt;}
._40{width:116.536320pt;}
._3f{width:124.160427pt;}
._3e{width:127.764907pt;}
._44{width:136.424960pt;}
._29{width:137.667413pt;}
._42{width:147.820800pt;}
._27{width:169.585067pt;}
._28{width:175.773867pt;}
._46{width:213.986987pt;}
._47{width:649.093120pt;}
._4a{width:753.045333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1b{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yc9{bottom:3.506667pt;}
.ya8{bottom:3.520000pt;}
.yb5{bottom:3.826667pt;}
.ybf{bottom:3.836000pt;}
.ya5{bottom:3.840000pt;}
.ybb{bottom:3.866667pt;}
.yae{bottom:3.880000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.yb7{bottom:20.466667pt;}
.ybe{bottom:20.476000pt;}
.yac{bottom:20.480000pt;}
.yc8{bottom:20.493333pt;}
.ya7{bottom:20.506667pt;}
.yb9{bottom:20.786667pt;}
.ya4{bottom:20.800000pt;}
.yb4{bottom:20.813333pt;}
.y18{bottom:23.666667pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y17{bottom:42.546667pt;}
.y1{bottom:45.440000pt;}
.y16{bottom:62.733333pt;}
.y4e{bottom:66.880000pt;}
.y15{bottom:82.893333pt;}
.y4b{bottom:105.952000pt;}
.ye3{bottom:106.272000pt;}
.ybd{bottom:108.516000pt;}
.y75{bottom:109.792000pt;}
.y9d{bottom:119.392000pt;}
.ye2{bottom:124.512000pt;}
.y4a{bottom:128.032000pt;}
.y74{bottom:131.872000pt;}
.y3c{bottom:132.832000pt;}
.y112{bottom:137.946667pt;}
.y9c{bottom:141.146667pt;}
.ybc{bottom:142.760000pt;}
.y49{bottom:149.786667pt;}
.y73{bottom:153.946667pt;}
.y3b{bottom:154.906667pt;}
.y111{bottom:160.026667pt;}
.y9b{bottom:162.906667pt;}
.yea{bottom:163.226667pt;}
.y48{bottom:171.866667pt;}
.y72{bottom:175.706667pt;}
.y3a{bottom:176.666667pt;}
.yba{bottom:177.320000pt;}
.y110{bottom:181.826667pt;}
.y9a{bottom:185.026667pt;}
.y47{bottom:193.666667pt;}
.y71{bottom:197.826667pt;}
.y39{bottom:198.786667pt;}
.y10f{bottom:203.906667pt;}
.y99{bottom:207.106667pt;}
.yb8{bottom:211.600000pt;}
.y46{bottom:215.746667pt;}
.y70{bottom:219.586667pt;}
.y38{bottom:220.546667pt;}
.y10e{bottom:225.666667pt;}
.y98{bottom:228.866667pt;}
.y45{bottom:237.506667pt;}
.ye1{bottom:237.826667pt;}
.y6f{bottom:241.666667pt;}
.y37{bottom:242.626667pt;}
.yb6{bottom:246.160000pt;}
.y10d{bottom:247.746667pt;}
.y97{bottom:250.946667pt;}
.y44{bottom:259.586667pt;}
.y6e{bottom:263.426667pt;}
.y36{bottom:264.706667pt;}
.y10c{bottom:269.506667pt;}
.y96{bottom:272.706667pt;}
.yb3{bottom:280.400000pt;}
.y43{bottom:281.346667pt;}
.ye0{bottom:281.666667pt;}
.y6d{bottom:285.506667pt;}
.y35{bottom:286.466667pt;}
.y10b{bottom:291.613333pt;}
.y95{bottom:294.813333pt;}
.ydf{bottom:299.933333pt;}
.y42{bottom:303.453333pt;}
.y6c{bottom:307.293333pt;}
.y34{bottom:308.573333pt;}
.y10a{bottom:313.373333pt;}
.yb2{bottom:314.973333pt;}
.y94{bottom:316.573333pt;}
.yde{bottom:321.693333pt;}
.y41{bottom:325.213333pt;}
.y6b{bottom:329.373333pt;}
.y33{bottom:330.333333pt;}
.y109{bottom:335.453333pt;}
.y93{bottom:338.653333pt;}
.yb1{bottom:340.893333pt;}
.ydd{bottom:343.773333pt;}
.y40{bottom:347.293333pt;}
.y6a{bottom:351.133333pt;}
.y32{bottom:352.413333pt;}
.y108{bottom:357.213333pt;}
.y92{bottom:360.413333pt;}
.yb0{bottom:362.973333pt;}
.ydc{bottom:366.493333pt;}
.y3f{bottom:369.053333pt;}
.y69{bottom:373.213333pt;}
.y31{bottom:374.173333pt;}
.y107{bottom:379.293333pt;}
.y91{bottom:382.493333pt;}
.yaf{bottom:385.053333pt;}
.ydb{bottom:389.533333pt;}
.y3e{bottom:391.133333pt;}
.y68{bottom:394.973333pt;}
.y30{bottom:396.253333pt;}
.yad{bottom:398.813333pt;}
.y106{bottom:401.093333pt;}
.y113{bottom:403.333333pt;}
.y90{bottom:404.293333pt;}
.yda{bottom:411.653333pt;}
.y3d{bottom:413.253333pt;}
.yab{bottom:416.453333pt;}
.y67{bottom:417.093333pt;}
.y2f{bottom:417.733333pt;}
.y105{bottom:423.173333pt;}
.y8f{bottom:426.373333pt;}
.yd9{bottom:434.373333pt;}
.y2e{bottom:435.013333pt;}
.y66{bottom:438.533333pt;}
.y104{bottom:444.933333pt;}
.y8e{bottom:448.133333pt;}
.yaa{bottom:451.013333pt;}
.y2d{bottom:456.133333pt;}
.yd8{bottom:456.453333pt;}
.y65{bottom:460.933333pt;}
.y103{bottom:467.013333pt;}
.ya9{bottom:468.293333pt;}
.y8d{bottom:469.893333pt;}
.ye9{bottom:470.213333pt;}
.y2c{bottom:475.653333pt;}
.yd7{bottom:479.493333pt;}
.y64{bottom:482.693333pt;}
.y102{bottom:488.773333pt;}
.ye8{bottom:491.653333pt;}
.y8c{bottom:491.973333pt;}
.y2b{bottom:497.093333pt;}
.yd6{bottom:501.253333pt;}
.ya6{bottom:502.853333pt;}
.y63{bottom:504.773333pt;}
.y101{bottom:510.853333pt;}
.ye7{bottom:513.760000pt;}
.y8b{bottom:514.080000pt;}
.y2a{bottom:516.640000pt;}
.yd5{bottom:523.360000pt;}
.y62{bottom:526.560000pt;}
.y100{bottom:532.640000pt;}
.y8a{bottom:535.840000pt;}
.y29{bottom:536.160000pt;}
.ya3{bottom:537.120000pt;}
.yd4{bottom:545.120000pt;}
.y61{bottom:548.640000pt;}
.yff{bottom:554.720000pt;}
.y28{bottom:555.360000pt;}
.y89{bottom:557.920000pt;}
.yd3{bottom:567.200000pt;}
.y60{bottom:570.720000pt;}
.y27{bottom:574.880000pt;}
.yfe{bottom:576.480000pt;}
.y88{bottom:579.680000pt;}
.ya2{bottom:580.000000pt;}
.yd2{bottom:588.640000pt;}
.y5f{bottom:592.480000pt;}
.y26{bottom:594.080000pt;}
.yfd{bottom:598.560000pt;}
.y87{bottom:601.760000pt;}
.ya1{bottom:602.080000pt;}
.yd1{bottom:610.720000pt;}
.y25{bottom:613.600000pt;}
.y5e{bottom:614.560000pt;}
.yfc{bottom:620.640000pt;}
.y86{bottom:623.546667pt;}
.ya0{bottom:624.186667pt;}
.yd0{bottom:632.826667pt;}
.y24{bottom:633.146667pt;}
.y5d{bottom:636.346667pt;}
.yfb{bottom:642.426667pt;}
.y85{bottom:645.626667pt;}
.y9f{bottom:646.266667pt;}
.ycf{bottom:646.600000pt;}
.y23{bottom:652.346667pt;}
.y5c{bottom:658.426667pt;}
.yfa{bottom:664.506667pt;}
.y9e{bottom:664.826667pt;}
.y84{bottom:667.386667pt;}
.y22{bottom:671.866667pt;}
.y5b{bottom:680.186667pt;}
.yce{bottom:681.160000pt;}
.yf9{bottom:686.266667pt;}
.y83{bottom:689.466667pt;}
.y21{bottom:691.066667pt;}
.ycd{bottom:698.760000pt;}
.y5a{bottom:702.266667pt;}
.yf8{bottom:708.346667pt;}
.y20{bottom:710.586667pt;}
.y82{bottom:711.226667pt;}
.y59{bottom:723.706667pt;}
.y1f{bottom:730.106667pt;}
.ycc{bottom:733.000000pt;}
.y81{bottom:733.306667pt;}
.y58{bottom:745.826667pt;}
.y1e{bottom:749.346667pt;}
.yf7{bottom:752.226667pt;}
.y80{bottom:755.106667pt;}
.y57{bottom:767.586667pt;}
.ycb{bottom:767.600000pt;}
.y1d{bottom:768.546667pt;}
.yf6{bottom:773.666667pt;}
.y7f{bottom:776.866667pt;}
.ye6{bottom:777.186667pt;}
.y1c{bottom:785.826667pt;}
.y56{bottom:789.986667pt;}
.y1a{bottom:793.200000pt;}
.yf5{bottom:796.066667pt;}
.y7e{bottom:798.946667pt;}
.ye5{bottom:799.266667pt;}
.y14{bottom:799.600000pt;}
.yca{bottom:801.840000pt;}
.y19{bottom:803.460571pt;}
.y55{bottom:811.746667pt;}
.yf4{bottom:817.826667pt;}
.y7d{bottom:821.026667pt;}
.y54{bottom:833.826667pt;}
.yc7{bottom:836.400000pt;}
.yf3{bottom:839.906667pt;}
.y7c{bottom:843.106667pt;}
.y53{bottom:852.093333pt;}
.yf2{bottom:861.693333pt;}
.y7b{bottom:864.893333pt;}
.yc6{bottom:870.653333pt;}
.yf1{bottom:883.773333pt;}
.y7a{bottom:886.973333pt;}
.yc5{bottom:896.573333pt;}
.y12{bottom:905.213333pt;}
.yf0{bottom:906.813333pt;}
.y79{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.yc4{bottom:918.653333pt;}
.yef{bottom:928.573333pt;}
.y78{bottom:930.813333pt;}
.yc3{bottom:932.733333pt;}
.yee{bottom:951.613333pt;}
.y77{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.yc2{bottom:967.013333pt;}
.yed{bottom:973.413333pt;}
.y52{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.yc1{bottom:984.613333pt;}
.yec{bottom:995.493333pt;}
.y51{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.yeb{bottom:1017.573333pt;}
.ye4{bottom:1018.213333pt;}
.y50{bottom:1018.533333pt;}
.yc0{bottom:1019.173333pt;}
.y4{bottom:1028.133333pt;}
.y76{bottom:1039.973333pt;}
.y4f{bottom:1040.293333pt;}
.y4d{bottom:1055.333333pt;}
.y4c{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:12.317500pt;}
.h17{height:16.107500pt;}
.h23{height:16.626667pt;}
.h26{height:16.946667pt;}
.h25{height:16.986667pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1e{height:27.093750pt;}
.h18{height:32.765625pt;}
.h24{height:33.586667pt;}
.h28{height:33.596000pt;}
.h29{height:33.600000pt;}
.h27{height:33.618667pt;}
.h21{height:33.626667pt;}
.h22{height:33.906667pt;}
.h20{height:33.920000pt;}
.h1d{height:42.578750pt;}
.h1a{height:44.878750pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.h1f{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h2b{height:58.736250pt;}
.h1c{height:59.340000pt;}
.h14{height:60.270000pt;}
.h2a{height:60.519362pt;}
.h6{height:62.857500pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:91.866667pt;}
.h12{height:105.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.wc{width:96.986667pt;}
.wb{width:115.240000pt;}
.wd{width:118.426667pt;}
.w8{width:133.120000pt;}
.we{width:134.466667pt;}
.wf{width:155.240000pt;}
.w12{width:166.760000pt;}
.wa{width:189.800000pt;}
.w9{width:193.373333pt;}
.w10{width:212.240000pt;}
.w11{width:221.853333pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.348000pt;}
.x5{left:9.906667pt;}
.x12{left:14.068000pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.x27{left:39.380000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.x16{left:82.582667pt;}
.xd{left:85.466667pt;}
.x26{left:89.324000pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x1e{left:99.872000pt;}
.x35{left:120.064000pt;}
.x2e{left:133.826667pt;}
.x23{left:138.320000pt;}
.x1a{left:144.066667pt;}
.x4{left:150.160000pt;}
.x22{left:161.666667pt;}
.x15{left:162.929333pt;}
.x17{left:182.809333pt;}
.x6{left:185.653333pt;}
.x1f{left:201.373333pt;}
.x28{left:205.213333pt;}
.x13{left:211.609333pt;}
.x14{left:238.489333pt;}
.x33{left:262.493333pt;}
.x24{left:272.093333pt;}
.x18{left:288.916443pt;}
.x11{left:298.356000pt;}
.x29{left:302.853333pt;}
.x2c{left:308.933333pt;}
.xa{left:396.320000pt;}
.x1c{left:420.960000pt;}
.x2a{left:422.240000pt;}
.x30{left:423.520000pt;}
.x34{left:444.986667pt;}
.x25{left:466.120000pt;}
.x1b{left:468.986667pt;}
.x21{left:503.226667pt;}
.x2d{left:531.440000pt;}
.x31{left:533.666667pt;}
.x2b{left:557.360000pt;}
.x20{left:559.266667pt;}
.x32{left:582.626667pt;}
.x7{left:642.173333pt;}
.x1{left:687.653333pt;}
.x1d{left:692.133333pt;}
.x2f{left:710.693333pt;}
}




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