
    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_9e6f00d4110b5d0088b18089.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bfa33133943de8d26f032f61.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_352d907bf96bb9d9cc96e3d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_eb17d9782f016655ec86effd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_6dfe2d8bf6610c993fc0ccdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_8f2005d2288f41fcd6b03286.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d47b0ef7f4b276ca8fc5ce2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d598607b660ffe779ff38b69.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cc2bc5651103113b3fe7e550.woff2')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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_bd35bce504e8e9f02a43c277.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982422;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_42894447edd9b56eb1cfdc57.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982422;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_4ff61dd33f22789e5e8b94c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_7481306bbd93cca08638c0bd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b57489f1386dccc329db77d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.977051;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_0b53b2b87e099315a9d69c3d.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_69742dd6f2436271ff0cf5f5.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0ffa6a5f1d08f4b926b01a97.woff2')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_ae80b6b938f5426cd0259c1f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752441;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_dbfad6ebe278da6a97bf4a09.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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-84.240000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.606000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.132600px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.073440px;}
.ls14{letter-spacing:0.135600px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.217440px;}
.ls1c{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.303576px;}
.ls12{letter-spacing:0.341400px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.379470px;}
.ls9{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls18{letter-spacing:3.420000px;}
.ls16{letter-spacing:9.900000px;}
.ls2{letter-spacing:12.528000px;}
.ls4{letter-spacing:13.500000px;}
.ls1a{letter-spacing:14.021280px;}
.ls22{letter-spacing:17.424000px;}
.ls17{letter-spacing:17.621280px;}
.ls1e{letter-spacing:22.140000px;}
.ls1f{letter-spacing:23.580000px;}
.ls1d{letter-spacing:30.581280px;}
.ls21{letter-spacing:33.984000px;}
.lsb{letter-spacing:61.158240px;}
.lsd{letter-spacing:61.278240px;}
.ls10{letter-spacing:67.109760px;}
.ls1{letter-spacing:122.520000px;}
.ls20{letter-spacing:205.704000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-84.375600px;}
.ws5{word-spacing:-84.240000px;}
.ws8{word-spacing:-83.634000px;}
.ws2{word-spacing:-75.893905px;}
.wsa{word-spacing:-72.360000px;}
.wsd{word-spacing:-72.288000px;}
.wsc{word-spacing:-72.000000px;}
.ws0{word-spacing:-27.174240px;}
.ws7{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.wsf{word-spacing:-20.880000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.wse{word-spacing:-0.084240px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-7.578720px;}
._16{margin-left:-2.259600px;}
._0{margin-left:-1.010880px;}
._3{width:1.020000px;}
._6{width:2.496000px;}
._c{width:3.756000px;}
._5{width:4.824000px;}
._4{width:6.264000px;}
._b{width:7.344000px;}
._35{width:8.352000px;}
._2{width:9.360000px;}
._f{width:10.728000px;}
._1{width:12.144000px;}
._8{width:13.440000px;}
._10{width:15.384000px;}
._11{width:16.560000px;}
._2d{width:17.611680px;}
._22{width:18.739440px;}
._7{width:19.800000px;}
._a{width:22.080000px;}
._17{width:23.168880px;}
._9{width:24.192000px;}
._1f{width:25.200240px;}
._28{width:26.624400px;}
._12{width:28.584000px;}
._13{width:29.712000px;}
._27{width:31.680000px;}
._23{width:32.944320px;}
._d{width:34.200000px;}
._e{width:35.700000px;}
._18{width:37.234080px;}
._19{width:38.750160px;}
._29{width:40.098240px;}
._2a{width:41.431200px;}
._1b{width:43.961760px;}
._34{width:45.260880px;}
._1e{width:46.308000px;}
._1c{width:47.571600px;}
._1d{width:48.952560px;}
._15{width:49.954320px;}
._14{width:50.965200px;}
._2e{width:52.144560px;}
._2f{width:53.299920px;}
._30{width:54.879120px;}
._2c{width:57.857520px;}
._2b{width:59.052240px;}
._25{width:62.719920px;}
._24{width:63.853920px;}
._20{width:65.851680px;}
._33{width:71.902800px;}
._32{width:73.938720px;}
._26{width:76.321440px;}
._31{width:137.226960px;}
._21{width:170.424000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yce{bottom:4.320000px;}
.yb6{bottom:4.500000px;}
.y6{bottom:7.380000px;}
.y4{bottom:8.100000px;}
.yc0{bottom:8.280000px;}
.y7{bottom:8.820000px;}
.yc3{bottom:9.174000px;}
.y9b{bottom:9.180000px;}
.ya1{bottom:9.360000px;}
.y9d{bottom:10.260000px;}
.y98{bottom:10.440000px;}
.ybe{bottom:11.340000px;}
.yc1{bottom:14.760000px;}
.yc4{bottom:15.654000px;}
.y5{bottom:15.660000px;}
.ya2{bottom:15.840000px;}
.y9e{bottom:16.740000px;}
.yd2{bottom:16.785000px;}
.y99{bottom:16.920000px;}
.yb4{bottom:18.720000px;}
.y96{bottom:19.080000px;}
.yb0{bottom:20.700000px;}
.yb5{bottom:25.200000px;}
.y2{bottom:57.600000px;}
.yf6{bottom:78.696000px;}
.yec{bottom:79.776000px;}
.yc6{bottom:80.496000px;}
.y78{bottom:88.416000px;}
.y34{bottom:89.496000px;}
.yf5{bottom:99.396000px;}
.y94{bottom:100.656000px;}
.y57{bottom:101.916000px;}
.yeb{bottom:107.676000px;}
.yc5{bottom:114.336000px;}
.y77{bottom:116.136000px;}
.yf4{bottom:120.096000px;}
.y33{bottom:125.136000px;}
.y93{bottom:128.376000px;}
.y56{bottom:129.636000px;}
.yea{bottom:135.036000px;}
.yf3{bottom:140.796000px;}
.y76{bottom:143.856000px;}
.yc2{bottom:148.176000px;}
.y32{bottom:152.850000px;}
.y55{bottom:157.530000px;}
.yf2{bottom:161.490000px;}
.y92{bottom:162.390000px;}
.ye9{bottom:163.110000px;}
.y75{bottom:171.750000px;}
.y31{bottom:180.570000px;}
.ybf{bottom:180.930000px;}
.yf1{bottom:182.190000px;}
.y54{bottom:185.250000px;}
.ye8{bottom:190.830000px;}
.y91{bottom:197.850000px;}
.yf0{bottom:202.710000px;}
.y74{bottom:205.770000px;}
.y30{bottom:208.470000px;}
.ybd{bottom:212.790000px;}
.y53{bottom:212.970000px;}
.ye7{bottom:218.730000px;}
.yef{bottom:223.410000px;}
.y2f{bottom:231.690000px;}
.y90{bottom:231.870000px;}
.y52{bottom:240.690000px;}
.ye6{bottom:246.450000px;}
.y73{bottom:247.530000px;}
.ybc{bottom:250.230000px;}
.y2e{bottom:252.750000px;}
.yee{bottom:264.810000px;}
.y51{bottom:268.590000px;}
.y8f{bottom:273.630000px;}
.ye5{bottom:274.170000px;}
.y2d{bottom:277.230000px;}
.ybb{bottom:277.950000px;}
.y72{bottom:282.990000px;}
.y50{bottom:296.310000px;}
.ye4{bottom:302.070000px;}
.y2c{bottom:304.410000px;}
.y8e{bottom:309.090000px;}
.y71{bottom:310.710000px;}
.yba{bottom:311.970000px;}
.y4f{bottom:324.030000px;}
.y2b{bottom:325.110000px;}
.ye3{bottom:329.835000px;}
.y70{bottom:338.475000px;}
.yb9{bottom:342.435000px;}
.y8d{bottom:343.335000px;}
.y2a{bottom:345.855000px;}
.yb8{bottom:351.075000px;}
.y4e{bottom:351.795000px;}
.ye2{bottom:357.555000px;}
.y6f{bottom:366.375000px;}
.y29{bottom:366.555000px;}
.y4d{bottom:379.695000px;}
.yb7{bottom:383.835000px;}
.y8c{bottom:385.095000px;}
.ye1{bottom:385.275000px;}
.y28{bottom:387.255000px;}
.y6e{bottom:394.095000px;}
.y4c{bottom:407.415000px;}
.y27{bottom:407.955000px;}
.ye0{bottom:413.175000px;}
.yb3{bottom:417.675000px;}
.y6d{bottom:421.815000px;}
.y8b{bottom:426.855000px;}
.y26{bottom:428.655000px;}
.y4b{bottom:435.135000px;}
.ydf{bottom:440.895000px;}
.y25{bottom:449.355000px;}
.y6c{bottom:449.715000px;}
.yb2{bottom:459.795000px;}
.y8a{bottom:468.615000px;}
.y4a{bottom:469.155000px;}
.y24{bottom:469.695000px;}
.y6b{bottom:477.435000px;}
.y23{bottom:490.755000px;}
.yb1{bottom:492.555000px;}
.yde{bottom:496.515000px;}
.y89{bottom:504.075000px;}
.y6a{bottom:505.155000px;}
.y49{bottom:510.915000px;}
.y22{bottom:515.415000px;}
.ydd{bottom:524.235000px;}
.yaf{bottom:526.215000px;}
.y69{bottom:532.875000px;}
.y88{bottom:538.095000px;}
.y21{bottom:542.595000px;}
.ydc{bottom:551.955000px;}
.y48{bottom:552.675000px;}
.y68{bottom:560.775000px;}
.y20{bottom:563.295000px;}
.yae{bottom:572.835000px;}
.ydb{bottom:579.675000px;}
.y87{bottom:579.855000px;}
.y1f{bottom:583.995000px;}
.y47{bottom:588.315000px;}
.y67{bottom:588.495000px;}
.yad{bottom:606.885000px;}
.yda{bottom:607.605000px;}
.y1e{bottom:608.685000px;}
.y86{bottom:615.345000px;}
.y46{bottom:616.065000px;}
.y66{bottom:616.245000px;}
.yd9{bottom:635.325000px;}
.y1d{bottom:635.865000px;}
.yac{bottom:637.485000px;}
.y85{bottom:643.245000px;}
.y45{bottom:643.785000px;}
.y65{bottom:644.145000px;}
.yab{bottom:646.305000px;}
.y1c{bottom:656.565000px;}
.yd8{bottom:663.045000px;}
.y44{bottom:671.685000px;}
.y64{bottom:671.865000px;}
.y1b{bottom:677.265000px;}
.yaa{bottom:679.065000px;}
.yd7{bottom:690.765000px;}
.y1a{bottom:697.965000px;}
.y43{bottom:699.405000px;}
.y63{bottom:699.585000px;}
.ya9{bottom:712.905000px;}
.y19{bottom:718.305000px;}
.yd6{bottom:718.665000px;}
.y84{bottom:719.025000px;}
.y42{bottom:727.125000px;}
.y62{bottom:727.305000px;}
.y18{bottom:739.365000px;}
.ya8{bottom:746.745000px;}
.yd5{bottom:752.685000px;}
.y83{bottom:754.485000px;}
.y41{bottom:754.845000px;}
.y61{bottom:755.205000px;}
.y17{bottom:764.025000px;}
.ya7{bottom:779.505000px;}
.yd4{bottom:780.225000px;}
.y82{bottom:782.205000px;}
.y40{bottom:782.745000px;}
.y60{bottom:782.925000px;}
.y16{bottom:791.205000px;}
.y5f{bottom:810.645000px;}
.y15{bottom:811.905000px;}
.yd3{bottom:812.985000px;}
.ya6{bottom:813.345000px;}
.y81{bottom:816.225000px;}
.y3f{bottom:816.765000px;}
.y14{bottom:836.565000px;}
.y5e{bottom:838.365000px;}
.yd1{bottom:846.825000px;}
.y3e{bottom:852.225000px;}
.y80{bottom:857.985000px;}
.ya5{bottom:858.525000px;}
.y13{bottom:863.790000px;}
.y5d{bottom:866.310000px;}
.y3d{bottom:879.990000px;}
.yd0{bottom:880.530000px;}
.y12{bottom:884.490000px;}
.ya4{bottom:892.590000px;}
.y5c{bottom:894.030000px;}
.y7f{bottom:899.790000px;}
.y11{bottom:905.190000px;}
.y3c{bottom:907.890000px;}
.ycf{bottom:913.290000px;}
.y5b{bottom:921.750000px;}
.ya3{bottom:923.190000px;}
.y10{bottom:925.890000px;}
.ya0{bottom:932.010000px;}
.y3b{bottom:935.610000px;}
.y7e{bottom:941.550000px;}
.yf{bottom:946.230000px;}
.ycd{bottom:947.130000px;}
.y5a{bottom:949.650000px;}
.y3a{bottom:963.330000px;}
.y9f{bottom:964.770000px;}
.yed{bottom:977.010000px;}
.y7d{bottom:977.190000px;}
.y59{bottom:977.370000px;}
.ycc{bottom:977.550000px;}
.ye{bottom:987.630000px;}
.y39{bottom:997.350000px;}
.y9c{bottom:998.610000px;}
.y58{bottom:1005.090000px;}
.ycb{bottom:1005.270000px;}
.yd{bottom:1008.690000px;}
.y7c{bottom:1011.210000px;}
.yfc{bottom:1017.510000px;}
.yc{bottom:1029.390000px;}
.y9a{bottom:1032.450000px;}
.y38{bottom:1032.810000px;}
.yca{bottom:1032.990000px;}
.yfb{bottom:1036.230000px;}
.y7b{bottom:1046.670000px;}
.yb{bottom:1049.730000px;}
.yfa{bottom:1056.930000px;}
.y37{bottom:1060.710000px;}
.y97{bottom:1065.030000px;}
.yc9{bottom:1067.010000px;}
.ya{bottom:1070.430000px;}
.y7a{bottom:1074.390000px;}
.yf9{bottom:1077.630000px;}
.y36{bottom:1088.430000px;}
.y9{bottom:1091.670000px;}
.yc8{bottom:1096.350000px;}
.yf8{bottom:1098.330000px;}
.y95{bottom:1098.870000px;}
.yc7{bottom:1102.650000px;}
.y79{bottom:1108.410000px;}
.y8{bottom:1115.790000px;}
.y35{bottom:1116.150000px;}
.yf7{bottom:1119.030000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h21{height:20.880000px;}
.h1c{height:22.384688px;}
.h20{height:23.319141px;}
.h1d{height:27.900000px;}
.h1e{height:30.960000px;}
.h15{height:31.860000px;}
.h1f{height:31.896000px;}
.h17{height:32.040000px;}
.h16{height:32.940000px;}
.h22{height:32.976000px;}
.h3{height:33.120000px;}
.h18{height:35.332031px;}
.h19{height:35.640000px;}
.h13{height:35.676000px;}
.h1a{height:37.260000px;}
.h7{height:38.520000px;}
.h23{height:40.985156px;}
.h1b{height:41.400000px;}
.h5{height:44.100000px;}
.hd{height:52.628906px;}
.h11{height:58.819922px;}
.h9{height:59.436914px;}
.h25{height:59.439023px;}
.h2{height:65.884219px;}
.he{height:66.444224px;}
.hc{height:70.628906px;}
.hf{height:70.664062px;}
.hb{height:72.562500px;}
.h14{height:73.722656px;}
.h24{height:74.004654px;}
.h8{height:78.626953px;}
.h10{height:82.676953px;}
.ha{height:84.898125px;}
.h12{height:86.585445px;}
.h4{height:108.843750px;}
.h6{height:123.116836px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w4{width:77.436000px;}
.w6{width:95.580000px;}
.w7{width:157.530000px;}
.wa{width:158.790000px;}
.wc{width:158.970000px;}
.w9{width:190.290000px;}
.wb{width:371.415000px;}
.w8{width:405.255000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:7.740000px;}
.x5{left:10.800000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x3f{left:39.816000px;}
.x41{left:50.085000px;}
.x4a{left:53.279987px;}
.x45{left:56.196000px;}
.x49{left:58.139987px;}
.x1{left:63.899987px;}
.x3e{left:85.500000px;}
.x3d{left:90.899987px;}
.x3c{left:96.335987px;}
.x9{left:98.315987px;}
.x10{left:99.935987px;}
.xe{left:117.035987px;}
.x48{left:154.110000px;}
.x43{left:171.030000px;}
.x7{left:175.170000px;}
.x2e{left:188.309987px;}
.xa{left:216.929987px;}
.x2f{left:224.309987px;}
.x11{left:230.069987px;}
.x30{left:234.929987px;}
.x40{left:243.930000px;}
.x22{left:258.689987px;}
.x12{left:266.069987px;}
.x46{left:276.510000px;}
.x13{left:280.829987px;}
.x31{left:288.974987px;}
.x23{left:294.734987px;}
.x32{left:299.414987px;}
.x24{left:306.974987px;}
.xd{left:320.474987px;}
.xc{left:323.714987px;}
.x14{left:334.694987px;}
.x15{left:349.634987px;}
.x33{left:353.414987px;}
.x25{left:360.974987px;}
.x34{left:363.854987px;}
.x26{left:373.394987px;}
.x42{left:402.195000px;}
.x16{left:403.634987px;}
.x35{left:418.034987px;}
.x4{left:427.755000px;}
.x17{left:429.014987px;}
.x47{left:436.035000px;}
.x27{left:439.814987px;}
.xb{left:452.054987px;}
.x18{left:482.864987px;}
.x36{left:486.284987px;}
.x28{left:493.844987px;}
.x37{left:496.724987px;}
.x19{left:497.804987px;}
.x29{left:506.084987px;}
.x38{left:525.164987px;}
.x39{left:535.604987px;}
.x1a{left:555.404987px;}
.x2a{left:563.864987px;}
.x1b{left:570.164987px;}
.x2b{left:576.104987px;}
.x1c{left:598.604987px;}
.x21{left:605.444987px;}
.x1d{left:613.364987px;}
.x3a{left:614.984987px;}
.x2c{left:616.604987px;}
.x3b{left:672.629987px;}
.x1e{left:682.349987px;}
.x2d{left:685.769987px;}
.x1f{left:697.289987px;}
.x2{left:714.390000px;}
.x20{left:754.889987px;}
.x6{left:821.850000px;}
.xf{left:840.209987px;}
@media print{
.v2{vertical-align:-74.880000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.538667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.065280pt;}
.ls14{letter-spacing:0.120533pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.193280pt;}
.ls1c{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.269845pt;}
.ls12{letter-spacing:0.303467pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.337306pt;}
.ls9{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls18{letter-spacing:3.040000pt;}
.ls16{letter-spacing:8.800000pt;}
.ls2{letter-spacing:11.136000pt;}
.ls4{letter-spacing:12.000000pt;}
.ls1a{letter-spacing:12.463360pt;}
.ls22{letter-spacing:15.488000pt;}
.ls17{letter-spacing:15.663360pt;}
.ls1e{letter-spacing:19.680000pt;}
.ls1f{letter-spacing:20.960000pt;}
.ls1d{letter-spacing:27.183360pt;}
.ls21{letter-spacing:30.208000pt;}
.lsb{letter-spacing:54.362880pt;}
.lsd{letter-spacing:54.469547pt;}
.ls10{letter-spacing:59.653120pt;}
.ls1{letter-spacing:108.906667pt;}
.ls20{letter-spacing:182.848000pt;}
.ws9{word-spacing:-75.000533pt;}
.ws5{word-spacing:-74.880000pt;}
.ws8{word-spacing:-74.341333pt;}
.ws2{word-spacing:-67.461249pt;}
.wsa{word-spacing:-64.320000pt;}
.wsd{word-spacing:-64.256000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws7{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.wse{word-spacing:-0.074880pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-6.736640pt;}
._16{margin-left:-2.008533pt;}
._0{margin-left:-0.898560pt;}
._3{width:0.906667pt;}
._6{width:2.218667pt;}
._c{width:3.338667pt;}
._5{width:4.288000pt;}
._4{width:5.568000pt;}
._b{width:6.528000pt;}
._35{width:7.424000pt;}
._2{width:8.320000pt;}
._f{width:9.536000pt;}
._1{width:10.794667pt;}
._8{width:11.946667pt;}
._10{width:13.674667pt;}
._11{width:14.720000pt;}
._2d{width:15.654827pt;}
._22{width:16.657280pt;}
._7{width:17.600000pt;}
._a{width:19.626667pt;}
._17{width:20.594560pt;}
._9{width:21.504000pt;}
._1f{width:22.400213pt;}
._28{width:23.666133pt;}
._12{width:25.408000pt;}
._13{width:26.410667pt;}
._27{width:28.160000pt;}
._23{width:29.283840pt;}
._d{width:30.400000pt;}
._e{width:31.733333pt;}
._18{width:33.096960pt;}
._19{width:34.444587pt;}
._29{width:35.642880pt;}
._2a{width:36.827733pt;}
._1b{width:39.077120pt;}
._34{width:40.231893pt;}
._1e{width:41.162667pt;}
._1c{width:42.285867pt;}
._1d{width:43.513387pt;}
._15{width:44.403840pt;}
._14{width:45.302400pt;}
._2e{width:46.350720pt;}
._2f{width:47.377707pt;}
._30{width:48.781440pt;}
._2c{width:51.428907pt;}
._2b{width:52.490880pt;}
._25{width:55.751040pt;}
._24{width:56.759040pt;}
._20{width:58.534827pt;}
._33{width:63.913600pt;}
._32{width:65.723307pt;}
._26{width:67.841280pt;}
._31{width:121.979520pt;}
._21{width:151.488000pt;}
.fs8{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.840000pt;}
.yb6{bottom:4.000000pt;}
.y6{bottom:6.560000pt;}
.y4{bottom:7.200000pt;}
.yc0{bottom:7.360000pt;}
.y7{bottom:7.840000pt;}
.yc3{bottom:8.154667pt;}
.y9b{bottom:8.160000pt;}
.ya1{bottom:8.320000pt;}
.y9d{bottom:9.120000pt;}
.y98{bottom:9.280000pt;}
.ybe{bottom:10.080000pt;}
.yc1{bottom:13.120000pt;}
.yc4{bottom:13.914667pt;}
.y5{bottom:13.920000pt;}
.ya2{bottom:14.080000pt;}
.y9e{bottom:14.880000pt;}
.yd2{bottom:14.920000pt;}
.y99{bottom:15.040000pt;}
.yb4{bottom:16.640000pt;}
.y96{bottom:16.960000pt;}
.yb0{bottom:18.400000pt;}
.yb5{bottom:22.400000pt;}
.y2{bottom:51.200000pt;}
.yf6{bottom:69.952000pt;}
.yec{bottom:70.912000pt;}
.yc6{bottom:71.552000pt;}
.y78{bottom:78.592000pt;}
.y34{bottom:79.552000pt;}
.yf5{bottom:88.352000pt;}
.y94{bottom:89.472000pt;}
.y57{bottom:90.592000pt;}
.yeb{bottom:95.712000pt;}
.yc5{bottom:101.632000pt;}
.y77{bottom:103.232000pt;}
.yf4{bottom:106.752000pt;}
.y33{bottom:111.232000pt;}
.y93{bottom:114.112000pt;}
.y56{bottom:115.232000pt;}
.yea{bottom:120.032000pt;}
.yf3{bottom:125.152000pt;}
.y76{bottom:127.872000pt;}
.yc2{bottom:131.712000pt;}
.y32{bottom:135.866667pt;}
.y55{bottom:140.026667pt;}
.yf2{bottom:143.546667pt;}
.y92{bottom:144.346667pt;}
.ye9{bottom:144.986667pt;}
.y75{bottom:152.666667pt;}
.y31{bottom:160.506667pt;}
.ybf{bottom:160.826667pt;}
.yf1{bottom:161.946667pt;}
.y54{bottom:164.666667pt;}
.ye8{bottom:169.626667pt;}
.y91{bottom:175.866667pt;}
.yf0{bottom:180.186667pt;}
.y74{bottom:182.906667pt;}
.y30{bottom:185.306667pt;}
.ybd{bottom:189.146667pt;}
.y53{bottom:189.306667pt;}
.ye7{bottom:194.426667pt;}
.yef{bottom:198.586667pt;}
.y2f{bottom:205.946667pt;}
.y90{bottom:206.106667pt;}
.y52{bottom:213.946667pt;}
.ye6{bottom:219.066667pt;}
.y73{bottom:220.026667pt;}
.ybc{bottom:222.426667pt;}
.y2e{bottom:224.666667pt;}
.yee{bottom:235.386667pt;}
.y51{bottom:238.746667pt;}
.y8f{bottom:243.226667pt;}
.ye5{bottom:243.706667pt;}
.y2d{bottom:246.426667pt;}
.ybb{bottom:247.066667pt;}
.y72{bottom:251.546667pt;}
.y50{bottom:263.386667pt;}
.ye4{bottom:268.506667pt;}
.y2c{bottom:270.586667pt;}
.y8e{bottom:274.746667pt;}
.y71{bottom:276.186667pt;}
.yba{bottom:277.306667pt;}
.y4f{bottom:288.026667pt;}
.y2b{bottom:288.986667pt;}
.ye3{bottom:293.186667pt;}
.y70{bottom:300.866667pt;}
.yb9{bottom:304.386667pt;}
.y8d{bottom:305.186667pt;}
.y2a{bottom:307.426667pt;}
.yb8{bottom:312.066667pt;}
.y4e{bottom:312.706667pt;}
.ye2{bottom:317.826667pt;}
.y6f{bottom:325.666667pt;}
.y29{bottom:325.826667pt;}
.y4d{bottom:337.506667pt;}
.yb7{bottom:341.186667pt;}
.y8c{bottom:342.306667pt;}
.ye1{bottom:342.466667pt;}
.y28{bottom:344.226667pt;}
.y6e{bottom:350.306667pt;}
.y4c{bottom:362.146667pt;}
.y27{bottom:362.626667pt;}
.ye0{bottom:367.266667pt;}
.yb3{bottom:371.266667pt;}
.y6d{bottom:374.946667pt;}
.y8b{bottom:379.426667pt;}
.y26{bottom:381.026667pt;}
.y4b{bottom:386.786667pt;}
.ydf{bottom:391.906667pt;}
.y25{bottom:399.426667pt;}
.y6c{bottom:399.746667pt;}
.yb2{bottom:408.706667pt;}
.y8a{bottom:416.546667pt;}
.y4a{bottom:417.026667pt;}
.y24{bottom:417.506667pt;}
.y6b{bottom:424.386667pt;}
.y23{bottom:436.226667pt;}
.yb1{bottom:437.826667pt;}
.yde{bottom:441.346667pt;}
.y89{bottom:448.066667pt;}
.y6a{bottom:449.026667pt;}
.y49{bottom:454.146667pt;}
.y22{bottom:458.146667pt;}
.ydd{bottom:465.986667pt;}
.yaf{bottom:467.746667pt;}
.y69{bottom:473.666667pt;}
.y88{bottom:478.306667pt;}
.y21{bottom:482.306667pt;}
.ydc{bottom:490.626667pt;}
.y48{bottom:491.266667pt;}
.y68{bottom:498.466667pt;}
.y20{bottom:500.706667pt;}
.yae{bottom:509.186667pt;}
.ydb{bottom:515.266667pt;}
.y87{bottom:515.426667pt;}
.y1f{bottom:519.106667pt;}
.y47{bottom:522.946667pt;}
.y67{bottom:523.106667pt;}
.yad{bottom:539.453333pt;}
.yda{bottom:540.093333pt;}
.y1e{bottom:541.053333pt;}
.y86{bottom:546.973333pt;}
.y46{bottom:547.613333pt;}
.y66{bottom:547.773333pt;}
.yd9{bottom:564.733333pt;}
.y1d{bottom:565.213333pt;}
.yac{bottom:566.653333pt;}
.y85{bottom:571.773333pt;}
.y45{bottom:572.253333pt;}
.y65{bottom:572.573333pt;}
.yab{bottom:574.493333pt;}
.y1c{bottom:583.613333pt;}
.yd8{bottom:589.373333pt;}
.y44{bottom:597.053333pt;}
.y64{bottom:597.213333pt;}
.y1b{bottom:602.013333pt;}
.yaa{bottom:603.613333pt;}
.yd7{bottom:614.013333pt;}
.y1a{bottom:620.413333pt;}
.y43{bottom:621.693333pt;}
.y63{bottom:621.853333pt;}
.ya9{bottom:633.693333pt;}
.y19{bottom:638.493333pt;}
.yd6{bottom:638.813333pt;}
.y84{bottom:639.133333pt;}
.y42{bottom:646.333333pt;}
.y62{bottom:646.493333pt;}
.y18{bottom:657.213333pt;}
.ya8{bottom:663.773333pt;}
.yd5{bottom:669.053333pt;}
.y83{bottom:670.653333pt;}
.y41{bottom:670.973333pt;}
.y61{bottom:671.293333pt;}
.y17{bottom:679.133333pt;}
.ya7{bottom:692.893333pt;}
.yd4{bottom:693.533333pt;}
.y82{bottom:695.293333pt;}
.y40{bottom:695.773333pt;}
.y60{bottom:695.933333pt;}
.y16{bottom:703.293333pt;}
.y5f{bottom:720.573333pt;}
.y15{bottom:721.693333pt;}
.yd3{bottom:722.653333pt;}
.ya6{bottom:722.973333pt;}
.y81{bottom:725.533333pt;}
.y3f{bottom:726.013333pt;}
.y14{bottom:743.613333pt;}
.y5e{bottom:745.213333pt;}
.yd1{bottom:752.733333pt;}
.y3e{bottom:757.533333pt;}
.y80{bottom:762.653333pt;}
.ya5{bottom:763.133333pt;}
.y13{bottom:767.813333pt;}
.y5d{bottom:770.053333pt;}
.y3d{bottom:782.213333pt;}
.yd0{bottom:782.693333pt;}
.y12{bottom:786.213333pt;}
.ya4{bottom:793.413333pt;}
.y5c{bottom:794.693333pt;}
.y7f{bottom:799.813333pt;}
.y11{bottom:804.613333pt;}
.y3c{bottom:807.013333pt;}
.ycf{bottom:811.813333pt;}
.y5b{bottom:819.333333pt;}
.ya3{bottom:820.613333pt;}
.y10{bottom:823.013333pt;}
.ya0{bottom:828.453333pt;}
.y3b{bottom:831.653333pt;}
.y7e{bottom:836.933333pt;}
.yf{bottom:841.093333pt;}
.ycd{bottom:841.893333pt;}
.y5a{bottom:844.133333pt;}
.y3a{bottom:856.293333pt;}
.y9f{bottom:857.573333pt;}
.yed{bottom:868.453333pt;}
.y7d{bottom:868.613333pt;}
.y59{bottom:868.773333pt;}
.ycc{bottom:868.933333pt;}
.ye{bottom:877.893333pt;}
.y39{bottom:886.533333pt;}
.y9c{bottom:887.653333pt;}
.y58{bottom:893.413333pt;}
.ycb{bottom:893.573333pt;}
.yd{bottom:896.613333pt;}
.y7c{bottom:898.853333pt;}
.yfc{bottom:904.453333pt;}
.yc{bottom:915.013333pt;}
.y9a{bottom:917.733333pt;}
.y38{bottom:918.053333pt;}
.yca{bottom:918.213333pt;}
.yfb{bottom:921.093333pt;}
.y7b{bottom:930.373333pt;}
.yb{bottom:933.093333pt;}
.yfa{bottom:939.493333pt;}
.y37{bottom:942.853333pt;}
.y97{bottom:946.693333pt;}
.yc9{bottom:948.453333pt;}
.ya{bottom:951.493333pt;}
.y7a{bottom:955.013333pt;}
.yf9{bottom:957.893333pt;}
.y36{bottom:967.493333pt;}
.y9{bottom:970.373333pt;}
.yc8{bottom:974.533333pt;}
.yf8{bottom:976.293333pt;}
.y95{bottom:976.773333pt;}
.yc7{bottom:980.133333pt;}
.y79{bottom:985.253333pt;}
.y8{bottom:991.813333pt;}
.y35{bottom:992.133333pt;}
.yf7{bottom:994.693333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h21{height:18.560000pt;}
.h1c{height:19.897500pt;}
.h20{height:20.728125pt;}
.h1d{height:24.800000pt;}
.h1e{height:27.520000pt;}
.h15{height:28.320000pt;}
.h1f{height:28.352000pt;}
.h17{height:28.480000pt;}
.h16{height:29.280000pt;}
.h22{height:29.312000pt;}
.h3{height:29.440000pt;}
.h18{height:31.406250pt;}
.h19{height:31.680000pt;}
.h13{height:31.712000pt;}
.h1a{height:33.120000pt;}
.h7{height:34.240000pt;}
.h23{height:36.431250pt;}
.h1b{height:36.800000pt;}
.h5{height:39.200000pt;}
.hd{height:46.781250pt;}
.h11{height:52.284375pt;}
.h9{height:52.832812pt;}
.h25{height:52.834688pt;}
.h2{height:58.563750pt;}
.he{height:59.061533pt;}
.hc{height:62.781250pt;}
.hf{height:62.812500pt;}
.hb{height:64.500000pt;}
.h14{height:65.531250pt;}
.h24{height:65.781915pt;}
.h8{height:69.890625pt;}
.h10{height:73.490625pt;}
.ha{height:75.465000pt;}
.h12{height:76.964840pt;}
.h4{height:96.750000pt;}
.h6{height:109.437187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w4{width:68.832000pt;}
.w6{width:84.960000pt;}
.w7{width:140.026667pt;}
.wa{width:141.146667pt;}
.wc{width:141.306667pt;}
.w9{width:169.146667pt;}
.wb{width:330.146667pt;}
.w8{width:360.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:6.880000pt;}
.x5{left:9.600000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x3f{left:35.392000pt;}
.x41{left:44.520000pt;}
.x4a{left:47.359988pt;}
.x45{left:49.952000pt;}
.x49{left:51.679988pt;}
.x1{left:56.799988pt;}
.x3e{left:76.000000pt;}
.x3d{left:80.799988pt;}
.x3c{left:85.631988pt;}
.x9{left:87.391988pt;}
.x10{left:88.831988pt;}
.xe{left:104.031988pt;}
.x48{left:136.986667pt;}
.x43{left:152.026667pt;}
.x7{left:155.706667pt;}
.x2e{left:167.386655pt;}
.xa{left:192.826655pt;}
.x2f{left:199.386655pt;}
.x11{left:204.506655pt;}
.x30{left:208.826655pt;}
.x40{left:216.826667pt;}
.x22{left:229.946655pt;}
.x12{left:236.506655pt;}
.x46{left:245.786667pt;}
.x13{left:249.626655pt;}
.x31{left:256.866655pt;}
.x23{left:261.986655pt;}
.x32{left:266.146655pt;}
.x24{left:272.866655pt;}
.xd{left:284.866655pt;}
.xc{left:287.746655pt;}
.x14{left:297.506655pt;}
.x15{left:310.786655pt;}
.x33{left:314.146655pt;}
.x25{left:320.866655pt;}
.x34{left:323.426655pt;}
.x26{left:331.906655pt;}
.x42{left:357.506667pt;}
.x16{left:358.786655pt;}
.x35{left:371.586655pt;}
.x4{left:380.226667pt;}
.x17{left:381.346655pt;}
.x47{left:387.586667pt;}
.x27{left:390.946655pt;}
.xb{left:401.826655pt;}
.x18{left:429.213322pt;}
.x36{left:432.253322pt;}
.x28{left:438.973322pt;}
.x37{left:441.533322pt;}
.x19{left:442.493322pt;}
.x29{left:449.853322pt;}
.x38{left:466.813322pt;}
.x39{left:476.093322pt;}
.x1a{left:493.693322pt;}
.x2a{left:501.213322pt;}
.x1b{left:506.813322pt;}
.x2b{left:512.093322pt;}
.x1c{left:532.093322pt;}
.x21{left:538.173322pt;}
.x1d{left:545.213322pt;}
.x3a{left:546.653322pt;}
.x2c{left:548.093322pt;}
.x3b{left:597.893322pt;}
.x1e{left:606.533322pt;}
.x2d{left:609.573322pt;}
.x1f{left:619.813322pt;}
.x2{left:635.013333pt;}
.x20{left:671.013322pt;}
.x6{left:730.533333pt;}
.xf{left:746.853322pt;}
}




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