
    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_29922784c61c6fd0b2659c2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bd0b49ae822b9845aaa879d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.685547;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_afe690d72c598acef02a6db5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c0f793a53d77fa217d8aff45.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.715332;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_a9f52c15b20fb4e1a2fd3406.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953125;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_eb36a56d21159dfdc4688266.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;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_5b4a37f711c74700463b6592.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4d2ccda0c245ef3089c30a43.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_88322788ff2955351e2e66c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_04d898722bf06aa62cd227e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_83a7219e57d2ae759dc70959.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f6376d9ca2b94bb6924a1ea2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_24d309034f3ceac34cd50bb2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-74.160000px;}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls20{letter-spacing:-1.512000px;}
.ls17{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.432000px;}
.ls23{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.018720px;}
.ls24{letter-spacing:0.023040px;}
.lsa{letter-spacing:0.028080px;}
.ls2e{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.092880px;}
.lsb{letter-spacing:0.099360px;}
.ls28{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181440px;}
.lsd{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.227682px;}
.ls34{letter-spacing:0.246000px;}
.ls35{letter-spacing:0.246240px;}
.ls0{letter-spacing:0.249120px;}
.ls2d{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.354240px;}
.ls1b{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls22{letter-spacing:1.584000px;}
.ls2b{letter-spacing:1.620000px;}
.lse{letter-spacing:2.880000px;}
.ls29{letter-spacing:3.060000px;}
.ls11{letter-spacing:5.760000px;}
.lsf{letter-spacing:9.360000px;}
.ls2c{letter-spacing:12.420000px;}
.ls33{letter-spacing:13.626720px;}
.ls1d{letter-spacing:15.840000px;}
.ls1f{letter-spacing:16.704000px;}
.ls2f{letter-spacing:18.864000px;}
.ls25{letter-spacing:21.720000px;}
.ls12{letter-spacing:22.320000px;}
.ls31{letter-spacing:22.440000px;}
.lsc{letter-spacing:23.160000px;}
.ls32{letter-spacing:31.800000px;}
.ls4{letter-spacing:35.400000px;}
.ls37{letter-spacing:2674.476000px;}
.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;}
}
.ws1{word-spacing:-23.958720px;}
.ws14{word-spacing:-21.600000px;}
.ws3{word-spacing:-21.060000px;}
.ws1b{word-spacing:-20.718600px;}
.ws16{word-spacing:-19.584000px;}
.ws7{word-spacing:-19.201158px;}
.ws8{word-spacing:-18.973476px;}
.ws6{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.111600px;}
.ws9{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws1d{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.568000px;}
.ws10{word-spacing:-17.064000px;}
.ws15{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.162560px;}
.ws17{word-spacing:-16.055760px;}
.ws1c{word-spacing:-15.186000px;}
.ws2{word-spacing:-14.940000px;}
.ws19{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.wse{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.392000px;}
.ws12{word-spacing:-12.060000px;}
.wsc{word-spacing:0.000000px;}
._24{margin-left:-2091.116160px;}
._3{margin-left:-918.697237px;}
._25{margin-left:-92.159520px;}
._2a{margin-left:-89.841120px;}
._0{margin-left:-61.306560px;}
._21{margin-left:-58.988160px;}
._28{margin-left:-6.360000px;}
._29{margin-left:-4.716960px;}
._20{margin-left:-3.372000px;}
._2{margin-left:-1.523520px;}
._1{width:1.266240px;}
._c{width:2.525760px;}
._f{width:3.665760px;}
._7{width:5.400000px;}
._8{width:6.490560px;}
._b{width:8.074080px;}
._14{width:9.185760px;}
._15{width:10.560000px;}
._1c{width:11.584800px;}
._5{width:12.600000px;}
._6{width:13.752000px;}
._1b{width:14.976000px;}
._d{width:15.984000px;}
._1e{width:16.991040px;}
._1f{width:18.534720px;}
._a{width:19.800000px;}
._9{width:21.035520px;}
._e{width:22.157280px;}
._4{width:23.472000px;}
._1d{width:24.642720px;}
._10{width:25.920000px;}
._11{width:27.017760px;}
._12{width:28.206240px;}
._19{width:29.304000px;}
._18{width:30.443040px;}
._22{width:32.616000px;}
._23{width:33.768000px;}
._27{width:35.044800px;}
._26{width:36.072000px;}
._13{width:40.896000px;}
._16{width:42.336000px;}
._17{width:43.385280px;}
._1a{width:53.064000px;}
.fc1{color:rgb(99,36,35);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:56.920429px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.600000px;}
.y2{bottom:25.740000px;}
.y120{bottom:114.336000px;}
.y11b{bottom:115.056000px;}
.y60{bottom:115.596000px;}
.y14e{bottom:116.496000px;}
.yab{bottom:120.456000px;}
.y31{bottom:124.416000px;}
.yc6{bottom:125.316000px;}
.y82{bottom:128.736000px;}
.y114{bottom:132.696000px;}
.y11f{bottom:135.036000px;}
.y11a{bottom:135.756000px;}
.y5f{bottom:136.296000px;}
.y14d{bottom:137.196000px;}
.yaa{bottom:141.156000px;}
.y176{bottom:141.336000px;}
.y30{bottom:145.116000px;}
.yc5{bottom:146.016000px;}
.y81{bottom:149.436000px;}
.y113{bottom:153.390000px;}
.yeb{bottom:155.730000px;}
.y119{bottom:156.450000px;}
.y5e{bottom:156.990000px;}
.y14c{bottom:157.890000px;}
.y175{bottom:162.030000px;}
.ya9{bottom:166.350000px;}
.yc4{bottom:166.710000px;}
.y80{bottom:170.130000px;}
.y2f{bottom:173.550000px;}
.y112{bottom:174.090000px;}
.yfa{bottom:175.170000px;}
.yea{bottom:176.430000px;}
.y118{bottom:177.150000px;}
.y5d{bottom:177.690000px;}
.y14b{bottom:177.870000px;}
.y174{bottom:182.730000px;}
.yc3{bottom:187.410000px;}
.y7f{bottom:190.830000px;}
.y111{bottom:194.790000px;}
.y14a{bottom:194.970000px;}
.yf9{bottom:195.870000px;}
.ye9{bottom:197.130000px;}
.ya8{bottom:197.850000px;}
.y5c{bottom:198.390000px;}
.y173{bottom:203.430000px;}
.y2e{bottom:204.690000px;}
.yc2{bottom:208.290000px;}
.y7e{bottom:211.350000px;}
.y149{bottom:215.130000px;}
.y110{bottom:215.490000px;}
.yf8{bottom:216.570000px;}
.ye8{bottom:217.830000px;}
.ya7{bottom:218.550000px;}
.y5b{bottom:219.090000px;}
.y172{bottom:224.130000px;}
.y2d{bottom:230.790000px;}
.y7d{bottom:232.050000px;}
.yc1{bottom:232.230000px;}
.y10f{bottom:236.190000px;}
.yf7{bottom:237.270000px;}
.ye7{bottom:238.530000px;}
.ya6{bottom:239.250000px;}
.y5a{bottom:239.790000px;}
.y171{bottom:244.830000px;}
.y148{bottom:250.230000px;}
.y2c{bottom:251.670000px;}
.y7c{bottom:252.750000px;}
.yc0{bottom:252.930000px;}
.y10e{bottom:256.890000px;}
.yf6{bottom:257.970000px;}
.ye6{bottom:259.230000px;}
.ya5{bottom:259.950000px;}
.y59{bottom:260.490000px;}
.y170{bottom:265.530000px;}
.y147{bottom:270.930000px;}
.y7b{bottom:273.450000px;}
.ybf{bottom:273.630000px;}
.y2b{bottom:275.610000px;}
.y10d{bottom:277.590000px;}
.yf5{bottom:278.670000px;}
.ye5{bottom:279.930000px;}
.ya4{bottom:280.650000px;}
.y58{bottom:281.190000px;}
.y16f{bottom:286.230000px;}
.y146{bottom:291.630000px;}
.y7a{bottom:294.150000px;}
.ybe{bottom:294.330000px;}
.y2a{bottom:296.310000px;}
.y10c{bottom:298.290000px;}
.yf4{bottom:299.370000px;}
.ye4{bottom:300.630000px;}
.ya3{bottom:301.350000px;}
.y57{bottom:301.890000px;}
.y16e{bottom:306.930000px;}
.y145{bottom:312.330000px;}
.y79{bottom:314.850000px;}
.ybd{bottom:315.030000px;}
.y29{bottom:317.010000px;}
.y10b{bottom:318.990000px;}
.yf3{bottom:320.070000px;}
.ye3{bottom:321.330000px;}
.ya2{bottom:322.050000px;}
.y56{bottom:322.590000px;}
.y16d{bottom:327.630000px;}
.y144{bottom:333.030000px;}
.y78{bottom:335.550000px;}
.ybc{bottom:335.730000px;}
.y28{bottom:337.710000px;}
.y10a{bottom:339.690000px;}
.yf2{bottom:340.770000px;}
.ye2{bottom:342.030000px;}
.y11e{bottom:342.210000px;}
.ya1{bottom:342.750000px;}
.y55{bottom:343.290000px;}
.y16c{bottom:348.330000px;}
.y143{bottom:353.775000px;}
.yd6{bottom:355.755000px;}
.y77{bottom:356.295000px;}
.ybb{bottom:356.475000px;}
.y27{bottom:358.455000px;}
.y109{bottom:360.435000px;}
.yf1{bottom:361.515000px;}
.ye1{bottom:362.415000px;}
.ya0{bottom:363.135000px;}
.y117{bottom:363.495000px;}
.y54{bottom:364.035000px;}
.y11d{bottom:366.195000px;}
.y16b{bottom:369.075000px;}
.y142{bottom:374.475000px;}
.yd5{bottom:376.455000px;}
.y76{bottom:376.995000px;}
.yba{bottom:377.175000px;}
.y26{bottom:379.155000px;}
.y108{bottom:381.135000px;}
.ye0{bottom:382.215000px;}
.y9f{bottom:384.195000px;}
.y53{bottom:384.735000px;}
.y16a{bottom:389.595000px;}
.ydf{bottom:394.455000px;}
.y141{bottom:395.175000px;}
.yd4{bottom:397.155000px;}
.y75{bottom:397.695000px;}
.yb9{bottom:397.875000px;}
.y25{bottom:399.855000px;}
.y107{bottom:401.835000px;}
.yf0{bottom:402.375000px;}
.y9e{bottom:404.895000px;}
.y52{bottom:405.075000px;}
.y169{bottom:410.295000px;}
.y140{bottom:415.695000px;}
.yd3{bottom:417.855000px;}
.y74{bottom:418.395000px;}
.yb8{bottom:418.575000px;}
.y24{bottom:420.555000px;}
.yef{bottom:422.355000px;}
.y106{bottom:422.535000px;}
.y9d{bottom:425.595000px;}
.y51{bottom:426.315000px;}
.y168{bottom:430.995000px;}
.y13f{bottom:436.395000px;}
.yee{bottom:437.835000px;}
.yd2{bottom:438.555000px;}
.y73{bottom:439.095000px;}
.yb7{bottom:439.275000px;}
.y23{bottom:441.255000px;}
.y105{bottom:443.235000px;}
.y9c{bottom:446.295000px;}
.y50{bottom:450.255000px;}
.y167{bottom:451.695000px;}
.yed{bottom:453.315000px;}
.y13e{bottom:457.095000px;}
.yd1{bottom:459.255000px;}
.y72{bottom:459.795000px;}
.yb6{bottom:459.975000px;}
.y22{bottom:461.955000px;}
.y104{bottom:463.575000px;}
.yec{bottom:465.555000px;}
.y9b{bottom:466.995000px;}
.y4f{bottom:470.955000px;}
.y166{bottom:472.395000px;}
.y13d{bottom:477.795000px;}
.yd0{bottom:479.955000px;}
.y71{bottom:480.495000px;}
.yb5{bottom:480.675000px;}
.y21{bottom:482.655000px;}
.y103{bottom:484.815000px;}
.y9a{bottom:487.695000px;}
.y165{bottom:493.095000px;}
.y13c{bottom:498.495000px;}
.y4e{bottom:499.035000px;}
.ycf{bottom:500.655000px;}
.yb4{bottom:501.015000px;}
.y70{bottom:501.195000px;}
.y20{bottom:503.355000px;}
.y102{bottom:507.675000px;}
.y99{bottom:508.395000px;}
.y164{bottom:513.795000px;}
.y13b{bottom:519.195000px;}
.y4d{bottom:519.735000px;}
.yce{bottom:521.355000px;}
.y6f{bottom:521.895000px;}
.yb3{bottom:522.075000px;}
.y101{bottom:523.155000px;}
.y1f{bottom:524.055000px;}
.y98{bottom:529.095000px;}
.y163{bottom:534.495000px;}
.y100{bottom:539.895000px;}
.y4c{bottom:540.435000px;}
.ycd{bottom:541.695000px;}
.y6e{bottom:542.595000px;}
.yb2{bottom:542.775000px;}
.y1e{bottom:544.755000px;}
.y97{bottom:549.795000px;}
.y162{bottom:555.195000px;}
.yff{bottom:560.595000px;}
.y4b{bottom:561.135000px;}
.ycc{bottom:562.395000px;}
.y6d{bottom:563.295000px;}
.yb1{bottom:563.475000px;}
.y1d{bottom:565.455000px;}
.y96{bottom:570.495000px;}
.y161{bottom:575.895000px;}
.y13a{bottom:581.295000px;}
.y4a{bottom:581.835000px;}
.ycb{bottom:582.195000px;}
.y6c{bottom:583.995000px;}
.yb0{bottom:584.175000px;}
.y1c{bottom:586.155000px;}
.y95{bottom:591.195000px;}
.y160{bottom:596.595000px;}
.yca{bottom:597.675000px;}
.y139{bottom:601.995000px;}
.y49{bottom:602.535000px;}
.yaf{bottom:603.615000px;}
.y6b{bottom:604.695000px;}
.y1b{bottom:606.855000px;}
.y94{bottom:611.925000px;}
.yc9{bottom:613.185000px;}
.y15f{bottom:617.325000px;}
.yae{bottom:619.125000px;}
.y138{bottom:622.545000px;}
.y48{bottom:623.265000px;}
.y6a{bottom:625.425000px;}
.y1a{bottom:627.585000px;}
.yad{bottom:631.365000px;}
.y93{bottom:632.625000px;}
.y15e{bottom:638.025000px;}
.yde{bottom:642.525000px;}
.y137{bottom:643.245000px;}
.y47{bottom:643.965000px;}
.y69{bottom:646.125000px;}
.y19{bottom:648.285000px;}
.y92{bottom:653.325000px;}
.y15d{bottom:658.725000px;}
.ydd{bottom:663.225000px;}
.y136{bottom:663.945000px;}
.y46{bottom:664.665000px;}
.y68{bottom:666.825000px;}
.y18{bottom:668.985000px;}
.y11c{bottom:673.665000px;}
.y91{bottom:674.025000px;}
.y15c{bottom:679.425000px;}
.ydc{bottom:683.925000px;}
.y135{bottom:684.645000px;}
.y45{bottom:685.365000px;}
.y67{bottom:687.525000px;}
.y17{bottom:689.685000px;}
.y90{bottom:694.725000px;}
.y15b{bottom:700.125000px;}
.ydb{bottom:704.625000px;}
.y134{bottom:705.345000px;}
.y44{bottom:706.065000px;}
.y66{bottom:707.865000px;}
.y16{bottom:710.385000px;}
.y8f{bottom:715.425000px;}
.y15a{bottom:720.825000px;}
.yda{bottom:725.325000px;}
.y133{bottom:726.045000px;}
.y65{bottom:727.845000px;}
.y15{bottom:731.085000px;}
.y8e{bottom:736.125000px;}
.y64{bottom:740.085000px;}
.y159{bottom:741.525000px;}
.y43{bottom:741.885000px;}
.yd9{bottom:744.945000px;}
.y132{bottom:746.745000px;}
.y14{bottom:751.785000px;}
.y8d{bottom:756.825000px;}
.yd8{bottom:760.425000px;}
.y158{bottom:762.225000px;}
.y42{bottom:762.585000px;}
.y131{bottom:767.445000px;}
.y13{bottom:772.485000px;}
.yfe{bottom:773.565000px;}
.yd7{bottom:775.905000px;}
.y8c{bottom:777.165000px;}
.y116{bottom:777.525000px;}
.y157{bottom:782.925000px;}
.y41{bottom:783.285000px;}
.y130{bottom:788.145000px;}
.y12{bottom:793.185000px;}
.yfd{bottom:793.365000px;}
.y8b{bottom:797.865000px;}
.y115{bottom:798.225000px;}
.y156{bottom:803.625000px;}
.y40{bottom:803.985000px;}
.y12f{bottom:808.845000px;}
.yfc{bottom:809.025000px;}
.y11{bottom:813.885000px;}
.y8a{bottom:818.925000px;}
.yfb{bottom:821.265000px;}
.y155{bottom:824.325000px;}
.y3f{bottom:824.685000px;}
.y12e{bottom:829.365000px;}
.y10{bottom:834.585000px;}
.y89{bottom:839.625000px;}
.y154{bottom:845.025000px;}
.y3e{bottom:845.385000px;}
.y12d{bottom:850.065000px;}
.yf{bottom:855.465000px;}
.yac{bottom:857.805000px;}
.y88{bottom:860.325000px;}
.y153{bottom:865.725000px;}
.y3d{bottom:866.085000px;}
.y12c{bottom:870.765000px;}
.y87{bottom:881.070000px;}
.ye{bottom:882.510000px;}
.y152{bottom:886.470000px;}
.y3c{bottom:886.830000px;}
.y12b{bottom:891.510000px;}
.yd{bottom:900.870000px;}
.y86{bottom:901.770000px;}
.y151{bottom:907.170000px;}
.y3b{bottom:907.530000px;}
.y12a{bottom:912.210000px;}
.yc{bottom:918.150000px;}
.y85{bottom:922.470000px;}
.y150{bottom:927.870000px;}
.y3a{bottom:928.230000px;}
.y129{bottom:932.910000px;}
.yb{bottom:935.430000px;}
.y84{bottom:943.170000px;}
.y39{bottom:948.930000px;}
.ya{bottom:952.710000px;}
.y128{bottom:953.610000px;}
.y14f{bottom:962.250000px;}
.y83{bottom:963.870000px;}
.y38{bottom:969.630000px;}
.y9{bottom:970.170000px;}
.y127{bottom:974.310000px;}
.y177{bottom:981.690000px;}
.y63{bottom:984.570000px;}
.y37{bottom:990.150000px;}
.y126{bottom:995.010000px;}
.y8{bottom:996.810000px;}
.y62{bottom:1005.270000px;}
.y7{bottom:1008.330000px;}
.y125{bottom:1015.710000px;}
.y36{bottom:1025.970000px;}
.y124{bottom:1036.230000px;}
.y6{bottom:1038.030000px;}
.y61{bottom:1046.310000px;}
.y35{bottom:1046.670000px;}
.y123{bottom:1056.930000px;}
.yc8{bottom:1067.010000px;}
.y34{bottom:1067.370000px;}
.y5{bottom:1068.090000px;}
.y122{bottom:1077.990000px;}
.y33{bottom:1088.070000px;}
.y4{bottom:1095.810000px;}
.y121{bottom:1102.470000px;}
.y32{bottom:1108.770000px;}
.yc7{bottom:1129.470000px;}
.y1{bottom:1249.020000px;}
.h7{height:34.770938px;}
.hb{height:39.830273px;}
.h8{height:41.984375px;}
.ha{height:46.536897px;}
.h17{height:50.027344px;}
.h18{height:52.998047px;}
.h15{height:54.421875px;}
.h1a{height:55.503491px;}
.h11{height:56.146289px;}
.h19{height:58.505231px;}
.h9{height:58.621992px;}
.h2{height:58.651172px;}
.h1c{height:61.423863px;}
.he{height:62.516122px;}
.h5{height:63.824414px;}
.h12{height:63.998425px;}
.h3{height:65.010937px;}
.h13{height:70.628906px;}
.hd{height:70.664062px;}
.h1b{height:72.562500px;}
.hf{height:74.004654px;}
.h16{height:79.006741px;}
.h6{height:81.736875px;}
.h14{height:82.676953px;}
.h10{height:84.898125px;}
.hc{height:87.695156px;}
.h4{height:96.508125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.416000px;}
.x7{left:109.116000px;}
.x39{left:111.096000px;}
.x35{left:113.976000px;}
.x1c{left:116.496000px;}
.x2e{left:119.016000px;}
.x2f{left:120.456000px;}
.x1d{left:122.436000px;}
.x25{left:124.596000px;}
.x1b{left:133.416000px;}
.x20{left:138.636000px;}
.x33{left:139.716000px;}
.x13{left:142.776000px;}
.x19{left:148.716000px;}
.x42{left:153.030000px;}
.x44{left:160.410000px;}
.x4{left:163.830000px;}
.x2b{left:166.530000px;}
.x43{left:174.990000px;}
.x40{left:180.750000px;}
.x14{left:185.070000px;}
.x3a{left:188.490000px;}
.x41{left:223.230000px;}
.x26{left:224.850000px;}
.x1f{left:237.630000px;}
.x8{left:260.715000px;}
.x30{left:262.875000px;}
.x15{left:281.235000px;}
.x3e{left:287.355000px;}
.x16{left:323.535000px;}
.x3f{left:329.655000px;}
.x28{left:338.835000px;}
.x21{left:351.255000px;}
.xb{left:363.675000px;}
.xa{left:372.135000px;}
.x36{left:378.615000px;}
.x6{left:399.495000px;}
.x37{left:401.655000px;}
.x38{left:406.155000px;}
.x34{left:409.575000px;}
.x5{left:434.625000px;}
.xc{left:440.025000px;}
.x2{left:443.085000px;}
.x3c{left:507.165000px;}
.x2c{left:508.245000px;}
.x22{left:510.405000px;}
.xf{left:520.665000px;}
.x29{left:525.165000px;}
.x17{left:535.605000px;}
.x3d{left:549.465000px;}
.x2d{left:550.545000px;}
.x1e{left:559.725000px;}
.x10{left:562.965000px;}
.x31{left:566.565000px;}
.x2a{left:567.645000px;}
.x18{left:577.905000px;}
.xd{left:599.370000px;}
.x32{left:614.490000px;}
.x11{left:633.750000px;}
.xe{left:641.850000px;}
.x27{left:668.490000px;}
.x12{left:676.230000px;}
.x23{left:706.650000px;}
.x24{left:715.290000px;}
.x9{left:735.450000px;}
.x3b{left:758.160000px;}
.x1a{left:776.340000px;}
.x1{left:780.300000px;}
@media print{
.v4{vertical-align:-65.920000pt;}
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls20{letter-spacing:-1.344000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.016640pt;}
.ls24{letter-spacing:0.020480pt;}
.lsa{letter-spacing:0.024960pt;}
.ls2e{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.082560pt;}
.lsb{letter-spacing:0.088320pt;}
.ls28{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161280pt;}
.lsd{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.202384pt;}
.ls34{letter-spacing:0.218667pt;}
.ls35{letter-spacing:0.218880pt;}
.ls0{letter-spacing:0.221440pt;}
.ls2d{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.314880pt;}
.ls1b{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls22{letter-spacing:1.408000pt;}
.ls2b{letter-spacing:1.440000pt;}
.lse{letter-spacing:2.560000pt;}
.ls29{letter-spacing:2.720000pt;}
.ls11{letter-spacing:5.120000pt;}
.lsf{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:11.040000pt;}
.ls33{letter-spacing:12.112640pt;}
.ls1d{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:14.848000pt;}
.ls2f{letter-spacing:16.768000pt;}
.ls25{letter-spacing:19.306667pt;}
.ls12{letter-spacing:19.840000pt;}
.ls31{letter-spacing:19.946667pt;}
.lsc{letter-spacing:20.586667pt;}
.ls32{letter-spacing:28.266667pt;}
.ls4{letter-spacing:31.466667pt;}
.ls37{letter-spacing:2377.312000pt;}
.ws1{word-spacing:-21.296640pt;}
.ws14{word-spacing:-19.200000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1b{word-spacing:-18.416533pt;}
.ws16{word-spacing:-17.408000pt;}
.ws7{word-spacing:-17.067696pt;}
.ws8{word-spacing:-16.865312pt;}
.ws6{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.099200pt;}
.ws9{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws1d{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.616000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws15{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.366720pt;}
.ws17{word-spacing:-14.271787pt;}
.ws1c{word-spacing:-13.498667pt;}
.ws2{word-spacing:-13.280000pt;}
.ws19{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.wse{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws12{word-spacing:-10.720000pt;}
.wsc{word-spacing:0.000000pt;}
._24{margin-left:-1858.769920pt;}
._3{margin-left:-816.619766pt;}
._25{margin-left:-81.919573pt;}
._2a{margin-left:-79.858773pt;}
._0{margin-left:-54.494720pt;}
._21{margin-left:-52.433920pt;}
._28{margin-left:-5.653333pt;}
._29{margin-left:-4.192853pt;}
._20{margin-left:-2.997333pt;}
._2{margin-left:-1.354240pt;}
._1{width:1.125547pt;}
._c{width:2.245120pt;}
._f{width:3.258453pt;}
._7{width:4.800000pt;}
._8{width:5.769387pt;}
._b{width:7.176960pt;}
._14{width:8.165120pt;}
._15{width:9.386667pt;}
._1c{width:10.297600pt;}
._5{width:11.200000pt;}
._6{width:12.224000pt;}
._1b{width:13.312000pt;}
._d{width:14.208000pt;}
._1e{width:15.103147pt;}
._1f{width:16.475307pt;}
._a{width:17.600000pt;}
._9{width:18.698240pt;}
._e{width:19.695360pt;}
._4{width:20.864000pt;}
._1d{width:21.904640pt;}
._10{width:23.040000pt;}
._11{width:24.015787pt;}
._12{width:25.072213pt;}
._19{width:26.048000pt;}
._18{width:27.060480pt;}
._22{width:28.992000pt;}
._23{width:30.016000pt;}
._27{width:31.150933pt;}
._26{width:32.064000pt;}
._13{width:36.352000pt;}
._16{width:37.632000pt;}
._17{width:38.564693pt;}
._1a{width:47.168000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:50.595937pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.200000pt;}
.y2{bottom:22.880000pt;}
.y120{bottom:101.632000pt;}
.y11b{bottom:102.272000pt;}
.y60{bottom:102.752000pt;}
.y14e{bottom:103.552000pt;}
.yab{bottom:107.072000pt;}
.y31{bottom:110.592000pt;}
.yc6{bottom:111.392000pt;}
.y82{bottom:114.432000pt;}
.y114{bottom:117.952000pt;}
.y11f{bottom:120.032000pt;}
.y11a{bottom:120.672000pt;}
.y5f{bottom:121.152000pt;}
.y14d{bottom:121.952000pt;}
.yaa{bottom:125.472000pt;}
.y176{bottom:125.632000pt;}
.y30{bottom:128.992000pt;}
.yc5{bottom:129.792000pt;}
.y81{bottom:132.832000pt;}
.y113{bottom:136.346667pt;}
.yeb{bottom:138.426667pt;}
.y119{bottom:139.066667pt;}
.y5e{bottom:139.546667pt;}
.y14c{bottom:140.346667pt;}
.y175{bottom:144.026667pt;}
.ya9{bottom:147.866667pt;}
.yc4{bottom:148.186667pt;}
.y80{bottom:151.226667pt;}
.y2f{bottom:154.266667pt;}
.y112{bottom:154.746667pt;}
.yfa{bottom:155.706667pt;}
.yea{bottom:156.826667pt;}
.y118{bottom:157.466667pt;}
.y5d{bottom:157.946667pt;}
.y14b{bottom:158.106667pt;}
.y174{bottom:162.426667pt;}
.yc3{bottom:166.586667pt;}
.y7f{bottom:169.626667pt;}
.y111{bottom:173.146667pt;}
.y14a{bottom:173.306667pt;}
.yf9{bottom:174.106667pt;}
.ye9{bottom:175.226667pt;}
.ya8{bottom:175.866667pt;}
.y5c{bottom:176.346667pt;}
.y173{bottom:180.826667pt;}
.y2e{bottom:181.946667pt;}
.yc2{bottom:185.146667pt;}
.y7e{bottom:187.866667pt;}
.y149{bottom:191.226667pt;}
.y110{bottom:191.546667pt;}
.yf8{bottom:192.506667pt;}
.ye8{bottom:193.626667pt;}
.ya7{bottom:194.266667pt;}
.y5b{bottom:194.746667pt;}
.y172{bottom:199.226667pt;}
.y2d{bottom:205.146667pt;}
.y7d{bottom:206.266667pt;}
.yc1{bottom:206.426667pt;}
.y10f{bottom:209.946667pt;}
.yf7{bottom:210.906667pt;}
.ye7{bottom:212.026667pt;}
.ya6{bottom:212.666667pt;}
.y5a{bottom:213.146667pt;}
.y171{bottom:217.626667pt;}
.y148{bottom:222.426667pt;}
.y2c{bottom:223.706667pt;}
.y7c{bottom:224.666667pt;}
.yc0{bottom:224.826667pt;}
.y10e{bottom:228.346667pt;}
.yf6{bottom:229.306667pt;}
.ye6{bottom:230.426667pt;}
.ya5{bottom:231.066667pt;}
.y59{bottom:231.546667pt;}
.y170{bottom:236.026667pt;}
.y147{bottom:240.826667pt;}
.y7b{bottom:243.066667pt;}
.ybf{bottom:243.226667pt;}
.y2b{bottom:244.986667pt;}
.y10d{bottom:246.746667pt;}
.yf5{bottom:247.706667pt;}
.ye5{bottom:248.826667pt;}
.ya4{bottom:249.466667pt;}
.y58{bottom:249.946667pt;}
.y16f{bottom:254.426667pt;}
.y146{bottom:259.226667pt;}
.y7a{bottom:261.466667pt;}
.ybe{bottom:261.626667pt;}
.y2a{bottom:263.386667pt;}
.y10c{bottom:265.146667pt;}
.yf4{bottom:266.106667pt;}
.ye4{bottom:267.226667pt;}
.ya3{bottom:267.866667pt;}
.y57{bottom:268.346667pt;}
.y16e{bottom:272.826667pt;}
.y145{bottom:277.626667pt;}
.y79{bottom:279.866667pt;}
.ybd{bottom:280.026667pt;}
.y29{bottom:281.786667pt;}
.y10b{bottom:283.546667pt;}
.yf3{bottom:284.506667pt;}
.ye3{bottom:285.626667pt;}
.ya2{bottom:286.266667pt;}
.y56{bottom:286.746667pt;}
.y16d{bottom:291.226667pt;}
.y144{bottom:296.026667pt;}
.y78{bottom:298.266667pt;}
.ybc{bottom:298.426667pt;}
.y28{bottom:300.186667pt;}
.y10a{bottom:301.946667pt;}
.yf2{bottom:302.906667pt;}
.ye2{bottom:304.026667pt;}
.y11e{bottom:304.186667pt;}
.ya1{bottom:304.666667pt;}
.y55{bottom:305.146667pt;}
.y16c{bottom:309.626667pt;}
.y143{bottom:314.466667pt;}
.yd6{bottom:316.226667pt;}
.y77{bottom:316.706667pt;}
.ybb{bottom:316.866667pt;}
.y27{bottom:318.626667pt;}
.y109{bottom:320.386667pt;}
.yf1{bottom:321.346667pt;}
.ye1{bottom:322.146667pt;}
.ya0{bottom:322.786667pt;}
.y117{bottom:323.106667pt;}
.y54{bottom:323.586667pt;}
.y11d{bottom:325.506667pt;}
.y16b{bottom:328.066667pt;}
.y142{bottom:332.866667pt;}
.yd5{bottom:334.626667pt;}
.y76{bottom:335.106667pt;}
.yba{bottom:335.266667pt;}
.y26{bottom:337.026667pt;}
.y108{bottom:338.786667pt;}
.ye0{bottom:339.746667pt;}
.y9f{bottom:341.506667pt;}
.y53{bottom:341.986667pt;}
.y16a{bottom:346.306667pt;}
.ydf{bottom:350.626667pt;}
.y141{bottom:351.266667pt;}
.yd4{bottom:353.026667pt;}
.y75{bottom:353.506667pt;}
.yb9{bottom:353.666667pt;}
.y25{bottom:355.426667pt;}
.y107{bottom:357.186667pt;}
.yf0{bottom:357.666667pt;}
.y9e{bottom:359.906667pt;}
.y52{bottom:360.066667pt;}
.y169{bottom:364.706667pt;}
.y140{bottom:369.506667pt;}
.yd3{bottom:371.426667pt;}
.y74{bottom:371.906667pt;}
.yb8{bottom:372.066667pt;}
.y24{bottom:373.826667pt;}
.yef{bottom:375.426667pt;}
.y106{bottom:375.586667pt;}
.y9d{bottom:378.306667pt;}
.y51{bottom:378.946667pt;}
.y168{bottom:383.106667pt;}
.y13f{bottom:387.906667pt;}
.yee{bottom:389.186667pt;}
.yd2{bottom:389.826667pt;}
.y73{bottom:390.306667pt;}
.yb7{bottom:390.466667pt;}
.y23{bottom:392.226667pt;}
.y105{bottom:393.986667pt;}
.y9c{bottom:396.706667pt;}
.y50{bottom:400.226667pt;}
.y167{bottom:401.506667pt;}
.yed{bottom:402.946667pt;}
.y13e{bottom:406.306667pt;}
.yd1{bottom:408.226667pt;}
.y72{bottom:408.706667pt;}
.yb6{bottom:408.866667pt;}
.y22{bottom:410.626667pt;}
.y104{bottom:412.066667pt;}
.yec{bottom:413.826667pt;}
.y9b{bottom:415.106667pt;}
.y4f{bottom:418.626667pt;}
.y166{bottom:419.906667pt;}
.y13d{bottom:424.706667pt;}
.yd0{bottom:426.626667pt;}
.y71{bottom:427.106667pt;}
.yb5{bottom:427.266667pt;}
.y21{bottom:429.026667pt;}
.y103{bottom:430.946667pt;}
.y9a{bottom:433.506667pt;}
.y165{bottom:438.306667pt;}
.y13c{bottom:443.106667pt;}
.y4e{bottom:443.586667pt;}
.ycf{bottom:445.026667pt;}
.yb4{bottom:445.346667pt;}
.y70{bottom:445.506667pt;}
.y20{bottom:447.426667pt;}
.y102{bottom:451.266667pt;}
.y99{bottom:451.906667pt;}
.y164{bottom:456.706667pt;}
.y13b{bottom:461.506667pt;}
.y4d{bottom:461.986667pt;}
.yce{bottom:463.426667pt;}
.y6f{bottom:463.906667pt;}
.yb3{bottom:464.066667pt;}
.y101{bottom:465.026667pt;}
.y1f{bottom:465.826667pt;}
.y98{bottom:470.306667pt;}
.y163{bottom:475.106667pt;}
.y100{bottom:479.906667pt;}
.y4c{bottom:480.386667pt;}
.ycd{bottom:481.506667pt;}
.y6e{bottom:482.306667pt;}
.yb2{bottom:482.466667pt;}
.y1e{bottom:484.226667pt;}
.y97{bottom:488.706667pt;}
.y162{bottom:493.506667pt;}
.yff{bottom:498.306667pt;}
.y4b{bottom:498.786667pt;}
.ycc{bottom:499.906667pt;}
.y6d{bottom:500.706667pt;}
.yb1{bottom:500.866667pt;}
.y1d{bottom:502.626667pt;}
.y96{bottom:507.106667pt;}
.y161{bottom:511.906667pt;}
.y13a{bottom:516.706667pt;}
.y4a{bottom:517.186667pt;}
.ycb{bottom:517.506667pt;}
.y6c{bottom:519.106667pt;}
.yb0{bottom:519.266667pt;}
.y1c{bottom:521.026667pt;}
.y95{bottom:525.506667pt;}
.y160{bottom:530.306667pt;}
.yca{bottom:531.266667pt;}
.y139{bottom:535.106667pt;}
.y49{bottom:535.586667pt;}
.yaf{bottom:536.546667pt;}
.y6b{bottom:537.506667pt;}
.y1b{bottom:539.426667pt;}
.y94{bottom:543.933333pt;}
.yc9{bottom:545.053333pt;}
.y15f{bottom:548.733333pt;}
.yae{bottom:550.333333pt;}
.y138{bottom:553.373333pt;}
.y48{bottom:554.013333pt;}
.y6a{bottom:555.933333pt;}
.y1a{bottom:557.853333pt;}
.yad{bottom:561.213333pt;}
.y93{bottom:562.333333pt;}
.y15e{bottom:567.133333pt;}
.yde{bottom:571.133333pt;}
.y137{bottom:571.773333pt;}
.y47{bottom:572.413333pt;}
.y69{bottom:574.333333pt;}
.y19{bottom:576.253333pt;}
.y92{bottom:580.733333pt;}
.y15d{bottom:585.533333pt;}
.ydd{bottom:589.533333pt;}
.y136{bottom:590.173333pt;}
.y46{bottom:590.813333pt;}
.y68{bottom:592.733333pt;}
.y18{bottom:594.653333pt;}
.y11c{bottom:598.813333pt;}
.y91{bottom:599.133333pt;}
.y15c{bottom:603.933333pt;}
.ydc{bottom:607.933333pt;}
.y135{bottom:608.573333pt;}
.y45{bottom:609.213333pt;}
.y67{bottom:611.133333pt;}
.y17{bottom:613.053333pt;}
.y90{bottom:617.533333pt;}
.y15b{bottom:622.333333pt;}
.ydb{bottom:626.333333pt;}
.y134{bottom:626.973333pt;}
.y44{bottom:627.613333pt;}
.y66{bottom:629.213333pt;}
.y16{bottom:631.453333pt;}
.y8f{bottom:635.933333pt;}
.y15a{bottom:640.733333pt;}
.yda{bottom:644.733333pt;}
.y133{bottom:645.373333pt;}
.y65{bottom:646.973333pt;}
.y15{bottom:649.853333pt;}
.y8e{bottom:654.333333pt;}
.y64{bottom:657.853333pt;}
.y159{bottom:659.133333pt;}
.y43{bottom:659.453333pt;}
.yd9{bottom:662.173333pt;}
.y132{bottom:663.773333pt;}
.y14{bottom:668.253333pt;}
.y8d{bottom:672.733333pt;}
.yd8{bottom:675.933333pt;}
.y158{bottom:677.533333pt;}
.y42{bottom:677.853333pt;}
.y131{bottom:682.173333pt;}
.y13{bottom:686.653333pt;}
.yfe{bottom:687.613333pt;}
.yd7{bottom:689.693333pt;}
.y8c{bottom:690.813333pt;}
.y116{bottom:691.133333pt;}
.y157{bottom:695.933333pt;}
.y41{bottom:696.253333pt;}
.y130{bottom:700.573333pt;}
.y12{bottom:705.053333pt;}
.yfd{bottom:705.213333pt;}
.y8b{bottom:709.213333pt;}
.y115{bottom:709.533333pt;}
.y156{bottom:714.333333pt;}
.y40{bottom:714.653333pt;}
.y12f{bottom:718.973333pt;}
.yfc{bottom:719.133333pt;}
.y11{bottom:723.453333pt;}
.y8a{bottom:727.933333pt;}
.yfb{bottom:730.013333pt;}
.y155{bottom:732.733333pt;}
.y3f{bottom:733.053333pt;}
.y12e{bottom:737.213333pt;}
.y10{bottom:741.853333pt;}
.y89{bottom:746.333333pt;}
.y154{bottom:751.133333pt;}
.y3e{bottom:751.453333pt;}
.y12d{bottom:755.613333pt;}
.yf{bottom:760.413333pt;}
.yac{bottom:762.493333pt;}
.y88{bottom:764.733333pt;}
.y153{bottom:769.533333pt;}
.y3d{bottom:769.853333pt;}
.y12c{bottom:774.013333pt;}
.y87{bottom:783.173333pt;}
.ye{bottom:784.453333pt;}
.y152{bottom:787.973333pt;}
.y3c{bottom:788.293333pt;}
.y12b{bottom:792.453333pt;}
.yd{bottom:800.773333pt;}
.y86{bottom:801.573333pt;}
.y151{bottom:806.373333pt;}
.y3b{bottom:806.693333pt;}
.y12a{bottom:810.853333pt;}
.yc{bottom:816.133333pt;}
.y85{bottom:819.973333pt;}
.y150{bottom:824.773333pt;}
.y3a{bottom:825.093333pt;}
.y129{bottom:829.253333pt;}
.yb{bottom:831.493333pt;}
.y84{bottom:838.373333pt;}
.y39{bottom:843.493333pt;}
.ya{bottom:846.853333pt;}
.y128{bottom:847.653333pt;}
.y14f{bottom:855.333333pt;}
.y83{bottom:856.773333pt;}
.y38{bottom:861.893333pt;}
.y9{bottom:862.373333pt;}
.y127{bottom:866.053333pt;}
.y177{bottom:872.613333pt;}
.y63{bottom:875.173333pt;}
.y37{bottom:880.133333pt;}
.y126{bottom:884.453333pt;}
.y8{bottom:886.053333pt;}
.y62{bottom:893.573333pt;}
.y7{bottom:896.293333pt;}
.y125{bottom:902.853333pt;}
.y36{bottom:911.973333pt;}
.y124{bottom:921.093333pt;}
.y6{bottom:922.693333pt;}
.y61{bottom:930.053333pt;}
.y35{bottom:930.373333pt;}
.y123{bottom:939.493333pt;}
.yc8{bottom:948.453333pt;}
.y34{bottom:948.773333pt;}
.y5{bottom:949.413333pt;}
.y122{bottom:958.213333pt;}
.y33{bottom:967.173333pt;}
.y4{bottom:974.053333pt;}
.y121{bottom:979.973333pt;}
.y32{bottom:985.573333pt;}
.yc7{bottom:1003.973333pt;}
.y1{bottom:1110.240000pt;}
.h7{height:30.907500pt;}
.hb{height:35.404688pt;}
.h8{height:37.319444pt;}
.ha{height:41.366131pt;}
.h17{height:44.468750pt;}
.h18{height:47.109375pt;}
.h15{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h11{height:49.907812pt;}
.h19{height:52.004650pt;}
.h9{height:52.108438pt;}
.h2{height:52.134375pt;}
.h1c{height:54.598989pt;}
.he{height:55.569886pt;}
.h5{height:56.732813pt;}
.h12{height:56.887489pt;}
.h3{height:57.787500pt;}
.h13{height:62.781250pt;}
.hd{height:62.812500pt;}
.h1b{height:64.500000pt;}
.hf{height:65.781915pt;}
.h16{height:70.228214pt;}
.h6{height:72.655000pt;}
.h14{height:73.490625pt;}
.h10{height:75.465000pt;}
.hc{height:77.951250pt;}
.h4{height:85.785000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.592000pt;}
.x7{left:96.992000pt;}
.x39{left:98.752000pt;}
.x35{left:101.312000pt;}
.x1c{left:103.552000pt;}
.x2e{left:105.792000pt;}
.x2f{left:107.072000pt;}
.x1d{left:108.832000pt;}
.x25{left:110.752000pt;}
.x1b{left:118.592000pt;}
.x20{left:123.232000pt;}
.x33{left:124.192000pt;}
.x13{left:126.912000pt;}
.x19{left:132.192000pt;}
.x42{left:136.026667pt;}
.x44{left:142.586667pt;}
.x4{left:145.626667pt;}
.x2b{left:148.026667pt;}
.x43{left:155.546667pt;}
.x40{left:160.666667pt;}
.x14{left:164.506667pt;}
.x3a{left:167.546667pt;}
.x41{left:198.426667pt;}
.x26{left:199.866667pt;}
.x1f{left:211.226667pt;}
.x8{left:231.746667pt;}
.x30{left:233.666667pt;}
.x15{left:249.986667pt;}
.x3e{left:255.426667pt;}
.x16{left:287.586667pt;}
.x3f{left:293.026667pt;}
.x28{left:301.186667pt;}
.x21{left:312.226667pt;}
.xb{left:323.266667pt;}
.xa{left:330.786667pt;}
.x36{left:336.546667pt;}
.x6{left:355.106667pt;}
.x37{left:357.026667pt;}
.x38{left:361.026667pt;}
.x34{left:364.066667pt;}
.x5{left:386.333333pt;}
.xc{left:391.133333pt;}
.x2{left:393.853333pt;}
.x3c{left:450.813333pt;}
.x2c{left:451.773333pt;}
.x22{left:453.693333pt;}
.xf{left:462.813333pt;}
.x29{left:466.813333pt;}
.x17{left:476.093333pt;}
.x3d{left:488.413333pt;}
.x2d{left:489.373333pt;}
.x1e{left:497.533333pt;}
.x10{left:500.413333pt;}
.x31{left:503.613333pt;}
.x2a{left:504.573333pt;}
.x18{left:513.693333pt;}
.xd{left:532.773333pt;}
.x32{left:546.213333pt;}
.x11{left:563.333333pt;}
.xe{left:570.533333pt;}
.x27{left:594.213333pt;}
.x12{left:601.093333pt;}
.x23{left:628.133333pt;}
.x24{left:635.813333pt;}
.x9{left:653.733333pt;}
.x3b{left:673.920000pt;}
.x1a{left:690.080000pt;}
.x1{left:693.600000pt;}
}




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