
    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_c60fbbbc2e6d493bc3a8372f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a5e386f7927b0c36ff5fbdbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_064c0ec050942a6c6653e90f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e0c0e0bce6c6551e0d8048a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_7151b0b730e768da3eb1508f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_5abfc807369676c418601c8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7d6f0eec4b1d78fc58f93a2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_43aea21dda3a9136047d8ddf.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cb2fdf4aeb23cfa2639e40ef.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e7cd26566dadf74c6524e9c3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bd75a6273d58d93ea260e30b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_51fc662724405bdb91dcc760.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7800361c8669fc3b416e8f70.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_7998b8d541f2fa2159944268.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.386000px;}
.ls10{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.100200px;}
.ls11{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.ls1{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.156000px;}
.ls6{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls1c{letter-spacing:16.506720px;}
.ls1a{letter-spacing:46.026720px;}
.lsb{letter-spacing:55.386720px;}
.ls18{letter-spacing:64.170720px;}
.ls13{letter-spacing:70.740000px;}
.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;}
}
.ws15{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.220000px;}
.ws10{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-7.232160px;}
._11{margin-left:-5.677200px;}
._c{margin-left:-4.615440px;}
._3{margin-left:-3.285360px;}
._2{margin-left:-2.021760px;}
._0{margin-left:-1.014000px;}
._1{width:1.506000px;}
._4{width:2.676960px;}
._a{width:4.641840px;}
._5{width:5.743440px;}
._6{width:6.746400px;}
._8{width:8.007840px;}
._15{width:9.131280px;}
._7{width:10.412160px;}
._d{width:11.952000px;}
._e{width:13.326480px;}
._1f{width:16.160160px;}
._b{width:17.497680px;}
._9{width:18.585360px;}
._12{width:19.900080px;}
._f{width:21.573360px;}
._10{width:22.649040px;}
._14{width:24.023520px;}
._13{width:25.099200px;}
._17{width:26.115120px;}
._19{width:35.616960px;}
._1e{width:46.433520px;}
._1c{width:49.242240px;}
._1d{width:69.668160px;}
._23{width:74.661120px;}
._22{width:79.764000px;}
._18{width:81.632160px;}
._21{width:84.717600px;}
._20{width:85.934880px;}
._1b{width:105.416640px;}
._1a{width:160.575120px;}
.fc8{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y10f{bottom:3.234000px;}
.y4d{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.ye3{bottom:3.780000px;}
.y52{bottom:3.960000px;}
.ycb{bottom:4.500000px;}
.yd0{bottom:4.680000px;}
.y1a{bottom:4.860000px;}
.y111{bottom:5.760000px;}
.y109{bottom:6.660000px;}
.y98{bottom:7.200000px;}
.yc9{bottom:8.280000px;}
.yf{bottom:9.540000px;}
.y50{bottom:10.620000px;}
.yb8{bottom:10.980000px;}
.y10d{bottom:11.694000px;}
.ybd{bottom:11.880000px;}
.y1d{bottom:12.600000px;}
.yd{bottom:13.680000px;}
.yc8{bottom:16.740000px;}
.y115{bottom:19.260000px;}
.y3{bottom:20.196000px;}
.y10e{bottom:20.334000px;}
.ye9{bottom:20.340000px;}
.y4c{bottom:20.520000px;}
.y51{bottom:22.320000px;}
.y4f{bottom:25.380000px;}
.y113{bottom:27.900000px;}
.yb7{bottom:28.080000px;}
.yea{bottom:28.980000px;}
.yfc{bottom:29.160000px;}
.y19{bottom:29.340000px;}
.yc{bottom:30.060000px;}
.y6{bottom:31.320000px;}
.y5{bottom:33.876000px;}
.y114{bottom:36.540000px;}
.y2{bottom:36.576000px;}
.y4b{bottom:37.620000px;}
.yfd{bottom:37.800000px;}
.y116{bottom:45.180000px;}
.y18{bottom:45.765000px;}
.yb{bottom:46.440000px;}
.y1{bottom:52.380000px;}
.y4a{bottom:54.900000px;}
.ye1{bottom:57.060000px;}
.y17{bottom:61.605000px;}
.yf6{bottom:65.190000px;}
.y107{bottom:68.394000px;}
.y16{bottom:72.045000px;}
.y49{bottom:72.225000px;}
.ya{bottom:73.260000px;}
.ye0{bottom:74.340000px;}
.y48{bottom:89.505000px;}
.y15{bottom:90.405000px;}
.y9{bottom:92.910000px;}
.y47{bottom:106.785000px;}
.y14{bottom:109.305000px;}
.y8{bottom:111.270000px;}
.y96{bottom:111.456000px;}
.yb5{bottom:112.395000px;}
.y106{bottom:114.696000px;}
.y153{bottom:120.096000px;}
.y46{bottom:124.065000px;}
.yb1{bottom:124.350000px;}
.y95{bottom:128.736000px;}
.y58{bottom:129.276000px;}
.yaf{bottom:134.676000px;}
.y13{bottom:135.045000px;}
.yb4{bottom:137.850000px;}
.y152{bottom:138.456000px;}
.yb2{bottom:139.605000px;}
.yde{bottom:139.896000px;}
.y45{bottom:141.165000px;}
.y148{bottom:141.336000px;}
.y94{bottom:146.016000px;}
.y57{bottom:146.556000px;}
.y10c{bottom:149.976000px;}
.yae{bottom:151.770000px;}
.y151{bottom:156.810000px;}
.ydd{bottom:157.170000px;}
.y44{bottom:158.445000px;}
.y147{bottom:158.610000px;}
.y12{bottom:160.785000px;}
.y93{bottom:163.290000px;}
.y56{bottom:163.830000px;}
.yad{bottom:165.810000px;}
.yb0{bottom:166.500000px;}
.ydc{bottom:171.210000px;}
.y150{bottom:174.090000px;}
.y43{bottom:175.725000px;}
.y146{bottom:175.890000px;}
.y92{bottom:180.570000px;}
.y55{bottom:181.110000px;}
.y10b{bottom:185.070000px;}
.y11{bottom:185.265000px;}
.y14f{bottom:192.450000px;}
.y42{bottom:193.005000px;}
.y145{bottom:193.170000px;}
.y91{bottom:197.670000px;}
.y54{bottom:198.390000px;}
.y10a{bottom:203.070000px;}
.y14e{bottom:209.550000px;}
.y144{bottom:210.270000px;}
.y41{bottom:210.285000px;}
.y90{bottom:214.950000px;}
.y53{bottom:215.490000px;}
.yb3{bottom:217.650000px;}
.y40{bottom:227.385000px;}
.y143{bottom:227.550000px;}
.y14d{bottom:227.910000px;}
.y4e{bottom:229.530000px;}
.y8f{bottom:232.230000px;}
.y108{bottom:238.350000px;}
.y3f{bottom:244.665000px;}
.y142{bottom:244.830000px;}
.y14c{bottom:246.270000px;}
.y8e{bottom:249.510000px;}
.y2e{bottom:252.945000px;}
.y3e{bottom:261.945000px;}
.y141{bottom:262.110000px;}
.y14b{bottom:264.630000px;}
.y1e{bottom:266.250000px;}
.y8d{bottom:266.790000px;}
.y2d{bottom:268.245000px;}
.y3d{bottom:279.225000px;}
.y140{bottom:279.390000px;}
.y14a{bottom:281.910000px;}
.y105{bottom:283.530000px;}
.y8c{bottom:284.070000px;}
.y2c{bottom:285.885000px;}
.y3c{bottom:296.505000px;}
.y13f{bottom:296.670000px;}
.y149{bottom:300.090000px;}
.y104{bottom:300.810000px;}
.y8b{bottom:301.170000px;}
.y2b{bottom:303.165000px;}
.y13e{bottom:313.770000px;}
.y3b{bottom:313.785000px;}
.y103{bottom:318.090000px;}
.y8a{bottom:318.450000px;}
.y2a{bottom:320.445000px;}
.y3a{bottom:330.885000px;}
.y13d{bottom:331.050000px;}
.y102{bottom:335.370000px;}
.y89{bottom:335.730000px;}
.y29{bottom:338.115000px;}
.y39{bottom:348.195000px;}
.y13c{bottom:348.375000px;}
.y182{bottom:348.735000px;}
.y101{bottom:352.515000px;}
.y88{bottom:353.055000px;}
.y28{bottom:354.855000px;}
.y38{bottom:365.475000px;}
.y13b{bottom:365.655000px;}
.y181{bottom:366.015000px;}
.y100{bottom:367.275000px;}
.y87{bottom:370.335000px;}
.y27{bottom:371.235000px;}
.y37{bottom:382.755000px;}
.y13a{bottom:382.935000px;}
.y180{bottom:383.295000px;}
.yff{bottom:385.275000px;}
.y86{bottom:387.615000px;}
.y26{bottom:388.335000px;}
.y36{bottom:400.035000px;}
.y17f{bottom:400.395000px;}
.y85{bottom:404.715000px;}
.y25{bottom:405.795000px;}
.y35{bottom:417.315000px;}
.y17e{bottom:417.675000px;}
.yfe{bottom:420.555000px;}
.y84{bottom:421.995000px;}
.y24{bottom:423.075000px;}
.y34{bottom:434.415000px;}
.y139{bottom:434.595000px;}
.y17d{bottom:434.955000px;}
.y83{bottom:439.275000px;}
.y23{bottom:440.535000px;}
.ydb{bottom:447.195000px;}
.y33{bottom:451.695000px;}
.y138{bottom:451.875000px;}
.y17c{bottom:452.235000px;}
.yac{bottom:454.935000px;}
.yfb{bottom:455.835000px;}
.y82{bottom:456.555000px;}
.y22{bottom:457.995000px;}
.yda{bottom:464.475000px;}
.y32{bottom:468.975000px;}
.y137{bottom:469.155000px;}
.y17b{bottom:469.515000px;}
.yab{bottom:472.035000px;}
.y81{bottom:473.835000px;}
.y21{bottom:478.155000px;}
.yd9{bottom:481.755000px;}
.y31{bottom:486.255000px;}
.y136{bottom:486.435000px;}
.y17a{bottom:486.795000px;}
.yaa{bottom:489.315000px;}
.y80{bottom:490.935000px;}
.yd8{bottom:499.035000px;}
.y30{bottom:503.535000px;}
.y179{bottom:503.895000px;}
.y20{bottom:505.695000px;}
.ya9{bottom:506.595000px;}
.y7f{bottom:508.215000px;}
.yd7{bottom:516.135000px;}
.y2f{bottom:520.815000px;}
.y178{bottom:521.175000px;}
.y1f{bottom:523.335000px;}
.ya8{bottom:523.875000px;}
.y7e{bottom:525.495000px;}
.yd6{bottom:533.415000px;}
.y135{bottom:538.095000px;}
.y177{bottom:538.455000px;}
.ya7{bottom:541.155000px;}
.y7d{bottom:542.775000px;}
.yf5{bottom:543.495000px;}
.yd5{bottom:550.695000px;}
.y134{bottom:555.375000px;}
.y176{bottom:555.735000px;}
.ya6{bottom:558.435000px;}
.y7c{bottom:560.055000px;}
.yd4{bottom:565.455000px;}
.y133{bottom:572.655000px;}
.y175{bottom:573.015000px;}
.ya5{bottom:573.195000px;}
.y7b{bottom:577.335000px;}
.yfa{bottom:578.775000px;}
.yd3{bottom:585.975000px;}
.y132{bottom:589.935000px;}
.y174{bottom:590.295000px;}
.ya4{bottom:591.195000px;}
.y7a{bottom:594.435000px;}
.yf9{bottom:596.775000px;}
.yd2{bottom:606.705000px;}
.y131{bottom:607.065000px;}
.y173{bottom:607.425000px;}
.ya3{bottom:609.225000px;}
.y79{bottom:611.745000px;}
.yf8{bottom:614.805000px;}
.y130{bottom:624.345000px;}
.y172{bottom:624.705000px;}
.ya2{bottom:627.225000px;}
.yd1{bottom:627.405000px;}
.y78{bottom:629.025000px;}
.y12f{bottom:641.625000px;}
.y171{bottom:641.985000px;}
.ya1{bottom:645.225000px;}
.y77{bottom:646.305000px;}
.ycf{bottom:647.745000px;}
.yf7{bottom:650.085000px;}
.y12e{bottom:658.905000px;}
.y170{bottom:659.265000px;}
.ya0{bottom:663.225000px;}
.y76{bottom:663.585000px;}
.yce{bottom:668.445000px;}
.y12d{bottom:676.185000px;}
.y16f{bottom:676.545000px;}
.y75{bottom:680.865000px;}
.y9f{bottom:681.225000px;}
.yf4{bottom:688.605000px;}
.ycd{bottom:688.965000px;}
.y12c{bottom:693.285000px;}
.y16e{bottom:693.645000px;}
.y74{bottom:697.965000px;}
.y9e{bottom:699.225000px;}
.yf3{bottom:705.885000px;}
.y12b{bottom:710.565000px;}
.y16d{bottom:710.925000px;}
.y73{bottom:715.245000px;}
.y9d{bottom:717.225000px;}
.yf2{bottom:723.165000px;}
.ycc{bottom:724.245000px;}
.y12a{bottom:727.845000px;}
.y16c{bottom:728.205000px;}
.y72{bottom:732.525000px;}
.y9c{bottom:735.225000px;}
.yf1{bottom:740.265000px;}
.yca{bottom:744.765000px;}
.y129{bottom:745.125000px;}
.y16b{bottom:745.485000px;}
.y71{bottom:749.805000px;}
.y9b{bottom:753.225000px;}
.yf0{bottom:757.545000px;}
.y128{bottom:762.405000px;}
.y16a{bottom:762.765000px;}
.yc7{bottom:765.465000px;}
.y70{bottom:767.085000px;}
.y9a{bottom:771.225000px;}
.yef{bottom:774.825000px;}
.y127{bottom:779.685000px;}
.y169{bottom:780.045000px;}
.y6f{bottom:784.365000px;}
.y99{bottom:789.225000px;}
.yee{bottom:792.105000px;}
.y126{bottom:796.785000px;}
.y168{bottom:797.145000px;}
.y1b{bottom:800.925000px;}
.y6e{bottom:801.465000px;}
.yed{bottom:806.865000px;}
.y97{bottom:807.045000px;}
.yc6{bottom:813.885000px;}
.y125{bottom:814.065000px;}
.y167{bottom:814.425000px;}
.y6d{bottom:818.745000px;}
.yec{bottom:824.865000px;}
.y10{bottom:830.625000px;}
.yc5{bottom:831.165000px;}
.y124{bottom:831.345000px;}
.y166{bottom:831.705000px;}
.y6c{bottom:836.025000px;}
.yeb{bottom:842.865000px;}
.yc4{bottom:848.445000px;}
.y123{bottom:848.625000px;}
.y165{bottom:848.985000px;}
.y6b{bottom:853.305000px;}
.yc3{bottom:865.725000px;}
.y122{bottom:865.905000px;}
.y164{bottom:866.265000px;}
.y6a{bottom:870.630000px;}
.ye8{bottom:878.190000px;}
.yc2{bottom:882.870000px;}
.y121{bottom:883.230000px;}
.y163{bottom:883.590000px;}
.y69{bottom:887.730000px;}
.yc1{bottom:900.150000px;}
.y120{bottom:900.330000px;}
.y162{bottom:900.690000px;}
.y68{bottom:905.010000px;}
.yc0{bottom:914.910000px;}
.y11f{bottom:917.610000px;}
.y161{bottom:917.970000px;}
.y67{bottom:922.290000px;}
.ye7{bottom:930.570000px;}
.ybf{bottom:932.910000px;}
.y11e{bottom:934.890000px;}
.y160{bottom:935.250000px;}
.y66{bottom:939.570000px;}
.ydf{bottom:948.570000px;}
.ybe{bottom:950.910000px;}
.y11d{bottom:952.170000px;}
.y15f{bottom:952.530000px;}
.y65{bottom:956.850000px;}
.ybc{bottom:968.910000px;}
.y11c{bottom:969.450000px;}
.y15e{bottom:969.810000px;}
.y64{bottom:974.130000px;}
.ye6{bottom:983.850000px;}
.y11b{bottom:986.730000px;}
.y15d{bottom:986.910000px;}
.y63{bottom:991.230000px;}
.ye5{bottom:1001.850000px;}
.y11a{bottom:1003.830000px;}
.ybb{bottom:1004.190000px;}
.y62{bottom:1008.510000px;}
.y119{bottom:1018.590000px;}
.y15c{bottom:1021.470000px;}
.yba{bottom:1022.190000px;}
.y61{bottom:1025.790000px;}
.ye{bottom:1031.010000px;}
.ye4{bottom:1037.130000px;}
.y15b{bottom:1038.750000px;}
.yb9{bottom:1040.190000px;}
.y118{bottom:1041.630000px;}
.y60{bottom:1043.070000px;}
.y15a{bottom:1056.030000px;}
.y7{bottom:1056.390000px;}
.yb6{bottom:1058.190000px;}
.y5f{bottom:1060.350000px;}
.y117{bottom:1064.490000px;}
.ye2{bottom:1072.410000px;}
.y159{bottom:1073.310000px;}
.y5e{bottom:1077.630000px;}
.y112{bottom:1087.530000px;}
.y158{bottom:1090.410000px;}
.y5d{bottom:1094.730000px;}
.y157{bottom:1108.770000px;}
.y5c{bottom:1112.010000px;}
.y156{bottom:1127.130000px;}
.y5b{bottom:1129.290000px;}
.y155{bottom:1144.440000px;}
.y5a{bottom:1146.600000px;}
.y110{bottom:1154.880000px;}
.y154{bottom:1162.800000px;}
.y59{bottom:1163.880000px;}
.h26{height:17.100000px;}
.h27{height:17.136000px;}
.h2a{height:17.280000px;}
.h36{height:17.316000px;}
.h32{height:18.360000px;}
.h2f{height:19.620000px;}
.h2e{height:19.800000px;}
.h2d{height:19.980000px;}
.h30{height:20.016000px;}
.h3b{height:22.140000px;}
.h3d{height:22.320000px;}
.h39{height:23.940000px;}
.hd{height:24.840000px;}
.h25{height:25.020000px;}
.h14{height:28.968750px;}
.h15{height:29.700000px;}
.h3a{height:34.380000px;}
.h34{height:34.416000px;}
.h2b{height:34.560000px;}
.h13{height:35.806641px;}
.ha{height:36.180000px;}
.h20{height:36.720000px;}
.h1d{height:38.818125px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h5{height:43.453125px;}
.h24{height:43.506914px;}
.hf{height:44.002969px;}
.h2c{height:44.460000px;}
.hc{height:44.820000px;}
.h1b{height:45.770625px;}
.h1a{height:46.881563px;}
.h18{height:47.980898px;}
.h22{height:48.003656px;}
.h23{height:48.027656px;}
.h21{height:48.088125px;}
.h1c{height:49.255313px;}
.h2{height:49.536000px;}
.h29{height:49.860000px;}
.h33{height:51.660000px;}
.h4{height:53.709961px;}
.hb{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h7{height:65.884219px;}
.h3c{height:66.636000px;}
.h6{height:67.824844px;}
.h37{height:68.940000px;}
.h9{height:71.613281px;}
.h16{height:73.722656px;}
.h8{height:121.536000px;}
.h35{height:141.156000px;}
.h31{height:142.200000px;}
.h38{height:147.600000px;}
.he{height:200.370000px;}
.h28{height:285.300000px;}
.h17{height:534.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w26{width:60.840000px;}
.w31{width:65.700000px;}
.w25{width:66.096000px;}
.w24{width:66.240000px;}
.w1c{width:69.120000px;}
.w30{width:71.856000px;}
.w3{width:73.080000px;}
.w18{width:79.056000px;}
.w1d{width:79.776000px;}
.w32{width:82.080000px;}
.w27{width:82.260000px;}
.w2b{width:100.080000px;}
.wb{width:104.076000px;}
.w2a{width:111.276000px;}
.w1a{width:119.160000px;}
.w17{width:119.340000px;}
.w16{width:119.376000px;}
.w20{width:125.280000px;}
.w21{width:125.316000px;}
.w12{width:128.016000px;}
.w2f{width:129.276000px;}
.wc{width:132.660000px;}
.w22{width:133.056000px;}
.w14{width:139.356000px;}
.w23{width:143.820000px;}
.w2d{width:148.680000px;}
.w19{width:149.616000px;}
.w5{width:151.950000px;}
.wf{width:155.010000px;}
.w28{width:157.530000px;}
.w11{width:192.810000px;}
.w1e{width:199.335000px;}
.w10{width:199.830000px;}
.w2c{width:201.855000px;}
.w13{width:203.250000px;}
.w8{width:223.455000px;}
.we{width:373.395000px;}
.wd{width:445.500000px;}
.wa{width:491.505000px;}
.w9{width:507.675000px;}
.w1f{width:529.635000px;}
.w29{width:564.225000px;}
.w6{width:579.165000px;}
.w15{width:589.605000px;}
.w2{width:658.050000px;}
.w2e{width:722.490000px;}
.w1b{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.xc{left:9.936000px;}
.x12{left:12.600000px;}
.xf{left:23.976000px;}
.xb{left:43.776000px;}
.x1a{left:68.400000px;}
.x1{left:81.000000px;}
.x32{left:85.320000px;}
.x4{left:98.130000px;}
.x38{left:108.035987px;}
.x1b{left:143.205000px;}
.x13{left:146.915987px;}
.x24{left:148.535987px;}
.x25{left:150.689987px;}
.x1d{left:153.569987px;}
.xe{left:184.710000px;}
.x31{left:191.009987px;}
.x17{left:194.969987px;}
.x2a{left:213.149987px;}
.x10{left:215.175000px;}
.x26{left:221.790000px;}
.x18{left:223.560000px;}
.x19{left:229.860000px;}
.x5{left:232.950000px;}
.x33{left:243.570000px;}
.x8{left:272.235000px;}
.x20{left:275.250000px;}
.x2b{left:281.775000px;}
.xd{left:296.355000px;}
.x11{left:304.455000px;}
.x6{left:331.995000px;}
.x27{left:341.895000px;}
.x1c{left:346.830000px;}
.x7{left:351.255000px;}
.x34{left:355.575000px;}
.xa{left:365.475000px;}
.x39{left:396.074987px;}
.x21{left:403.995000px;}
.x2c{left:407.775000px;}
.x9{left:439.500000px;}
.x1e{left:455.835000px;}
.x28{left:461.955000px;}
.x2d{left:533.805000px;}
.x29{left:541.725000px;}
.x14{left:573.945000px;}
.x36{left:586.365000px;}
.x2f{left:600.765000px;}
.x22{left:608.145000px;}
.x1f{left:611.565000px;}
.x35{left:659.130000px;}
.x2e{left:667.590000px;}
.x16{left:669.389987px;}
.x15{left:678.750000px;}
.x23{left:691.889987px;}
.x37{left:725.730000px;}
.x30{left:729.150000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.232000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.089067pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.ls1{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.138667pt;}
.ls6{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:40.912640pt;}
.lsb{letter-spacing:49.232640pt;}
.ls18{letter-spacing:57.040640pt;}
.ls13{letter-spacing:62.880000pt;}
.ws15{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.048000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-6.428587pt;}
._11{margin-left:-5.046400pt;}
._c{margin-left:-4.102613pt;}
._3{margin-left:-2.920320pt;}
._2{margin-left:-1.797120pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.338667pt;}
._4{width:2.379520pt;}
._a{width:4.126080pt;}
._5{width:5.105280pt;}
._6{width:5.996800pt;}
._8{width:7.118080pt;}
._15{width:8.116693pt;}
._7{width:9.255253pt;}
._d{width:10.624000pt;}
._e{width:11.845760pt;}
._1f{width:14.364587pt;}
._b{width:15.553493pt;}
._9{width:16.520320pt;}
._12{width:17.688960pt;}
._f{width:19.176320pt;}
._10{width:20.132480pt;}
._14{width:21.354240pt;}
._13{width:22.310400pt;}
._17{width:23.213440pt;}
._19{width:31.659520pt;}
._1e{width:41.274240pt;}
._1c{width:43.770880pt;}
._1d{width:61.927253pt;}
._23{width:66.365440pt;}
._22{width:70.901333pt;}
._18{width:72.561920pt;}
._21{width:75.304533pt;}
._20{width:76.386560pt;}
._1b{width:93.703680pt;}
._1a{width:142.733440pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y10f{bottom:2.874667pt;}
.y4d{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.ye3{bottom:3.360000pt;}
.y52{bottom:3.520000pt;}
.ycb{bottom:4.000000pt;}
.yd0{bottom:4.160000pt;}
.y1a{bottom:4.320000pt;}
.y111{bottom:5.120000pt;}
.y109{bottom:5.920000pt;}
.y98{bottom:6.400000pt;}
.yc9{bottom:7.360000pt;}
.yf{bottom:8.480000pt;}
.y50{bottom:9.440000pt;}
.yb8{bottom:9.760000pt;}
.y10d{bottom:10.394667pt;}
.ybd{bottom:10.560000pt;}
.y1d{bottom:11.200000pt;}
.yd{bottom:12.160000pt;}
.yc8{bottom:14.880000pt;}
.y115{bottom:17.120000pt;}
.y3{bottom:17.952000pt;}
.y10e{bottom:18.074667pt;}
.ye9{bottom:18.080000pt;}
.y4c{bottom:18.240000pt;}
.y51{bottom:19.840000pt;}
.y4f{bottom:22.560000pt;}
.y113{bottom:24.800000pt;}
.yb7{bottom:24.960000pt;}
.yea{bottom:25.760000pt;}
.yfc{bottom:25.920000pt;}
.y19{bottom:26.080000pt;}
.yc{bottom:26.720000pt;}
.y6{bottom:27.840000pt;}
.y5{bottom:30.112000pt;}
.y114{bottom:32.480000pt;}
.y2{bottom:32.512000pt;}
.y4b{bottom:33.440000pt;}
.yfd{bottom:33.600000pt;}
.y116{bottom:40.160000pt;}
.y18{bottom:40.680000pt;}
.yb{bottom:41.280000pt;}
.y1{bottom:46.560000pt;}
.y4a{bottom:48.800000pt;}
.ye1{bottom:50.720000pt;}
.y17{bottom:54.760000pt;}
.yf6{bottom:57.946667pt;}
.y107{bottom:60.794667pt;}
.y16{bottom:64.040000pt;}
.y49{bottom:64.200000pt;}
.ya{bottom:65.120000pt;}
.ye0{bottom:66.080000pt;}
.y48{bottom:79.560000pt;}
.y15{bottom:80.360000pt;}
.y9{bottom:82.586667pt;}
.y47{bottom:94.920000pt;}
.y14{bottom:97.160000pt;}
.y8{bottom:98.906667pt;}
.y96{bottom:99.072000pt;}
.yb5{bottom:99.906667pt;}
.y106{bottom:101.952000pt;}
.y153{bottom:106.752000pt;}
.y46{bottom:110.280000pt;}
.yb1{bottom:110.533333pt;}
.y95{bottom:114.432000pt;}
.y58{bottom:114.912000pt;}
.yaf{bottom:119.712000pt;}
.y13{bottom:120.040000pt;}
.yb4{bottom:122.533333pt;}
.y152{bottom:123.072000pt;}
.yb2{bottom:124.093333pt;}
.yde{bottom:124.352000pt;}
.y45{bottom:125.480000pt;}
.y148{bottom:125.632000pt;}
.y94{bottom:129.792000pt;}
.y57{bottom:130.272000pt;}
.y10c{bottom:133.312000pt;}
.yae{bottom:134.906667pt;}
.y151{bottom:139.386667pt;}
.ydd{bottom:139.706667pt;}
.y44{bottom:140.840000pt;}
.y147{bottom:140.986667pt;}
.y12{bottom:142.920000pt;}
.y93{bottom:145.146667pt;}
.y56{bottom:145.626667pt;}
.yad{bottom:147.386667pt;}
.yb0{bottom:148.000000pt;}
.ydc{bottom:152.186667pt;}
.y150{bottom:154.746667pt;}
.y43{bottom:156.200000pt;}
.y146{bottom:156.346667pt;}
.y92{bottom:160.506667pt;}
.y55{bottom:160.986667pt;}
.y10b{bottom:164.506667pt;}
.y11{bottom:164.680000pt;}
.y14f{bottom:171.066667pt;}
.y42{bottom:171.560000pt;}
.y145{bottom:171.706667pt;}
.y91{bottom:175.706667pt;}
.y54{bottom:176.346667pt;}
.y10a{bottom:180.506667pt;}
.y14e{bottom:186.266667pt;}
.y144{bottom:186.906667pt;}
.y41{bottom:186.920000pt;}
.y90{bottom:191.066667pt;}
.y53{bottom:191.546667pt;}
.yb3{bottom:193.466667pt;}
.y40{bottom:202.120000pt;}
.y143{bottom:202.266667pt;}
.y14d{bottom:202.586667pt;}
.y4e{bottom:204.026667pt;}
.y8f{bottom:206.426667pt;}
.y108{bottom:211.866667pt;}
.y3f{bottom:217.480000pt;}
.y142{bottom:217.626667pt;}
.y14c{bottom:218.906667pt;}
.y8e{bottom:221.786667pt;}
.y2e{bottom:224.840000pt;}
.y3e{bottom:232.840000pt;}
.y141{bottom:232.986667pt;}
.y14b{bottom:235.226667pt;}
.y1e{bottom:236.666667pt;}
.y8d{bottom:237.146667pt;}
.y2d{bottom:238.440000pt;}
.y3d{bottom:248.200000pt;}
.y140{bottom:248.346667pt;}
.y14a{bottom:250.586667pt;}
.y105{bottom:252.026667pt;}
.y8c{bottom:252.506667pt;}
.y2c{bottom:254.120000pt;}
.y3c{bottom:263.560000pt;}
.y13f{bottom:263.706667pt;}
.y149{bottom:266.746667pt;}
.y104{bottom:267.386667pt;}
.y8b{bottom:267.706667pt;}
.y2b{bottom:269.480000pt;}
.y13e{bottom:278.906667pt;}
.y3b{bottom:278.920000pt;}
.y103{bottom:282.746667pt;}
.y8a{bottom:283.066667pt;}
.y2a{bottom:284.840000pt;}
.y3a{bottom:294.120000pt;}
.y13d{bottom:294.266667pt;}
.y102{bottom:298.106667pt;}
.y89{bottom:298.426667pt;}
.y29{bottom:300.546667pt;}
.y39{bottom:309.506667pt;}
.y13c{bottom:309.666667pt;}
.y182{bottom:309.986667pt;}
.y101{bottom:313.346667pt;}
.y88{bottom:313.826667pt;}
.y28{bottom:315.426667pt;}
.y38{bottom:324.866667pt;}
.y13b{bottom:325.026667pt;}
.y181{bottom:325.346667pt;}
.y100{bottom:326.466667pt;}
.y87{bottom:329.186667pt;}
.y27{bottom:329.986667pt;}
.y37{bottom:340.226667pt;}
.y13a{bottom:340.386667pt;}
.y180{bottom:340.706667pt;}
.yff{bottom:342.466667pt;}
.y86{bottom:344.546667pt;}
.y26{bottom:345.186667pt;}
.y36{bottom:355.586667pt;}
.y17f{bottom:355.906667pt;}
.y85{bottom:359.746667pt;}
.y25{bottom:360.706667pt;}
.y35{bottom:370.946667pt;}
.y17e{bottom:371.266667pt;}
.yfe{bottom:373.826667pt;}
.y84{bottom:375.106667pt;}
.y24{bottom:376.066667pt;}
.y34{bottom:386.146667pt;}
.y139{bottom:386.306667pt;}
.y17d{bottom:386.626667pt;}
.y83{bottom:390.466667pt;}
.y23{bottom:391.586667pt;}
.ydb{bottom:397.506667pt;}
.y33{bottom:401.506667pt;}
.y138{bottom:401.666667pt;}
.y17c{bottom:401.986667pt;}
.yac{bottom:404.386667pt;}
.yfb{bottom:405.186667pt;}
.y82{bottom:405.826667pt;}
.y22{bottom:407.106667pt;}
.yda{bottom:412.866667pt;}
.y32{bottom:416.866667pt;}
.y137{bottom:417.026667pt;}
.y17b{bottom:417.346667pt;}
.yab{bottom:419.586667pt;}
.y81{bottom:421.186667pt;}
.y21{bottom:425.026667pt;}
.yd9{bottom:428.226667pt;}
.y31{bottom:432.226667pt;}
.y136{bottom:432.386667pt;}
.y17a{bottom:432.706667pt;}
.yaa{bottom:434.946667pt;}
.y80{bottom:436.386667pt;}
.yd8{bottom:443.586667pt;}
.y30{bottom:447.586667pt;}
.y179{bottom:447.906667pt;}
.y20{bottom:449.506667pt;}
.ya9{bottom:450.306667pt;}
.y7f{bottom:451.746667pt;}
.yd7{bottom:458.786667pt;}
.y2f{bottom:462.946667pt;}
.y178{bottom:463.266667pt;}
.y1f{bottom:465.186667pt;}
.ya8{bottom:465.666667pt;}
.y7e{bottom:467.106667pt;}
.yd6{bottom:474.146667pt;}
.y135{bottom:478.306667pt;}
.y177{bottom:478.626667pt;}
.ya7{bottom:481.026667pt;}
.y7d{bottom:482.466667pt;}
.yf5{bottom:483.106667pt;}
.yd5{bottom:489.506667pt;}
.y134{bottom:493.666667pt;}
.y176{bottom:493.986667pt;}
.ya6{bottom:496.386667pt;}
.y7c{bottom:497.826667pt;}
.yd4{bottom:502.626667pt;}
.y133{bottom:509.026667pt;}
.y175{bottom:509.346667pt;}
.ya5{bottom:509.506667pt;}
.y7b{bottom:513.186667pt;}
.yfa{bottom:514.466667pt;}
.yd3{bottom:520.866667pt;}
.y132{bottom:524.386667pt;}
.y174{bottom:524.706667pt;}
.ya4{bottom:525.506667pt;}
.y7a{bottom:528.386667pt;}
.yf9{bottom:530.466667pt;}
.yd2{bottom:539.293333pt;}
.y131{bottom:539.613333pt;}
.y173{bottom:539.933333pt;}
.ya3{bottom:541.533333pt;}
.y79{bottom:543.773333pt;}
.yf8{bottom:546.493333pt;}
.y130{bottom:554.973333pt;}
.y172{bottom:555.293333pt;}
.ya2{bottom:557.533333pt;}
.yd1{bottom:557.693333pt;}
.y78{bottom:559.133333pt;}
.y12f{bottom:570.333333pt;}
.y171{bottom:570.653333pt;}
.ya1{bottom:573.533333pt;}
.y77{bottom:574.493333pt;}
.ycf{bottom:575.773333pt;}
.yf7{bottom:577.853333pt;}
.y12e{bottom:585.693333pt;}
.y170{bottom:586.013333pt;}
.ya0{bottom:589.533333pt;}
.y76{bottom:589.853333pt;}
.yce{bottom:594.173333pt;}
.y12d{bottom:601.053333pt;}
.y16f{bottom:601.373333pt;}
.y75{bottom:605.213333pt;}
.y9f{bottom:605.533333pt;}
.yf4{bottom:612.093333pt;}
.ycd{bottom:612.413333pt;}
.y12c{bottom:616.253333pt;}
.y16e{bottom:616.573333pt;}
.y74{bottom:620.413333pt;}
.y9e{bottom:621.533333pt;}
.yf3{bottom:627.453333pt;}
.y12b{bottom:631.613333pt;}
.y16d{bottom:631.933333pt;}
.y73{bottom:635.773333pt;}
.y9d{bottom:637.533333pt;}
.yf2{bottom:642.813333pt;}
.ycc{bottom:643.773333pt;}
.y12a{bottom:646.973333pt;}
.y16c{bottom:647.293333pt;}
.y72{bottom:651.133333pt;}
.y9c{bottom:653.533333pt;}
.yf1{bottom:658.013333pt;}
.yca{bottom:662.013333pt;}
.y129{bottom:662.333333pt;}
.y16b{bottom:662.653333pt;}
.y71{bottom:666.493333pt;}
.y9b{bottom:669.533333pt;}
.yf0{bottom:673.373333pt;}
.y128{bottom:677.693333pt;}
.y16a{bottom:678.013333pt;}
.yc7{bottom:680.413333pt;}
.y70{bottom:681.853333pt;}
.y9a{bottom:685.533333pt;}
.yef{bottom:688.733333pt;}
.y127{bottom:693.053333pt;}
.y169{bottom:693.373333pt;}
.y6f{bottom:697.213333pt;}
.y99{bottom:701.533333pt;}
.yee{bottom:704.093333pt;}
.y126{bottom:708.253333pt;}
.y168{bottom:708.573333pt;}
.y1b{bottom:711.933333pt;}
.y6e{bottom:712.413333pt;}
.yed{bottom:717.213333pt;}
.y97{bottom:717.373333pt;}
.yc6{bottom:723.453333pt;}
.y125{bottom:723.613333pt;}
.y167{bottom:723.933333pt;}
.y6d{bottom:727.773333pt;}
.yec{bottom:733.213333pt;}
.y10{bottom:738.333333pt;}
.yc5{bottom:738.813333pt;}
.y124{bottom:738.973333pt;}
.y166{bottom:739.293333pt;}
.y6c{bottom:743.133333pt;}
.yeb{bottom:749.213333pt;}
.yc4{bottom:754.173333pt;}
.y123{bottom:754.333333pt;}
.y165{bottom:754.653333pt;}
.y6b{bottom:758.493333pt;}
.yc3{bottom:769.533333pt;}
.y122{bottom:769.693333pt;}
.y164{bottom:770.013333pt;}
.y6a{bottom:773.893333pt;}
.ye8{bottom:780.613333pt;}
.yc2{bottom:784.773333pt;}
.y121{bottom:785.093333pt;}
.y163{bottom:785.413333pt;}
.y69{bottom:789.093333pt;}
.yc1{bottom:800.133333pt;}
.y120{bottom:800.293333pt;}
.y162{bottom:800.613333pt;}
.y68{bottom:804.453333pt;}
.yc0{bottom:813.253333pt;}
.y11f{bottom:815.653333pt;}
.y161{bottom:815.973333pt;}
.y67{bottom:819.813333pt;}
.ye7{bottom:827.173333pt;}
.ybf{bottom:829.253333pt;}
.y11e{bottom:831.013333pt;}
.y160{bottom:831.333333pt;}
.y66{bottom:835.173333pt;}
.ydf{bottom:843.173333pt;}
.ybe{bottom:845.253333pt;}
.y11d{bottom:846.373333pt;}
.y15f{bottom:846.693333pt;}
.y65{bottom:850.533333pt;}
.ybc{bottom:861.253333pt;}
.y11c{bottom:861.733333pt;}
.y15e{bottom:862.053333pt;}
.y64{bottom:865.893333pt;}
.ye6{bottom:874.533333pt;}
.y11b{bottom:877.093333pt;}
.y15d{bottom:877.253333pt;}
.y63{bottom:881.093333pt;}
.ye5{bottom:890.533333pt;}
.y11a{bottom:892.293333pt;}
.ybb{bottom:892.613333pt;}
.y62{bottom:896.453333pt;}
.y119{bottom:905.413333pt;}
.y15c{bottom:907.973333pt;}
.yba{bottom:908.613333pt;}
.y61{bottom:911.813333pt;}
.ye{bottom:916.453333pt;}
.ye4{bottom:921.893333pt;}
.y15b{bottom:923.333333pt;}
.yb9{bottom:924.613333pt;}
.y118{bottom:925.893333pt;}
.y60{bottom:927.173333pt;}
.y15a{bottom:938.693333pt;}
.y7{bottom:939.013333pt;}
.yb6{bottom:940.613333pt;}
.y5f{bottom:942.533333pt;}
.y117{bottom:946.213333pt;}
.ye2{bottom:953.253333pt;}
.y159{bottom:954.053333pt;}
.y5e{bottom:957.893333pt;}
.y112{bottom:966.693333pt;}
.y158{bottom:969.253333pt;}
.y5d{bottom:973.093333pt;}
.y157{bottom:985.573333pt;}
.y5c{bottom:988.453333pt;}
.y156{bottom:1001.893333pt;}
.y5b{bottom:1003.813333pt;}
.y155{bottom:1017.280000pt;}
.y5a{bottom:1019.200000pt;}
.y110{bottom:1026.560000pt;}
.y154{bottom:1033.600000pt;}
.y59{bottom:1034.560000pt;}
.h26{height:15.200000pt;}
.h27{height:15.232000pt;}
.h2a{height:15.360000pt;}
.h36{height:15.392000pt;}
.h32{height:16.320000pt;}
.h2f{height:17.440000pt;}
.h2e{height:17.600000pt;}
.h2d{height:17.760000pt;}
.h30{height:17.792000pt;}
.h3b{height:19.680000pt;}
.h3d{height:19.840000pt;}
.h39{height:21.280000pt;}
.hd{height:22.080000pt;}
.h25{height:22.240000pt;}
.h14{height:25.750000pt;}
.h15{height:26.400000pt;}
.h3a{height:30.560000pt;}
.h34{height:30.592000pt;}
.h2b{height:30.720000pt;}
.h13{height:31.828125pt;}
.ha{height:32.160000pt;}
.h20{height:32.640000pt;}
.h1d{height:34.505000pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h5{height:38.625000pt;}
.h24{height:38.672812pt;}
.hf{height:39.113750pt;}
.h2c{height:39.520000pt;}
.hc{height:39.840000pt;}
.h1b{height:40.685000pt;}
.h1a{height:41.672500pt;}
.h18{height:42.649687pt;}
.h22{height:42.669917pt;}
.h23{height:42.691250pt;}
.h21{height:42.745000pt;}
.h1c{height:43.782500pt;}
.h2{height:44.032000pt;}
.h29{height:44.320000pt;}
.h33{height:45.920000pt;}
.h4{height:47.742188pt;}
.hb{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h7{height:58.563750pt;}
.h3c{height:59.232000pt;}
.h6{height:60.288750pt;}
.h37{height:61.280000pt;}
.h9{height:63.656250pt;}
.h16{height:65.531250pt;}
.h8{height:108.032000pt;}
.h35{height:125.472000pt;}
.h31{height:126.400000pt;}
.h38{height:131.200000pt;}
.he{height:178.106667pt;}
.h28{height:253.600000pt;}
.h17{height:475.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w26{width:54.080000pt;}
.w31{width:58.400000pt;}
.w25{width:58.752000pt;}
.w24{width:58.880000pt;}
.w1c{width:61.440000pt;}
.w30{width:63.872000pt;}
.w3{width:64.960000pt;}
.w18{width:70.272000pt;}
.w1d{width:70.912000pt;}
.w32{width:72.960000pt;}
.w27{width:73.120000pt;}
.w2b{width:88.960000pt;}
.wb{width:92.512000pt;}
.w2a{width:98.912000pt;}
.w1a{width:105.920000pt;}
.w17{width:106.080000pt;}
.w16{width:106.112000pt;}
.w20{width:111.360000pt;}
.w21{width:111.392000pt;}
.w12{width:113.792000pt;}
.w2f{width:114.912000pt;}
.wc{width:117.920000pt;}
.w22{width:118.272000pt;}
.w14{width:123.872000pt;}
.w23{width:127.840000pt;}
.w2d{width:132.160000pt;}
.w19{width:132.992000pt;}
.w5{width:135.066667pt;}
.wf{width:137.786667pt;}
.w28{width:140.026667pt;}
.w11{width:171.386667pt;}
.w1e{width:177.186667pt;}
.w10{width:177.626667pt;}
.w2c{width:179.426667pt;}
.w13{width:180.666667pt;}
.w8{width:198.626667pt;}
.we{width:331.906667pt;}
.wd{width:396.000000pt;}
.wa{width:436.893333pt;}
.w9{width:451.266667pt;}
.w1f{width:470.786667pt;}
.w29{width:501.533333pt;}
.w6{width:514.813333pt;}
.w15{width:524.093333pt;}
.w2{width:584.933333pt;}
.w2e{width:642.213333pt;}
.w1b{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.xc{left:8.832000pt;}
.x12{left:11.200000pt;}
.xf{left:21.312000pt;}
.xb{left:38.912000pt;}
.x1a{left:60.800000pt;}
.x1{left:72.000000pt;}
.x32{left:75.840000pt;}
.x4{left:87.226667pt;}
.x38{left:96.031988pt;}
.x1b{left:127.293333pt;}
.x13{left:130.591988pt;}
.x24{left:132.031988pt;}
.x25{left:133.946655pt;}
.x1d{left:136.506655pt;}
.xe{left:164.186667pt;}
.x31{left:169.786655pt;}
.x17{left:173.306655pt;}
.x2a{left:189.466655pt;}
.x10{left:191.266667pt;}
.x26{left:197.146667pt;}
.x18{left:198.720000pt;}
.x19{left:204.320000pt;}
.x5{left:207.066667pt;}
.x33{left:216.506667pt;}
.x8{left:241.986667pt;}
.x20{left:244.666667pt;}
.x2b{left:250.466667pt;}
.xd{left:263.426667pt;}
.x11{left:270.626667pt;}
.x6{left:295.106667pt;}
.x27{left:303.906667pt;}
.x1c{left:308.293333pt;}
.x7{left:312.226667pt;}
.x34{left:316.066667pt;}
.xa{left:324.866667pt;}
.x39{left:352.066655pt;}
.x21{left:359.106667pt;}
.x2c{left:362.466667pt;}
.x9{left:390.666667pt;}
.x1e{left:405.186667pt;}
.x28{left:410.626667pt;}
.x2d{left:474.493333pt;}
.x29{left:481.533333pt;}
.x14{left:510.173333pt;}
.x36{left:521.213333pt;}
.x2f{left:534.013333pt;}
.x22{left:540.573333pt;}
.x1f{left:543.613333pt;}
.x35{left:585.893333pt;}
.x2e{left:593.413333pt;}
.x16{left:595.013322pt;}
.x15{left:603.333333pt;}
.x23{left:615.013322pt;}
.x37{left:645.093333pt;}
.x30{left:648.133333pt;}
.x3{left:656.933333pt;}
}




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