
    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_26eeba60c11228f3445b0531.woff')format("woff");}.ff1{font-family:ff1;line-height:0.967000;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_706483e0b4044f7ecab53739.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_7485cc837410750fd23959b5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_6e05de4b1906f94e475a4be5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_e5da5f31a35299ccc9a5e7b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_7db38e0c40d269a71004e4d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_b4b88806f6ebea6ac9819fda.woff')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_33b9a2abbcc38071328f9927.woff')format("woff");}.ff8{font-family:ff8;line-height:0.746000;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_af03af28021e94e08ea11c0c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977000;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_89997c6483be14e88d36b00e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.745000;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_ec5d69b1897920798a4417ff.woff')format("woff");}.ffb{font-family:ffb;line-height:0.967000;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_674dd82e3814d241bd38353d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.967000;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_bf805133717b307abb7b2963.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964000;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_cbb7db4ebfb3762f482e29bb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5c3ce991b74bc3bd228902ef.woff')format("woff");}.fff{font-family:fff;line-height:0.916000;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_34a5993c4751c3db8f0c09bd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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;}
.m4{transform:matrix(0.000000,-0.250438,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250438,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250438,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.246552,-0.039639,0.039593,0.246845,0,0);-ms-transform:matrix(0.246552,-0.039639,0.039593,0.246845,0,0);-webkit-transform:matrix(0.246552,-0.039639,0.039593,0.246845,0,0);}
.m5{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-165.000000px;}
.ws7{word-spacing:-86.700000px;}
.ws1{word-spacing:-69.360000px;}
.ws4{word-spacing:-45.210000px;}
.ws6{word-spacing:-43.890000px;}
.ws3{word-spacing:-30.717810px;}
.wsa{word-spacing:-5.880000px;}
.ws9{word-spacing:-2.856000px;}
.ws2{word-spacing:-0.263999px;}
.ws0{word-spacing:-0.192000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-43.798658px;}
._e{margin-left:-22.703953px;}
._3{margin-left:-20.063954px;}
._6{margin-left:-18.960000px;}
._15{margin-left:-17.286028px;}
._b{margin-left:-15.575965px;}
._14{margin-left:-14.400000px;}
._11{margin-left:-13.262731px;}
._12{margin-left:-12.045611px;}
._0{margin-left:-9.239979px;}
._8{margin-left:-7.301557px;}
._c{margin-left:-5.279988px;}
._5{margin-left:-4.223990px;}
._2{margin-left:-2.639994px;}
._1{margin-left:-1.319997px;}
._9{width:1.252791px;}
._f{width:2.856000px;}
._a{width:4.223984px;}
._10{width:5.671201px;}
._4{width:7.127984px;}
._d{width:8.447981px;}
._13{width:15.332731px;}
.fc7{color:transparent;}
.fc5{color:rgb(7,17,89);}
.fc4{color:rgb(255,73,85);}
.fc6{color:rgb(120,120,120);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(56,56,56);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:16.381547px;}
.fs5{font-size:106.290000px;}
.fs14{font-size:122.332800px;}
.fs16{font-size:124.864200px;}
.fs13{font-size:132.000000px;}
.fs9{font-size:135.710400px;}
.fs3{font-size:156.000000px;}
.fs15{font-size:163.110000px;}
.fs10{font-size:165.000000px;}
.fsb{font-size:168.000000px;}
.fsc{font-size:169.566600px;}
.fsd{font-size:174.000000px;}
.fse{font-size:180.000000px;}
.fs17{font-size:183.499200px;}
.fs8{font-size:186.147600px;}
.fs7{font-size:186.473400px;}
.fs4{font-size:192.000000px;}
.fsf{font-size:198.172200px;}
.fs12{font-size:228.000000px;}
.fs1{font-size:240.000000px;}
.fs0{font-size:263.999400px;}
.fs18{font-size:285.441600px;}
.fsa{font-size:287.999400px;}
.fs11{font-size:300.000000px;}
.fs2{font-size:552.308400px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.001650px;}
.y35{bottom:1.116000px;}
.y2e{bottom:1.116450px;}
.y30{bottom:1.123650px;}
.y33{bottom:1.125150px;}
.y37{bottom:1.128150px;}
.y2c{bottom:7.700100px;}
.y2a{bottom:7.705500px;}
.y28{bottom:7.710750px;}
.yc1{bottom:8.349600px;}
.yc3{bottom:8.350500px;}
.ybf{bottom:8.350650px;}
.yc8{bottom:8.678400px;}
.yca{bottom:8.678850px;}
.yba{bottom:8.906700px;}
.y3d{bottom:9.839400px;}
.yf{bottom:10.533900px;}
.y17{bottom:10.537050px;}
.y1b{bottom:10.647300px;}
.yce{bottom:11.131350px;}
.ycc{bottom:11.131800px;}
.yc6{bottom:11.131950px;}
.yd0{bottom:11.132550px;}
.y89{bottom:11.259450px;}
.y7c{bottom:11.260950px;}
.y91{bottom:11.262450px;}
.y99{bottom:11.461650px;}
.y9b{bottom:11.461950px;}
.y97{bottom:11.463000px;}
.yaa{bottom:11.465250px;}
.ya4{bottom:11.465400px;}
.y43{bottom:11.466000px;}
.y45{bottom:11.466150px;}
.y47{bottom:11.466300px;}
.y41{bottom:11.467200px;}
.ybc{bottom:11.467650px;}
.y93{bottom:11.467950px;}
.y8b{bottom:11.469450px;}
.y49{bottom:11.469600px;}
.y4b{bottom:11.469750px;}
.y4d{bottom:11.469900px;}
.y50{bottom:11.470200px;}
.y52{bottom:11.470350px;}
.y54{bottom:11.470500px;}
.y56{bottom:11.470650px;}
.y7f{bottom:11.470950px;}
.y9d{bottom:11.472900px;}
.y64{bottom:11.565900px;}
.y5a{bottom:11.566950px;}
.y5e{bottom:11.570850px;}
.y62{bottom:11.574900px;}
.y5c{bottom:11.577600px;}
.y60{bottom:11.578950px;}
.y70{bottom:11.870550px;}
.y72{bottom:11.870850px;}
.y74{bottom:11.871000px;}
.y6a{bottom:11.875200px;}
.y6c{bottom:11.875500px;}
.y6e{bottom:11.875650px;}
.y66{bottom:11.876250px;}
.y68{bottom:11.876400px;}
.y58{bottom:12.047250px;}
.y39{bottom:12.720750px;}
.y7a{bottom:12.774900px;}
.y76{bottom:12.786600px;}
.y11{bottom:12.956700px;}
.yd2{bottom:13.028550px;}
.yd4{bottom:13.029150px;}
.y78{bottom:14.076750px;}
.yb7{bottom:15.561600px;}
.yb4{bottom:15.562200px;}
.y19{bottom:16.195650px;}
.yd{bottom:16.202100px;}
.y15{bottom:16.205400px;}
.y9{bottom:17.037900px;}
.y13{bottom:17.400000px;}
.y23{bottom:17.815950px;}
.y2{bottom:17.825100px;}
.y21{bottom:18.010950px;}
.y1d{bottom:18.355950px;}
.yd6{bottom:19.839000px;}
.yd8{bottom:19.839300px;}
.y3f{bottom:20.451000px;}
.yae{bottom:20.858100px;}
.yb0{bottom:21.308100px;}
.yb2{bottom:21.758100px;}
.yb{bottom:38.382750px;}
.y12{bottom:120.005250px;}
.yb8{bottom:292.603500px;}
.yb5{bottom:292.825500px;}
.y1f{bottom:348.010950px;}
.yb6{bottom:363.853500px;}
.yb3{bottom:364.075500px;}
.yac{bottom:540.004500px;}
.ya8{bottom:548.655000px;}
.yab{bottom:592.504500px;}
.ya7{bottom:601.155000px;}
.ya9{bottom:645.003000px;}
.ya6{bottom:653.653500px;}
.yc5{bottom:723.472500px;}
.ya5{bottom:726.745500px;}
.ya3{bottom:779.245500px;}
.yc2{bottom:782.209500px;}
.yc4{bottom:782.316000px;}
.ybe{bottom:782.332500px;}
.yc0{bottom:782.439000px;}
.yc9{bottom:859.767000px;}
.yc7{bottom:898.786500px;}
.yd1{bottom:949.743000px;}
.yd3{bottom:952.837500px;}
.ycf{bottom:1062.138000px;}
.yd7{bottom:1140.651000px;}
.ycd{bottom:1153.252500px;}
.yd5{bottom:1229.851500px;}
.ycb{bottom:1244.853000px;}
.y95{bottom:1420.261500px;}
.y94{bottom:1420.467000px;}
.y92{bottom:1482.136500px;}
.y90{bottom:1482.342000px;}
.y8f{bottom:1544.010000px;}
.y8e{bottom:1544.220000px;}
.y8d{bottom:1605.885000px;}
.y8c{bottom:1606.095000px;}
.y8a{bottom:1667.760000px;}
.y88{bottom:1667.970000px;}
.y87{bottom:1729.635000px;}
.y86{bottom:1729.845000px;}
.y85{bottom:1791.510000px;}
.y84{bottom:1791.720000px;}
.y83{bottom:1853.385000px;}
.y82{bottom:1853.595000px;}
.y81{bottom:1915.260000px;}
.y80{bottom:1915.470000px;}
.y7e{bottom:1977.135000px;}
.y7d{bottom:1977.345000px;}
.y7b{bottom:2039.220000px;}
.y79{bottom:2100.810000px;}
.ya2{bottom:2128.305000px;}
.ya1{bottom:2180.805000px;}
.y73{bottom:2185.440000px;}
.ya0{bottom:2233.305000px;}
.y71{bottom:2238.075000px;}
.y2b{bottom:2256.210000px;}
.y9f{bottom:2285.805000px;}
.y29{bottom:2289.420000px;}
.y6f{bottom:2290.710000px;}
.y27{bottom:2322.630000px;}
.y9e{bottom:2338.305000px;}
.y75{bottom:2354.565000px;}
.y9c{bottom:2390.805000px;}
.y6d{bottom:2429.805000px;}
.y9a{bottom:2459.460000px;}
.y6b{bottom:2482.440000px;}
.y36{bottom:2487.570000px;}
.y34{bottom:2498.040000px;}
.y32{bottom:2508.885000px;}
.y98{bottom:2510.280000px;}
.y31{bottom:2519.775000px;}
.y2f{bottom:2530.665000px;}
.y69{bottom:2535.075000px;}
.y2d{bottom:2541.480000px;}
.y96{bottom:2561.100000px;}
.y67{bottom:2587.710000px;}
.y65{bottom:2640.345000px;}
.y63{bottom:2695.770000px;}
.y5d{bottom:2695.935000px;}
.y77{bottom:2704.140000px;}
.y5b{bottom:2798.520000px;}
.y61{bottom:2803.140000px;}
.ybd{bottom:2829.840000px;}
.ybb{bottom:2882.340000px;}
.y5f{bottom:2910.840000px;}
.y59{bottom:2911.230000px;}
.y55{bottom:2943.210000px;}
.y53{bottom:2994.030000px;}
.y57{bottom:3016.110000px;}
.y51{bottom:3044.850000px;}
.y4f{bottom:3095.670000px;}
.y4e{bottom:3146.490000px;}
.y4c{bottom:3207.615000px;}
.yb1{bottom:3214.530000px;}
.y4a{bottom:3258.435000px;}
.yaf{bottom:3308.730000px;}
.yad{bottom:3309.180000px;}
.y48{bottom:3309.255000px;}
.y46{bottom:3319.395000px;}
.y44{bottom:3370.215000px;}
.y42{bottom:3421.035000px;}
.y40{bottom:3471.855000px;}
.y7{bottom:3559.215000px;}
.y3c{bottom:3640.935000px;}
.y6{bottom:3641.715000px;}
.y3a{bottom:3702.555000px;}
.y5{bottom:3724.215000px;}
.y4{bottom:3806.715000px;}
.y3{bottom:3889.215000px;}
.y1{bottom:3971.715000px;}
.y1e{bottom:4117.410000px;}
.y26{bottom:4199.910000px;}
.y25{bottom:4200.105000px;}
.y24{bottom:4282.605000px;}
.y22{bottom:4365.105000px;}
.y38{bottom:4374.495000px;}
.y1c{bottom:4447.065000px;}
.y20{bottom:4447.410000px;}
.y3e{bottom:4459.425000px;}
.y8{bottom:4613.925000px;}
.y10{bottom:4662.930000px;}
.yb9{bottom:4666.980000px;}
.y18{bottom:4736.550000px;}
.yc{bottom:4738.710000px;}
.y14{bottom:4739.010000px;}
.y1a{bottom:4790.400000px;}
.ye{bottom:4792.680000px;}
.y16{bottom:4792.980000px;}
.ya{bottom:4896.585000px;}
.h1b{height:4.965000px;}
.h1a{height:5.340000px;}
.h19{height:5.355000px;}
.h17{height:5.730000px;}
.h18{height:12.122344px;}
.h16{height:30.345000px;}
.h14{height:30.360000px;}
.h4b{height:34.420500px;}
.h49{height:34.422000px;}
.h4e{height:35.289000px;}
.h50{height:35.290500px;}
.h47{height:37.035000px;}
.h20{height:38.760000px;}
.h8{height:43.785000px;}
.he{height:43.890000px;}
.h52{height:45.892500px;}
.h4c{height:45.894000px;}
.h34{height:46.425000px;}
.h3a{height:46.426500px;}
.h38{height:46.428000px;}
.h3b{height:46.632000px;}
.h39{height:46.633500px;}
.h36{height:46.635000px;}
.h24{height:47.265000px;}
.h3d{height:47.269500px;}
.h3e{height:47.271000px;}
.h26{height:47.280000px;}
.h29{height:47.700000px;}
.h2b{height:47.715000px;}
.h27{height:48.180000px;}
.h2d{height:48.960000px;}
.h33{height:51.135000px;}
.h2f{height:51.150000px;}
.h53{height:52.137000px;}
.h1c{height:52.455000px;}
.ha{height:53.880000px;}
.h31{height:56.310000px;}
.h45{height:64.153500px;}
.h7{height:67.350000px;}
.h3{height:68.190000px;}
.hc{height:68.549250px;}
.h1{height:74.085000px;}
.h12{height:74.280000px;}
.h10{height:74.625000px;}
.h15{height:80.461530px;}
.h55{height:80.671500px;}
.h22{height:81.825000px;}
.h3f{height:84.795000px;}
.h41{height:85.245000px;}
.h43{height:85.695000px;}
.h4a{height:91.749600px;}
.h51{height:91.900051px;}
.h4f{height:92.399508px;}
.h48{height:97.680000px;}
.h21{height:102.732773px;}
.h9{height:115.440000px;}
.hf{height:117.000000px;}
.h4d{height:120.701400px;}
.h37{height:122.100000px;}
.h35{height:123.750000px;}
.h25{height:124.320000px;}
.h28{height:124.801018px;}
.h2c{height:125.479284px;}
.h3c{height:126.000000px;}
.h2a{height:127.174950px;}
.h2e{height:130.500000px;}
.h54{height:131.385427px;}
.h30{height:132.480000px;}
.h1f{height:139.610700px;}
.h1d{height:139.855050px;}
.hb{height:141.312000px;}
.h32{height:145.854739px;}
.h5{height:156.090000px;}
.h46{height:171.000000px;}
.h4{height:176.640000px;}
.hd{height:181.680000px;}
.h13{height:194.303558px;}
.h2{height:195.359556px;}
.h56{height:211.226784px;}
.h23{height:211.967558px;}
.h42{height:220.800000px;}
.h40{height:222.000000px;}
.h44{height:227.100000px;}
.h11{height:404.280000px;}
.h6{height:408.708216px;}
.h1e{height:535.875000px;}
.h0{height:5184.000000px;}
.w1e{width:3.150000px;}
.w1d{width:5.580000px;}
.w1c{width:8.010000px;}
.w27{width:11.205000px;}
.w67{width:11.214000px;}
.w82{width:18.345000px;}
.w81{width:18.360000px;}
.w95{width:18.630000px;}
.w90{width:19.545000px;}
.w93{width:19.560000px;}
.w77{width:21.150000px;}
.wf{width:23.398500px;}
.wa{width:23.400000px;}
.w8b{width:27.045000px;}
.w92{width:27.255000px;}
.w8c{width:28.050000px;}
.w8e{width:35.970000px;}
.w98{width:39.030000px;}
.w8f{width:39.105000px;}
.w91{width:42.240000px;}
.w8d{width:42.525000px;}
.w80{width:43.950000px;}
.w4c{width:44.055000px;}
.w96{width:44.235000px;}
.w97{width:44.250000px;}
.w8a{width:46.020000px;}
.w94{width:48.885000px;}
.w20{width:52.380000px;}
.w41{width:95.475000px;}
.w49{width:96.720000px;}
.w4e{width:96.735000px;}
.w51{width:121.440000px;}
.w55{width:122.895000px;}
.w60{width:130.065000px;}
.w1b{width:133.125000px;}
.w5b{width:135.990000px;}
.w5d{width:139.350000px;}
.w53{width:142.680000px;}
.w4a{width:142.815000px;}
.w4d{width:147.465000px;}
.w48{width:153.240000px;}
.w5e{width:157.950000px;}
.w85{width:162.330000px;}
.w89{width:163.215000px;}
.w75{width:169.800000px;}
.w59{width:175.140000px;}
.w62{width:180.840000px;}
.w58{width:184.275000px;}
.w63{width:224.310000px;}
.w19{width:227.715000px;}
.w4f{width:241.965000px;}
.w13{width:263.791500px;}
.w21{width:272.880000px;}
.w1a{width:319.185000px;}
.w47{width:336.360000px;}
.w3{width:348.738000px;}
.w88{width:353.790000px;}
.w43{width:356.610000px;}
.w86{width:362.130000px;}
.w87{width:362.955000px;}
.w24{width:369.210000px;}
.w83{width:371.760000px;}
.w29{width:375.600000px;}
.w84{width:380.010000px;}
.w32{width:381.636000px;}
.wd{width:398.940000px;}
.w4b{width:409.605000px;}
.w33{width:419.383500px;}
.w45{width:424.470000px;}
.w6f{width:441.457500px;}
.w34{width:444.855000px;}
.w9{width:451.917000px;}
.w44{width:452.130000px;}
.w7{width:466.254000px;}
.w37{width:467.074500px;}
.w17{width:467.206500px;}
.w61{width:496.605000px;}
.we{width:499.134000px;}
.w11{width:500.074500px;}
.w18{width:521.460000px;}
.w52{width:540.030000px;}
.wb{width:547.194000px;}
.w38{width:582.247500px;}
.w39{width:583.218000px;}
.w50{width:632.355000px;}
.w10{width:652.200000px;}
.w1f{width:689.805000px;}
.w3c{width:693.555000px;}
.w56{width:698.100000px;}
.w7f{width:716.595000px;}
.w3e{width:727.050000px;}
.w26{width:757.830000px;}
.w2b{width:762.375000px;}
.w66{width:780.813000px;}
.w54{width:803.880000px;}
.w35{width:819.933000px;}
.w3d{width:826.665000px;}
.w79{width:832.080000px;}
.w5c{width:834.690000px;}
.w7b{width:858.295500px;}
.w2c{width:864.015000px;}
.w5{width:868.807500px;}
.w42{width:884.910000px;}
.w36{width:889.752000px;}
.w7a{width:912.165000px;}
.w6d{width:942.132000px;}
.w5a{width:965.985000px;}
.w99{width:1001.385000px;}
.w3f{width:1032.105000px;}
.w40{width:1045.425000px;}
.w4{width:1045.749000px;}
.w3b{width:1058.385000px;}
.w16{width:1073.011500px;}
.w3a{width:1075.125000px;}
.w76{width:1087.174500px;}
.w2a{width:1207.020000px;}
.w6{width:1207.048500px;}
.w7c{width:1227.658500px;}
.w25{width:1249.905000px;}
.w5f{width:1261.695000px;}
.w57{width:1266.195000px;}
.w78{width:1267.474500px;}
.w14{width:1328.298000px;}
.w1{width:1334.166000px;}
.wc{width:1353.760500px;}
.w31{width:1354.395000px;}
.w7d{width:1419.595500px;}
.w15{width:1422.333000px;}
.w6c{width:1487.236500px;}
.w6e{width:1498.621500px;}
.w2{width:1513.341000px;}
.w68{width:1524.796500px;}
.w73{width:1528.950000px;}
.w69{width:1533.691500px;}
.w12{width:1540.218000px;}
.w74{width:1562.790000px;}
.w2d{width:1573.260000px;}
.w2f{width:1583.160000px;}
.w72{width:1589.506500px;}
.w70{width:1604.926500px;}
.w71{width:1622.851500px;}
.w22{width:1628.250000px;}
.w6a{width:1634.281500px;}
.w30{width:1636.710000px;}
.w65{width:1644.322500px;}
.w28{width:1648.605000px;}
.w64{width:1659.697500px;}
.w6b{width:1661.746500px;}
.w7e{width:1663.965000px;}
.w23{width:1668.300000px;}
.w2e{width:1679.985000px;}
.w46{width:1686.045000px;}
.w8{width:3445.944000px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x1f{left:1.254600px;}
.x1b{left:39.676350px;}
.x3{left:220.056000px;}
.x42{left:223.012500px;}
.x25{left:231.607500px;}
.x26{left:232.665000px;}
.x6{left:245.661000px;}
.xa{left:248.913000px;}
.x1{left:251.169000px;}
.x24{left:361.419000px;}
.x2{left:386.569500px;}
.x48{left:436.201500px;}
.xe{left:500.074200px;}
.x45{left:516.490500px;}
.x12{left:521.459400px;}
.xb{left:739.290000px;}
.x4{left:941.487000px;}
.x27{left:948.498000px;}
.x43{left:1003.825500px;}
.x49{left:1126.354500px;}
.x7{left:1266.154500px;}
.x29{left:1273.582500px;}
.x11{left:1323.388500px;}
.x28{left:1390.555500px;}
.x5{left:1407.741000px;}
.xf{left:1458.418500px;}
.x10{left:1471.838400px;}
.xc{left:1598.700000px;}
.x46{left:1603.665000px;}
.x4c{left:1974.660000px;}
.x2a{left:1986.180000px;}
.x1e{left:1988.970000px;}
.x20{left:1990.230000px;}
.x2c{left:1992.165000px;}
.x1d{left:2001.630000px;}
.x44{left:2011.230000px;}
.x56{left:2017.200000px;}
.x1a{left:2034.390000px;}
.x31{left:2036.220000px;}
.x57{left:2062.875000px;}
.x2b{left:2085.090000px;}
.x58{left:2089.905000px;}
.x59{left:2117.955000px;}
.x35{left:2157.750000px;}
.x37{left:2159.115000px;}
.x5a{left:2160.480000px;}
.x3f{left:2166.285000px;}
.x3c{left:2175.570000px;}
.x4a{left:2177.610000px;}
.x36{left:2178.900000px;}
.x32{left:2183.610000px;}
.x5b{left:2196.600000px;}
.x38{left:2220.570000px;}
.x5c{left:2223.645000px;}
.xd{left:2250.900000px;}
.x5d{left:2266.170000px;}
.x3d{left:2272.290000px;}
.x33{left:2280.345000px;}
.x5e{left:2293.650000px;}
.x39{left:2317.305000px;}
.x2d{left:2328.525000px;}
.x5f{left:2332.755000px;}
.x54{left:2333.895000px;}
.x60{left:2352.300000px;}
.x21{left:2359.440000px;}
.x22{left:2365.755000px;}
.x47{left:2390.565000px;}
.x61{left:2394.195000px;}
.x4b{left:2405.430000px;}
.x3b{left:2416.335000px;}
.x62{left:2420.445000px;}
.x3e{left:2430.240000px;}
.x8{left:2438.085000px;}
.x63{left:2440.005000px;}
.x2e{left:2481.765000px;}
.x64{left:2486.385000px;}
.x3a{left:2492.445000px;}
.x34{left:2522.310000px;}
.x65{left:2528.625000px;}
.x19{left:2541.675000px;}
.x66{left:2547.255000px;}
.x67{left:2565.885000px;}
.x2f{left:2578.485000px;}
.x4d{left:2608.110000px;}
.x68{left:2610.120000px;}
.x1c{left:2615.370000px;}
.x69{left:2654.370000px;}
.x50{left:2656.200000px;}
.x40{left:2662.890000px;}
.x6a{left:2696.610000px;}
.x30{left:2721.300000px;}
.x6b{left:2724.300000px;}
.x23{left:2752.530000px;}
.x6c{left:2768.535000px;}
.x6d{left:2795.580000px;}
.x6e{left:2814.075000px;}
.x9{left:2837.025000px;}
.x41{left:2843.025000px;}
.x6f{left:2852.310000px;}
.x51{left:2867.745000px;}
.x70{left:2891.415000px;}
.x52{left:2976.585000px;}
.x14{left:3268.080000px;}
.x53{left:3300.135000px;}
.x13{left:3313.815000px;}
.x15{left:3361.110000px;}
.x55{left:3400.455000px;}
.x16{left:3445.635000px;}
.x17{left:3448.050000px;}
.x18{left:3450.480000px;}
.x4e{left:3459.945000px;}
.x4f{left:3688.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-146.666667pt;}
.ws7{word-spacing:-77.066667pt;}
.ws1{word-spacing:-61.653333pt;}
.ws4{word-spacing:-40.186667pt;}
.ws6{word-spacing:-39.013333pt;}
.ws3{word-spacing:-27.304720pt;}
.wsa{word-spacing:-5.226667pt;}
.ws9{word-spacing:-2.538667pt;}
.ws2{word-spacing:-0.234666pt;}
.ws0{word-spacing:-0.170667pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-38.932141pt;}
._e{margin-left:-20.181292pt;}
._3{margin-left:-17.834626pt;}
._6{margin-left:-16.853333pt;}
._15{margin-left:-15.365358pt;}
._b{margin-left:-13.845302pt;}
._14{margin-left:-12.800000pt;}
._11{margin-left:-11.789094pt;}
._12{margin-left:-10.707210pt;}
._0{margin-left:-8.213315pt;}
._8{margin-left:-6.490273pt;}
._c{margin-left:-4.693323pt;}
._5{margin-left:-3.754658pt;}
._2{margin-left:-2.346661pt;}
._1{margin-left:-1.173331pt;}
._9{width:1.113592pt;}
._f{width:2.538667pt;}
._a{width:3.754653pt;}
._10{width:5.041068pt;}
._4{width:6.335986pt;}
._d{width:7.509317pt;}
._13{width:13.629094pt;}
.fs6{font-size:14.561375pt;}
.fs5{font-size:94.480000pt;}
.fs14{font-size:108.740267pt;}
.fs16{font-size:110.990400pt;}
.fs13{font-size:117.333333pt;}
.fs9{font-size:120.631467pt;}
.fs3{font-size:138.666667pt;}
.fs15{font-size:144.986667pt;}
.fs10{font-size:146.666667pt;}
.fsb{font-size:149.333333pt;}
.fsc{font-size:150.725867pt;}
.fsd{font-size:154.666667pt;}
.fse{font-size:160.000000pt;}
.fs17{font-size:163.110400pt;}
.fs8{font-size:165.464533pt;}
.fs7{font-size:165.754133pt;}
.fs4{font-size:170.666667pt;}
.fsf{font-size:176.153067pt;}
.fs12{font-size:202.666667pt;}
.fs1{font-size:213.333333pt;}
.fs0{font-size:234.666133pt;}
.fs18{font-size:253.725867pt;}
.fsa{font-size:255.999467pt;}
.fs11{font-size:266.666667pt;}
.fs2{font-size:490.940800pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.001467pt;}
.y35{bottom:0.992000pt;}
.y2e{bottom:0.992400pt;}
.y30{bottom:0.998800pt;}
.y33{bottom:1.000133pt;}
.y37{bottom:1.002800pt;}
.y2c{bottom:6.844533pt;}
.y2a{bottom:6.849333pt;}
.y28{bottom:6.854000pt;}
.yc1{bottom:7.421867pt;}
.yc3{bottom:7.422667pt;}
.ybf{bottom:7.422800pt;}
.yc8{bottom:7.714133pt;}
.yca{bottom:7.714533pt;}
.yba{bottom:7.917067pt;}
.y3d{bottom:8.746133pt;}
.yf{bottom:9.363467pt;}
.y17{bottom:9.366267pt;}
.y1b{bottom:9.464267pt;}
.yce{bottom:9.894533pt;}
.ycc{bottom:9.894933pt;}
.yc6{bottom:9.895067pt;}
.yd0{bottom:9.895600pt;}
.y89{bottom:10.008400pt;}
.y7c{bottom:10.009733pt;}
.y91{bottom:10.011067pt;}
.y99{bottom:10.188133pt;}
.y9b{bottom:10.188400pt;}
.y97{bottom:10.189333pt;}
.yaa{bottom:10.191333pt;}
.ya4{bottom:10.191467pt;}
.y43{bottom:10.192000pt;}
.y45{bottom:10.192133pt;}
.y47{bottom:10.192267pt;}
.y41{bottom:10.193067pt;}
.ybc{bottom:10.193467pt;}
.y93{bottom:10.193733pt;}
.y8b{bottom:10.195067pt;}
.y49{bottom:10.195200pt;}
.y4b{bottom:10.195333pt;}
.y4d{bottom:10.195467pt;}
.y50{bottom:10.195733pt;}
.y52{bottom:10.195867pt;}
.y54{bottom:10.196000pt;}
.y56{bottom:10.196133pt;}
.y7f{bottom:10.196400pt;}
.y9d{bottom:10.198133pt;}
.y64{bottom:10.280800pt;}
.y5a{bottom:10.281733pt;}
.y5e{bottom:10.285200pt;}
.y62{bottom:10.288800pt;}
.y5c{bottom:10.291200pt;}
.y60{bottom:10.292400pt;}
.y70{bottom:10.551600pt;}
.y72{bottom:10.551867pt;}
.y74{bottom:10.552000pt;}
.y6a{bottom:10.555733pt;}
.y6c{bottom:10.556000pt;}
.y6e{bottom:10.556133pt;}
.y66{bottom:10.556667pt;}
.y68{bottom:10.556800pt;}
.y58{bottom:10.708667pt;}
.y39{bottom:11.307333pt;}
.y7a{bottom:11.355467pt;}
.y76{bottom:11.365867pt;}
.y11{bottom:11.517067pt;}
.yd2{bottom:11.580933pt;}
.yd4{bottom:11.581467pt;}
.y78{bottom:12.512667pt;}
.yb7{bottom:13.832533pt;}
.yb4{bottom:13.833067pt;}
.y19{bottom:14.396133pt;}
.yd{bottom:14.401867pt;}
.y15{bottom:14.404800pt;}
.y9{bottom:15.144800pt;}
.y13{bottom:15.466667pt;}
.y23{bottom:15.836400pt;}
.y2{bottom:15.844533pt;}
.y21{bottom:16.009733pt;}
.y1d{bottom:16.316400pt;}
.yd6{bottom:17.634667pt;}
.yd8{bottom:17.634933pt;}
.y3f{bottom:18.178667pt;}
.yae{bottom:18.540533pt;}
.yb0{bottom:18.940533pt;}
.yb2{bottom:19.340533pt;}
.yb{bottom:34.118000pt;}
.y12{bottom:106.671333pt;}
.yb8{bottom:260.092000pt;}
.yb5{bottom:260.289333pt;}
.y1f{bottom:309.343067pt;}
.yb6{bottom:323.425333pt;}
.yb3{bottom:323.622667pt;}
.yac{bottom:480.004000pt;}
.ya8{bottom:487.693333pt;}
.yab{bottom:526.670667pt;}
.ya7{bottom:534.360000pt;}
.ya9{bottom:573.336000pt;}
.ya6{bottom:581.025333pt;}
.yc5{bottom:643.086667pt;}
.ya5{bottom:645.996000pt;}
.ya3{bottom:692.662667pt;}
.yc2{bottom:695.297333pt;}
.yc4{bottom:695.392000pt;}
.ybe{bottom:695.406667pt;}
.yc0{bottom:695.501333pt;}
.yc9{bottom:764.237333pt;}
.yc7{bottom:798.921333pt;}
.yd1{bottom:844.216000pt;}
.yd3{bottom:846.966667pt;}
.ycf{bottom:944.122667pt;}
.yd7{bottom:1013.912000pt;}
.ycd{bottom:1025.113333pt;}
.yd5{bottom:1093.201333pt;}
.ycb{bottom:1106.536000pt;}
.y95{bottom:1262.454667pt;}
.y94{bottom:1262.637333pt;}
.y92{bottom:1317.454667pt;}
.y90{bottom:1317.637333pt;}
.y8f{bottom:1372.453333pt;}
.y8e{bottom:1372.640000pt;}
.y8d{bottom:1427.453333pt;}
.y8c{bottom:1427.640000pt;}
.y8a{bottom:1482.453333pt;}
.y88{bottom:1482.640000pt;}
.y87{bottom:1537.453333pt;}
.y86{bottom:1537.640000pt;}
.y85{bottom:1592.453333pt;}
.y84{bottom:1592.640000pt;}
.y83{bottom:1647.453333pt;}
.y82{bottom:1647.640000pt;}
.y81{bottom:1702.453333pt;}
.y80{bottom:1702.640000pt;}
.y7e{bottom:1757.453333pt;}
.y7d{bottom:1757.640000pt;}
.y7b{bottom:1812.640000pt;}
.y79{bottom:1867.386667pt;}
.ya2{bottom:1891.826667pt;}
.ya1{bottom:1938.493333pt;}
.y73{bottom:1942.613333pt;}
.ya0{bottom:1985.160000pt;}
.y71{bottom:1989.400000pt;}
.y2b{bottom:2005.520000pt;}
.y9f{bottom:2031.826667pt;}
.y29{bottom:2035.040000pt;}
.y6f{bottom:2036.186667pt;}
.y27{bottom:2064.560000pt;}
.y9e{bottom:2078.493333pt;}
.y75{bottom:2092.946667pt;}
.y9c{bottom:2125.160000pt;}
.y6d{bottom:2159.826667pt;}
.y9a{bottom:2186.186667pt;}
.y6b{bottom:2206.613333pt;}
.y36{bottom:2211.173333pt;}
.y34{bottom:2220.480000pt;}
.y32{bottom:2230.120000pt;}
.y98{bottom:2231.360000pt;}
.y31{bottom:2239.800000pt;}
.y2f{bottom:2249.480000pt;}
.y69{bottom:2253.400000pt;}
.y2d{bottom:2259.093333pt;}
.y96{bottom:2276.533333pt;}
.y67{bottom:2300.186667pt;}
.y65{bottom:2346.973333pt;}
.y63{bottom:2396.240000pt;}
.y5d{bottom:2396.386667pt;}
.y77{bottom:2403.680000pt;}
.y5b{bottom:2487.573333pt;}
.y61{bottom:2491.680000pt;}
.ybd{bottom:2515.413333pt;}
.ybb{bottom:2562.080000pt;}
.y5f{bottom:2587.413333pt;}
.y59{bottom:2587.760000pt;}
.y55{bottom:2616.186667pt;}
.y53{bottom:2661.360000pt;}
.y57{bottom:2680.986667pt;}
.y51{bottom:2706.533333pt;}
.y4f{bottom:2751.706667pt;}
.y4e{bottom:2796.880000pt;}
.y4c{bottom:2851.213333pt;}
.yb1{bottom:2857.360000pt;}
.y4a{bottom:2896.386667pt;}
.yaf{bottom:2941.093333pt;}
.yad{bottom:2941.493333pt;}
.y48{bottom:2941.560000pt;}
.y46{bottom:2950.573333pt;}
.y44{bottom:2995.746667pt;}
.y42{bottom:3040.920000pt;}
.y40{bottom:3086.093333pt;}
.y7{bottom:3163.746667pt;}
.y3c{bottom:3236.386667pt;}
.y6{bottom:3237.080000pt;}
.y3a{bottom:3291.160000pt;}
.y5{bottom:3310.413333pt;}
.y4{bottom:3383.746667pt;}
.y3{bottom:3457.080000pt;}
.y1{bottom:3530.413333pt;}
.y1e{bottom:3659.920000pt;}
.y26{bottom:3733.253333pt;}
.y25{bottom:3733.426667pt;}
.y24{bottom:3806.760000pt;}
.y22{bottom:3880.093333pt;}
.y38{bottom:3888.440000pt;}
.y1c{bottom:3952.946667pt;}
.y20{bottom:3953.253333pt;}
.y3e{bottom:3963.933333pt;}
.y8{bottom:4101.266667pt;}
.y10{bottom:4144.826667pt;}
.yb9{bottom:4148.426667pt;}
.y18{bottom:4210.266667pt;}
.yc{bottom:4212.186667pt;}
.y14{bottom:4212.453333pt;}
.y1a{bottom:4258.133333pt;}
.ye{bottom:4260.160000pt;}
.y16{bottom:4260.426667pt;}
.ya{bottom:4352.520000pt;}
.h1b{height:4.413333pt;}
.h1a{height:4.746667pt;}
.h19{height:4.760000pt;}
.h17{height:5.093333pt;}
.h18{height:10.775417pt;}
.h16{height:26.973333pt;}
.h14{height:26.986667pt;}
.h4b{height:30.596000pt;}
.h49{height:30.597333pt;}
.h4e{height:31.368000pt;}
.h50{height:31.369333pt;}
.h47{height:32.920000pt;}
.h20{height:34.453333pt;}
.h8{height:38.920000pt;}
.he{height:39.013333pt;}
.h52{height:40.793333pt;}
.h4c{height:40.794667pt;}
.h34{height:41.266667pt;}
.h3a{height:41.268000pt;}
.h38{height:41.269333pt;}
.h3b{height:41.450667pt;}
.h39{height:41.452000pt;}
.h36{height:41.453333pt;}
.h24{height:42.013333pt;}
.h3d{height:42.017333pt;}
.h3e{height:42.018667pt;}
.h26{height:42.026667pt;}
.h29{height:42.400000pt;}
.h2b{height:42.413333pt;}
.h27{height:42.826667pt;}
.h2d{height:43.520000pt;}
.h33{height:45.453333pt;}
.h2f{height:45.466667pt;}
.h53{height:46.344000pt;}
.h1c{height:46.626667pt;}
.ha{height:47.893333pt;}
.h31{height:50.053333pt;}
.h45{height:57.025333pt;}
.h7{height:59.866667pt;}
.h3{height:60.613333pt;}
.hc{height:60.932667pt;}
.h1{height:65.853333pt;}
.h12{height:66.026667pt;}
.h10{height:66.333333pt;}
.h15{height:71.521360pt;}
.h55{height:71.708000pt;}
.h22{height:72.733333pt;}
.h3f{height:75.373333pt;}
.h41{height:75.773333pt;}
.h43{height:76.173333pt;}
.h4a{height:81.555200pt;}
.h51{height:81.688934pt;}
.h4f{height:82.132896pt;}
.h48{height:86.826667pt;}
.h21{height:91.318020pt;}
.h9{height:102.613333pt;}
.hf{height:104.000000pt;}
.h4d{height:107.290133pt;}
.h37{height:108.533333pt;}
.h35{height:110.000000pt;}
.h25{height:110.506667pt;}
.h28{height:110.934238pt;}
.h2c{height:111.537141pt;}
.h3c{height:112.000000pt;}
.h2a{height:113.044400pt;}
.h2e{height:116.000000pt;}
.h54{height:116.787046pt;}
.h30{height:117.760000pt;}
.h1f{height:124.098400pt;}
.h1d{height:124.315600pt;}
.hb{height:125.610667pt;}
.h32{height:129.648657pt;}
.h5{height:138.746667pt;}
.h46{height:152.000000pt;}
.h4{height:157.013333pt;}
.hd{height:161.493333pt;}
.h13{height:172.714274pt;}
.h2{height:173.652939pt;}
.h56{height:187.757141pt;}
.h23{height:188.415607pt;}
.h42{height:196.266667pt;}
.h40{height:197.333333pt;}
.h44{height:201.866667pt;}
.h11{height:359.360000pt;}
.h6{height:363.296192pt;}
.h1e{height:476.333333pt;}
.h0{height:4608.000000pt;}
.w1e{width:2.800000pt;}
.w1d{width:4.960000pt;}
.w1c{width:7.120000pt;}
.w27{width:9.960000pt;}
.w67{width:9.968000pt;}
.w82{width:16.306667pt;}
.w81{width:16.320000pt;}
.w95{width:16.560000pt;}
.w90{width:17.373333pt;}
.w93{width:17.386667pt;}
.w77{width:18.800000pt;}
.wf{width:20.798667pt;}
.wa{width:20.800000pt;}
.w8b{width:24.040000pt;}
.w92{width:24.226667pt;}
.w8c{width:24.933333pt;}
.w8e{width:31.973333pt;}
.w98{width:34.693333pt;}
.w8f{width:34.760000pt;}
.w91{width:37.546667pt;}
.w8d{width:37.800000pt;}
.w80{width:39.066667pt;}
.w4c{width:39.160000pt;}
.w96{width:39.320000pt;}
.w97{width:39.333333pt;}
.w8a{width:40.906667pt;}
.w94{width:43.453333pt;}
.w20{width:46.560000pt;}
.w41{width:84.866667pt;}
.w49{width:85.973333pt;}
.w4e{width:85.986667pt;}
.w51{width:107.946667pt;}
.w55{width:109.240000pt;}
.w60{width:115.613333pt;}
.w1b{width:118.333333pt;}
.w5b{width:120.880000pt;}
.w5d{width:123.866667pt;}
.w53{width:126.826667pt;}
.w4a{width:126.946667pt;}
.w4d{width:131.080000pt;}
.w48{width:136.213333pt;}
.w5e{width:140.400000pt;}
.w85{width:144.293333pt;}
.w89{width:145.080000pt;}
.w75{width:150.933333pt;}
.w59{width:155.680000pt;}
.w62{width:160.746667pt;}
.w58{width:163.800000pt;}
.w63{width:199.386667pt;}
.w19{width:202.413333pt;}
.w4f{width:215.080000pt;}
.w13{width:234.481333pt;}
.w21{width:242.560000pt;}
.w1a{width:283.720000pt;}
.w47{width:298.986667pt;}
.w3{width:309.989333pt;}
.w88{width:314.480000pt;}
.w43{width:316.986667pt;}
.w86{width:321.893333pt;}
.w87{width:322.626667pt;}
.w24{width:328.186667pt;}
.w83{width:330.453333pt;}
.w29{width:333.866667pt;}
.w84{width:337.786667pt;}
.w32{width:339.232000pt;}
.wd{width:354.613333pt;}
.w4b{width:364.093333pt;}
.w33{width:372.785333pt;}
.w45{width:377.306667pt;}
.w6f{width:392.406667pt;}
.w34{width:395.426667pt;}
.w9{width:401.704000pt;}
.w44{width:401.893333pt;}
.w7{width:414.448000pt;}
.w37{width:415.177333pt;}
.w17{width:415.294667pt;}
.w61{width:441.426667pt;}
.we{width:443.674667pt;}
.w11{width:444.510667pt;}
.w18{width:463.520000pt;}
.w52{width:480.026667pt;}
.wb{width:486.394667pt;}
.w38{width:517.553333pt;}
.w39{width:518.416000pt;}
.w50{width:562.093333pt;}
.w10{width:579.733333pt;}
.w1f{width:613.160000pt;}
.w3c{width:616.493333pt;}
.w56{width:620.533333pt;}
.w7f{width:636.973333pt;}
.w3e{width:646.266667pt;}
.w26{width:673.626667pt;}
.w2b{width:677.666667pt;}
.w66{width:694.056000pt;}
.w54{width:714.560000pt;}
.w35{width:728.829333pt;}
.w3d{width:734.813333pt;}
.w79{width:739.626667pt;}
.w5c{width:741.946667pt;}
.w7b{width:762.929333pt;}
.w2c{width:768.013333pt;}
.w5{width:772.273333pt;}
.w42{width:786.586667pt;}
.w36{width:790.890667pt;}
.w7a{width:810.813333pt;}
.w6d{width:837.450667pt;}
.w5a{width:858.653333pt;}
.w99{width:890.120000pt;}
.w3f{width:917.426667pt;}
.w40{width:929.266667pt;}
.w4{width:929.554667pt;}
.w3b{width:940.786667pt;}
.w16{width:953.788000pt;}
.w3a{width:955.666667pt;}
.w76{width:966.377333pt;}
.w2a{width:1072.906667pt;}
.w6{width:1072.932000pt;}
.w7c{width:1091.252000pt;}
.w25{width:1111.026667pt;}
.w5f{width:1121.506667pt;}
.w57{width:1125.506667pt;}
.w78{width:1126.644000pt;}
.w14{width:1180.709333pt;}
.w1{width:1185.925333pt;}
.wc{width:1203.342667pt;}
.w31{width:1203.906667pt;}
.w7d{width:1261.862667pt;}
.w15{width:1264.296000pt;}
.w6c{width:1321.988000pt;}
.w6e{width:1332.108000pt;}
.w2{width:1345.192000pt;}
.w68{width:1355.374667pt;}
.w73{width:1359.066667pt;}
.w69{width:1363.281333pt;}
.w12{width:1369.082667pt;}
.w74{width:1389.146667pt;}
.w2d{width:1398.453333pt;}
.w2f{width:1407.253333pt;}
.w72{width:1412.894667pt;}
.w70{width:1426.601333pt;}
.w71{width:1442.534667pt;}
.w22{width:1447.333333pt;}
.w6a{width:1452.694667pt;}
.w30{width:1454.853333pt;}
.w65{width:1461.620000pt;}
.w28{width:1465.426667pt;}
.w64{width:1475.286667pt;}
.w6b{width:1477.108000pt;}
.w7e{width:1479.080000pt;}
.w23{width:1482.933333pt;}
.w2e{width:1493.320000pt;}
.w46{width:1498.706667pt;}
.w8{width:3063.061333pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.115200pt;}
.x1b{left:35.267867pt;}
.x3{left:195.605333pt;}
.x42{left:198.233333pt;}
.x25{left:205.873333pt;}
.x26{left:206.813333pt;}
.x6{left:218.365333pt;}
.xa{left:221.256000pt;}
.x1{left:223.261333pt;}
.x24{left:321.261333pt;}
.x2{left:343.617333pt;}
.x48{left:387.734667pt;}
.xe{left:444.510400pt;}
.x45{left:459.102667pt;}
.x12{left:463.519467pt;}
.xb{left:657.146667pt;}
.x4{left:836.877333pt;}
.x27{left:843.109333pt;}
.x43{left:892.289333pt;}
.x49{left:1001.204000pt;}
.x7{left:1125.470667pt;}
.x29{left:1132.073333pt;}
.x11{left:1176.345333pt;}
.x28{left:1236.049333pt;}
.x5{left:1251.325333pt;}
.xf{left:1296.372000pt;}
.x10{left:1308.300800pt;}
.xc{left:1421.066667pt;}
.x46{left:1425.480000pt;}
.x4c{left:1755.253333pt;}
.x2a{left:1765.493333pt;}
.x1e{left:1767.973333pt;}
.x20{left:1769.093333pt;}
.x2c{left:1770.813333pt;}
.x1d{left:1779.226667pt;}
.x44{left:1787.760000pt;}
.x56{left:1793.066667pt;}
.x1a{left:1808.346667pt;}
.x31{left:1809.973333pt;}
.x57{left:1833.666667pt;}
.x2b{left:1853.413333pt;}
.x58{left:1857.693333pt;}
.x59{left:1882.626667pt;}
.x35{left:1918.000000pt;}
.x37{left:1919.213333pt;}
.x5a{left:1920.426667pt;}
.x3f{left:1925.586667pt;}
.x3c{left:1933.840000pt;}
.x4a{left:1935.653333pt;}
.x36{left:1936.800000pt;}
.x32{left:1940.986667pt;}
.x5b{left:1952.533333pt;}
.x38{left:1973.840000pt;}
.x5c{left:1976.573333pt;}
.xd{left:2000.800000pt;}
.x5d{left:2014.373333pt;}
.x3d{left:2019.813333pt;}
.x33{left:2026.973333pt;}
.x5e{left:2038.800000pt;}
.x39{left:2059.826667pt;}
.x2d{left:2069.800000pt;}
.x5f{left:2073.560000pt;}
.x54{left:2074.573333pt;}
.x60{left:2090.933333pt;}
.x21{left:2097.280000pt;}
.x22{left:2102.893333pt;}
.x47{left:2124.946667pt;}
.x61{left:2128.173333pt;}
.x4b{left:2138.160000pt;}
.x3b{left:2147.853333pt;}
.x62{left:2151.506667pt;}
.x3e{left:2160.213333pt;}
.x8{left:2167.186667pt;}
.x63{left:2168.893333pt;}
.x2e{left:2206.013333pt;}
.x64{left:2210.120000pt;}
.x3a{left:2215.506667pt;}
.x34{left:2242.053333pt;}
.x65{left:2247.666667pt;}
.x19{left:2259.266667pt;}
.x66{left:2264.226667pt;}
.x67{left:2280.786667pt;}
.x2f{left:2291.986667pt;}
.x4d{left:2318.320000pt;}
.x68{left:2320.106667pt;}
.x1c{left:2324.773333pt;}
.x69{left:2359.440000pt;}
.x50{left:2361.066667pt;}
.x40{left:2367.013333pt;}
.x6a{left:2396.986667pt;}
.x30{left:2418.933333pt;}
.x6b{left:2421.600000pt;}
.x23{left:2446.693333pt;}
.x6c{left:2460.920000pt;}
.x6d{left:2484.960000pt;}
.x6e{left:2501.400000pt;}
.x9{left:2521.800000pt;}
.x41{left:2527.133333pt;}
.x6f{left:2535.386667pt;}
.x51{left:2549.106667pt;}
.x70{left:2570.146667pt;}
.x52{left:2645.853333pt;}
.x14{left:2904.960000pt;}
.x53{left:2933.453333pt;}
.x13{left:2945.613333pt;}
.x15{left:2987.653333pt;}
.x55{left:3022.626667pt;}
.x16{left:3062.786667pt;}
.x17{left:3064.933333pt;}
.x18{left:3067.093333pt;}
.x4e{left:3075.506667pt;}
.x4f{left:3278.426667pt;}
}




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