
    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_aec3809be1c5d124aa3d5335.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_efa97493bb5687e3a02da4a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_08080b65a4a50f88e9c27d47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_36dd294b701bc8c3285905c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_a8b2c0edb4d18f5030d87569.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_142f5b892259de00e15541d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5fc9560b2b0b3a11f2276090.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_15153e4b62fc527ae736f0cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_fe361556a4ef841fcebabc44.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008000;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_64611b03f36fba7d890c731f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_cf77ff47b9679e605b7e02d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_bb1df41d54601ffa05e9d675.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5343a767b886c38d8f9432e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls15{letter-spacing:-1.548288px;}
.ls17{letter-spacing:-1.536192px;}
.ls18{letter-spacing:-1.493856px;}
.ls16{letter-spacing:-1.475712px;}
.ls14{letter-spacing:-1.451520px;}
.ls10{letter-spacing:-1.209600px;}
.lsf{letter-spacing:-1.202400px;}
.lsb{letter-spacing:-1.188000px;}
.lsa{letter-spacing:-1.177200px;}
.ls3b{letter-spacing:-0.459648px;}
.ls3a{letter-spacing:-0.417312px;}
.ls39{letter-spacing:-0.399168px;}
.ls38{letter-spacing:-0.381024px;}
.lsd{letter-spacing:-0.338688px;}
.lsc{letter-spacing:-0.320544px;}
.ls31{letter-spacing:-0.302400px;}
.ls34{letter-spacing:-0.260064px;}
.lse{letter-spacing:-0.241920px;}
.ls33{letter-spacing:-0.223776px;}
.ls12{letter-spacing:-0.221760px;}
.ls8{letter-spacing:-0.178848px;}
.ls13{letter-spacing:-0.177408px;}
.ls35{letter-spacing:-0.175392px;}
.ls32{letter-spacing:-0.157248px;}
.ls2{letter-spacing:-0.145728px;}
.ls37{letter-spacing:-0.145152px;}
.ls7{letter-spacing:-0.132480px;}
.ls36{letter-spacing:-0.120960px;}
.ls6{letter-spacing:-0.066240px;}
.ls3{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.052992px;}
.ls9{letter-spacing:-0.021600px;}
.ls5{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.033120px;}
.ls2c{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.059904px;}
.ls11{letter-spacing:0.202752px;}
.ls0{letter-spacing:0.240480px;}
.ls24{letter-spacing:0.392688px;}
.ls27{letter-spacing:1.140480px;}
.ls19{letter-spacing:1.743264px;}
.ls1a{letter-spacing:1.743840px;}
.ls30{letter-spacing:2.211840px;}
.ls28{letter-spacing:2.342880px;}
.ls29{letter-spacing:4.537440px;}
.ls2a{letter-spacing:4.538880px;}
.ls2d{letter-spacing:5.428800px;}
.ls21{letter-spacing:5.618880px;}
.ls20{letter-spacing:6.464304px;}
.ls25{letter-spacing:6.900480px;}
.ls26{letter-spacing:9.925920px;}
.ls1d{letter-spacing:11.582496px;}
.ls1f{letter-spacing:11.928240px;}
.ls1e{letter-spacing:15.408000px;}
.ls1c{letter-spacing:17.619840px;}
.ls1b{letter-spacing:17.621280px;}
.ls2e{letter-spacing:17.901648px;}
.ls2f{letter-spacing:17.902080px;}
.ls23{letter-spacing:19.870560px;}
.ls22{letter-spacing:19.872000px;}
.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;}
}
.ws0{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.282240px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.813440px;}
.wsd{word-spacing:-16.812000px;}
.ws8{word-spacing:-16.797600px;}
.ws9{word-spacing:-16.790400px;}
.wsa{word-spacing:-15.361920px;}
.wsb{word-spacing:-15.337728px;}
.ws5{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.962752px;}
.ws4{word-spacing:-14.878080px;}
.wse{word-spacing:-14.859936px;}
.wsf{word-spacing:-14.799456px;}
.ws3{word-spacing:-14.781312px;}
.ws2{word-spacing:-0.050400px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-2.118240px;}
._0{margin-left:-1.009872px;}
._1{width:1.038384px;}
._5{width:2.316816px;}
._16{width:3.332736px;}
._f{width:4.364928px;}
._2{width:5.427072px;}
._8{width:7.329600px;}
._10{width:8.856000px;}
._a{width:9.864000px;}
._6{width:10.987200px;}
._11{width:12.564000px;}
._c{width:14.220000px;}
._4{width:16.214400px;}
._e{width:17.906400px;}
._12{width:19.533600px;}
._9{width:20.613600px;}
._3{width:21.801600px;}
._19{width:23.184000px;}
._b{width:24.256800px;}
._17{width:26.208000px;}
._14{width:27.216000px;}
._d{width:28.999296px;}
._22{width:30.254400px;}
._1e{width:31.420800px;}
._15{width:32.703408px;}
._13{width:33.912000px;}
._1b{width:35.330400px;}
._7{width:37.440000px;}
._1d{width:39.196800px;}
._20{width:40.428000px;}
._21{width:41.848416px;}
._23{width:43.365600px;}
._1a{width:45.770400px;}
._1f{width:47.959200px;}
._29{width:49.332672px;}
._24{width:51.336000px;}
._18{width:52.632000px;}
._2b{width:59.890896px;}
._2a{width:61.074576px;}
._33{width:69.899184px;}
._32{width:71.547840px;}
._2e{width:76.628160px;}
._2f{width:77.963184px;}
._2d{width:83.462400px;}
._2c{width:84.551040px;}
._27{width:91.494576px;}
._31{width:102.641328px;}
._30{width:104.086080px;}
._28{width:136.140480px;}
._26{width:139.345920px;}
._25{width:235.025280px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.yea{bottom:92.880000px;}
.y103{bottom:93.240000px;}
.y86{bottom:96.120000px;}
.y6b{bottom:99.360000px;}
.yde{bottom:101.520000px;}
.y140{bottom:101.880000px;}
.yb3{bottom:102.960000px;}
.y35{bottom:106.920000px;}
.y8a{bottom:108.000000px;}
.y102{bottom:110.520000px;}
.ye9{bottom:113.400000px;}
.y85{bottom:116.640000px;}
.y13f{bottom:119.160000px;}
.y6a{bottom:120.240000px;}
.ydd{bottom:122.040000px;}
.yb2{bottom:123.840000px;}
.y34{bottom:127.800000px;}
.y89{bottom:128.880000px;}
.y13e{bottom:136.440000px;}
.y84{bottom:137.520000px;}
.y69{bottom:140.760000px;}
.yb1{bottom:144.360000px;}
.y101{bottom:145.080000px;}
.ye8{bottom:145.800000px;}
.y33{bottom:148.320000px;}
.y88{bottom:149.400000px;}
.y13d{bottom:153.720000px;}
.ydc{bottom:154.440000px;}
.y68{bottom:161.640000px;}
.y100{bottom:162.360000px;}
.yb0{bottom:165.240000px;}
.ye7{bottom:167.040000px;}
.y32{bottom:169.200000px;}
.y83{bottom:169.920000px;}
.y87{bottom:170.280000px;}
.y13c{bottom:171.000000px;}
.yff{bottom:179.640000px;}
.y67{bottom:182.160000px;}
.yaf{bottom:185.760000px;}
.ydb{bottom:187.200000px;}
.ye6{bottom:187.560000px;}
.y13b{bottom:188.280000px;}
.y31{bottom:189.720000px;}
.y82{bottom:190.800000px;}
.yfe{bottom:196.920000px;}
.y66{bottom:203.040000px;}
.y13a{bottom:205.560000px;}
.yae{bottom:206.640000px;}
.yda{bottom:208.440000px;}
.y30{bottom:210.600000px;}
.y81{bottom:211.680000px;}
.yfd{bottom:214.200000px;}
.y139{bottom:222.840000px;}
.y65{bottom:223.560000px;}
.yad{bottom:227.160000px;}
.yd9{bottom:228.960000px;}
.y2f{bottom:231.120000px;}
.yfc{bottom:231.480000px;}
.y80{bottom:232.200000px;}
.y138{bottom:240.120000px;}
.y64{bottom:244.440000px;}
.yac{bottom:248.040000px;}
.yfb{bottom:248.760000px;}
.yd8{bottom:249.840000px;}
.y2e{bottom:252.000000px;}
.y7f{bottom:253.080000px;}
.y137{bottom:257.040000px;}
.y63{bottom:264.960000px;}
.yfa{bottom:266.040000px;}
.yd7{bottom:270.360000px;}
.y2d{bottom:272.520000px;}
.y7e{bottom:273.600000px;}
.y136{bottom:274.320000px;}
.yab{bottom:280.440000px;}
.yf9{bottom:283.320000px;}
.y62{bottom:285.840000px;}
.yd6{bottom:291.240000px;}
.y135{bottom:291.600000px;}
.y2c{bottom:293.400000px;}
.y7d{bottom:294.480000px;}
.yf8{bottom:300.240000px;}
.yaa{bottom:301.320000px;}
.y61{bottom:306.360000px;}
.y134{bottom:308.880000px;}
.yd5{bottom:311.760000px;}
.y2b{bottom:313.920000px;}
.y7c{bottom:315.000000px;}
.yf7{bottom:317.520000px;}
.ya9{bottom:322.560000px;}
.y133{bottom:326.160000px;}
.y60{bottom:327.240000px;}
.yd4{bottom:332.640000px;}
.y2a{bottom:334.800000px;}
.y7b{bottom:335.880000px;}
.ya8{bottom:343.080000px;}
.y132{bottom:343.440000px;}
.y5f{bottom:347.760000px;}
.yf6{bottom:352.080000px;}
.yd3{bottom:353.160000px;}
.y29{bottom:355.320000px;}
.y7a{bottom:356.400000px;}
.y131{bottom:360.720000px;}
.ya7{bottom:363.960000px;}
.y5e{bottom:368.640000px;}
.yf5{bottom:369.360000px;}
.yd2{bottom:374.040000px;}
.y28{bottom:376.200000px;}
.y79{bottom:377.280000px;}
.y130{bottom:378.000000px;}
.ya6{bottom:384.480000px;}
.yf4{bottom:386.640000px;}
.y5d{bottom:389.160000px;}
.yd1{bottom:394.560000px;}
.y12f{bottom:395.280000px;}
.y27{bottom:396.720000px;}
.y78{bottom:397.800000px;}
.yf3{bottom:403.920000px;}
.ya5{bottom:405.360000px;}
.ye5{bottom:406.080000px;}
.y5c{bottom:410.040000px;}
.y12e{bottom:412.560000px;}
.y26{bottom:417.600000px;}
.y77{bottom:418.680000px;}
.yf2{bottom:421.200000px;}
.ya4{bottom:425.880000px;}
.yd0{bottom:426.960000px;}
.ye4{bottom:427.320000px;}
.y12d{bottom:429.840000px;}
.y5b{bottom:430.560000px;}
.y25{bottom:438.120000px;}
.yf1{bottom:438.480000px;}
.y76{bottom:439.200000px;}
.ya3{bottom:446.760000px;}
.y12c{bottom:447.120000px;}
.ycf{bottom:447.840000px;}
.y5a{bottom:451.440000px;}
.yf0{bottom:455.760000px;}
.y24{bottom:459.000000px;}
.y75{bottom:460.080000px;}
.y12b{bottom:464.040000px;}
.ya2{bottom:467.280000px;}
.yce{bottom:468.720000px;}
.y59{bottom:471.960000px;}
.yef{bottom:473.040000px;}
.y23{bottom:479.520000px;}
.y74{bottom:480.600000px;}
.y12a{bottom:481.320000px;}
.ya1{bottom:488.160000px;}
.ycd{bottom:489.240000px;}
.yee{bottom:489.960000px;}
.y58{bottom:492.840000px;}
.y129{bottom:498.600000px;}
.y22{bottom:500.400000px;}
.y73{bottom:501.480000px;}
.yed{bottom:507.240000px;}
.ya0{bottom:508.680000px;}
.ycc{bottom:510.120000px;}
.y57{bottom:513.360000px;}
.y128{bottom:515.880000px;}
.y72{bottom:522.000000px;}
.yec{bottom:524.520000px;}
.y9f{bottom:529.560000px;}
.ycb{bottom:530.640000px;}
.y21{bottom:532.440000px;}
.y127{bottom:533.160000px;}
.y56{bottom:534.240000px;}
.y71{bottom:542.880000px;}
.y9e{bottom:550.080000px;}
.y126{bottom:550.440000px;}
.yca{bottom:551.520000px;}
.yeb{bottom:554.400000px;}
.y55{bottom:554.760000px;}
.y70{bottom:563.400000px;}
.y20{bottom:565.200000px;}
.y125{bottom:567.720000px;}
.y9d{bottom:570.960000px;}
.yc9{bottom:572.040000px;}
.y54{bottom:575.640000px;}
.y6f{bottom:584.280000px;}
.y124{bottom:585.000000px;}
.yc8{bottom:592.920000px;}
.y1f{bottom:595.080000px;}
.y53{bottom:596.160000px;}
.y123{bottom:602.280000px;}
.y9c{bottom:603.360000px;}
.y8c{bottom:604.800000px;}
.yc7{bottom:613.440000px;}
.y1e{bottom:615.960000px;}
.y6e{bottom:616.680000px;}
.y52{bottom:617.040000px;}
.y122{bottom:619.560000px;}
.y9b{bottom:624.240000px;}
.yc6{bottom:634.320000px;}
.y121{bottom:636.840000px;}
.y8b{bottom:637.200000px;}
.y51{bottom:637.560000px;}
.y9a{bottom:645.120000px;}
.y1d{bottom:645.480000px;}
.y120{bottom:653.760000px;}
.yc5{bottom:654.840000px;}
.y50{bottom:658.440000px;}
.y99{bottom:665.640000px;}
.y1c{bottom:666.360000px;}
.ye3{bottom:666.720000px;}
.y11f{bottom:671.040000px;}
.yc4{bottom:675.720000px;}
.y4f{bottom:678.960000px;}
.y98{bottom:686.520000px;}
.y1b{bottom:687.240000px;}
.ye2{bottom:687.600000px;}
.y11e{bottom:688.320000px;}
.yc3{bottom:696.240000px;}
.y4e{bottom:699.840000px;}
.y11d{bottom:705.600000px;}
.y97{bottom:707.040000px;}
.y1a{bottom:707.760000px;}
.ye1{bottom:708.480000px;}
.yc2{bottom:717.120000px;}
.y4d{bottom:720.360000px;}
.y11c{bottom:722.880000px;}
.y96{bottom:727.920000px;}
.y19{bottom:728.640000px;}
.ye0{bottom:729.000000px;}
.y11b{bottom:740.160000px;}
.y4c{bottom:741.240000px;}
.y95{bottom:748.440000px;}
.y18{bottom:749.160000px;}
.yc1{bottom:749.520000px;}
.ydf{bottom:749.880000px;}
.y11a{bottom:757.440000px;}
.y4b{bottom:761.760000px;}
.y94{bottom:769.320000px;}
.y17{bottom:770.040000px;}
.yc0{bottom:770.400000px;}
.y119{bottom:774.720000px;}
.y4a{bottom:782.280000px;}
.y93{bottom:789.840000px;}
.y16{bottom:790.560000px;}
.ybf{bottom:791.280000px;}
.y118{bottom:792.000000px;}
.y49{bottom:803.160000px;}
.y117{bottom:809.280000px;}
.y92{bottom:810.720000px;}
.y15{bottom:811.440000px;}
.ybe{bottom:811.800000px;}
.y48{bottom:823.680000px;}
.y116{bottom:826.560000px;}
.y91{bottom:831.240000px;}
.y14{bottom:831.960000px;}
.ybd{bottom:832.680000px;}
.y115{bottom:843.480000px;}
.y47{bottom:844.560000px;}
.y90{bottom:852.120000px;}
.y13{bottom:852.840000px;}
.ybc{bottom:853.200000px;}
.y114{bottom:860.760000px;}
.y46{bottom:865.080000px;}
.y8f{bottom:872.640000px;}
.y12{bottom:873.360000px;}
.ybb{bottom:874.080000px;}
.y113{bottom:878.040000px;}
.y45{bottom:885.960000px;}
.y11{bottom:894.240000px;}
.yba{bottom:894.600000px;}
.y112{bottom:895.320000px;}
.y8e{bottom:905.040000px;}
.y44{bottom:906.480000px;}
.y111{bottom:912.600000px;}
.y10{bottom:914.760000px;}
.yb9{bottom:915.480000px;}
.y8d{bottom:927.000000px;}
.y43{bottom:927.360000px;}
.y110{bottom:929.880000px;}
.yf{bottom:935.640000px;}
.yb8{bottom:936.000000px;}
.y10f{bottom:947.160000px;}
.y42{bottom:947.880000px;}
.yb7{bottom:956.880000px;}
.ye{bottom:960.840000px;}
.y10e{bottom:964.440000px;}
.y41{bottom:968.760000px;}
.yb6{bottom:977.400000px;}
.yd{bottom:978.120000px;}
.y10d{bottom:981.720000px;}
.y40{bottom:989.280000px;}
.yc{bottom:990.360000px;}
.yb5{bottom:998.280000px;}
.y10c{bottom:999.000000px;}
.y3f{bottom:1010.160000px;}
.yb{bottom:1011.960000px;}
.y10b{bottom:1016.280000px;}
.yb4{bottom:1030.320000px;}
.y3e{bottom:1030.680000px;}
.ya{bottom:1032.480000px;}
.y10a{bottom:1033.560000px;}
.y109{bottom:1050.480000px;}
.y3d{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.y108{bottom:1067.760000px;}
.y3c{bottom:1072.080000px;}
.y107{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.y3b{bottom:1092.960000px;}
.y106{bottom:1102.320000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y105{bottom:1119.600000px;}
.y39{bottom:1134.360000px;}
.y104{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y6d{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.y6c{bottom:1192.320000px;}
.h5{height:24.000000px;}
.h9{height:26.274375px;}
.h10{height:40.310156px;}
.hf{height:42.022969px;}
.h3{height:44.149219px;}
.hc{height:46.448640px;}
.hd{height:47.988281px;}
.hb{height:48.660480px;}
.he{height:48.761719px;}
.h7{height:48.796875px;}
.ha{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h8{height:56.593125px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:127.439928px;}
.x2{left:129.266964px;}
.xc{left:143.159184px;}
.x7{left:144.371700px;}
.x4{left:154.439928px;}
.x6{left:158.267196px;}
.xa{left:169.965072px;}
.xe{left:181.439928px;}
.x1{left:242.852076px;}
.x9{left:281.373408px;}
.x3{left:446.152320px;}
.xb{left:534.392985px;}
.xd{left:575.013960px;}
.x5{left:735.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls15{letter-spacing:-1.376256pt;}
.ls17{letter-spacing:-1.365504pt;}
.ls18{letter-spacing:-1.327872pt;}
.ls16{letter-spacing:-1.311744pt;}
.ls14{letter-spacing:-1.290240pt;}
.ls10{letter-spacing:-1.075200pt;}
.lsf{letter-spacing:-1.068800pt;}
.lsb{letter-spacing:-1.056000pt;}
.lsa{letter-spacing:-1.046400pt;}
.ls3b{letter-spacing:-0.408576pt;}
.ls3a{letter-spacing:-0.370944pt;}
.ls39{letter-spacing:-0.354816pt;}
.ls38{letter-spacing:-0.338688pt;}
.lsd{letter-spacing:-0.301056pt;}
.lsc{letter-spacing:-0.284928pt;}
.ls31{letter-spacing:-0.268800pt;}
.ls34{letter-spacing:-0.231168pt;}
.lse{letter-spacing:-0.215040pt;}
.ls33{letter-spacing:-0.198912pt;}
.ls12{letter-spacing:-0.197120pt;}
.ls8{letter-spacing:-0.158976pt;}
.ls13{letter-spacing:-0.157696pt;}
.ls35{letter-spacing:-0.155904pt;}
.ls32{letter-spacing:-0.139776pt;}
.ls2{letter-spacing:-0.129536pt;}
.ls37{letter-spacing:-0.129024pt;}
.ls7{letter-spacing:-0.117760pt;}
.ls36{letter-spacing:-0.107520pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.047104pt;}
.ls9{letter-spacing:-0.019200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.029440pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.053248pt;}
.ls11{letter-spacing:0.180224pt;}
.ls0{letter-spacing:0.213760pt;}
.ls24{letter-spacing:0.349056pt;}
.ls27{letter-spacing:1.013760pt;}
.ls19{letter-spacing:1.549568pt;}
.ls1a{letter-spacing:1.550080pt;}
.ls30{letter-spacing:1.966080pt;}
.ls28{letter-spacing:2.082560pt;}
.ls29{letter-spacing:4.033280pt;}
.ls2a{letter-spacing:4.034560pt;}
.ls2d{letter-spacing:4.825600pt;}
.ls21{letter-spacing:4.994560pt;}
.ls20{letter-spacing:5.746048pt;}
.ls25{letter-spacing:6.133760pt;}
.ls26{letter-spacing:8.823040pt;}
.ls1d{letter-spacing:10.295552pt;}
.ls1f{letter-spacing:10.602880pt;}
.ls1e{letter-spacing:13.696000pt;}
.ls1c{letter-spacing:15.662080pt;}
.ls1b{letter-spacing:15.663360pt;}
.ls2e{letter-spacing:15.912576pt;}
.ls2f{letter-spacing:15.912960pt;}
.ls23{letter-spacing:17.662720pt;}
.ls22{letter-spacing:17.664000pt;}
.ws0{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.945280pt;}
.wsd{word-spacing:-14.944000pt;}
.ws8{word-spacing:-14.931200pt;}
.ws9{word-spacing:-14.924800pt;}
.wsa{word-spacing:-13.655040pt;}
.wsb{word-spacing:-13.633536pt;}
.ws5{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.300224pt;}
.ws4{word-spacing:-13.224960pt;}
.wse{word-spacing:-13.208832pt;}
.wsf{word-spacing:-13.155072pt;}
.ws3{word-spacing:-13.138944pt;}
.ws2{word-spacing:-0.044800pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-1.882880pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.923008pt;}
._5{width:2.059392pt;}
._16{width:2.962432pt;}
._f{width:3.879936pt;}
._2{width:4.824064pt;}
._8{width:6.515200pt;}
._10{width:7.872000pt;}
._a{width:8.768000pt;}
._6{width:9.766400pt;}
._11{width:11.168000pt;}
._c{width:12.640000pt;}
._4{width:14.412800pt;}
._e{width:15.916800pt;}
._12{width:17.363200pt;}
._9{width:18.323200pt;}
._3{width:19.379200pt;}
._19{width:20.608000pt;}
._b{width:21.561600pt;}
._17{width:23.296000pt;}
._14{width:24.192000pt;}
._d{width:25.777152pt;}
._22{width:26.892800pt;}
._1e{width:27.929600pt;}
._15{width:29.069696pt;}
._13{width:30.144000pt;}
._1b{width:31.404800pt;}
._7{width:33.280000pt;}
._1d{width:34.841600pt;}
._20{width:35.936000pt;}
._21{width:37.198592pt;}
._23{width:38.547200pt;}
._1a{width:40.684800pt;}
._1f{width:42.630400pt;}
._29{width:43.851264pt;}
._24{width:45.632000pt;}
._18{width:46.784000pt;}
._2b{width:53.236352pt;}
._2a{width:54.288512pt;}
._33{width:62.132608pt;}
._32{width:63.598080pt;}
._2e{width:68.113920pt;}
._2f{width:69.300608pt;}
._2d{width:74.188800pt;}
._2c{width:75.156480pt;}
._27{width:81.328512pt;}
._31{width:91.236736pt;}
._30{width:92.520960pt;}
._28{width:121.013760pt;}
._26{width:123.863040pt;}
._25{width:208.911360pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.yea{bottom:82.560000pt;}
.y103{bottom:82.880000pt;}
.y86{bottom:85.440000pt;}
.y6b{bottom:88.320000pt;}
.yde{bottom:90.240000pt;}
.y140{bottom:90.560000pt;}
.yb3{bottom:91.520000pt;}
.y35{bottom:95.040000pt;}
.y8a{bottom:96.000000pt;}
.y102{bottom:98.240000pt;}
.ye9{bottom:100.800000pt;}
.y85{bottom:103.680000pt;}
.y13f{bottom:105.920000pt;}
.y6a{bottom:106.880000pt;}
.ydd{bottom:108.480000pt;}
.yb2{bottom:110.080000pt;}
.y34{bottom:113.600000pt;}
.y89{bottom:114.560000pt;}
.y13e{bottom:121.280000pt;}
.y84{bottom:122.240000pt;}
.y69{bottom:125.120000pt;}
.yb1{bottom:128.320000pt;}
.y101{bottom:128.960000pt;}
.ye8{bottom:129.600000pt;}
.y33{bottom:131.840000pt;}
.y88{bottom:132.800000pt;}
.y13d{bottom:136.640000pt;}
.ydc{bottom:137.280000pt;}
.y68{bottom:143.680000pt;}
.y100{bottom:144.320000pt;}
.yb0{bottom:146.880000pt;}
.ye7{bottom:148.480000pt;}
.y32{bottom:150.400000pt;}
.y83{bottom:151.040000pt;}
.y87{bottom:151.360000pt;}
.y13c{bottom:152.000000pt;}
.yff{bottom:159.680000pt;}
.y67{bottom:161.920000pt;}
.yaf{bottom:165.120000pt;}
.ydb{bottom:166.400000pt;}
.ye6{bottom:166.720000pt;}
.y13b{bottom:167.360000pt;}
.y31{bottom:168.640000pt;}
.y82{bottom:169.600000pt;}
.yfe{bottom:175.040000pt;}
.y66{bottom:180.480000pt;}
.y13a{bottom:182.720000pt;}
.yae{bottom:183.680000pt;}
.yda{bottom:185.280000pt;}
.y30{bottom:187.200000pt;}
.y81{bottom:188.160000pt;}
.yfd{bottom:190.400000pt;}
.y139{bottom:198.080000pt;}
.y65{bottom:198.720000pt;}
.yad{bottom:201.920000pt;}
.yd9{bottom:203.520000pt;}
.y2f{bottom:205.440000pt;}
.yfc{bottom:205.760000pt;}
.y80{bottom:206.400000pt;}
.y138{bottom:213.440000pt;}
.y64{bottom:217.280000pt;}
.yac{bottom:220.480000pt;}
.yfb{bottom:221.120000pt;}
.yd8{bottom:222.080000pt;}
.y2e{bottom:224.000000pt;}
.y7f{bottom:224.960000pt;}
.y137{bottom:228.480000pt;}
.y63{bottom:235.520000pt;}
.yfa{bottom:236.480000pt;}
.yd7{bottom:240.320000pt;}
.y2d{bottom:242.240000pt;}
.y7e{bottom:243.200000pt;}
.y136{bottom:243.840000pt;}
.yab{bottom:249.280000pt;}
.yf9{bottom:251.840000pt;}
.y62{bottom:254.080000pt;}
.yd6{bottom:258.880000pt;}
.y135{bottom:259.200000pt;}
.y2c{bottom:260.800000pt;}
.y7d{bottom:261.760000pt;}
.yf8{bottom:266.880000pt;}
.yaa{bottom:267.840000pt;}
.y61{bottom:272.320000pt;}
.y134{bottom:274.560000pt;}
.yd5{bottom:277.120000pt;}
.y2b{bottom:279.040000pt;}
.y7c{bottom:280.000000pt;}
.yf7{bottom:282.240000pt;}
.ya9{bottom:286.720000pt;}
.y133{bottom:289.920000pt;}
.y60{bottom:290.880000pt;}
.yd4{bottom:295.680000pt;}
.y2a{bottom:297.600000pt;}
.y7b{bottom:298.560000pt;}
.ya8{bottom:304.960000pt;}
.y132{bottom:305.280000pt;}
.y5f{bottom:309.120000pt;}
.yf6{bottom:312.960000pt;}
.yd3{bottom:313.920000pt;}
.y29{bottom:315.840000pt;}
.y7a{bottom:316.800000pt;}
.y131{bottom:320.640000pt;}
.ya7{bottom:323.520000pt;}
.y5e{bottom:327.680000pt;}
.yf5{bottom:328.320000pt;}
.yd2{bottom:332.480000pt;}
.y28{bottom:334.400000pt;}
.y79{bottom:335.360000pt;}
.y130{bottom:336.000000pt;}
.ya6{bottom:341.760000pt;}
.yf4{bottom:343.680000pt;}
.y5d{bottom:345.920000pt;}
.yd1{bottom:350.720000pt;}
.y12f{bottom:351.360000pt;}
.y27{bottom:352.640000pt;}
.y78{bottom:353.600000pt;}
.yf3{bottom:359.040000pt;}
.ya5{bottom:360.320000pt;}
.ye5{bottom:360.960000pt;}
.y5c{bottom:364.480000pt;}
.y12e{bottom:366.720000pt;}
.y26{bottom:371.200000pt;}
.y77{bottom:372.160000pt;}
.yf2{bottom:374.400000pt;}
.ya4{bottom:378.560000pt;}
.yd0{bottom:379.520000pt;}
.ye4{bottom:379.840000pt;}
.y12d{bottom:382.080000pt;}
.y5b{bottom:382.720000pt;}
.y25{bottom:389.440000pt;}
.yf1{bottom:389.760000pt;}
.y76{bottom:390.400000pt;}
.ya3{bottom:397.120000pt;}
.y12c{bottom:397.440000pt;}
.ycf{bottom:398.080000pt;}
.y5a{bottom:401.280000pt;}
.yf0{bottom:405.120000pt;}
.y24{bottom:408.000000pt;}
.y75{bottom:408.960000pt;}
.y12b{bottom:412.480000pt;}
.ya2{bottom:415.360000pt;}
.yce{bottom:416.640000pt;}
.y59{bottom:419.520000pt;}
.yef{bottom:420.480000pt;}
.y23{bottom:426.240000pt;}
.y74{bottom:427.200000pt;}
.y12a{bottom:427.840000pt;}
.ya1{bottom:433.920000pt;}
.ycd{bottom:434.880000pt;}
.yee{bottom:435.520000pt;}
.y58{bottom:438.080000pt;}
.y129{bottom:443.200000pt;}
.y22{bottom:444.800000pt;}
.y73{bottom:445.760000pt;}
.yed{bottom:450.880000pt;}
.ya0{bottom:452.160000pt;}
.ycc{bottom:453.440000pt;}
.y57{bottom:456.320000pt;}
.y128{bottom:458.560000pt;}
.y72{bottom:464.000000pt;}
.yec{bottom:466.240000pt;}
.y9f{bottom:470.720000pt;}
.ycb{bottom:471.680000pt;}
.y21{bottom:473.280000pt;}
.y127{bottom:473.920000pt;}
.y56{bottom:474.880000pt;}
.y71{bottom:482.560000pt;}
.y9e{bottom:488.960000pt;}
.y126{bottom:489.280000pt;}
.yca{bottom:490.240000pt;}
.yeb{bottom:492.800000pt;}
.y55{bottom:493.120000pt;}
.y70{bottom:500.800000pt;}
.y20{bottom:502.400000pt;}
.y125{bottom:504.640000pt;}
.y9d{bottom:507.520000pt;}
.yc9{bottom:508.480000pt;}
.y54{bottom:511.680000pt;}
.y6f{bottom:519.360000pt;}
.y124{bottom:520.000000pt;}
.yc8{bottom:527.040000pt;}
.y1f{bottom:528.960000pt;}
.y53{bottom:529.920000pt;}
.y123{bottom:535.360000pt;}
.y9c{bottom:536.320000pt;}
.y8c{bottom:537.600000pt;}
.yc7{bottom:545.280000pt;}
.y1e{bottom:547.520000pt;}
.y6e{bottom:548.160000pt;}
.y52{bottom:548.480000pt;}
.y122{bottom:550.720000pt;}
.y9b{bottom:554.880000pt;}
.yc6{bottom:563.840000pt;}
.y121{bottom:566.080000pt;}
.y8b{bottom:566.400000pt;}
.y51{bottom:566.720000pt;}
.y9a{bottom:573.440000pt;}
.y1d{bottom:573.760000pt;}
.y120{bottom:581.120000pt;}
.yc5{bottom:582.080000pt;}
.y50{bottom:585.280000pt;}
.y99{bottom:591.680000pt;}
.y1c{bottom:592.320000pt;}
.ye3{bottom:592.640000pt;}
.y11f{bottom:596.480000pt;}
.yc4{bottom:600.640000pt;}
.y4f{bottom:603.520000pt;}
.y98{bottom:610.240000pt;}
.y1b{bottom:610.880000pt;}
.ye2{bottom:611.200000pt;}
.y11e{bottom:611.840000pt;}
.yc3{bottom:618.880000pt;}
.y4e{bottom:622.080000pt;}
.y11d{bottom:627.200000pt;}
.y97{bottom:628.480000pt;}
.y1a{bottom:629.120000pt;}
.ye1{bottom:629.760000pt;}
.yc2{bottom:637.440000pt;}
.y4d{bottom:640.320000pt;}
.y11c{bottom:642.560000pt;}
.y96{bottom:647.040000pt;}
.y19{bottom:647.680000pt;}
.ye0{bottom:648.000000pt;}
.y11b{bottom:657.920000pt;}
.y4c{bottom:658.880000pt;}
.y95{bottom:665.280000pt;}
.y18{bottom:665.920000pt;}
.yc1{bottom:666.240000pt;}
.ydf{bottom:666.560000pt;}
.y11a{bottom:673.280000pt;}
.y4b{bottom:677.120000pt;}
.y94{bottom:683.840000pt;}
.y17{bottom:684.480000pt;}
.yc0{bottom:684.800000pt;}
.y119{bottom:688.640000pt;}
.y4a{bottom:695.360000pt;}
.y93{bottom:702.080000pt;}
.y16{bottom:702.720000pt;}
.ybf{bottom:703.360000pt;}
.y118{bottom:704.000000pt;}
.y49{bottom:713.920000pt;}
.y117{bottom:719.360000pt;}
.y92{bottom:720.640000pt;}
.y15{bottom:721.280000pt;}
.ybe{bottom:721.600000pt;}
.y48{bottom:732.160000pt;}
.y116{bottom:734.720000pt;}
.y91{bottom:738.880000pt;}
.y14{bottom:739.520000pt;}
.ybd{bottom:740.160000pt;}
.y115{bottom:749.760000pt;}
.y47{bottom:750.720000pt;}
.y90{bottom:757.440000pt;}
.y13{bottom:758.080000pt;}
.ybc{bottom:758.400000pt;}
.y114{bottom:765.120000pt;}
.y46{bottom:768.960000pt;}
.y8f{bottom:775.680000pt;}
.y12{bottom:776.320000pt;}
.ybb{bottom:776.960000pt;}
.y113{bottom:780.480000pt;}
.y45{bottom:787.520000pt;}
.y11{bottom:794.880000pt;}
.yba{bottom:795.200000pt;}
.y112{bottom:795.840000pt;}
.y8e{bottom:804.480000pt;}
.y44{bottom:805.760000pt;}
.y111{bottom:811.200000pt;}
.y10{bottom:813.120000pt;}
.yb9{bottom:813.760000pt;}
.y8d{bottom:824.000000pt;}
.y43{bottom:824.320000pt;}
.y110{bottom:826.560000pt;}
.yf{bottom:831.680000pt;}
.yb8{bottom:832.000000pt;}
.y10f{bottom:841.920000pt;}
.y42{bottom:842.560000pt;}
.yb7{bottom:850.560000pt;}
.ye{bottom:854.080000pt;}
.y10e{bottom:857.280000pt;}
.y41{bottom:861.120000pt;}
.yb6{bottom:868.800000pt;}
.yd{bottom:869.440000pt;}
.y10d{bottom:872.640000pt;}
.y40{bottom:879.360000pt;}
.yc{bottom:880.320000pt;}
.yb5{bottom:887.360000pt;}
.y10c{bottom:888.000000pt;}
.y3f{bottom:897.920000pt;}
.yb{bottom:899.520000pt;}
.y10b{bottom:903.360000pt;}
.yb4{bottom:915.840000pt;}
.y3e{bottom:916.160000pt;}
.ya{bottom:917.760000pt;}
.y10a{bottom:918.720000pt;}
.y109{bottom:933.760000pt;}
.y3d{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.y108{bottom:949.120000pt;}
.y3c{bottom:952.960000pt;}
.y107{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.y3b{bottom:971.520000pt;}
.y106{bottom:979.840000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y105{bottom:995.200000pt;}
.y39{bottom:1008.320000pt;}
.y104{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y6d{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.y6c{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.h9{height:23.355000pt;}
.h10{height:35.831250pt;}
.hf{height:37.353750pt;}
.h3{height:39.243750pt;}
.hc{height:41.287680pt;}
.hd{height:42.656250pt;}
.hb{height:43.253760pt;}
.he{height:43.343750pt;}
.h7{height:43.375000pt;}
.ha{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h8{height:50.305000pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:113.279936pt;}
.x2{left:114.903968pt;}
.xc{left:127.252608pt;}
.x7{left:128.330400pt;}
.x4{left:137.279936pt;}
.x6{left:140.681952pt;}
.xa{left:151.080064pt;}
.xe{left:161.279936pt;}
.x1{left:215.868512pt;}
.x9{left:250.109696pt;}
.x3{left:396.579840pt;}
.xb{left:475.015987pt;}
.xd{left:511.123520pt;}
.x5{left:653.333333pt;}
}




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