
    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_e4dce661da9489ae8ca5d007.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_d99a5b19c67377141dd89826.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_855ee38f297783a7d737c513.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_a2d9628f825bb3941b8033ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_75b0e8941a8c96e2284b24b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e0dd6a468ff2eedef80521e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae5a3f032eb248a823eaa4bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_48380650ed8b37e91ef5ced4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_d5e34ae0114b89e06e0ff7e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_6639064bee926cc1f94ba396.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117676;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_7ef834343f8b75913fedb288.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117676;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_fe95498a7b411e15eb8f4ff8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.081055;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_b8659a19a9c8a0f5c944ce6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.087891;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_788c43c993fd527cbeeddbde.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.087891;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_8888819171a0345e3125b238.woff2')format("woff");}.fff{font-family:fff;line-height:1.021484;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_cfe4b280931be87584dd4432.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.095703;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_8eddf4edcfef58632478150f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_830e5f7cbe525f20bd6f7e2d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.960938;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_586f6721e420a24ca6fe74bb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.960938;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_91c4effa453bd07c7a0e5c27.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d1a8fbb35a3c1ebb972549fb.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.081055;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_66f15f64e1767dbee50c0097.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.030273;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:ff17;src:url('chunks/assets/font_da685331d475e0b936b53c4d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.030273;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.092400px;}
.lsd{letter-spacing:-0.059040px;}
.ls8{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.197280px;}
.ls4{letter-spacing:0.233280px;}
.ls3{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.269280px;}
.ls1b{letter-spacing:0.305400px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.613440px;}
.ls16{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.979920px;}
.lsf{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.880000px;}
.ls15{letter-spacing:3.600000px;}
.ls19{letter-spacing:3.744000px;}
.ls1d{letter-spacing:4.320000px;}
.ls17{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.760000px;}
.ls13{letter-spacing:8.640000px;}
.lsb{letter-spacing:11.520000px;}
.ls14{letter-spacing:12.240000px;}
.ls10{letter-spacing:19.440000px;}
.ls1e{letter-spacing:32.400000px;}
.ls1c{letter-spacing:33.984000px;}
.ls21{letter-spacing:64.224000px;}
.ls1a{letter-spacing:176.520000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws7{word-spacing:-23.206320px;}
.ws9{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.100720px;}
.wsb{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.506480px;}
.ws0{word-spacing:-13.446720px;}
.ws6{word-spacing:-13.354320px;}
.wse{word-spacing:-10.962000px;}
.wsa{word-spacing:-10.440000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-15.571200px;}
._1a{margin-left:-13.506960px;}
._17{margin-left:-11.432400px;}
._18{margin-left:-9.936720px;}
._13{margin-left:-8.064000px;}
._9{margin-left:-6.624000px;}
._24{margin-left:-5.508000px;}
._2{margin-left:-4.248000px;}
._a{margin-left:-3.108000px;}
._0{margin-left:-1.368000px;}
._1{width:1.092000px;}
._8{width:2.760000px;}
._1c{width:4.020000px;}
._f{width:5.136000px;}
._4{width:6.984000px;}
._5{width:8.376000px;}
._15{width:9.936000px;}
._16{width:11.016000px;}
._7{width:12.744000px;}
._6{width:13.752000px;}
._e{width:15.192000px;}
._10{width:16.848000px;}
._1e{width:18.057600px;}
._1b{width:19.104000px;}
._d{width:21.096000px;}
._12{width:22.248000px;}
._11{width:23.976000px;}
._14{width:25.416000px;}
._27{width:27.360000px;}
._26{width:28.440000px;}
._29{width:29.448000px;}
._25{width:30.528000px;}
._22{width:31.608000px;}
._23{width:33.048000px;}
._21{width:34.200000px;}
._2b{width:36.144000px;}
._1d{width:37.224000px;}
._2d{width:39.456000px;}
._2a{width:40.726080px;}
._28{width:41.840640px;}
._20{width:42.912000px;}
._1f{width:44.208000px;}
._2e{width:87.138000px;}
._2c{width:101.810880px;}
._b{width:836.760000px;}
._3{width:846.300000px;}
._c{width:868.428000px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y155{bottom:3.774000px;}
.y135{bottom:3.780000px;}
.y144{bottom:3.810000px;}
.y132{bottom:8.460000px;}
.y11b{bottom:17.820000px;}
.y134{bottom:20.340000px;}
.y113{bottom:32.760000px;}
.y118{bottom:33.300000px;}
.y133{bottom:36.720000px;}
.y11a{bottom:51.660000px;}
.y12b{bottom:57.636000px;}
.y2{bottom:68.436000px;}
.y112{bottom:72.360000px;}
.y117{bottom:73.080000px;}
.y12a{bottom:77.796000px;}
.y10e{bottom:78.300000px;}
.y1{bottom:88.596000px;}
.y156{bottom:99.396000px;}
.y94{bottom:107.676000px;}
.y111{bottom:111.960000px;}
.y116{bottom:112.725000px;}
.yc9{bottom:113.616000px;}
.yf1{bottom:116.136000px;}
.y10d{bottom:117.900000px;}
.y14e{bottom:122.616000px;}
.y93{bottom:126.576000px;}
.yc8{bottom:132.516000px;}
.yf4{bottom:136.296000px;}
.y92{bottom:145.656000px;}
.yc7{bottom:146.556000px;}
.yf0{bottom:147.096000px;}
.y154{bottom:148.356000px;}
.ye2{bottom:151.590000px;}
.y110{bottom:151.770000px;}
.y115{bottom:152.325000px;}
.y10c{bottom:157.710000px;}
.y91{bottom:164.550000px;}
.y20{bottom:165.090000px;}
.y129{bottom:165.270000px;}
.yf3{bottom:167.430000px;}
.ycf{bottom:170.490000px;}
.y153{bottom:174.270000px;}
.yef{bottom:178.230000px;}
.y90{bottom:183.630000px;}
.yf2{bottom:184.530000px;}
.y124{bottom:189.045000px;}
.yda{bottom:189.570000px;}
.y128{bottom:198.210000px;}
.yc6{bottom:198.390000px;}
.y1f{bottom:199.470000px;}
.y152{bottom:200.010000px;}
.y8f{bottom:202.530000px;}
.ye5{bottom:203.610000px;}
.y8e{bottom:208.470000px;}
.yee{bottom:209.190000px;}
.y123{bottom:210.825000px;}
.y8d{bottom:221.430000px;}
.y151{bottom:225.750000px;}
.yce{bottom:227.370000px;}
.yc5{bottom:229.530000px;}
.y122{bottom:232.425000px;}
.y1e{bottom:233.850000px;}
.y10a{bottom:234.390000px;}
.yed{bottom:240.330000px;}
.y8c{bottom:240.510000px;}
.ycd{bottom:241.410000px;}
.yd9{bottom:246.450000px;}
.y150{bottom:251.490000px;}
.y8b{bottom:259.410000px;}
.yfb{bottom:260.310000px;}
.yc4{bottom:260.490000px;}
.yd8{bottom:265.350000px;}
.y109{bottom:265.530000px;}
.y121{bottom:266.265000px;}
.y1d{bottom:268.230000px;}
.yec{bottom:271.290000px;}
.y14f{bottom:277.230000px;}
.y8a{bottom:278.490000px;}
.y89{bottom:284.475000px;}
.yfa{bottom:291.315000px;}
.yc3{bottom:291.675000px;}
.y108{bottom:296.535000px;}
.y88{bottom:297.435000px;}
.y120{bottom:299.925000px;}
.y1c{bottom:302.475000px;}
.yb8{bottom:303.375000px;}
.y148{bottom:304.635000px;}
.y36{bottom:312.735000px;}
.y87{bottom:316.335000px;}
.y6a{bottom:321.915000px;}
.y86{bottom:322.275000px;}
.yf9{bottom:322.455000px;}
.yc2{bottom:322.635000px;}
.y107{bottom:327.675000px;}
.ycc{bottom:329.475000px;}
.y14d{bottom:330.375000px;}
.yeb{bottom:333.435000px;}
.y11f{bottom:333.765000px;}
.yb7{bottom:335.415000px;}
.y85{bottom:336.315000px;}
.y1b{bottom:336.855000px;}
.yd7{bottom:341.355000px;}
.yf8{bottom:353.415000px;}
.yc1{bottom:353.775000px;}
.yb6{bottom:354.315000px;}
.y127{bottom:355.395000px;}
.y14c{bottom:356.115000px;}
.y69{bottom:356.295000px;}
.y106{bottom:358.635000px;}
.ye1{bottom:360.255000px;}
.yea{bottom:364.575000px;}
.y11e{bottom:367.425000px;}
.y1a{bottom:371.235000px;}
.yb5{bottom:373.395000px;}
.yd6{bottom:379.335000px;}
.y83{bottom:380.055000px;}
.y14b{bottom:382.035000px;}
.yf7{bottom:384.555000px;}
.ybf{bottom:384.735000px;}
.y84{bottom:386.895000px;}
.y105{bottom:389.775000px;}
.y68{bottom:391.215000px;}
.yc0{bottom:391.575000px;}
.yb4{bottom:392.295000px;}
.yd5{bottom:393.375000px;}
.ye9{bottom:395.535000px;}
.y11d{bottom:401.115000px;}
.y19{bottom:405.615000px;}
.y14a{bottom:407.775000px;}
.y82{bottom:411.015000px;}
.yb3{bottom:411.195000px;}
.y47{bottom:413.895000px;}
.ybd{bottom:415.875000px;}
.yb2{bottom:417.135000px;}
.y67{bottom:417.495000px;}
.y104{bottom:420.735000px;}
.ybe{bottom:422.715000px;}
.ye8{bottom:426.675000px;}
.yb1{bottom:430.275000px;}
.ye3{bottom:431.175000px;}
.y149{bottom:433.515000px;}
.y66{bottom:435.495000px;}
.y18{bottom:439.995000px;}
.y81{bottom:442.155000px;}
.y35{bottom:442.875000px;}
.ybc{bottom:446.835000px;}
.y46{bottom:448.275000px;}
.yb0{bottom:449.175000px;}
.y103{bottom:451.875000px;}
.ycb{bottom:453.675000px;}
.ye7{bottom:457.635000px;}
.y65{bottom:460.875000px;}
.y34{bottom:465.195000px;}
.yaf{bottom:468.255000px;}
.y45{bottom:470.595000px;}
.y80{bottom:473.115000px;}
.y17{bottom:474.195000px;}
.ybb{bottom:477.975000px;}
.y64{bottom:478.875000px;}
.y102{bottom:482.835000px;}
.y126{bottom:483.915000px;}
.ye6{bottom:484.815000px;}
.y147{bottom:486.615000px;}
.yae{bottom:487.155000px;}
.ye0{bottom:488.235000px;}
.y44{bottom:492.915000px;}
.y33{bottom:499.575000px;}
.y7f{bottom:504.255000px;}
.y63{bottom:504.435000px;}
.yad{bottom:506.235000px;}
.y16{bottom:508.575000px;}
.yba{bottom:508.935000px;}
.y146{bottom:512.355000px;}
.y101{bottom:513.975000px;}
.y43{bottom:515.235000px;}
.yd4{bottom:515.775000px;}
.yac{bottom:526.215000px;}
.y32{bottom:529.815000px;}
.y7e{bottom:535.215000px;}
.y62{bottom:535.755000px;}
.y42{bottom:537.555000px;}
.y145{bottom:538.095000px;}
.yb9{bottom:540.075000px;}
.y15{bottom:542.955000px;}
.y100{bottom:544.935000px;}
.ydf{bottom:546.915000px;}
.y41{bottom:559.875000px;}
.y143{bottom:564.015000px;}
.y61{bottom:566.385000px;}
.yab{bottom:571.065000px;}
.y7d{bottom:573.225000px;}
.yff{bottom:576.105000px;}
.y14{bottom:577.365000px;}
.y125{bottom:577.905000px;}
.y40{bottom:582.225000px;}
.y60{bottom:585.105000px;}
.y142{bottom:589.785000px;}
.y7b{bottom:597.345000px;}
.yaa{bottom:602.205000px;}
.y7c{bottom:604.185000px;}
.y3f{bottom:604.545000px;}
.yfe{bottom:607.065000px;}
.yd3{bottom:609.045000px;}
.y5f{bottom:609.765000px;}
.y13{bottom:611.565000px;}
.y141{bottom:615.525000px;}
.y31{bottom:626.865000px;}
.y5e{bottom:627.765000px;}
.y7a{bottom:628.485000px;}
.ya9{bottom:633.165000px;}
.yfd{bottom:638.205000px;}
.yf6{bottom:640.005000px;}
.y140{bottom:641.265000px;}
.y12{bottom:645.945000px;}
.y5d{bottom:653.325000px;}
.y79{bottom:659.445000px;}
.y30{bottom:661.245000px;}
.ya7{bottom:664.305000px;}
.yfc{bottom:668.625000px;}
.ya8{bottom:671.145000px;}
.y5c{bottom:671.325000px;}
.y11{bottom:680.325000px;}
.y119{bottom:681.945000px;}
.y78{bottom:690.585000px;}
.y13f{bottom:694.365000px;}
.ya5{bottom:695.265000px;}
.y2f{bottom:695.625000px;}
.y5b{bottom:696.885000px;}
.ya6{bottom:702.105000px;}
.y10{bottom:714.705000px;}
.y5a{bottom:714.885000px;}
.y3e{bottom:717.945000px;}
.y13e{bottom:720.105000px;}
.y77{bottom:721.545000px;}
.ya3{bottom:726.405000px;}
.y2e{bottom:730.005000px;}
.ya4{bottom:733.245000px;}
.y59{bottom:740.265000px;}
.y13d{bottom:745.845000px;}
.yf{bottom:748.905000px;}
.y3d{bottom:752.325000px;}
.y76{bottom:752.685000px;}
.y11c{bottom:755.745000px;}
.ya2{bottom:757.365000px;}
.yde{bottom:764.205000px;}
.y2d{bottom:764.385000px;}
.y58{bottom:765.825000px;}
.y114{bottom:767.985000px;}
.y136{bottom:773.205000px;}
.ye{bottom:783.285000px;}
.y75{bottom:783.645000px;}
.y57{bottom:783.825000px;}
.y3c{bottom:786.705000px;}
.ya1{bottom:788.505000px;}
.yf5{bottom:795.345000px;}
.y2c{bottom:798.585000px;}
.y13c{bottom:798.945000px;}
.y3b{bottom:809.025000px;}
.y56{bottom:809.385000px;}
.y74{bottom:814.785000px;}
.yd{bottom:817.665000px;}
.ya0{bottom:819.465000px;}
.y2b{bottom:820.905000px;}
.y13b{bottom:824.685000px;}
.y3a{bottom:831.345000px;}
.y55{bottom:834.765000px;}
.y2a{bottom:843.225000px;}
.y73{bottom:845.745000px;}
.y9f{bottom:850.650000px;}
.yc{bottom:852.090000px;}
.y39{bottom:853.710000px;}
.ydd{bottom:857.490000px;}
.y54{bottom:867.930000px;}
.y38{bottom:876.030000px;}
.y13a{bottom:876.390000px;}
.y72{bottom:876.750000px;}
.y29{bottom:877.650000px;}
.y9e{bottom:881.610000px;}
.yb{bottom:886.290000px;}
.y53{bottom:894.030000px;}
.y37{bottom:898.350000px;}
.y28{bottom:899.970000px;}
.y139{bottom:902.130000px;}
.y71{bottom:907.890000px;}
.y52{bottom:912.030000px;}
.y9d{bottom:912.750000px;}
.yd2{bottom:919.590000px;}
.ya{bottom:920.670000px;}
.y138{bottom:927.870000px;}
.y27{bottom:934.350000px;}
.y51{bottom:937.590000px;}
.y70{bottom:938.850000px;}
.y9c{bottom:943.710000px;}
.yd1{bottom:950.550000px;}
.y137{bottom:953.790000px;}
.y9{bottom:955.050000px;}
.y50{bottom:963.150000px;}
.y26{bottom:968.730000px;}
.y6f{bottom:969.990000px;}
.y9b{bottom:974.850000px;}
.y10b{bottom:980.970000px;}
.y4f{bottom:981.150000px;}
.y10f{bottom:986.010000px;}
.y8{bottom:989.430000px;}
.y25{bottom:991.050000px;}
.y6e{bottom:1004.010000px;}
.y9a{bottom:1005.810000px;}
.y4e{bottom:1006.530000px;}
.ydc{bottom:1012.650000px;}
.y24{bottom:1013.370000px;}
.y7{bottom:1023.630000px;}
.y99{bottom:1036.950000px;}
.y4d{bottom:1039.650000px;}
.y131{bottom:1041.630000px;}
.y6d{bottom:1043.430000px;}
.ydb{bottom:1043.790000px;}
.y23{bottom:1047.750000px;}
.y6{bottom:1058.010000px;}
.y130{bottom:1063.410000px;}
.y4c{bottom:1065.750000px;}
.y98{bottom:1067.910000px;}
.yca{bottom:1074.750000px;}
.y22{bottom:1082.130000px;}
.y6c{bottom:1083.210000px;}
.y4b{bottom:1083.750000px;}
.y12f{bottom:1085.190000px;}
.y5{bottom:1092.390000px;}
.y97{bottom:1099.050000px;}
.y4a{bottom:1101.750000px;}
.y21{bottom:1104.450000px;}
.ye4{bottom:1105.890000px;}
.y12e{bottom:1106.970000px;}
.y4{bottom:1126.770000px;}
.y49{bottom:1129.110000px;}
.y95{bottom:1130.010000px;}
.y12d{bottom:1130.190000px;}
.y96{bottom:1136.880000px;}
.y6b{bottom:1149.660000px;}
.y48{bottom:1155.240000px;}
.y12c{bottom:1157.940000px;}
.y3{bottom:1161.180000px;}
.yd0{bottom:1168.020000px;}
.h1d{height:16.380000px;}
.h20{height:16.416000px;}
.h1e{height:16.560000px;}
.h23{height:16.596000px;}
.hc{height:37.437188px;}
.h16{height:42.845977px;}
.hb{height:43.246406px;}
.h1b{height:46.801758px;}
.h1a{height:49.500000px;}
.hf{height:51.468750px;}
.h8{height:53.953242px;}
.h7{height:54.215859px;}
.h19{height:55.987031px;}
.h2{height:57.410156px;}
.hd{height:59.383125px;}
.h6{height:60.855469px;}
.he{height:61.197188px;}
.h9{height:62.156250px;}
.h17{height:62.402344px;}
.h3{height:63.949219px;}
.h4{height:64.546875px;}
.h14{height:67.140000px;}
.h18{height:72.722812px;}
.h11{height:73.010742px;}
.h5{height:86.455195px;}
.h1f{height:93.780000px;}
.ha{height:103.918359px;}
.h21{height:145.440000px;}
.h22{height:171.210000px;}
.h12{height:171.570000px;}
.h13{height:172.110000px;}
.h10{height:177.510000px;}
.h1c{height:196.950000px;}
.h15{height:416.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:47.160000px;}
.wb{width:52.380000px;}
.wc{width:52.416000px;}
.wd{width:59.940000px;}
.w9{width:63.000000px;}
.w8{width:124.740000px;}
.w5{width:224.310000px;}
.w6{width:226.290000px;}
.w4{width:226.650000px;}
.w7{width:306.390000px;}
.wa{width:443.775000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7c{left:7.740000px;}
.x70{left:10.800000px;}
.x7a{left:20.700000px;}
.x7f{left:36.000000px;}
.x80{left:37.440000px;}
.x65{left:41.940000px;}
.x6b{left:45.180000px;}
.x67{left:48.780000px;}
.x6a{left:53.460000px;}
.x68{left:54.900000px;}
.x69{left:57.240000px;}
.x66{left:60.300000px;}
.x62{left:64.665000px;}
.x6e{left:71.280000px;}
.x64{left:78.120000px;}
.x61{left:79.245000px;}
.x2{left:84.959987px;}
.x79{left:95.795987px;}
.x16{left:100.655987px;}
.x6f{left:104.976000px;}
.x35{left:111.995987px;}
.x60{left:113.265000px;}
.x6d{left:117.540000px;}
.x13{left:121.895973px;}
.x26{left:127.475987px;}
.x38{left:138.995987px;}
.x14{left:140.255987px;}
.xd{left:148.895987px;}
.x2a{left:149.975973px;}
.x7b{left:159.870000px;}
.x2b{left:168.329987px;}
.x55{left:175.529973px;}
.x1e{left:180.929973px;}
.x56{left:193.889987px;}
.x7{left:198.209987px;}
.x1f{left:199.289987px;}
.x48{left:200.909973px;}
.x4{left:218.729987px;}
.x44{left:225.029973px;}
.x51{left:228.809973px;}
.x5{left:234.569987px;}
.x5f{left:237.990000px;}
.x45{left:243.389987px;}
.x11{left:248.069973px;}
.xc{left:262.649987px;}
.x12{left:266.429987px;}
.x28{left:285.329973px;}
.x15{left:301.034987px;}
.x29{left:303.734987px;}
.x6c{left:312.915000px;}
.xb{left:318.314987px;}
.x43{left:322.094973px;}
.x9{left:323.714987px;}
.x8{left:340.274987px;}
.x73{left:344.594973px;}
.x20{left:357.014973px;}
.x1d{left:358.094987px;}
.x27{left:359.174987px;}
.x74{left:362.954987px;}
.x2f{left:372.134973px;}
.x21{left:375.374987px;}
.x6{left:383.474987px;}
.x30{left:390.494987px;}
.x2d{left:400.034973px;}
.x31{left:405.434973px;}
.x2e{left:418.394987px;}
.x32{left:423.794987px;}
.xa{left:433.694987px;}
.x1b{left:439.634973px;}
.xf{left:442.514973px;}
.x3{left:451.694987px;}
.x1c{left:457.994987px;}
.x10{left:460.874987px;}
.x3f{left:462.314973px;}
.x33{left:476.894973px;}
.x4e{left:478.334987px;}
.x40{left:480.674987px;}
.x52{left:492.734973px;}
.x41{left:494.174973px;}
.x34{left:495.284987px;}
.x63{left:502.305000px;}
.x19{left:506.084973px;}
.x53{left:511.124987px;}
.x42{left:512.564987px;}
.x4a{left:518.864973px;}
.x1a{left:524.444987px;}
.x4b{left:537.224987px;}
.x2c{left:543.164987px;}
.x59{left:557.744973px;}
.x36{left:570.344973px;}
.x5a{left:576.104987px;}
.x3b{left:580.244973px;}
.x37{left:588.704987px;}
.x3c{left:598.604987px;}
.x5b{left:604.364973px;}
.x5c{left:622.724987px;}
.x17{left:634.244973px;}
.x39{left:639.824973px;}
.x46{left:648.464973px;}
.x18{left:652.604987px;}
.x3a{left:658.184987px;}
.x47{left:666.824987px;}
.x78{left:676.904987px;}
.x5d{left:686.624973px;}
.x76{left:688.964973px;}
.x22{left:690.044973px;}
.x57{left:704.129973px;}
.x77{left:707.369987px;}
.x23{left:708.449987px;}
.x7d{left:710.610000px;}
.x58{left:722.489987px;}
.x4c{left:730.229973px;}
.x4f{left:731.669973px;}
.x71{left:743.009973px;}
.x4d{left:748.589987px;}
.x50{left:750.029987px;}
.x72{left:761.369987px;}
.x5e{left:765.329987px;}
.x75{left:768.029987px;}
.x7e{left:771.270000px;}
.x24{left:779.909973px;}
.x49{left:782.069973px;}
.xe{left:792.149987px;}
.x25{left:798.269987px;}
.x3d{left:800.249973px;}
.x54{left:807.629987px;}
.x1{left:809.790000px;}
.x3e{left:818.609987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.082133pt;}
.lsd{letter-spacing:-0.052480pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.175360pt;}
.ls4{letter-spacing:0.207360pt;}
.ls3{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.239360pt;}
.ls1b{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.545280pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.871040pt;}
.lsf{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.328000pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls13{letter-spacing:7.680000pt;}
.lsb{letter-spacing:10.240000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:28.800000pt;}
.ls1c{letter-spacing:30.208000pt;}
.ls21{letter-spacing:57.088000pt;}
.ls1a{letter-spacing:156.906667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws7{word-spacing:-20.627840pt;}
.ws9{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.200640pt;}
.wsb{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.672427pt;}
.ws0{word-spacing:-11.952640pt;}
.ws6{word-spacing:-11.870507pt;}
.wse{word-spacing:-9.744000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-13.841067pt;}
._1a{margin-left:-12.006187pt;}
._17{margin-left:-10.162133pt;}
._18{margin-left:-8.832640pt;}
._13{margin-left:-7.168000pt;}
._9{margin-left:-5.888000pt;}
._24{margin-left:-4.896000pt;}
._2{margin-left:-3.776000pt;}
._a{margin-left:-2.762667pt;}
._0{margin-left:-1.216000pt;}
._1{width:0.970667pt;}
._8{width:2.453333pt;}
._1c{width:3.573333pt;}
._f{width:4.565333pt;}
._4{width:6.208000pt;}
._5{width:7.445333pt;}
._15{width:8.832000pt;}
._16{width:9.792000pt;}
._7{width:11.328000pt;}
._6{width:12.224000pt;}
._e{width:13.504000pt;}
._10{width:14.976000pt;}
._1e{width:16.051200pt;}
._1b{width:16.981333pt;}
._d{width:18.752000pt;}
._12{width:19.776000pt;}
._11{width:21.312000pt;}
._14{width:22.592000pt;}
._27{width:24.320000pt;}
._26{width:25.280000pt;}
._29{width:26.176000pt;}
._25{width:27.136000pt;}
._22{width:28.096000pt;}
._23{width:29.376000pt;}
._21{width:30.400000pt;}
._2b{width:32.128000pt;}
._1d{width:33.088000pt;}
._2d{width:35.072000pt;}
._2a{width:36.200960pt;}
._28{width:37.191680pt;}
._20{width:38.144000pt;}
._1f{width:39.296000pt;}
._2e{width:77.456000pt;}
._2c{width:90.498560pt;}
._b{width:743.786667pt;}
._3{width:752.266667pt;}
._c{width:771.936000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:3.354667pt;}
.y135{bottom:3.360000pt;}
.y144{bottom:3.386667pt;}
.y132{bottom:7.520000pt;}
.y11b{bottom:15.840000pt;}
.y134{bottom:18.080000pt;}
.y113{bottom:29.120000pt;}
.y118{bottom:29.600000pt;}
.y133{bottom:32.640000pt;}
.y11a{bottom:45.920000pt;}
.y12b{bottom:51.232000pt;}
.y2{bottom:60.832000pt;}
.y112{bottom:64.320000pt;}
.y117{bottom:64.960000pt;}
.y12a{bottom:69.152000pt;}
.y10e{bottom:69.600000pt;}
.y1{bottom:78.752000pt;}
.y156{bottom:88.352000pt;}
.y94{bottom:95.712000pt;}
.y111{bottom:99.520000pt;}
.y116{bottom:100.200000pt;}
.yc9{bottom:100.992000pt;}
.yf1{bottom:103.232000pt;}
.y10d{bottom:104.800000pt;}
.y14e{bottom:108.992000pt;}
.y93{bottom:112.512000pt;}
.yc8{bottom:117.792000pt;}
.yf4{bottom:121.152000pt;}
.y92{bottom:129.472000pt;}
.yc7{bottom:130.272000pt;}
.yf0{bottom:130.752000pt;}
.y154{bottom:131.872000pt;}
.ye2{bottom:134.746667pt;}
.y110{bottom:134.906667pt;}
.y115{bottom:135.400000pt;}
.y10c{bottom:140.186667pt;}
.y91{bottom:146.266667pt;}
.y20{bottom:146.746667pt;}
.y129{bottom:146.906667pt;}
.yf3{bottom:148.826667pt;}
.ycf{bottom:151.546667pt;}
.y153{bottom:154.906667pt;}
.yef{bottom:158.426667pt;}
.y90{bottom:163.226667pt;}
.yf2{bottom:164.026667pt;}
.y124{bottom:168.040000pt;}
.yda{bottom:168.506667pt;}
.y128{bottom:176.186667pt;}
.yc6{bottom:176.346667pt;}
.y1f{bottom:177.306667pt;}
.y152{bottom:177.786667pt;}
.y8f{bottom:180.026667pt;}
.ye5{bottom:180.986667pt;}
.y8e{bottom:185.306667pt;}
.yee{bottom:185.946667pt;}
.y123{bottom:187.400000pt;}
.y8d{bottom:196.826667pt;}
.y151{bottom:200.666667pt;}
.yce{bottom:202.106667pt;}
.yc5{bottom:204.026667pt;}
.y122{bottom:206.600000pt;}
.y1e{bottom:207.866667pt;}
.y10a{bottom:208.346667pt;}
.yed{bottom:213.626667pt;}
.y8c{bottom:213.786667pt;}
.ycd{bottom:214.586667pt;}
.yd9{bottom:219.066667pt;}
.y150{bottom:223.546667pt;}
.y8b{bottom:230.586667pt;}
.yfb{bottom:231.386667pt;}
.yc4{bottom:231.546667pt;}
.yd8{bottom:235.866667pt;}
.y109{bottom:236.026667pt;}
.y121{bottom:236.680000pt;}
.y1d{bottom:238.426667pt;}
.yec{bottom:241.146667pt;}
.y14f{bottom:246.426667pt;}
.y8a{bottom:247.546667pt;}
.y89{bottom:252.866667pt;}
.yfa{bottom:258.946667pt;}
.yc3{bottom:259.266667pt;}
.y108{bottom:263.586667pt;}
.y88{bottom:264.386667pt;}
.y120{bottom:266.600000pt;}
.y1c{bottom:268.866667pt;}
.yb8{bottom:269.666667pt;}
.y148{bottom:270.786667pt;}
.y36{bottom:277.986667pt;}
.y87{bottom:281.186667pt;}
.y6a{bottom:286.146667pt;}
.y86{bottom:286.466667pt;}
.yf9{bottom:286.626667pt;}
.yc2{bottom:286.786667pt;}
.y107{bottom:291.266667pt;}
.ycc{bottom:292.866667pt;}
.y14d{bottom:293.666667pt;}
.yeb{bottom:296.386667pt;}
.y11f{bottom:296.680000pt;}
.yb7{bottom:298.146667pt;}
.y85{bottom:298.946667pt;}
.y1b{bottom:299.426667pt;}
.yd7{bottom:303.426667pt;}
.yf8{bottom:314.146667pt;}
.yc1{bottom:314.466667pt;}
.yb6{bottom:314.946667pt;}
.y127{bottom:315.906667pt;}
.y14c{bottom:316.546667pt;}
.y69{bottom:316.706667pt;}
.y106{bottom:318.786667pt;}
.ye1{bottom:320.226667pt;}
.yea{bottom:324.066667pt;}
.y11e{bottom:326.600000pt;}
.y1a{bottom:329.986667pt;}
.yb5{bottom:331.906667pt;}
.yd6{bottom:337.186667pt;}
.y83{bottom:337.826667pt;}
.y14b{bottom:339.586667pt;}
.yf7{bottom:341.826667pt;}
.ybf{bottom:341.986667pt;}
.y84{bottom:343.906667pt;}
.y105{bottom:346.466667pt;}
.y68{bottom:347.746667pt;}
.yc0{bottom:348.066667pt;}
.yb4{bottom:348.706667pt;}
.yd5{bottom:349.666667pt;}
.ye9{bottom:351.586667pt;}
.y11d{bottom:356.546667pt;}
.y19{bottom:360.546667pt;}
.y14a{bottom:362.466667pt;}
.y82{bottom:365.346667pt;}
.yb3{bottom:365.506667pt;}
.y47{bottom:367.906667pt;}
.ybd{bottom:369.666667pt;}
.yb2{bottom:370.786667pt;}
.y67{bottom:371.106667pt;}
.y104{bottom:373.986667pt;}
.ybe{bottom:375.746667pt;}
.ye8{bottom:379.266667pt;}
.yb1{bottom:382.466667pt;}
.ye3{bottom:383.266667pt;}
.y149{bottom:385.346667pt;}
.y66{bottom:387.106667pt;}
.y18{bottom:391.106667pt;}
.y81{bottom:393.026667pt;}
.y35{bottom:393.666667pt;}
.ybc{bottom:397.186667pt;}
.y46{bottom:398.466667pt;}
.yb0{bottom:399.266667pt;}
.y103{bottom:401.666667pt;}
.ycb{bottom:403.266667pt;}
.ye7{bottom:406.786667pt;}
.y65{bottom:409.666667pt;}
.y34{bottom:413.506667pt;}
.yaf{bottom:416.226667pt;}
.y45{bottom:418.306667pt;}
.y80{bottom:420.546667pt;}
.y17{bottom:421.506667pt;}
.ybb{bottom:424.866667pt;}
.y64{bottom:425.666667pt;}
.y102{bottom:429.186667pt;}
.y126{bottom:430.146667pt;}
.ye6{bottom:430.946667pt;}
.y147{bottom:432.546667pt;}
.yae{bottom:433.026667pt;}
.ye0{bottom:433.986667pt;}
.y44{bottom:438.146667pt;}
.y33{bottom:444.066667pt;}
.y7f{bottom:448.226667pt;}
.y63{bottom:448.386667pt;}
.yad{bottom:449.986667pt;}
.y16{bottom:452.066667pt;}
.yba{bottom:452.386667pt;}
.y146{bottom:455.426667pt;}
.y101{bottom:456.866667pt;}
.y43{bottom:457.986667pt;}
.yd4{bottom:458.466667pt;}
.yac{bottom:467.746667pt;}
.y32{bottom:470.946667pt;}
.y7e{bottom:475.746667pt;}
.y62{bottom:476.226667pt;}
.y42{bottom:477.826667pt;}
.y145{bottom:478.306667pt;}
.yb9{bottom:480.066667pt;}
.y15{bottom:482.626667pt;}
.y100{bottom:484.386667pt;}
.ydf{bottom:486.146667pt;}
.y41{bottom:497.666667pt;}
.y143{bottom:501.346667pt;}
.y61{bottom:503.453333pt;}
.yab{bottom:507.613333pt;}
.y7d{bottom:509.533333pt;}
.yff{bottom:512.093333pt;}
.y14{bottom:513.213333pt;}
.y125{bottom:513.693333pt;}
.y40{bottom:517.533333pt;}
.y60{bottom:520.093333pt;}
.y142{bottom:524.253333pt;}
.y7b{bottom:530.973333pt;}
.yaa{bottom:535.293333pt;}
.y7c{bottom:537.053333pt;}
.y3f{bottom:537.373333pt;}
.yfe{bottom:539.613333pt;}
.yd3{bottom:541.373333pt;}
.y5f{bottom:542.013333pt;}
.y13{bottom:543.613333pt;}
.y141{bottom:547.133333pt;}
.y31{bottom:557.213333pt;}
.y5e{bottom:558.013333pt;}
.y7a{bottom:558.653333pt;}
.ya9{bottom:562.813333pt;}
.yfd{bottom:567.293333pt;}
.yf6{bottom:568.893333pt;}
.y140{bottom:570.013333pt;}
.y12{bottom:574.173333pt;}
.y5d{bottom:580.733333pt;}
.y79{bottom:586.173333pt;}
.y30{bottom:587.773333pt;}
.ya7{bottom:590.493333pt;}
.yfc{bottom:594.333333pt;}
.ya8{bottom:596.573333pt;}
.y5c{bottom:596.733333pt;}
.y11{bottom:604.733333pt;}
.y119{bottom:606.173333pt;}
.y78{bottom:613.853333pt;}
.y13f{bottom:617.213333pt;}
.ya5{bottom:618.013333pt;}
.y2f{bottom:618.333333pt;}
.y5b{bottom:619.453333pt;}
.ya6{bottom:624.093333pt;}
.y10{bottom:635.293333pt;}
.y5a{bottom:635.453333pt;}
.y3e{bottom:638.173333pt;}
.y13e{bottom:640.093333pt;}
.y77{bottom:641.373333pt;}
.ya3{bottom:645.693333pt;}
.y2e{bottom:648.893333pt;}
.ya4{bottom:651.773333pt;}
.y59{bottom:658.013333pt;}
.y13d{bottom:662.973333pt;}
.yf{bottom:665.693333pt;}
.y3d{bottom:668.733333pt;}
.y76{bottom:669.053333pt;}
.y11c{bottom:671.773333pt;}
.ya2{bottom:673.213333pt;}
.yde{bottom:679.293333pt;}
.y2d{bottom:679.453333pt;}
.y58{bottom:680.733333pt;}
.y114{bottom:682.653333pt;}
.y136{bottom:687.293333pt;}
.ye{bottom:696.253333pt;}
.y75{bottom:696.573333pt;}
.y57{bottom:696.733333pt;}
.y3c{bottom:699.293333pt;}
.ya1{bottom:700.893333pt;}
.yf5{bottom:706.973333pt;}
.y2c{bottom:709.853333pt;}
.y13c{bottom:710.173333pt;}
.y3b{bottom:719.133333pt;}
.y56{bottom:719.453333pt;}
.y74{bottom:724.253333pt;}
.yd{bottom:726.813333pt;}
.ya0{bottom:728.413333pt;}
.y2b{bottom:729.693333pt;}
.y13b{bottom:733.053333pt;}
.y3a{bottom:738.973333pt;}
.y55{bottom:742.013333pt;}
.y2a{bottom:749.533333pt;}
.y73{bottom:751.773333pt;}
.y9f{bottom:756.133333pt;}
.yc{bottom:757.413333pt;}
.y39{bottom:758.853333pt;}
.ydd{bottom:762.213333pt;}
.y54{bottom:771.493333pt;}
.y38{bottom:778.693333pt;}
.y13a{bottom:779.013333pt;}
.y72{bottom:779.333333pt;}
.y29{bottom:780.133333pt;}
.y9e{bottom:783.653333pt;}
.yb{bottom:787.813333pt;}
.y53{bottom:794.693333pt;}
.y37{bottom:798.533333pt;}
.y28{bottom:799.973333pt;}
.y139{bottom:801.893333pt;}
.y71{bottom:807.013333pt;}
.y52{bottom:810.693333pt;}
.y9d{bottom:811.333333pt;}
.yd2{bottom:817.413333pt;}
.ya{bottom:818.373333pt;}
.y138{bottom:824.773333pt;}
.y27{bottom:830.533333pt;}
.y51{bottom:833.413333pt;}
.y70{bottom:834.533333pt;}
.y9c{bottom:838.853333pt;}
.yd1{bottom:844.933333pt;}
.y137{bottom:847.813333pt;}
.y9{bottom:848.933333pt;}
.y50{bottom:856.133333pt;}
.y26{bottom:861.093333pt;}
.y6f{bottom:862.213333pt;}
.y9b{bottom:866.533333pt;}
.y10b{bottom:871.973333pt;}
.y4f{bottom:872.133333pt;}
.y10f{bottom:876.453333pt;}
.y8{bottom:879.493333pt;}
.y25{bottom:880.933333pt;}
.y6e{bottom:892.453333pt;}
.y9a{bottom:894.053333pt;}
.y4e{bottom:894.693333pt;}
.ydc{bottom:900.133333pt;}
.y24{bottom:900.773333pt;}
.y7{bottom:909.893333pt;}
.y99{bottom:921.733333pt;}
.y4d{bottom:924.133333pt;}
.y131{bottom:925.893333pt;}
.y6d{bottom:927.493333pt;}
.ydb{bottom:927.813333pt;}
.y23{bottom:931.333333pt;}
.y6{bottom:940.453333pt;}
.y130{bottom:945.253333pt;}
.y4c{bottom:947.333333pt;}
.y98{bottom:949.253333pt;}
.yca{bottom:955.333333pt;}
.y22{bottom:961.893333pt;}
.y6c{bottom:962.853333pt;}
.y4b{bottom:963.333333pt;}
.y12f{bottom:964.613333pt;}
.y5{bottom:971.013333pt;}
.y97{bottom:976.933333pt;}
.y4a{bottom:979.333333pt;}
.y21{bottom:981.733333pt;}
.ye4{bottom:983.013333pt;}
.y12e{bottom:983.973333pt;}
.y4{bottom:1001.573333pt;}
.y49{bottom:1003.653333pt;}
.y95{bottom:1004.453333pt;}
.y12d{bottom:1004.613333pt;}
.y96{bottom:1010.560000pt;}
.y6b{bottom:1021.920000pt;}
.y48{bottom:1026.880000pt;}
.y12c{bottom:1029.280000pt;}
.y3{bottom:1032.160000pt;}
.yd0{bottom:1038.240000pt;}
.h1d{height:14.560000pt;}
.h20{height:14.592000pt;}
.h1e{height:14.720000pt;}
.h23{height:14.752000pt;}
.hc{height:33.277500pt;}
.h16{height:38.085312pt;}
.hb{height:38.441250pt;}
.h1b{height:41.601563pt;}
.h1a{height:44.000000pt;}
.hf{height:45.750000pt;}
.h8{height:47.958438pt;}
.h7{height:48.191875pt;}
.h19{height:49.766250pt;}
.h2{height:51.031250pt;}
.hd{height:52.785000pt;}
.h6{height:54.093750pt;}
.he{height:54.397500pt;}
.h9{height:55.250000pt;}
.h17{height:55.468750pt;}
.h3{height:56.843750pt;}
.h4{height:57.375000pt;}
.h14{height:59.680000pt;}
.h18{height:64.642500pt;}
.h11{height:64.898438pt;}
.h5{height:76.849063pt;}
.h1f{height:83.360000pt;}
.ha{height:92.371875pt;}
.h21{height:129.280000pt;}
.h22{height:152.186667pt;}
.h12{height:152.506667pt;}
.h13{height:152.986667pt;}
.h10{height:157.786667pt;}
.h1c{height:175.066667pt;}
.h15{height:370.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:41.920000pt;}
.wb{width:46.560000pt;}
.wc{width:46.592000pt;}
.wd{width:53.280000pt;}
.w9{width:56.000000pt;}
.w8{width:110.880000pt;}
.w5{width:199.386667pt;}
.w6{width:201.146667pt;}
.w4{width:201.466667pt;}
.w7{width:272.346667pt;}
.wa{width:394.466667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:6.880000pt;}
.x70{left:9.600000pt;}
.x7a{left:18.400000pt;}
.x7f{left:32.000000pt;}
.x80{left:33.280000pt;}
.x65{left:37.280000pt;}
.x6b{left:40.160000pt;}
.x67{left:43.360000pt;}
.x6a{left:47.520000pt;}
.x68{left:48.800000pt;}
.x69{left:50.880000pt;}
.x66{left:53.600000pt;}
.x62{left:57.480000pt;}
.x6e{left:63.360000pt;}
.x64{left:69.440000pt;}
.x61{left:70.440000pt;}
.x2{left:75.519988pt;}
.x79{left:85.151988pt;}
.x16{left:89.471988pt;}
.x6f{left:93.312000pt;}
.x35{left:99.551988pt;}
.x60{left:100.680000pt;}
.x6d{left:104.480000pt;}
.x13{left:108.351976pt;}
.x26{left:113.311988pt;}
.x38{left:123.551988pt;}
.x14{left:124.671988pt;}
.xd{left:132.351988pt;}
.x2a{left:133.311976pt;}
.x7b{left:142.106667pt;}
.x2b{left:149.626655pt;}
.x55{left:156.026643pt;}
.x1e{left:160.826643pt;}
.x56{left:172.346655pt;}
.x7{left:176.186655pt;}
.x1f{left:177.146655pt;}
.x48{left:178.586643pt;}
.x4{left:194.426655pt;}
.x44{left:200.026643pt;}
.x51{left:203.386643pt;}
.x5{left:208.506655pt;}
.x5f{left:211.546667pt;}
.x45{left:216.346655pt;}
.x11{left:220.506643pt;}
.xc{left:233.466655pt;}
.x12{left:236.826655pt;}
.x28{left:253.626643pt;}
.x15{left:267.586655pt;}
.x29{left:269.986655pt;}
.x6c{left:278.146667pt;}
.xb{left:282.946655pt;}
.x43{left:286.306643pt;}
.x9{left:287.746655pt;}
.x8{left:302.466655pt;}
.x73{left:306.306643pt;}
.x20{left:317.346643pt;}
.x1d{left:318.306655pt;}
.x27{left:319.266655pt;}
.x74{left:322.626655pt;}
.x2f{left:330.786643pt;}
.x21{left:333.666655pt;}
.x6{left:340.866655pt;}
.x30{left:347.106655pt;}
.x2d{left:355.586643pt;}
.x31{left:360.386643pt;}
.x2e{left:371.906655pt;}
.x32{left:376.706655pt;}
.xa{left:385.506655pt;}
.x1b{left:390.786643pt;}
.xf{left:393.346643pt;}
.x3{left:401.506655pt;}
.x1c{left:407.106655pt;}
.x10{left:409.666655pt;}
.x3f{left:410.946643pt;}
.x33{left:423.906643pt;}
.x4e{left:425.186655pt;}
.x40{left:427.266655pt;}
.x52{left:437.986643pt;}
.x41{left:439.266643pt;}
.x34{left:440.253322pt;}
.x63{left:446.493333pt;}
.x19{left:449.853310pt;}
.x53{left:454.333322pt;}
.x42{left:455.613322pt;}
.x4a{left:461.213310pt;}
.x1a{left:466.173322pt;}
.x4b{left:477.533322pt;}
.x2c{left:482.813322pt;}
.x59{left:495.773310pt;}
.x36{left:506.973310pt;}
.x5a{left:512.093322pt;}
.x3b{left:515.773310pt;}
.x37{left:523.293322pt;}
.x3c{left:532.093322pt;}
.x5b{left:537.213310pt;}
.x5c{left:553.533322pt;}
.x17{left:563.773310pt;}
.x39{left:568.733310pt;}
.x46{left:576.413310pt;}
.x18{left:580.093322pt;}
.x3a{left:585.053322pt;}
.x47{left:592.733322pt;}
.x78{left:601.693322pt;}
.x5d{left:610.333310pt;}
.x76{left:612.413310pt;}
.x22{left:613.373310pt;}
.x57{left:625.893310pt;}
.x77{left:628.773322pt;}
.x23{left:629.733322pt;}
.x7d{left:631.653333pt;}
.x58{left:642.213322pt;}
.x4c{left:649.093310pt;}
.x4f{left:650.373310pt;}
.x71{left:660.453310pt;}
.x4d{left:665.413322pt;}
.x50{left:666.693322pt;}
.x72{left:676.773322pt;}
.x5e{left:680.293322pt;}
.x75{left:682.693322pt;}
.x7e{left:685.573333pt;}
.x24{left:693.253310pt;}
.x49{left:695.173310pt;}
.xe{left:704.133322pt;}
.x25{left:709.573322pt;}
.x3d{left:711.333310pt;}
.x54{left:717.893322pt;}
.x1{left:719.813333pt;}
.x3e{left:727.653322pt;}
}




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