
    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_e9c4e81ed31d5401ffeb5bad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_8c771a8c4bcd92457f6f396b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851074;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_38c49e0aa892e00495c4f7b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_5bc54ba15d2351b5b4c61953.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.817871;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_2d2dfed14dbfe4ae9c881c7a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41ae7b95b6a85b4d63b9014c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_03a80ff2e5879340f440f9e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.772949;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_7eee6721f19dc3b206961fd1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_339138516a6c769e95bb8eb4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.004395;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_d659ec7aeef072055e2f06c8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d5d64cdd01f3213ab8ef4e06.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls19{letter-spacing:-5.032800px;}
.ls23{letter-spacing:-3.657600px;}
.ls10{letter-spacing:-1.857600px;}
.ls3c{letter-spacing:-1.735200px;}
.ls36{letter-spacing:-1.310400px;}
.ls29{letter-spacing:-1.101600px;}
.ls3d{letter-spacing:-0.950400px;}
.ls3e{letter-spacing:-0.892800px;}
.ls13{letter-spacing:-0.727200px;}
.ls20{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.712800px;}
.ls1d{letter-spacing:-0.691200px;}
.ls26{letter-spacing:-0.669600px;}
.ls1e{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.432000px;}
.ls2f{letter-spacing:-0.381600px;}
.ls1b{letter-spacing:-0.331200px;}
.ls11{letter-spacing:-0.324000px;}
.ls34{letter-spacing:-0.244800px;}
.ls9{letter-spacing:-0.237600px;}
.ls2d{letter-spacing:-0.079200px;}
.ls22{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.064800px;}
.ls27{letter-spacing:-0.050400px;}
.ls35{letter-spacing:-0.043200px;}
.lsd{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.028800px;}
.ls28{letter-spacing:-0.021600px;}
.ls6{letter-spacing:-0.014400px;}
.lsa{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002304px;}
.ls8{letter-spacing:0.007200px;}
.lse{letter-spacing:0.008640px;}
.ls2b{letter-spacing:0.008928px;}
.lsf{letter-spacing:0.010080px;}
.ls0{letter-spacing:0.014400px;}
.ls1a{letter-spacing:0.019728px;}
.ls4{letter-spacing:0.021600px;}
.ls39{letter-spacing:0.023040px;}
.ls37{letter-spacing:0.023904px;}
.ls38{letter-spacing:0.024048px;}
.ls33{letter-spacing:0.024480px;}
.ls3{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.036000px;}
.ls3a{letter-spacing:0.043200px;}
.ls2e{letter-spacing:0.115200px;}
.ls12{letter-spacing:0.133632px;}
.ls1{letter-spacing:0.135648px;}
.ls7{letter-spacing:0.137808px;}
.lsc{letter-spacing:0.266400px;}
.ls1f{letter-spacing:0.283968px;}
.ls2c{letter-spacing:0.300672px;}
.ls25{letter-spacing:0.342432px;}
.ls14{letter-spacing:0.375840px;}
.ls21{letter-spacing:0.604800px;}
.ls2a{letter-spacing:1.123200px;}
.ls17{letter-spacing:1.396800px;}
.ls3b{letter-spacing:8.495712px;}
.ls32{letter-spacing:46.956672px;}
.ls31{letter-spacing:74.645712px;}
.ls30{letter-spacing:107.903520px;}
.ls15{letter-spacing:201.384000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.296992px;}
.ws1b{word-spacing:-17.255232px;}
.ws11{word-spacing:-17.238528px;}
.ws8{word-spacing:-17.088192px;}
.wsb{word-spacing:-16.012800px;}
.ws13{word-spacing:-15.220800px;}
.wsa{word-spacing:-14.644800px;}
.ws1e{word-spacing:-14.637600px;}
.wse{word-spacing:-14.630400px;}
.ws1{word-spacing:-14.623200px;}
.ws0{word-spacing:-14.616000px;}
.ws3{word-spacing:-14.608800px;}
.ws4{word-spacing:-14.601600px;}
.ws17{word-spacing:-14.587200px;}
.ws5{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.572800px;}
.ws19{word-spacing:-14.565600px;}
.ws15{word-spacing:-14.551200px;}
.ws2{word-spacing:-14.378400px;}
.ws7{word-spacing:-14.292000px;}
.wsf{word-spacing:-14.284800px;}
.ws1c{word-spacing:-14.234400px;}
.ws9{word-spacing:-14.184000px;}
.ws10{word-spacing:-13.903200px;}
.ws12{word-spacing:-13.896000px;}
.ws21{word-spacing:-13.723200px;}
.ws20{word-spacing:-13.665600px;}
.ws1a{word-spacing:-13.514400px;}
.ws1f{word-spacing:-12.880800px;}
.ws14{word-spacing:-10.958400px;}
.wsd{word-spacing:-9.583200px;}
.ws16{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._b{margin-left:-201.384000px;}
._a{margin-left:-50.688000px;}
._7{margin-left:-9.511200px;}
._11{margin-left:-8.091072px;}
._6{margin-left:-6.073920px;}
._9{margin-left:-5.025600px;}
._2{margin-left:-4.010400px;}
._1{margin-left:-2.692800px;}
._0{margin-left:-1.677600px;}
._3{width:1.632960px;}
._8{width:3.335040px;}
._c{width:5.040000px;}
._10{width:33.552000px;}
._e{width:62.186400px;}
._f{width:111.254400px;}
._d{width:150.552000px;}
._5{width:168.477696px;}
._4{width:178.948512px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.460000px;}
.y78{bottom:5.640000px;}
.y7c{bottom:5.820000px;}
.y86{bottom:6.000000px;}
.y7a{bottom:6.300000px;}
.y84{bottom:6.480000px;}
.y82{bottom:6.600000px;}
.y80{bottom:6.720000px;}
.y7e{bottom:7.200000px;}
.y88{bottom:7.380000px;}
.yb3{bottom:20.520000px;}
.ya2{bottom:20.640000px;}
.ya6{bottom:20.700000px;}
.ye5{bottom:20.820000px;}
.yea{bottom:20.880000px;}
.y9e{bottom:20.940000px;}
.yab{bottom:21.060000px;}
.yef{bottom:21.240000px;}
.ye2{bottom:21.540000px;}
.y9c{bottom:21.600000px;}
.yaf{bottom:21.900000px;}
.yb1{bottom:21.960000px;}
.yb5{bottom:22.020000px;}
.ya4{bottom:22.140000px;}
.ya0{bottom:22.440000px;}
.ye6{bottom:33.420000px;}
.yed{bottom:33.480000px;}
.ye8{bottom:33.780000px;}
.yec{bottom:33.840000px;}
.yad{bottom:39.780000px;}
.ye4{bottom:46.380000px;}
.yee{bottom:46.440000px;}
.yaa{bottom:46.620000px;}
.y2{bottom:52.500000px;}
.ya8{bottom:52.740000px;}
.y1{bottom:58.320000px;}
.yac{bottom:65.340000px;}
.ya9{bottom:84.060000px;}
.y26{bottom:116.640000px;}
.ye0{bottom:122.040000px;}
.y10b{bottom:122.760000px;}
.y12b{bottom:124.200000px;}
.yca{bottom:137.880000px;}
.y9a{bottom:140.760000px;}
.y25{bottom:142.200000px;}
.ydf{bottom:147.600000px;}
.y11f{bottom:149.760000px;}
.y14c{bottom:158.400000px;}
.y49{bottom:158.760000px;}
.y10a{bottom:160.200000px;}
.y12a{bottom:161.640000px;}
.y24{bottom:167.400000px;}
.y76{bottom:168.840000px;}
.yde{bottom:173.160000px;}
.yc9{bottom:175.320000px;}
.y99{bottom:178.200000px;}
.y14b{bottom:183.960000px;}
.y48{bottom:184.320000px;}
.y109{bottom:185.760000px;}
.y129{bottom:187.200000px;}
.ydd{bottom:198.360000px;}
.y11e{bottom:200.520000px;}
.y62{bottom:200.880000px;}
.y23{bottom:204.840000px;}
.y75{bottom:206.280000px;}
.y47{bottom:209.880000px;}
.y108{bottom:210.960000px;}
.yc8{bottom:212.760000px;}
.y98{bottom:215.640000px;}
.y14a{bottom:221.400000px;}
.y13c{bottom:223.200000px;}
.ydc{bottom:223.920000px;}
.y11d{bottom:226.080000px;}
.y22{bottom:230.400000px;}
.y74{bottom:231.840000px;}
.yb4{bottom:232.500000px;}
.yb2{bottom:234.000000px;}
.y46{bottom:235.440000px;}
.y107{bottom:236.520000px;}
.y128{bottom:237.960000px;}
.y61{bottom:238.320000px;}
.y149{bottom:246.600000px;}
.ydb{bottom:249.480000px;}
.yc7{bottom:250.200000px;}
.y11c{bottom:251.640000px;}
.y21{bottom:255.960000px;}
.y45{bottom:260.640000px;}
.y106{bottom:262.080000px;}
.y127{bottom:263.520000px;}
.y73{bottom:269.280000px;}
.yb0{bottom:270.000000px;}
.y148{bottom:272.160000px;}
.yda{bottom:274.680000px;}
.yc6{bottom:275.400000px;}
.y60{bottom:275.760000px;}
.y11b{bottom:276.840000px;}
.y20{bottom:281.160000px;}
.y44{bottom:286.200000px;}
.y105{bottom:287.280000px;}
.y126{bottom:289.080000px;}
.yd9{bottom:300.240000px;}
.yc5{bottom:300.960000px;}
.y11a{bottom:302.400000px;}
.y15f{bottom:303.840000px;}
.y1f{bottom:306.720000px;}
.yae{bottom:307.500000px;}
.y147{bottom:309.600000px;}
.y104{bottom:312.840000px;}
.y5f{bottom:313.200000px;}
.y125{bottom:314.280000px;}
.y43{bottom:323.640000px;}
.yd8{bottom:325.800000px;}
.yc4{bottom:326.520000px;}
.y15e{bottom:329.400000px;}
.y1e{bottom:332.280000px;}
.y146{bottom:335.160000px;}
.y103{bottom:338.400000px;}
.y119{bottom:339.840000px;}
.ya7{bottom:346.500000px;}
.y42{bottom:349.200000px;}
.y5e{bottom:350.640000px;}
.yd7{bottom:351.360000px;}
.yc3{bottom:351.720000px;}
.y15d{bottom:354.600000px;}
.y1d{bottom:357.840000px;}
.y145{bottom:360.720000px;}
.y13b{bottom:361.080000px;}
.y118{bottom:365.400000px;}
.y41{bottom:374.400000px;}
.y5d{bottom:375.840000px;}
.yd6{bottom:376.560000px;}
.yc2{bottom:377.280000px;}
.y1c{bottom:383.040000px;}
.y144{bottom:385.920000px;}
.y117{bottom:390.600000px;}
.y15c{bottom:392.040000px;}
.y13a{bottom:398.520000px;}
.y40{bottom:399.960000px;}
.y5c{bottom:401.400000px;}
.y72{bottom:408.600000px;}
.yd5{bottom:414.000000px;}
.yc1{bottom:414.720000px;}
.y116{bottom:416.160000px;}
.y102{bottom:417.600000px;}
.y1b{bottom:420.480000px;}
.y143{bottom:423.360000px;}
.y139{bottom:424.080000px;}
.y3f{bottom:425.520000px;}
.y5b{bottom:426.960000px;}
.y124{bottom:428.040000px;}
.yeb{bottom:432.000000px;}
.y71{bottom:434.160000px;}
.yc0{bottom:440.280000px;}
.y115{bottom:441.720000px;}
.y1a{bottom:446.040000px;}
.y142{bottom:448.920000px;}
.y138{bottom:449.280000px;}
.y3e{bottom:450.720000px;}
.y5a{bottom:452.160000px;}
.y101{bottom:455.040000px;}
.y70{bottom:459.360000px;}
.ybf{bottom:465.840000px;}
.y19{bottom:471.600000px;}
.y141{bottom:474.480000px;}
.y137{bottom:474.840000px;}
.y3d{bottom:476.280000px;}
.y59{bottom:477.720000px;}
.y114{bottom:479.160000px;}
.y100{bottom:480.240000px;}
.y15b{bottom:480.600000px;}
.y6f{bottom:484.920000px;}
.ybe{bottom:491.040000px;}
.ye9{bottom:495.000000px;}
.y18{bottom:496.800000px;}
.y136{bottom:500.400000px;}
.y3c{bottom:501.840000px;}
.y123{bottom:503.280000px;}
.yff{bottom:505.800000px;}
.y15a{bottom:506.160000px;}
.y97{bottom:509.040000px;}
.y6e{bottom:510.480000px;}
.y140{bottom:511.920000px;}
.y58{bottom:515.160000px;}
.ybd{bottom:516.600000px;}
.y17{bottom:522.360000px;}
.y135{bottom:525.960000px;}
.y122{bottom:528.480000px;}
.yfe{bottom:531.360000px;}
.ye7{bottom:532.500000px;}
.y96{bottom:534.240000px;}
.y6d{bottom:535.680000px;}
.y3b{bottom:539.280000px;}
.ybc{bottom:542.160000px;}
.y159{bottom:543.600000px;}
.y16{bottom:547.920000px;}
.y13f{bottom:549.360000px;}
.y134{bottom:551.160000px;}
.y57{bottom:552.600000px;}
.y113{bottom:554.040000px;}
.y95{bottom:559.800000px;}
.y3a{bottom:564.840000px;}
.ybb{bottom:567.360000px;}
.yfd{bottom:568.440000px;}
.y158{bottom:568.800000px;}
.y6c{bottom:573.120000px;}
.y133{bottom:576.720000px;}
.y112{bottom:579.600000px;}
.y15{bottom:585.360000px;}
.y13e{bottom:586.800000px;}
.y39{bottom:590.040000px;}
.yba{bottom:592.920000px;}
.yfc{bottom:594.360000px;}
.ye3{bottom:595.500000px;}
.y94{bottom:597.240000px;}
.y132{bottom:602.280000px;}
.y111{bottom:604.800000px;}
.y14{bottom:610.560000px;}
.y38{bottom:615.600000px;}
.yb9{bottom:618.480000px;}
.yfb{bottom:619.920000px;}
.y13d{bottom:624.240000px;}
.y131{bottom:627.480000px;}
.y110{bottom:630.360000px;}
.y157{bottom:631.800000px;}
.y93{bottom:634.680000px;}
.y13{bottom:636.120000px;}
.y37{bottom:641.160000px;}
.yfa{bottom:645.120000px;}
.y6b{bottom:648.360000px;}
.y130{bottom:653.040000px;}
.y56{bottom:654.480000px;}
.yb8{bottom:655.920000px;}
.y156{bottom:657.360000px;}
.ye1{bottom:658.500000px;}
.y92{bottom:660.240000px;}
.y12{bottom:661.680000px;}
.y36{bottom:666.360000px;}
.yf9{bottom:670.680000px;}
.y6a{bottom:673.560000px;}
.y12f{bottom:678.600000px;}
.yb7{bottom:681.120000px;}
.y155{bottom:682.560000px;}
.y91{bottom:685.800000px;}
.y11{bottom:687.240000px;}
.y35{bottom:691.920000px;}
.y55{bottom:694.800000px;}
.yf8{bottom:696.240000px;}
.y69{bottom:699.120000px;}
.y12e{bottom:703.800000px;}
.yb6{bottom:706.680000px;}
.y90{bottom:711.000000px;}
.y10{bottom:712.440000px;}
.y34{bottom:717.480000px;}
.y154{bottom:720.360000px;}
.y68{bottom:724.680000px;}
.y12d{bottom:729.360000px;}
.yd4{bottom:730.800000px;}
.y54{bottom:732.240000px;}
.yf7{bottom:733.680000px;}
.y8f{bottom:736.560000px;}
.y121{bottom:744.120000px;}
.y153{bottom:745.560000px;}
.yf{bottom:749.880000px;}
.y33{bottom:754.920000px;}
.yd3{bottom:756.360000px;}
.y53{bottom:757.800000px;}
.yf6{bottom:759.240000px;}
.y120{bottom:769.680000px;}
.y152{bottom:771.120000px;}
.y8e{bottom:774.000000px;}
.ya5{bottom:778.500000px;}
.y32{bottom:780.120000px;}
.yd2{bottom:781.920000px;}
.y52{bottom:783.000000px;}
.yf5{bottom:784.440000px;}
.ye{bottom:787.320000px;}
.y12c{bottom:793.800000px;}
.y10f{bottom:795.240000px;}
.y151{bottom:796.680000px;}
.y31{bottom:805.680000px;}
.y51{bottom:808.560000px;}
.yf4{bottom:810.000000px;}
.y8d{bottom:811.440000px;}
.ya3{bottom:814.500000px;}
.ya1{bottom:816.000000px;}
.yd1{bottom:819.360000px;}
.y10e{bottom:820.440000px;}
.y150{bottom:821.880000px;}
.y87{bottom:823.500000px;}
.yd{bottom:824.760000px;}
.y30{bottom:831.240000px;}
.y50{bottom:834.120000px;}
.yf3{bottom:835.560000px;}
.y10d{bottom:846.000000px;}
.y8c{bottom:848.880000px;}
.y85{bottom:849.000000px;}
.y9f{bottom:852.000000px;}
.y9d{bottom:853.500000px;}
.y2f{bottom:856.800000px;}
.y4f{bottom:859.320000px;}
.yf2{bottom:860.760000px;}
.yc{bottom:862.200000px;}
.y10c{bottom:871.560000px;}
.y83{bottom:873.000000px;}
.y2e{bottom:882.000000px;}
.y14f{bottom:884.880000px;}
.y8b{bottom:886.320000px;}
.y9b{bottom:891.000000px;}
.yb{bottom:893.880000px;}
.y4e{bottom:896.760000px;}
.y81{bottom:897.000000px;}
.y67{bottom:899.640000px;}
.y2d{bottom:907.560000px;}
.y14e{bottom:910.440000px;}
.yf1{bottom:911.880000px;}
.y7f{bottom:921.000000px;}
.y4d{bottom:922.320000px;}
.y8a{bottom:923.760000px;}
.ya{bottom:931.320000px;}
.y14d{bottom:935.640000px;}
.y66{bottom:937.080000px;}
.y7d{bottom:945.000000px;}
.y2c{bottom:946.440000px;}
.y4c{bottom:947.880000px;}
.yf0{bottom:949.320000px;}
.y89{bottom:961.200000px;}
.y9{bottom:962.640000px;}
.y7b{bottom:970.500000px;}
.y4b{bottom:973.080000px;}
.y65{bottom:974.880000px;}
.yd0{bottom:982.440000px;}
.y2b{bottom:986.760000px;}
.y79{bottom:994.500000px;}
.y4a{bottom:998.640000px;}
.y8{bottom:1000.080000px;}
.y64{bottom:1012.320000px;}
.ycf{bottom:1019.880000px;}
.y77{bottom:1020.000000px;}
.y2a{bottom:1024.200000px;}
.y7{bottom:1037.520000px;}
.yce{bottom:1045.440000px;}
.y29{bottom:1049.760000px;}
.y6{bottom:1063.080000px;}
.ycd{bottom:1070.640000px;}
.y28{bottom:1074.960000px;}
.y63{bottom:1087.200000px;}
.ycc{bottom:1096.200000px;}
.y5{bottom:1100.520000px;}
.y27{bottom:1112.400000px;}
.ycb{bottom:1135.080000px;}
.y4{bottom:1137.960000px;}
.h3{height:22.500000px;}
.h8{height:25.500000px;}
.hb{height:27.000000px;}
.h6{height:27.833203px;}
.he{height:37.500000px;}
.hc{height:39.000000px;}
.hd{height:40.500000px;}
.h4{height:47.988281px;}
.h2{height:48.023438px;}
.ha{height:52.066406px;}
.h5{height:52.313203px;}
.h9{height:52.382813px;}
.h7{height:55.666406px;}
.h10{height:64.500000px;}
.hf{height:102.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.wd{width:21.000000px;}
.w5{width:129.000000px;}
.w6{width:139.500000px;}
.wc{width:150.000000px;}
.w7{width:171.000000px;}
.w8{width:181.500000px;}
.w4{width:202.500000px;}
.wa{width:214.500000px;}
.w9{width:267.000000px;}
.wb{width:268.500000px;}
.w3{width:321.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1b{left:1.320000px;}
.xa{left:7.071192px;}
.x8{left:17.561160px;}
.xd{left:24.311160px;}
.xb{left:26.069040px;}
.xf{left:30.569040px;}
.x16{left:38.340816px;}
.x17{left:43.782840px;}
.xe{left:45.984744px;}
.x9{left:54.576072px;}
.x11{left:56.808468px;}
.xc{left:61.326072px;}
.x12{left:66.867840px;}
.x10{left:72.149796px;}
.x6{left:76.852440px;}
.x7{left:88.233768px;}
.x1{left:108.000000px;}
.x18{left:124.500000px;}
.x1e{left:131.055000px;}
.x4{left:133.396380px;}
.x23{left:135.000000px;}
.x1f{left:136.500000px;}
.x1c{left:145.193856px;}
.x24{left:166.500000px;}
.x3{left:184.500000px;}
.x1d{left:199.676400px;}
.x13{left:228.000000px;}
.x19{left:304.500000px;}
.x14{left:355.500000px;}
.x20{left:403.500000px;}
.x15{left:493.500000px;}
.x5{left:504.000000px;}
.x21{left:552.000000px;}
.x1a{left:570.000000px;}
.x22{left:765.000000px;}
.x2{left:775.500000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls19{letter-spacing:-4.473600pt;}
.ls23{letter-spacing:-3.251200pt;}
.ls10{letter-spacing:-1.651200pt;}
.ls3c{letter-spacing:-1.542400pt;}
.ls36{letter-spacing:-1.164800pt;}
.ls29{letter-spacing:-0.979200pt;}
.ls3d{letter-spacing:-0.844800pt;}
.ls3e{letter-spacing:-0.793600pt;}
.ls13{letter-spacing:-0.646400pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.633600pt;}
.ls1d{letter-spacing:-0.614400pt;}
.ls26{letter-spacing:-0.595200pt;}
.ls1e{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls2f{letter-spacing:-0.339200pt;}
.ls1b{letter-spacing:-0.294400pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls34{letter-spacing:-0.217600pt;}
.ls9{letter-spacing:-0.211200pt;}
.ls2d{letter-spacing:-0.070400pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.057600pt;}
.ls27{letter-spacing:-0.044800pt;}
.ls35{letter-spacing:-0.038400pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.025600pt;}
.ls28{letter-spacing:-0.019200pt;}
.ls6{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002048pt;}
.ls8{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.007680pt;}
.ls2b{letter-spacing:0.007936pt;}
.lsf{letter-spacing:0.008960pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1a{letter-spacing:0.017536pt;}
.ls4{letter-spacing:0.019200pt;}
.ls39{letter-spacing:0.020480pt;}
.ls37{letter-spacing:0.021248pt;}
.ls38{letter-spacing:0.021376pt;}
.ls33{letter-spacing:0.021760pt;}
.ls3{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.032000pt;}
.ls3a{letter-spacing:0.038400pt;}
.ls2e{letter-spacing:0.102400pt;}
.ls12{letter-spacing:0.118784pt;}
.ls1{letter-spacing:0.120576pt;}
.ls7{letter-spacing:0.122496pt;}
.lsc{letter-spacing:0.236800pt;}
.ls1f{letter-spacing:0.252416pt;}
.ls2c{letter-spacing:0.267264pt;}
.ls25{letter-spacing:0.304384pt;}
.ls14{letter-spacing:0.334080pt;}
.ls21{letter-spacing:0.537600pt;}
.ls2a{letter-spacing:0.998400pt;}
.ls17{letter-spacing:1.241600pt;}
.ls3b{letter-spacing:7.551744pt;}
.ls32{letter-spacing:41.739264pt;}
.ls31{letter-spacing:66.351744pt;}
.ls30{letter-spacing:95.914240pt;}
.ls15{letter-spacing:179.008000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.375104pt;}
.ws1b{word-spacing:-15.337984pt;}
.ws11{word-spacing:-15.323136pt;}
.ws8{word-spacing:-15.189504pt;}
.wsb{word-spacing:-14.233600pt;}
.ws13{word-spacing:-13.529600pt;}
.wsa{word-spacing:-13.017600pt;}
.ws1e{word-spacing:-13.011200pt;}
.wse{word-spacing:-13.004800pt;}
.ws1{word-spacing:-12.998400pt;}
.ws0{word-spacing:-12.992000pt;}
.ws3{word-spacing:-12.985600pt;}
.ws4{word-spacing:-12.979200pt;}
.ws17{word-spacing:-12.966400pt;}
.ws5{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.953600pt;}
.ws19{word-spacing:-12.947200pt;}
.ws15{word-spacing:-12.934400pt;}
.ws2{word-spacing:-12.780800pt;}
.ws7{word-spacing:-12.704000pt;}
.wsf{word-spacing:-12.697600pt;}
.ws1c{word-spacing:-12.652800pt;}
.ws9{word-spacing:-12.608000pt;}
.ws10{word-spacing:-12.358400pt;}
.ws12{word-spacing:-12.352000pt;}
.ws21{word-spacing:-12.198400pt;}
.ws20{word-spacing:-12.147200pt;}
.ws1a{word-spacing:-12.012800pt;}
.ws1f{word-spacing:-11.449600pt;}
.ws14{word-spacing:-9.740800pt;}
.wsd{word-spacing:-8.518400pt;}
.ws16{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._b{margin-left:-179.008000pt;}
._a{margin-left:-45.056000pt;}
._7{margin-left:-8.454400pt;}
._11{margin-left:-7.192064pt;}
._6{margin-left:-5.399040pt;}
._9{margin-left:-4.467200pt;}
._2{margin-left:-3.564800pt;}
._1{margin-left:-2.393600pt;}
._0{margin-left:-1.491200pt;}
._3{width:1.451520pt;}
._8{width:2.964480pt;}
._c{width:4.480000pt;}
._10{width:29.824000pt;}
._e{width:55.276800pt;}
._f{width:98.892800pt;}
._d{width:133.824000pt;}
._5{width:149.757952pt;}
._4{width:159.065344pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.853333pt;}
.y78{bottom:5.013333pt;}
.y7c{bottom:5.173333pt;}
.y86{bottom:5.333333pt;}
.y7a{bottom:5.600000pt;}
.y84{bottom:5.760000pt;}
.y82{bottom:5.866667pt;}
.y80{bottom:5.973333pt;}
.y7e{bottom:6.400000pt;}
.y88{bottom:6.560000pt;}
.yb3{bottom:18.240000pt;}
.ya2{bottom:18.346667pt;}
.ya6{bottom:18.400000pt;}
.ye5{bottom:18.506667pt;}
.yea{bottom:18.560000pt;}
.y9e{bottom:18.613333pt;}
.yab{bottom:18.720000pt;}
.yef{bottom:18.880000pt;}
.ye2{bottom:19.146667pt;}
.y9c{bottom:19.200000pt;}
.yaf{bottom:19.466667pt;}
.yb1{bottom:19.520000pt;}
.yb5{bottom:19.573333pt;}
.ya4{bottom:19.680000pt;}
.ya0{bottom:19.946667pt;}
.ye6{bottom:29.706667pt;}
.yed{bottom:29.760000pt;}
.ye8{bottom:30.026667pt;}
.yec{bottom:30.080000pt;}
.yad{bottom:35.360000pt;}
.ye4{bottom:41.226667pt;}
.yee{bottom:41.280000pt;}
.yaa{bottom:41.440000pt;}
.y2{bottom:46.666667pt;}
.ya8{bottom:46.880000pt;}
.y1{bottom:51.840000pt;}
.yac{bottom:58.080000pt;}
.ya9{bottom:74.720000pt;}
.y26{bottom:103.680000pt;}
.ye0{bottom:108.480000pt;}
.y10b{bottom:109.120000pt;}
.y12b{bottom:110.400000pt;}
.yca{bottom:122.560000pt;}
.y9a{bottom:125.120000pt;}
.y25{bottom:126.400000pt;}
.ydf{bottom:131.200000pt;}
.y11f{bottom:133.120000pt;}
.y14c{bottom:140.800000pt;}
.y49{bottom:141.120000pt;}
.y10a{bottom:142.400000pt;}
.y12a{bottom:143.680000pt;}
.y24{bottom:148.800000pt;}
.y76{bottom:150.080000pt;}
.yde{bottom:153.920000pt;}
.yc9{bottom:155.840000pt;}
.y99{bottom:158.400000pt;}
.y14b{bottom:163.520000pt;}
.y48{bottom:163.840000pt;}
.y109{bottom:165.120000pt;}
.y129{bottom:166.400000pt;}
.ydd{bottom:176.320000pt;}
.y11e{bottom:178.240000pt;}
.y62{bottom:178.560000pt;}
.y23{bottom:182.080000pt;}
.y75{bottom:183.360000pt;}
.y47{bottom:186.560000pt;}
.y108{bottom:187.520000pt;}
.yc8{bottom:189.120000pt;}
.y98{bottom:191.680000pt;}
.y14a{bottom:196.800000pt;}
.y13c{bottom:198.400000pt;}
.ydc{bottom:199.040000pt;}
.y11d{bottom:200.960000pt;}
.y22{bottom:204.800000pt;}
.y74{bottom:206.080000pt;}
.yb4{bottom:206.666667pt;}
.yb2{bottom:208.000000pt;}
.y46{bottom:209.280000pt;}
.y107{bottom:210.240000pt;}
.y128{bottom:211.520000pt;}
.y61{bottom:211.840000pt;}
.y149{bottom:219.200000pt;}
.ydb{bottom:221.760000pt;}
.yc7{bottom:222.400000pt;}
.y11c{bottom:223.680000pt;}
.y21{bottom:227.520000pt;}
.y45{bottom:231.680000pt;}
.y106{bottom:232.960000pt;}
.y127{bottom:234.240000pt;}
.y73{bottom:239.360000pt;}
.yb0{bottom:240.000000pt;}
.y148{bottom:241.920000pt;}
.yda{bottom:244.160000pt;}
.yc6{bottom:244.800000pt;}
.y60{bottom:245.120000pt;}
.y11b{bottom:246.080000pt;}
.y20{bottom:249.920000pt;}
.y44{bottom:254.400000pt;}
.y105{bottom:255.360000pt;}
.y126{bottom:256.960000pt;}
.yd9{bottom:266.880000pt;}
.yc5{bottom:267.520000pt;}
.y11a{bottom:268.800000pt;}
.y15f{bottom:270.080000pt;}
.y1f{bottom:272.640000pt;}
.yae{bottom:273.333333pt;}
.y147{bottom:275.200000pt;}
.y104{bottom:278.080000pt;}
.y5f{bottom:278.400000pt;}
.y125{bottom:279.360000pt;}
.y43{bottom:287.680000pt;}
.yd8{bottom:289.600000pt;}
.yc4{bottom:290.240000pt;}
.y15e{bottom:292.800000pt;}
.y1e{bottom:295.360000pt;}
.y146{bottom:297.920000pt;}
.y103{bottom:300.800000pt;}
.y119{bottom:302.080000pt;}
.ya7{bottom:308.000000pt;}
.y42{bottom:310.400000pt;}
.y5e{bottom:311.680000pt;}
.yd7{bottom:312.320000pt;}
.yc3{bottom:312.640000pt;}
.y15d{bottom:315.200000pt;}
.y1d{bottom:318.080000pt;}
.y145{bottom:320.640000pt;}
.y13b{bottom:320.960000pt;}
.y118{bottom:324.800000pt;}
.y41{bottom:332.800000pt;}
.y5d{bottom:334.080000pt;}
.yd6{bottom:334.720000pt;}
.yc2{bottom:335.360000pt;}
.y1c{bottom:340.480000pt;}
.y144{bottom:343.040000pt;}
.y117{bottom:347.200000pt;}
.y15c{bottom:348.480000pt;}
.y13a{bottom:354.240000pt;}
.y40{bottom:355.520000pt;}
.y5c{bottom:356.800000pt;}
.y72{bottom:363.200000pt;}
.yd5{bottom:368.000000pt;}
.yc1{bottom:368.640000pt;}
.y116{bottom:369.920000pt;}
.y102{bottom:371.200000pt;}
.y1b{bottom:373.760000pt;}
.y143{bottom:376.320000pt;}
.y139{bottom:376.960000pt;}
.y3f{bottom:378.240000pt;}
.y5b{bottom:379.520000pt;}
.y124{bottom:380.480000pt;}
.yeb{bottom:384.000000pt;}
.y71{bottom:385.920000pt;}
.yc0{bottom:391.360000pt;}
.y115{bottom:392.640000pt;}
.y1a{bottom:396.480000pt;}
.y142{bottom:399.040000pt;}
.y138{bottom:399.360000pt;}
.y3e{bottom:400.640000pt;}
.y5a{bottom:401.920000pt;}
.y101{bottom:404.480000pt;}
.y70{bottom:408.320000pt;}
.ybf{bottom:414.080000pt;}
.y19{bottom:419.200000pt;}
.y141{bottom:421.760000pt;}
.y137{bottom:422.080000pt;}
.y3d{bottom:423.360000pt;}
.y59{bottom:424.640000pt;}
.y114{bottom:425.920000pt;}
.y100{bottom:426.880000pt;}
.y15b{bottom:427.200000pt;}
.y6f{bottom:431.040000pt;}
.ybe{bottom:436.480000pt;}
.ye9{bottom:440.000000pt;}
.y18{bottom:441.600000pt;}
.y136{bottom:444.800000pt;}
.y3c{bottom:446.080000pt;}
.y123{bottom:447.360000pt;}
.yff{bottom:449.600000pt;}
.y15a{bottom:449.920000pt;}
.y97{bottom:452.480000pt;}
.y6e{bottom:453.760000pt;}
.y140{bottom:455.040000pt;}
.y58{bottom:457.920000pt;}
.ybd{bottom:459.200000pt;}
.y17{bottom:464.320000pt;}
.y135{bottom:467.520000pt;}
.y122{bottom:469.760000pt;}
.yfe{bottom:472.320000pt;}
.ye7{bottom:473.333333pt;}
.y96{bottom:474.880000pt;}
.y6d{bottom:476.160000pt;}
.y3b{bottom:479.360000pt;}
.ybc{bottom:481.920000pt;}
.y159{bottom:483.200000pt;}
.y16{bottom:487.040000pt;}
.y13f{bottom:488.320000pt;}
.y134{bottom:489.920000pt;}
.y57{bottom:491.200000pt;}
.y113{bottom:492.480000pt;}
.y95{bottom:497.600000pt;}
.y3a{bottom:502.080000pt;}
.ybb{bottom:504.320000pt;}
.yfd{bottom:505.280000pt;}
.y158{bottom:505.600000pt;}
.y6c{bottom:509.440000pt;}
.y133{bottom:512.640000pt;}
.y112{bottom:515.200000pt;}
.y15{bottom:520.320000pt;}
.y13e{bottom:521.600000pt;}
.y39{bottom:524.480000pt;}
.yba{bottom:527.040000pt;}
.yfc{bottom:528.320000pt;}
.ye3{bottom:529.333333pt;}
.y94{bottom:530.880000pt;}
.y132{bottom:535.360000pt;}
.y111{bottom:537.600000pt;}
.y14{bottom:542.720000pt;}
.y38{bottom:547.200000pt;}
.yb9{bottom:549.760000pt;}
.yfb{bottom:551.040000pt;}
.y13d{bottom:554.880000pt;}
.y131{bottom:557.760000pt;}
.y110{bottom:560.320000pt;}
.y157{bottom:561.600000pt;}
.y93{bottom:564.160000pt;}
.y13{bottom:565.440000pt;}
.y37{bottom:569.920000pt;}
.yfa{bottom:573.440000pt;}
.y6b{bottom:576.320000pt;}
.y130{bottom:580.480000pt;}
.y56{bottom:581.760000pt;}
.yb8{bottom:583.040000pt;}
.y156{bottom:584.320000pt;}
.ye1{bottom:585.333333pt;}
.y92{bottom:586.880000pt;}
.y12{bottom:588.160000pt;}
.y36{bottom:592.320000pt;}
.yf9{bottom:596.160000pt;}
.y6a{bottom:598.720000pt;}
.y12f{bottom:603.200000pt;}
.yb7{bottom:605.440000pt;}
.y155{bottom:606.720000pt;}
.y91{bottom:609.600000pt;}
.y11{bottom:610.880000pt;}
.y35{bottom:615.040000pt;}
.y55{bottom:617.600000pt;}
.yf8{bottom:618.880000pt;}
.y69{bottom:621.440000pt;}
.y12e{bottom:625.600000pt;}
.yb6{bottom:628.160000pt;}
.y90{bottom:632.000000pt;}
.y10{bottom:633.280000pt;}
.y34{bottom:637.760000pt;}
.y154{bottom:640.320000pt;}
.y68{bottom:644.160000pt;}
.y12d{bottom:648.320000pt;}
.yd4{bottom:649.600000pt;}
.y54{bottom:650.880000pt;}
.yf7{bottom:652.160000pt;}
.y8f{bottom:654.720000pt;}
.y121{bottom:661.440000pt;}
.y153{bottom:662.720000pt;}
.yf{bottom:666.560000pt;}
.y33{bottom:671.040000pt;}
.yd3{bottom:672.320000pt;}
.y53{bottom:673.600000pt;}
.yf6{bottom:674.880000pt;}
.y120{bottom:684.160000pt;}
.y152{bottom:685.440000pt;}
.y8e{bottom:688.000000pt;}
.ya5{bottom:692.000000pt;}
.y32{bottom:693.440000pt;}
.yd2{bottom:695.040000pt;}
.y52{bottom:696.000000pt;}
.yf5{bottom:697.280000pt;}
.ye{bottom:699.840000pt;}
.y12c{bottom:705.600000pt;}
.y10f{bottom:706.880000pt;}
.y151{bottom:708.160000pt;}
.y31{bottom:716.160000pt;}
.y51{bottom:718.720000pt;}
.yf4{bottom:720.000000pt;}
.y8d{bottom:721.280000pt;}
.ya3{bottom:724.000000pt;}
.ya1{bottom:725.333333pt;}
.yd1{bottom:728.320000pt;}
.y10e{bottom:729.280000pt;}
.y150{bottom:730.560000pt;}
.y87{bottom:732.000000pt;}
.yd{bottom:733.120000pt;}
.y30{bottom:738.880000pt;}
.y50{bottom:741.440000pt;}
.yf3{bottom:742.720000pt;}
.y10d{bottom:752.000000pt;}
.y8c{bottom:754.560000pt;}
.y85{bottom:754.666667pt;}
.y9f{bottom:757.333333pt;}
.y9d{bottom:758.666667pt;}
.y2f{bottom:761.600000pt;}
.y4f{bottom:763.840000pt;}
.yf2{bottom:765.120000pt;}
.yc{bottom:766.400000pt;}
.y10c{bottom:774.720000pt;}
.y83{bottom:776.000000pt;}
.y2e{bottom:784.000000pt;}
.y14f{bottom:786.560000pt;}
.y8b{bottom:787.840000pt;}
.y9b{bottom:792.000000pt;}
.yb{bottom:794.560000pt;}
.y4e{bottom:797.120000pt;}
.y81{bottom:797.333333pt;}
.y67{bottom:799.680000pt;}
.y2d{bottom:806.720000pt;}
.y14e{bottom:809.280000pt;}
.yf1{bottom:810.560000pt;}
.y7f{bottom:818.666667pt;}
.y4d{bottom:819.840000pt;}
.y8a{bottom:821.120000pt;}
.ya{bottom:827.840000pt;}
.y14d{bottom:831.680000pt;}
.y66{bottom:832.960000pt;}
.y7d{bottom:840.000000pt;}
.y2c{bottom:841.280000pt;}
.y4c{bottom:842.560000pt;}
.yf0{bottom:843.840000pt;}
.y89{bottom:854.400000pt;}
.y9{bottom:855.680000pt;}
.y7b{bottom:862.666667pt;}
.y4b{bottom:864.960000pt;}
.y65{bottom:866.560000pt;}
.yd0{bottom:873.280000pt;}
.y2b{bottom:877.120000pt;}
.y79{bottom:884.000000pt;}
.y4a{bottom:887.680000pt;}
.y8{bottom:888.960000pt;}
.y64{bottom:899.840000pt;}
.ycf{bottom:906.560000pt;}
.y77{bottom:906.666667pt;}
.y2a{bottom:910.400000pt;}
.y7{bottom:922.240000pt;}
.yce{bottom:929.280000pt;}
.y29{bottom:933.120000pt;}
.y6{bottom:944.960000pt;}
.ycd{bottom:951.680000pt;}
.y28{bottom:955.520000pt;}
.y63{bottom:966.400000pt;}
.ycc{bottom:974.400000pt;}
.y5{bottom:978.240000pt;}
.y27{bottom:988.800000pt;}
.ycb{bottom:1008.960000pt;}
.y4{bottom:1011.520000pt;}
.h3{height:20.000000pt;}
.h8{height:22.666667pt;}
.hb{height:24.000000pt;}
.h6{height:24.740625pt;}
.he{height:33.333333pt;}
.hc{height:34.666667pt;}
.hd{height:36.000000pt;}
.h4{height:42.656250pt;}
.h2{height:42.687500pt;}
.ha{height:46.281250pt;}
.h5{height:46.500625pt;}
.h9{height:46.562500pt;}
.h7{height:49.481250pt;}
.h10{height:57.333333pt;}
.hf{height:90.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.wd{width:18.666667pt;}
.w5{width:114.666667pt;}
.w6{width:124.000000pt;}
.wc{width:133.333333pt;}
.w7{width:152.000000pt;}
.w8{width:161.333333pt;}
.w4{width:180.000000pt;}
.wa{width:190.666667pt;}
.w9{width:237.333333pt;}
.wb{width:238.666667pt;}
.w3{width:285.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.173333pt;}
.xa{left:6.285504pt;}
.x8{left:15.609920pt;}
.xd{left:21.609920pt;}
.xb{left:23.172480pt;}
.xf{left:27.172480pt;}
.x16{left:34.080725pt;}
.x17{left:38.918080pt;}
.xe{left:40.875328pt;}
.x9{left:48.512064pt;}
.x11{left:50.496416pt;}
.xc{left:54.512064pt;}
.x12{left:59.438080pt;}
.x10{left:64.133152pt;}
.x6{left:68.313280pt;}
.x7{left:78.430016pt;}
.x1{left:96.000000pt;}
.x18{left:110.666667pt;}
.x1e{left:116.493333pt;}
.x4{left:118.574560pt;}
.x23{left:120.000000pt;}
.x1f{left:121.333333pt;}
.x1c{left:129.061205pt;}
.x24{left:148.000000pt;}
.x3{left:164.000000pt;}
.x1d{left:177.490133pt;}
.x13{left:202.666667pt;}
.x19{left:270.666667pt;}
.x14{left:316.000000pt;}
.x20{left:358.666667pt;}
.x15{left:438.666667pt;}
.x5{left:448.000000pt;}
.x21{left:490.666667pt;}
.x1a{left:506.666667pt;}
.x22{left:680.000000pt;}
.x2{left:689.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; }
  