
    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_7f584fa4ad83c19ec85e4fd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.864000;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_1bab4d45fd027508192277af.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_df4bdee5c90e94760583c05b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.864000;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_09c23b2e32ed8762e9760ef0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_e242a2a76dbb420531815041.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_a8b2b3d43ecbb44d9bf54855.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862305;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_bfc1f79c6af1b757753b201e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_020ca2961922f375fe8f7ad5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.840000;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_8adefff4567866d01630db44.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.840000;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_5ac8c7534e9b2ceb7d3eade3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.863770;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_1b7afe4e19b5904b29724414.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_d48df7af7790dafa29b52e86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_5da049c7c1b03fddbf257342.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.981934;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_4c268102987ca75e1fe7c909.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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_8dbc4848e49aa34ca765d910.woff2')format("woff");}.fff{font-family:fff;line-height:0.862793;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);}
.v1{vertical-align:-40.683000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.416200px;}
.v3{vertical-align:11.416200px;}
.v4{vertical-align:17.416200px;}
.lsa{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.750000px;}
.ls9{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:3.552000px;}
.ls4{letter-spacing:3.744000px;}
.ls7{letter-spacing:481.518000px;}
.ls5{letter-spacing:540.553200px;}
.ls8{letter-spacing:544.048800px;}
.ls6{letter-spacing:564.733200px;}
.ls2{letter-spacing:2009.263644px;}
.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;}
}
.ws8{word-spacing:-57.888000px;}
.ws0{word-spacing:-38.250000px;}
.ws2{word-spacing:-21.696000px;}
.ws16{word-spacing:-17.628000px;}
.ws7{word-spacing:-16.272000px;}
.ws19{word-spacing:-15.552000px;}
.wsb{word-spacing:-15.312000px;}
.ws5{word-spacing:-13.560000px;}
.ws3{word-spacing:-10.176000px;}
.ws4{word-spacing:-7.123200px;}
.ws18{word-spacing:-2.208000px;}
.ws17{word-spacing:-1.824000px;}
.ws6{word-spacing:-1.632000px;}
.wse{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.392000px;}
.ws14{word-spacing:-1.056000px;}
.ws13{word-spacing:-0.336000px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.720000px;}
.ws1b{word-spacing:0.900000px;}
.ws10{word-spacing:0.960000px;}
.wsd{word-spacing:3.744000px;}
.wsc{word-spacing:3.792000px;}
.wsa{word-spacing:3.816000px;}
.ws12{word-spacing:3.840000px;}
.ws11{word-spacing:3.888000px;}
.ws15{word-spacing:5.952000px;}
.ws9{word-spacing:7.128000px;}
._14{margin-left:-16.467600px;}
._2{margin-left:-11.880000px;}
._12{margin-left:-6.876000px;}
._11{margin-left:-5.457600px;}
._4{margin-left:-4.320000px;}
._3{margin-left:-2.592000px;}
._0{margin-left:-1.350000px;}
._1{width:1.200000px;}
._5{width:2.353200px;}
._6{width:3.449400px;}
._7{width:4.653000px;}
._e{width:5.732400px;}
._10{width:7.272600px;}
._b{width:8.389200px;}
._c{width:9.430800px;}
._13{width:10.918800px;}
._d{width:12.985800px;}
._16{width:14.122200px;}
._a{width:17.153400px;}
._f{width:21.186000px;}
._15{width:24.141600px;}
._17{width:29.347200px;}
._8{width:33.597600px;}
._9{width:34.957200px;}
.fc4{color:rgb(48,88,159);}
.fc3{color:transparent;}
.fc2{color:rgb(42,62,146);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.600000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fse{font-size:84.000000px;}
.fs10{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:150.000000px;}
.fsf{font-size:180.000000px;}
.fsa{font-size:186.913200px;}
.fs9{font-size:198.636600px;}
.fs8{font-size:202.812000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:84.890550px;}
.ydc{bottom:86.417400px;}
.y4c{bottom:89.899200px;}
.yff{bottom:92.676300px;}
.yde{bottom:92.834700px;}
.y6a{bottom:99.290550px;}
.y4b{bottom:104.299200px;}
.yc3{bottom:110.989800px;}
.y69{bottom:113.690550px;}
.yfe{bottom:114.276300px;}
.ydd{bottom:128.834700px;}
.yb7{bottom:134.835000px;}
.yfd{bottom:135.876300px;}
.y14e{bottom:142.600050px;}
.y63{bottom:151.063350px;}
.yb6{bottom:156.435150px;}
.yfc{bottom:157.476300px;}
.y14d{bottom:160.600050px;}
.y62{bottom:172.663350px;}
.yb5{bottom:178.035000px;}
.y14c{bottom:178.600050px;}
.yf2{bottom:178.737600px;}
.yfb{bottom:179.076300px;}
.y61{bottom:194.263350px;}
.yb4{bottom:199.635150px;}
.yf1{bottom:200.337600px;}
.yfa{bottom:200.676300px;}
.ya0{bottom:201.273450px;}
.y14b{bottom:214.600050px;}
.y9f{bottom:215.673450px;}
.y60{bottom:215.863350px;}
.yb3{bottom:221.235150px;}
.yf0{bottom:221.937600px;}
.yf9{bottom:222.276300px;}
.y129{bottom:226.855350px;}
.y14a{bottom:232.600050px;}
.y5f{bottom:237.463350px;}
.y20{bottom:237.628350px;}
.y49{bottom:242.205150px;}
.yb2{bottom:242.835000px;}
.yef{bottom:243.537600px;}
.yf8{bottom:243.876300px;}
.y128{bottom:248.455350px;}
.y149{bottom:250.600050px;}
.y1f{bottom:255.628350px;}
.y96{bottom:257.259450px;}
.y5e{bottom:259.063350px;}
.y48{bottom:263.805150px;}
.yb1{bottom:264.435150px;}
.yee{bottom:265.137600px;}
.yf7{bottom:265.476300px;}
.y148{bottom:268.600050px;}
.y127{bottom:270.055350px;}
.y1e{bottom:273.628350px;}
.y95{bottom:278.859450px;}
.y5d{bottom:280.663350px;}
.y47{bottom:285.405150px;}
.yb0{bottom:286.035000px;}
.y147{bottom:286.600050px;}
.yed{bottom:286.737600px;}
.yf6{bottom:287.076300px;}
.y126{bottom:291.655350px;}
.y94{bottom:300.459450px;}
.y5c{bottom:302.263350px;}
.y146{bottom:304.600050px;}
.y46{bottom:307.005150px;}
.yaf{bottom:307.635150px;}
.yec{bottom:308.337600px;}
.y18{bottom:312.138900px;}
.y125{bottom:313.255350px;}
.y11f{bottom:321.767100px;}
.y93{bottom:322.059450px;}
.y145{bottom:322.600050px;}
.y5b{bottom:323.863350px;}
.y45{bottom:328.605150px;}
.yae{bottom:329.235150px;}
.yeb{bottom:329.937600px;}
.y124{bottom:334.855350px;}
.y92{bottom:343.659450px;}
.y5a{bottom:345.463350px;}
.y44{bottom:350.205150px;}
.yea{bottom:351.537600px;}
.y123{bottom:356.455350px;}
.y11e{bottom:360.538950px;}
.yc2{bottom:362.495550px;}
.y59{bottom:367.063350px;}
.y43{bottom:371.805150px;}
.ye9{bottom:373.137600px;}
.y122{bottom:378.055350px;}
.y9e{bottom:380.482800px;}
.y11d{bottom:382.138950px;}
.y58{bottom:388.663350px;}
.y42{bottom:393.405150px;}
.ye8{bottom:394.737600px;}
.y121{bottom:399.655350px;}
.y11c{bottom:403.738950px;}
.y57{bottom:410.263350px;}
.y41{bottom:415.005150px;}
.ye7{bottom:416.337600px;}
.y120{bottom:421.255350px;}
.y11b{bottom:425.338950px;}
.y56{bottom:431.863350px;}
.y40{bottom:436.605150px;}
.ye6{bottom:437.937600px;}
.y11a{bottom:446.938950px;}
.y1d{bottom:450.908550px;}
.y55{bottom:453.463350px;}
.y144{bottom:457.491150px;}
.y9d{bottom:457.523250px;}
.y3f{bottom:458.205150px;}
.ye5{bottom:459.537600px;}
.yc8{bottom:460.406850px;}
.yc1{bottom:464.720700px;}
.y1c{bottom:468.908550px;}
.y9c{bottom:471.923250px;}
.y54{bottom:475.063350px;}
.y119{bottom:479.000700px;}
.yc0{bottom:479.120700px;}
.y3e{bottom:479.805150px;}
.ye4{bottom:481.137600px;}
.yc7{bottom:483.806700px;}
.y1b{bottom:486.908550px;}
.y143{bottom:492.311850px;}
.ybf{bottom:493.520700px;}
.y53{bottom:496.663350px;}
.y22{bottom:500.998200px;}
.y3d{bottom:501.405150px;}
.ye3{bottom:502.737600px;}
.y1a{bottom:504.908550px;}
.yc6{bottom:507.206700px;}
.y91{bottom:507.510450px;}
.ybe{bottom:507.920700px;}
.y142{bottom:513.911850px;}
.y52{bottom:518.263350px;}
.y21{bottom:518.998200px;}
.y118{bottom:521.205300px;}
.ybd{bottom:522.320700px;}
.y19{bottom:522.908550px;}
.y3c{bottom:523.005150px;}
.ye2{bottom:524.337600px;}
.y90{bottom:529.110450px;}
.yc5{bottom:530.606850px;}
.y141{bottom:535.511850px;}
.y51{bottom:539.863350px;}
.y117{bottom:542.805300px;}
.y3b{bottom:544.605150px;}
.ye1{bottom:545.937600px;}
.y8f{bottom:550.710450px;}
.y140{bottom:557.111850px;}
.y17{bottom:563.136000px;}
.y116{bottom:564.405300px;}
.y3a{bottom:566.205150px;}
.yad{bottom:570.789750px;}
.y8e{bottom:572.310450px;}
.yc4{bottom:578.442600px;}
.y13f{bottom:578.711850px;}
.y115{bottom:586.005300px;}
.y39{bottom:587.805150px;}
.yf4{bottom:592.317900px;}
.yac{bottom:592.389750px;}
.y8d{bottom:593.910450px;}
.y13e{bottom:600.311850px;}
.y4e{bottom:607.362750px;}
.y114{bottom:607.605450px;}
.y38{bottom:609.405150px;}
.yab{bottom:613.989600px;}
.y8c{bottom:615.510450px;}
.y4d{bottom:621.762750px;}
.y13d{bottom:621.911850px;}
.y113{bottom:629.205300px;}
.y37{bottom:631.005150px;}
.yaa{bottom:635.589750px;}
.y8b{bottom:637.110450px;}
.y7e{bottom:641.361900px;}
.y13c{bottom:643.511850px;}
.y112{bottom:650.805300px;}
.y36{bottom:652.605150px;}
.ya9{bottom:657.189750px;}
.y8a{bottom:658.710600px;}
.y23{bottom:668.090550px;}
.y111{bottom:672.405300px;}
.y35{bottom:674.205150px;}
.yf3{bottom:678.721350px;}
.ya8{bottom:678.789750px;}
.y13b{bottom:679.173750px;}
.y89{bottom:680.310450px;}
.y110{bottom:694.005300px;}
.y7d{bottom:695.047950px;}
.y34{bottom:695.805150px;}
.yda{bottom:700.269450px;}
.y88{bottom:701.910450px;}
.ybc{bottom:705.820050px;}
.y13a{bottom:713.707350px;}
.y10f{bottom:715.605450px;}
.y7c{bottom:716.647950px;}
.y33{bottom:717.405150px;}
.yd9{bottom:721.869300px;}
.y9b{bottom:727.471350px;}
.ye0{bottom:729.243600px;}
.y6{bottom:731.032800px;}
.y64{bottom:732.233400px;}
.y139{bottom:735.307500px;}
.y10e{bottom:737.205300px;}
.y7b{bottom:738.247950px;}
.y50{bottom:738.409950px;}
.y32{bottom:739.005150px;}
.yd8{bottom:743.469300px;}
.ydf{bottom:743.643600px;}
.y138{bottom:756.907350px;}
.y10d{bottom:758.805300px;}
.y7a{bottom:759.847950px;}
.y31{bottom:760.605150px;}
.yd7{bottom:765.069300px;}
.y4f{bottom:767.209950px;}
.y137{bottom:778.507350px;}
.y79{bottom:781.447950px;}
.y30{bottom:782.205150px;}
.yd6{bottom:786.669300px;}
.y14{bottom:790.830150px;}
.y10c{bottom:792.947700px;}
.ybb{bottom:792.973800px;}
.y136{bottom:800.107500px;}
.y78{bottom:803.047950px;}
.y2f{bottom:803.805150px;}
.y99{bottom:807.281850px;}
.yba{bottom:807.373950px;}
.yd5{bottom:808.269450px;}
.y13{bottom:810.630150px;}
.y98{bottom:821.681850px;}
.y135{bottom:821.707350px;}
.yb9{bottom:821.773800px;}
.y2e{bottom:825.405150px;}
.yd4{bottom:829.869300px;}
.y12{bottom:830.430150px;}
.y10b{bottom:834.193050px;}
.y97{bottom:836.081850px;}
.y5{bottom:839.032800px;}
.y134{bottom:843.307500px;}
.y77{bottom:846.247950px;}
.ya7{bottom:846.766650px;}
.y2d{bottom:847.005150px;}
.y11{bottom:850.230150px;}
.yd3{bottom:851.469300px;}
.y10a{bottom:855.793050px;}
.y133{bottom:864.907350px;}
.y76{bottom:867.847950px;}
.ya6{bottom:868.366650px;}
.y2c{bottom:868.605150px;}
.y10{bottom:870.030150px;}
.yd2{bottom:873.069450px;}
.y87{bottom:875.533200px;}
.y109{bottom:877.392900px;}
.y132{bottom:886.507350px;}
.y75{bottom:889.447950px;}
.yf{bottom:889.830150px;}
.ya5{bottom:889.966800px;}
.y2b{bottom:890.205150px;}
.yd1{bottom:894.669300px;}
.y86{bottom:897.133350px;}
.y108{bottom:898.993050px;}
.y4{bottom:903.832800px;}
.ye{bottom:909.630150px;}
.y74{bottom:911.048100px;}
.ya4{bottom:911.566650px;}
.y2a{bottom:911.805150px;}
.yd0{bottom:916.269450px;}
.y131{bottom:917.577900px;}
.y85{bottom:918.733350px;}
.y107{bottom:920.592900px;}
.yd{bottom:929.430150px;}
.y73{bottom:932.647950px;}
.ya3{bottom:933.166650px;}
.y68{bottom:933.349650px;}
.y29{bottom:933.405150px;}
.ycf{bottom:937.869300px;}
.y84{bottom:940.333350px;}
.y106{bottom:942.193050px;}
.yc{bottom:949.230150px;}
.y130{bottom:950.500950px;}
.y72{bottom:954.247950px;}
.ya2{bottom:954.766650px;}
.y28{bottom:955.005150px;}
.yce{bottom:959.469300px;}
.y83{bottom:961.933350px;}
.y67{bottom:962.149500px;}
.y105{bottom:963.793050px;}
.y3{bottom:968.632800px;}
.yb{bottom:969.030150px;}
.y12f{bottom:972.100950px;}
.y71{bottom:975.848100px;}
.ya1{bottom:976.366650px;}
.y27{bottom:976.605150px;}
.ycd{bottom:981.069450px;}
.y82{bottom:983.533200px;}
.y104{bottom:985.392900px;}
.ya{bottom:988.830150px;}
.y66{bottom:990.949650px;}
.y12e{bottom:993.700950px;}
.y70{bottom:997.447950px;}
.y26{bottom:998.205150px;}
.ycc{bottom:1002.669300px;}
.y81{bottom:1005.133350px;}
.y103{bottom:1006.993050px;}
.yb8{bottom:1008.528600px;}
.y9{bottom:1008.630150px;}
.y12d{bottom:1015.300950px;}
.y6f{bottom:1019.048100px;}
.y65{bottom:1019.749650px;}
.y25{bottom:1019.805150px;}
.ycb{bottom:1024.269450px;}
.y8{bottom:1028.430150px;}
.y102{bottom:1028.592900px;}
.y12c{bottom:1036.900950px;}
.y6e{bottom:1040.647950px;}
.yca{bottom:1045.869300px;}
.y9a{bottom:1048.427550px;}
.y101{bottom:1050.193050px;}
.y12b{bottom:1058.500950px;}
.y6d{bottom:1062.247950px;}
.yc9{bottom:1067.469300px;}
.y4a{bottom:1081.015800px;}
.y100{bottom:1085.455500px;}
.y80{bottom:1086.535500px;}
.y7{bottom:1087.030200px;}
.y12a{bottom:1091.071350px;}
.ydb{bottom:1115.149650px;}
.yf5{bottom:1131.035550px;}
.y7f{bottom:1138.535400px;}
.y6c{bottom:1138.535550px;}
.y2{bottom:1148.400750px;}
.y24{bottom:1189.885050px;}
.y16{bottom:1190.185050px;}
.y1{bottom:1193.400750px;}
.y15{bottom:1203.151200px;}
.hf{height:37.593750px;}
.h8{height:37.800000px;}
.h9{height:39.792000px;}
.he{height:49.289062px;}
.h11{height:49.359375px;}
.hc{height:49.482422px;}
.h7{height:54.430664px;}
.h14{height:57.585938px;}
.hd{height:59.378906px;}
.h16{height:61.699219px;}
.h12{height:64.327148px;}
.h13{height:65.718750px;}
.h10{height:74.015625px;}
.h17{height:74.223633px;}
.h6{height:79.171875px;}
.h5{height:102.528000px;}
.h4{height:105.552000px;}
.h2{height:106.800000px;}
.hb{height:130.839240px;}
.ha{height:141.968400px;}
.h15{height:143.416200px;}
.h3{height:158.328000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x35{left:-753.369900px;}
.x0{left:0.000000px;}
.x5{left:45.823650px;}
.x64{left:62.169600px;}
.x8{left:63.682050px;}
.x3a{left:65.471700px;}
.x38{left:66.691200px;}
.x62{left:68.474250px;}
.x2a{left:69.779550px;}
.x1a{left:71.459700px;}
.x18{left:79.150800px;}
.x7{left:80.182050px;}
.x3b{left:82.052250px;}
.xa{left:85.039350px;}
.x39{left:86.938950px;}
.xf{left:89.302350px;}
.x2d{left:93.043050px;}
.x66{left:96.543300px;}
.x11{left:101.226150px;}
.x10{left:106.210350px;}
.x63{left:112.136400px;}
.x34{left:114.803100px;}
.xe{left:124.198500px;}
.x12{left:129.702750px;}
.x33{left:139.543500px;}
.xc{left:167.516100px;}
.x36{left:177.484050px;}
.x4{left:202.141650px;}
.x3{left:206.677950px;}
.x46{left:225.147600px;}
.x44{left:228.615000px;}
.x41{left:230.197050px;}
.x43{left:231.335100px;}
.x45{left:232.903950px;}
.x42{left:235.211100px;}
.x3e{left:237.443550px;}
.x3f{left:239.043150px;}
.x40{left:240.853800px;}
.x3d{left:244.909950px;}
.x47{left:247.445550px;}
.x3c{left:256.137900px;}
.x37{left:324.900600px;}
.x31{left:326.401200px;}
.x1{left:338.575500px;}
.x6{left:341.595600px;}
.x14{left:356.732250px;}
.x13{left:361.471050px;}
.x15{left:369.300750px;}
.x50{left:377.216700px;}
.x4e{left:380.389650px;}
.x4f{left:382.050750px;}
.x4c{left:383.246100px;}
.x4d{left:385.157700px;}
.x51{left:388.031700px;}
.x4b{left:392.285550px;}
.x48{left:396.170400px;}
.x2{left:403.525500px;}
.x49{left:405.957000px;}
.x4a{left:407.407200px;}
.xd{left:437.452350px;}
.x9{left:455.339100px;}
.x2c{left:456.971250px;}
.x1b{left:458.275050px;}
.x2f{left:459.300150px;}
.x30{left:461.132550px;}
.x32{left:462.986700px;}
.x29{left:480.959700px;}
.x1c{left:501.959700px;}
.x28{left:533.459700px;}
.x54{left:537.828900px;}
.x57{left:540.307350px;}
.x58{left:541.507050px;}
.x55{left:542.781450px;}
.x1d{left:543.959700px;}
.x52{left:545.404950px;}
.x56{left:552.396750px;}
.x53{left:553.609650px;}
.x27{left:561.959700px;}
.x1e{left:569.459700px;}
.x26{left:582.959700px;}
.x1f{left:587.459700px;}
.x25{left:596.459700px;}
.x20{left:600.959700px;}
.x24{left:606.959700px;}
.x16{left:609.835800px;}
.x23{left:612.959700px;}
.x21{left:614.459700px;}
.x22{left:617.459700px;}
.x17{left:620.228850px;}
.x60{left:690.759300px;}
.x5e{left:693.611250px;}
.x5f{left:695.162550px;}
.x59{left:697.386150px;}
.x5d{left:702.804600px;}
.x5c{left:705.401850px;}
.x61{left:707.357400px;}
.x2b{left:708.470550px;}
.x2e{left:711.333450px;}
.x5a{left:720.954000px;}
.x5b{left:726.253950px;}
.xb{left:737.894100px;}
.x65{left:794.023350px;}
.x19{left:800.948700px;}
@media print{
.v1{vertical-align:-36.162667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.814400pt;}
.v3{vertical-align:10.147733pt;}
.v4{vertical-align:15.481067pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.666667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:3.157333pt;}
.ls4{letter-spacing:3.328000pt;}
.ls7{letter-spacing:428.016000pt;}
.ls5{letter-spacing:480.491733pt;}
.ls8{letter-spacing:483.598933pt;}
.ls6{letter-spacing:501.985067pt;}
.ls2{letter-spacing:1786.012128pt;}
.ws8{word-spacing:-51.456000pt;}
.ws0{word-spacing:-34.000000pt;}
.ws2{word-spacing:-19.285333pt;}
.ws16{word-spacing:-15.669333pt;}
.ws7{word-spacing:-14.464000pt;}
.ws19{word-spacing:-13.824000pt;}
.wsb{word-spacing:-13.610667pt;}
.ws5{word-spacing:-12.053333pt;}
.ws3{word-spacing:-9.045333pt;}
.ws4{word-spacing:-6.331733pt;}
.ws18{word-spacing:-1.962667pt;}
.ws17{word-spacing:-1.621333pt;}
.ws6{word-spacing:-1.450667pt;}
.wse{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.237333pt;}
.ws14{word-spacing:-0.938667pt;}
.ws13{word-spacing:-0.298667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.800000pt;}
.ws10{word-spacing:0.853333pt;}
.wsd{word-spacing:3.328000pt;}
.wsc{word-spacing:3.370667pt;}
.wsa{word-spacing:3.392000pt;}
.ws12{word-spacing:3.413333pt;}
.ws11{word-spacing:3.456000pt;}
.ws15{word-spacing:5.290667pt;}
.ws9{word-spacing:6.336000pt;}
._14{margin-left:-14.637867pt;}
._2{margin-left:-10.560000pt;}
._12{margin-left:-6.112000pt;}
._11{margin-left:-4.851200pt;}
._4{margin-left:-3.840000pt;}
._3{margin-left:-2.304000pt;}
._0{margin-left:-1.200000pt;}
._1{width:1.066667pt;}
._5{width:2.091733pt;}
._6{width:3.066133pt;}
._7{width:4.136000pt;}
._e{width:5.095467pt;}
._10{width:6.464533pt;}
._b{width:7.457067pt;}
._c{width:8.382933pt;}
._13{width:9.705600pt;}
._d{width:11.542933pt;}
._16{width:12.553067pt;}
._a{width:15.247467pt;}
._f{width:18.832000pt;}
._15{width:21.459200pt;}
._17{width:26.086400pt;}
._8{width:29.864533pt;}
._9{width:31.073067pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fse{font-size:74.666667pt;}
.fs10{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:133.333333pt;}
.fsf{font-size:160.000000pt;}
.fsa{font-size:166.145067pt;}
.fs9{font-size:176.565867pt;}
.fs8{font-size:180.277333pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:75.458267pt;}
.ydc{bottom:76.815467pt;}
.y4c{bottom:79.910400pt;}
.yff{bottom:82.378933pt;}
.yde{bottom:82.519733pt;}
.y6a{bottom:88.258267pt;}
.y4b{bottom:92.710400pt;}
.yc3{bottom:98.657600pt;}
.y69{bottom:101.058267pt;}
.yfe{bottom:101.578933pt;}
.ydd{bottom:114.519733pt;}
.yb7{bottom:119.853333pt;}
.yfd{bottom:120.778933pt;}
.y14e{bottom:126.755600pt;}
.y63{bottom:134.278533pt;}
.yb6{bottom:139.053467pt;}
.yfc{bottom:139.978933pt;}
.y14d{bottom:142.755600pt;}
.y62{bottom:153.478533pt;}
.yb5{bottom:158.253333pt;}
.y14c{bottom:158.755600pt;}
.yf2{bottom:158.877867pt;}
.yfb{bottom:159.178933pt;}
.y61{bottom:172.678533pt;}
.yb4{bottom:177.453467pt;}
.yf1{bottom:178.077867pt;}
.yfa{bottom:178.378933pt;}
.ya0{bottom:178.909733pt;}
.y14b{bottom:190.755600pt;}
.y9f{bottom:191.709733pt;}
.y60{bottom:191.878533pt;}
.yb3{bottom:196.653467pt;}
.yf0{bottom:197.277867pt;}
.yf9{bottom:197.578933pt;}
.y129{bottom:201.649200pt;}
.y14a{bottom:206.755600pt;}
.y5f{bottom:211.078533pt;}
.y20{bottom:211.225200pt;}
.y49{bottom:215.293467pt;}
.yb2{bottom:215.853333pt;}
.yef{bottom:216.477867pt;}
.yf8{bottom:216.778933pt;}
.y128{bottom:220.849200pt;}
.y149{bottom:222.755600pt;}
.y1f{bottom:227.225200pt;}
.y96{bottom:228.675067pt;}
.y5e{bottom:230.278533pt;}
.y48{bottom:234.493467pt;}
.yb1{bottom:235.053467pt;}
.yee{bottom:235.677867pt;}
.yf7{bottom:235.978933pt;}
.y148{bottom:238.755600pt;}
.y127{bottom:240.049200pt;}
.y1e{bottom:243.225200pt;}
.y95{bottom:247.875067pt;}
.y5d{bottom:249.478533pt;}
.y47{bottom:253.693467pt;}
.yb0{bottom:254.253333pt;}
.y147{bottom:254.755600pt;}
.yed{bottom:254.877867pt;}
.yf6{bottom:255.178933pt;}
.y126{bottom:259.249200pt;}
.y94{bottom:267.075067pt;}
.y5c{bottom:268.678533pt;}
.y146{bottom:270.755600pt;}
.y46{bottom:272.893467pt;}
.yaf{bottom:273.453467pt;}
.yec{bottom:274.077867pt;}
.y18{bottom:277.456800pt;}
.y125{bottom:278.449200pt;}
.y11f{bottom:286.015200pt;}
.y93{bottom:286.275067pt;}
.y145{bottom:286.755600pt;}
.y5b{bottom:287.878533pt;}
.y45{bottom:292.093467pt;}
.yae{bottom:292.653467pt;}
.yeb{bottom:293.277867pt;}
.y124{bottom:297.649200pt;}
.y92{bottom:305.475067pt;}
.y5a{bottom:307.078533pt;}
.y44{bottom:311.293467pt;}
.yea{bottom:312.477867pt;}
.y123{bottom:316.849200pt;}
.y11e{bottom:320.479067pt;}
.yc2{bottom:322.218267pt;}
.y59{bottom:326.278533pt;}
.y43{bottom:330.493467pt;}
.ye9{bottom:331.677867pt;}
.y122{bottom:336.049200pt;}
.y9e{bottom:338.206933pt;}
.y11d{bottom:339.679067pt;}
.y58{bottom:345.478533pt;}
.y42{bottom:349.693467pt;}
.ye8{bottom:350.877867pt;}
.y121{bottom:355.249200pt;}
.y11c{bottom:358.879067pt;}
.y57{bottom:364.678533pt;}
.y41{bottom:368.893467pt;}
.ye7{bottom:370.077867pt;}
.y120{bottom:374.449200pt;}
.y11b{bottom:378.079067pt;}
.y56{bottom:383.878533pt;}
.y40{bottom:388.093467pt;}
.ye6{bottom:389.277867pt;}
.y11a{bottom:397.279067pt;}
.y1d{bottom:400.807600pt;}
.y55{bottom:403.078533pt;}
.y144{bottom:406.658800pt;}
.y9d{bottom:406.687333pt;}
.y3f{bottom:407.293467pt;}
.ye5{bottom:408.477867pt;}
.yc8{bottom:409.250533pt;}
.yc1{bottom:413.085067pt;}
.y1c{bottom:416.807600pt;}
.y9c{bottom:419.487333pt;}
.y54{bottom:422.278533pt;}
.y119{bottom:425.778400pt;}
.yc0{bottom:425.885067pt;}
.y3e{bottom:426.493467pt;}
.ye4{bottom:427.677867pt;}
.yc7{bottom:430.050400pt;}
.y1b{bottom:432.807600pt;}
.y143{bottom:437.610533pt;}
.ybf{bottom:438.685067pt;}
.y53{bottom:441.478533pt;}
.y22{bottom:445.331733pt;}
.y3d{bottom:445.693467pt;}
.ye3{bottom:446.877867pt;}
.y1a{bottom:448.807600pt;}
.yc6{bottom:450.850400pt;}
.y91{bottom:451.120400pt;}
.ybe{bottom:451.485067pt;}
.y142{bottom:456.810533pt;}
.y52{bottom:460.678533pt;}
.y21{bottom:461.331733pt;}
.y118{bottom:463.293600pt;}
.ybd{bottom:464.285067pt;}
.y19{bottom:464.807600pt;}
.y3c{bottom:464.893467pt;}
.ye2{bottom:466.077867pt;}
.y90{bottom:470.320400pt;}
.yc5{bottom:471.650533pt;}
.y141{bottom:476.010533pt;}
.y51{bottom:479.878533pt;}
.y117{bottom:482.493600pt;}
.y3b{bottom:484.093467pt;}
.ye1{bottom:485.277867pt;}
.y8f{bottom:489.520400pt;}
.y140{bottom:495.210533pt;}
.y17{bottom:500.565333pt;}
.y116{bottom:501.693600pt;}
.y3a{bottom:503.293467pt;}
.yad{bottom:507.368667pt;}
.y8e{bottom:508.720400pt;}
.yc4{bottom:514.171200pt;}
.y13f{bottom:514.410533pt;}
.y115{bottom:520.893600pt;}
.y39{bottom:522.493467pt;}
.yf4{bottom:526.504800pt;}
.yac{bottom:526.568667pt;}
.y8d{bottom:527.920400pt;}
.y13e{bottom:533.610533pt;}
.y4e{bottom:539.878000pt;}
.y114{bottom:540.093733pt;}
.y38{bottom:541.693467pt;}
.yab{bottom:545.768533pt;}
.y8c{bottom:547.120400pt;}
.y4d{bottom:552.678000pt;}
.y13d{bottom:552.810533pt;}
.y113{bottom:559.293600pt;}
.y37{bottom:560.893467pt;}
.yaa{bottom:564.968667pt;}
.y8b{bottom:566.320400pt;}
.y7e{bottom:570.099467pt;}
.y13c{bottom:572.010533pt;}
.y112{bottom:578.493600pt;}
.y36{bottom:580.093467pt;}
.ya9{bottom:584.168667pt;}
.y8a{bottom:585.520533pt;}
.y23{bottom:593.858267pt;}
.y111{bottom:597.693600pt;}
.y35{bottom:599.293467pt;}
.yf3{bottom:603.307867pt;}
.ya8{bottom:603.368667pt;}
.y13b{bottom:603.710000pt;}
.y89{bottom:604.720400pt;}
.y110{bottom:616.893600pt;}
.y7d{bottom:617.820400pt;}
.y34{bottom:618.493467pt;}
.yda{bottom:622.461733pt;}
.y88{bottom:623.920400pt;}
.ybc{bottom:627.395600pt;}
.y13a{bottom:634.406533pt;}
.y10f{bottom:636.093733pt;}
.y7c{bottom:637.020400pt;}
.y33{bottom:637.693467pt;}
.yd9{bottom:641.661600pt;}
.y9b{bottom:646.641200pt;}
.ye0{bottom:648.216533pt;}
.y6{bottom:649.806933pt;}
.y64{bottom:650.874133pt;}
.y139{bottom:653.606667pt;}
.y10e{bottom:655.293600pt;}
.y7b{bottom:656.220400pt;}
.y50{bottom:656.364400pt;}
.y32{bottom:656.893467pt;}
.yd8{bottom:660.861600pt;}
.ydf{bottom:661.016533pt;}
.y138{bottom:672.806533pt;}
.y10d{bottom:674.493600pt;}
.y7a{bottom:675.420400pt;}
.y31{bottom:676.093467pt;}
.yd7{bottom:680.061600pt;}
.y4f{bottom:681.964400pt;}
.y137{bottom:692.006533pt;}
.y79{bottom:694.620400pt;}
.y30{bottom:695.293467pt;}
.yd6{bottom:699.261600pt;}
.y14{bottom:702.960133pt;}
.y10c{bottom:704.842400pt;}
.ybb{bottom:704.865600pt;}
.y136{bottom:711.206667pt;}
.y78{bottom:713.820400pt;}
.y2f{bottom:714.493467pt;}
.y99{bottom:717.583867pt;}
.yba{bottom:717.665733pt;}
.yd5{bottom:718.461733pt;}
.y13{bottom:720.560133pt;}
.y98{bottom:730.383867pt;}
.y135{bottom:730.406533pt;}
.yb9{bottom:730.465600pt;}
.y2e{bottom:733.693467pt;}
.yd4{bottom:737.661600pt;}
.y12{bottom:738.160133pt;}
.y10b{bottom:741.504933pt;}
.y97{bottom:743.183867pt;}
.y5{bottom:745.806933pt;}
.y134{bottom:749.606667pt;}
.y77{bottom:752.220400pt;}
.ya7{bottom:752.681467pt;}
.y2d{bottom:752.893467pt;}
.y11{bottom:755.760133pt;}
.yd3{bottom:756.861600pt;}
.y10a{bottom:760.704933pt;}
.y133{bottom:768.806533pt;}
.y76{bottom:771.420400pt;}
.ya6{bottom:771.881467pt;}
.y2c{bottom:772.093467pt;}
.y10{bottom:773.360133pt;}
.yd2{bottom:776.061733pt;}
.y87{bottom:778.251733pt;}
.y109{bottom:779.904800pt;}
.y132{bottom:788.006533pt;}
.y75{bottom:790.620400pt;}
.yf{bottom:790.960133pt;}
.ya5{bottom:791.081600pt;}
.y2b{bottom:791.293467pt;}
.yd1{bottom:795.261600pt;}
.y86{bottom:797.451867pt;}
.y108{bottom:799.104933pt;}
.y4{bottom:803.406933pt;}
.ye{bottom:808.560133pt;}
.y74{bottom:809.820533pt;}
.ya4{bottom:810.281467pt;}
.y2a{bottom:810.493467pt;}
.yd0{bottom:814.461733pt;}
.y131{bottom:815.624800pt;}
.y85{bottom:816.651867pt;}
.y107{bottom:818.304800pt;}
.yd{bottom:826.160133pt;}
.y73{bottom:829.020400pt;}
.ya3{bottom:829.481467pt;}
.y68{bottom:829.644133pt;}
.y29{bottom:829.693467pt;}
.ycf{bottom:833.661600pt;}
.y84{bottom:835.851867pt;}
.y106{bottom:837.504933pt;}
.yc{bottom:843.760133pt;}
.y130{bottom:844.889733pt;}
.y72{bottom:848.220400pt;}
.ya2{bottom:848.681467pt;}
.y28{bottom:848.893467pt;}
.yce{bottom:852.861600pt;}
.y83{bottom:855.051867pt;}
.y67{bottom:855.244000pt;}
.y105{bottom:856.704933pt;}
.y3{bottom:861.006933pt;}
.yb{bottom:861.360133pt;}
.y12f{bottom:864.089733pt;}
.y71{bottom:867.420533pt;}
.ya1{bottom:867.881467pt;}
.y27{bottom:868.093467pt;}
.ycd{bottom:872.061733pt;}
.y82{bottom:874.251733pt;}
.y104{bottom:875.904800pt;}
.ya{bottom:878.960133pt;}
.y66{bottom:880.844133pt;}
.y12e{bottom:883.289733pt;}
.y70{bottom:886.620400pt;}
.y26{bottom:887.293467pt;}
.ycc{bottom:891.261600pt;}
.y81{bottom:893.451867pt;}
.y103{bottom:895.104933pt;}
.yb8{bottom:896.469867pt;}
.y9{bottom:896.560133pt;}
.y12d{bottom:902.489733pt;}
.y6f{bottom:905.820533pt;}
.y65{bottom:906.444133pt;}
.y25{bottom:906.493467pt;}
.ycb{bottom:910.461733pt;}
.y8{bottom:914.160133pt;}
.y102{bottom:914.304800pt;}
.y12c{bottom:921.689733pt;}
.y6e{bottom:925.020400pt;}
.yca{bottom:929.661600pt;}
.y9a{bottom:931.935600pt;}
.y101{bottom:933.504933pt;}
.y12b{bottom:940.889733pt;}
.y6d{bottom:944.220400pt;}
.yc9{bottom:948.861600pt;}
.y4a{bottom:960.902933pt;}
.y100{bottom:964.849333pt;}
.y80{bottom:965.809333pt;}
.y7{bottom:966.249067pt;}
.y12a{bottom:969.841200pt;}
.ydb{bottom:991.244133pt;}
.yf5{bottom:1005.364933pt;}
.y7f{bottom:1012.031467pt;}
.y6c{bottom:1012.031600pt;}
.y2{bottom:1020.800667pt;}
.y24{bottom:1057.675600pt;}
.y16{bottom:1057.942267pt;}
.y1{bottom:1060.800667pt;}
.y15{bottom:1069.467733pt;}
.hf{height:33.416667pt;}
.h8{height:33.600000pt;}
.h9{height:35.370667pt;}
.he{height:43.812500pt;}
.h11{height:43.875000pt;}
.hc{height:43.984375pt;}
.h7{height:48.382812pt;}
.h14{height:51.187500pt;}
.hd{height:52.781250pt;}
.h16{height:54.843750pt;}
.h12{height:57.179688pt;}
.h13{height:58.416667pt;}
.h10{height:65.791667pt;}
.h17{height:65.976562pt;}
.h6{height:70.375000pt;}
.h5{height:91.136000pt;}
.h4{height:93.824000pt;}
.h2{height:94.933333pt;}
.hb{height:116.301547pt;}
.ha{height:126.194133pt;}
.h15{height:127.481067pt;}
.h3{height:140.736000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x35{left:-669.662133pt;}
.x0{left:0.000000pt;}
.x5{left:40.732133pt;}
.x64{left:55.261867pt;}
.x8{left:56.606267pt;}
.x3a{left:58.197067pt;}
.x38{left:59.281067pt;}
.x62{left:60.866000pt;}
.x2a{left:62.026267pt;}
.x1a{left:63.519733pt;}
.x18{left:70.356267pt;}
.x7{left:71.272933pt;}
.x3b{left:72.935333pt;}
.xa{left:75.590533pt;}
.x39{left:77.279067pt;}
.xf{left:79.379867pt;}
.x2d{left:82.704933pt;}
.x66{left:85.816267pt;}
.x11{left:89.978800pt;}
.x10{left:94.409200pt;}
.x63{left:99.676800pt;}
.x34{left:102.047200pt;}
.xe{left:110.398667pt;}
.x12{left:115.291333pt;}
.x33{left:124.038667pt;}
.xc{left:148.903200pt;}
.x36{left:157.763600pt;}
.x4{left:179.681467pt;}
.x3{left:183.713733pt;}
.x46{left:200.131200pt;}
.x44{left:203.213333pt;}
.x41{left:204.619600pt;}
.x43{left:205.631200pt;}
.x45{left:207.025733pt;}
.x42{left:209.076533pt;}
.x3e{left:211.060933pt;}
.x3f{left:212.482800pt;}
.x40{left:214.092267pt;}
.x3d{left:217.697733pt;}
.x47{left:219.951600pt;}
.x3c{left:227.678133pt;}
.x37{left:288.800533pt;}
.x31{left:290.134400pt;}
.x1{left:300.956000pt;}
.x6{left:303.640533pt;}
.x14{left:317.095333pt;}
.x13{left:321.307600pt;}
.x15{left:328.267333pt;}
.x50{left:335.303733pt;}
.x4e{left:338.124133pt;}
.x4f{left:339.600667pt;}
.x4c{left:340.663200pt;}
.x4d{left:342.362400pt;}
.x51{left:344.917067pt;}
.x4b{left:348.698267pt;}
.x48{left:352.151467pt;}
.x2{left:358.689333pt;}
.x49{left:360.850667pt;}
.x4a{left:362.139733pt;}
.xd{left:388.846533pt;}
.x9{left:404.745867pt;}
.x2c{left:406.196667pt;}
.x1b{left:407.355600pt;}
.x2f{left:408.266800pt;}
.x30{left:409.895600pt;}
.x32{left:411.543733pt;}
.x29{left:427.519733pt;}
.x1c{left:446.186400pt;}
.x28{left:474.186400pt;}
.x54{left:478.070133pt;}
.x57{left:480.273200pt;}
.x58{left:481.339600pt;}
.x55{left:482.472400pt;}
.x1d{left:483.519733pt;}
.x52{left:484.804400pt;}
.x56{left:491.019333pt;}
.x53{left:492.097467pt;}
.x27{left:499.519733pt;}
.x1e{left:506.186400pt;}
.x26{left:518.186400pt;}
.x1f{left:522.186400pt;}
.x25{left:530.186400pt;}
.x20{left:534.186400pt;}
.x24{left:539.519733pt;}
.x16{left:542.076267pt;}
.x23{left:544.853067pt;}
.x21{left:546.186400pt;}
.x22{left:548.853067pt;}
.x17{left:551.314533pt;}
.x60{left:614.008267pt;}
.x5e{left:616.543333pt;}
.x5f{left:617.922267pt;}
.x59{left:619.898800pt;}
.x5d{left:624.715200pt;}
.x5c{left:627.023867pt;}
.x61{left:628.762133pt;}
.x2b{left:629.751600pt;}
.x2e{left:632.296400pt;}
.x5a{left:640.848000pt;}
.x5b{left:645.559067pt;}
.xb{left:655.905867pt;}
.x65{left:705.798533pt;}
.x19{left:711.954400pt;}
}




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