
    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_7aa7234d78352ca314bec8c9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_8d3d2163a3d03289a4aeec5d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.845703;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_379040bfbc473c911862e3c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_f2916e4797805c9557c2da68.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_f9aa5c8bc4b6a4076199f7c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_9b38ccf3b9aef7e7fe5b5a02.woff')format("woff");}.ff6{font-family:ff6;line-height:0.376000;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_7010f8b017b66a9a1b5fb9ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_f704290d9c100cc9030fd9a6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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;}
.m8{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.213648px;}
.ls3{letter-spacing:0.304320px;}
.ls5{letter-spacing:50.028897px;}
.ls2{letter-spacing:55.548808px;}
.ls4{letter-spacing:78.162886px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-48.378487px;}
.ws0{word-spacing:-28.255789px;}
.ws2{word-spacing:-19.795792px;}
.ws3{word-spacing:-15.565794px;}
.ws1{word-spacing:-14.889414px;}
.ws8{word-spacing:-14.043594px;}
.ws9{word-spacing:-12.689995px;}
.ws6{word-spacing:-9.813596px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:2.283099px;}
._1{margin-left:-1.447063px;}
._0{width:1.245846px;}
._3{width:2.699191px;}
._9{width:3.913749px;}
._8{width:5.018685px;}
._10{width:6.441148px;}
._6{width:7.483485px;}
._e{width:8.539449px;}
._1e{width:9.575887px;}
._7{width:10.587832px;}
._12{width:11.741047px;}
._2{width:12.786997px;}
._d{width:13.915196px;}
._4{width:15.323224px;}
._5{width:16.500695px;}
._c{width:17.611589px;}
._f{width:18.856603px;}
._11{width:20.673853px;}
._b{width:22.553874px;}
._a{width:23.719952px;}
._28{width:25.047068px;}
._27{width:26.133780px;}
._16{width:38.195140px;}
._15{width:39.225261px;}
._1b{width:41.665142px;}
._1a{width:42.832104px;}
._18{width:49.239548px;}
._19{width:50.878514px;}
._1d{width:63.525220px;}
._1c{width:67.881638px;}
._22{width:99.294346px;}
._24{width:107.176220px;}
._23{width:111.504364px;}
._17{width:114.463329px;}
._26{width:131.702368px;}
._25{width:132.792847px;}
._21{width:170.276496px;}
._20{width:175.325997px;}
._1f{width:220.416191px;}
._14{width:392.833695px;}
._13{width:542.089976px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.254384px;}
.fsb{font-size:39.310544px;}
.fs5{font-size:45.343422px;}
.fs4{font-size:48.051341px;}
.fsd{font-size:50.759980px;}
.fs0{font-size:56.174378px;}
.fs7{font-size:59.557656px;}
.fs9{font-size:62.263175px;}
.fsc{font-size:67.390773px;}
.fs6{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs8{font-size:79.183168px;}
.fs2{font-size:90.014364px;}
.fs1{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y108{bottom:4.319701px;}
.y2{bottom:106.379957px;}
.yef{bottom:126.359949px;}
.ya3{bottom:127.619949px;}
.y67{bottom:130.859948px;}
.y139{bottom:131.939947px;}
.y87{bottom:132.479947px;}
.y102{bottom:140.759944px;}
.yee{bottom:144.179942px;}
.ybe{bottom:144.899942px;}
.ya2{bottom:145.439942px;}
.y66{bottom:148.679941px;}
.y86{bottom:150.479940px;}
.ybf{bottom:151.919939px;}
.y34{bottom:154.799938px;}
.yed{bottom:162.179935px;}
.ya1{bottom:163.259935px;}
.ybc{bottom:165.059934px;}
.y65{bottom:166.499933px;}
.y85{bottom:168.479933px;}
.ybd{bottom:172.079931px;}
.y33{bottom:172.619931px;}
.yec{bottom:179.819928px;}
.ya0{bottom:181.079928px;}
.y64{bottom:184.319926px;}
.ybb{bottom:185.219926px;}
.y84{bottom:186.299925px;}
.y32{bottom:190.619924px;}
.y138{bottom:197.279921px;}
.yeb{bottom:197.819921px;}
.y9f{bottom:198.899920px;}
.y63{bottom:202.139919px;}
.y83{bottom:204.299918px;}
.yba{bottom:204.479918px;}
.y31{bottom:208.259917px;}
.y137{bottom:213.659915px;}
.yea{bottom:216.179914px;}
.y9e{bottom:216.359913px;}
.y62{bottom:219.959912px;}
.y82{bottom:222.119911px;}
.y30{bottom:226.259909px;}
.y136{bottom:229.859908px;}
.y9d{bottom:234.179906px;}
.ye9{bottom:234.899906px;}
.y61{bottom:237.779905px;}
.yb9{bottom:240.119904px;}
.y81{bottom:240.299904px;}
.y2f{bottom:244.079902px;}
.y135{bottom:246.059902px;}
.y9c{bottom:252.539899px;}
.ye8{bottom:253.079899px;}
.y60{bottom:255.779898px;}
.yb8{bottom:258.479897px;}
.y80{bottom:259.919896px;}
.y2e{bottom:261.719895px;}
.y134{bottom:262.079895px;}
.ye3{bottom:270.539892px;}
.y9b{bottom:271.979891px;}
.y5f{bottom:273.419891px;}
.ye5{bottom:274.859890px;}
.y7f{bottom:277.559889px;}
.yb7{bottom:277.919889px;}
.y133{bottom:278.459889px;}
.y2d{bottom:279.719888px;}
.ye7{bottom:287.999885px;}
.ye2{bottom:288.179885px;}
.y9a{bottom:291.059884px;}
.y5e{bottom:291.239884px;}
.y132{bottom:294.659882px;}
.ye4{bottom:295.019882px;}
.y7e{bottom:295.379882px;}
.yb6{bottom:296.819881px;}
.y2c{bottom:297.539881px;}
.ye6{bottom:299.159880px;}
.y99{bottom:309.059876px;}
.y5d{bottom:309.239876px;}
.y131{bottom:310.859876px;}
.y7d{bottom:313.199875px;}
.yb5{bottom:314.999874px;}
.y2b{bottom:315.359874px;}
.ye1{bottom:319.859872px;}
.y98{bottom:325.079870px;}
.y5c{bottom:326.879869px;}
.y130{bottom:327.059869px;}
.yb4{bottom:331.199868px;}
.y7c{bottom:331.559867px;}
.y2a{bottom:333.179867px;}
.ye0{bottom:337.679865px;}
.y97{bottom:339.479864px;}
.y12f{bottom:343.259863px;}
.y5b{bottom:344.879862px;}
.yb3{bottom:345.239862px;}
.y7b{bottom:350.999860px;}
.y29{bottom:351.179860px;}
.ydf{bottom:355.499858px;}
.y12e{bottom:359.459856px;}
.y5a{bottom:362.699855px;}
.y28{bottom:368.819852px;}
.y7a{bottom:370.259852px;}
.yde{bottom:373.499851px;}
.y12d{bottom:375.659850px;}
.y59{bottom:380.339848px;}
.y27{bottom:386.639845px;}
.y79{bottom:388.079845px;}
.ydd{bottom:391.319843px;}
.y12c{bottom:391.859843px;}
.y58{bottom:398.339841px;}
.y26{bottom:404.639838px;}
.y78{bottom:405.899838px;}
.y12b{bottom:408.239837px;}
.ydc{bottom:408.959836px;}
.y57{bottom:416.159834px;}
.y25{bottom:422.279831px;}
.y77{bottom:423.719831px;}
.y12a{bottom:424.439830px;}
.ydb{bottom:427.499829px;}
.y56{bottom:433.979826px;}
.y24{bottom:440.279824px;}
.y129{bottom:440.639824px;}
.y76{bottom:442.079823px;}
.yda{bottom:450.359820px;}
.y55{bottom:451.979819px;}
.y128{bottom:456.659817px;}
.y23{bottom:458.819816px;}
.y75{bottom:464.939814px;}
.y54{bottom:470.699812px;}
.yd9{bottom:472.499811px;}
.y127{bottom:473.039811px;}
.y22{bottom:481.499807px;}
.y74{bottom:487.619805px;}
.yd8{bottom:487.979805px;}
.y53{bottom:488.699805px;}
.y126{bottom:489.239804px;}
.y21{bottom:503.999798px;}
.y125{bottom:505.439798px;}
.y73{bottom:506.519797px;}
.y52{bottom:507.599797px;}
.yd7{bottom:515.159794px;}
.y124{bottom:521.639791px;}
.y20{bottom:522.899791px;}
.y72{bottom:524.159790px;}
.y51{bottom:526.499789px;}
.yd6{bottom:535.499786px;}
.y123{bottom:537.839785px;}
.y1f{bottom:539.099784px;}
.y71{bottom:542.159783px;}
.y50{bottom:544.319782px;}
.y122{bottom:554.039778px;}
.y1e{bottom:556.019778px;}
.y70{bottom:559.979776px;}
.y4f{bottom:562.139775px;}
.y121{bottom:570.239772px;}
.yd5{bottom:573.659771px;}
.y1d{bottom:574.919770px;}
.y6f{bottom:577.799769px;}
.y4e{bottom:580.499768px;}
.y120{bottom:586.439765px;}
.yd4{bottom:588.059765px;}
.y6e{bottom:595.619762px;}
.y1c{bottom:595.799762px;}
.y4d{bottom:602.819759px;}
.y101{bottom:603.359759px;}
.y1b{bottom:611.999755px;}
.y6d{bottom:613.439755px;}
.y11f{bottom:619.019752px;}
.y4c{bottom:620.459752px;}
.y100{bottom:625.499750px;}
.y1a{bottom:628.199749px;}
.y6c{bottom:631.259747px;}
.y11e{bottom:635.039746px;}
.y4b{bottom:638.459745px;}
.y19{bottom:644.399742px;}
.yff{bottom:644.939742px;}
.y6b{bottom:649.079740px;}
.yd3{bottom:649.259740px;}
.y11d{bottom:651.239740px;}
.y4a{bottom:656.279737px;}
.y18{bottom:660.599736px;}
.yfe{bottom:661.139736px;}
.y6a{bottom:666.899733px;}
.y11c{bottom:667.619733px;}
.yd2{bottom:669.059732px;}
.y49{bottom:673.919730px;}
.y17{bottom:676.799729px;}
.yfd{bottom:677.339729px;}
.y69{bottom:683.099727px;}
.y11b{bottom:684.539726px;}
.yd1{bottom:686.879725px;}
.y48{bottom:691.919723px;}
.y16{bottom:692.999723px;}
.yfc{bottom:693.359723px;}
.y68{bottom:697.139721px;}
.yb2{bottom:701.099720px;}
.y11a{bottom:707.039717px;}
.ycf{bottom:707.219717px;}
.y15{bottom:709.379716px;}
.yfb{bottom:709.739716px;}
.y47{bottom:711.359715px;}
.yd0{bottom:714.419714px;}
.yb1{bottom:718.739713px;}
.y14{bottom:725.579710px;}
.y96{bottom:725.759710px;}
.yfa{bottom:726.119710px;}
.yce{bottom:726.839709px;}
.y119{bottom:729.899708px;}
.y46{bottom:730.799708px;}
.yb0{bottom:736.379705px;}
.ycd{bottom:740.879704px;}
.y13{bottom:741.599703px;}
.y107{bottom:743.040000px;}
.y95{bottom:743.759702px;}
.yf9{bottom:744.479702px;}
.y106{bottom:747.359701px;}
.y109{bottom:747.899701px;}
.y45{bottom:750.239700px;}
.y118{bottom:752.039699px;}
.yaf{bottom:754.199698px;}
.y12{bottom:758.519697px;}
.y94{bottom:761.579695px;}
.yf8{bottom:767.159693px;}
.ycc{bottom:767.879693px;}
.y44{bottom:768.239693px;}
.y117{bottom:769.679692px;}
.yae{bottom:772.019691px;}
.y11{bottom:777.599689px;}
.y93{bottom:779.219688px;}
.yad{bottom:786.419685px;}
.y43{bottom:786.959685px;}
.y146{bottom:787.499685px;}
.y116{bottom:787.679685px;}
.ycb{bottom:788.399685px;}
.yf7{bottom:789.839684px;}
.y92{bottom:797.039681px;}
.y10{bottom:799.199680px;}
.y105{bottom:799.919680px;}
.y145{bottom:803.699679px;}
.y42{bottom:804.959678px;}
.y115{bottom:805.499678px;}
.yac{bottom:808.199677px;}
.yca{bottom:808.919676px;}
.yf6{bottom:812.519675px;}
.y91{bottom:815.219674px;}
.yf{bottom:818.639673px;}
.y144{bottom:819.539672px;}
.y41{bottom:822.779671px;}
.y114{bottom:823.319671px;}
.yab{bottom:825.839670px;}
.yc9{bottom:826.559669px;}
.y90{bottom:833.039667px;}
.yf5{bottom:834.659666px;}
.y143{bottom:836.279665px;}
.ye{bottom:838.079665px;}
.yaa{bottom:840.059664px;}
.yc8{bottom:840.959664px;}
.y113{bottom:841.139664px;}
.y40{bottom:841.679663px;}
.y104{bottom:844.919662px;}
.yd{bottom:845.819662px;}
.y8f{bottom:850.859660px;}
.yf4{bottom:852.479659px;}
.yc{bottom:857.519657px;}
.y3f{bottom:859.499656px;}
.yc7{bottom:865.259654px;}
.y142{bottom:868.499653px;}
.y8e{bottom:868.679653px;}
.yf3{bottom:870.479652px;}
.yb{bottom:876.959649px;}
.y3e{bottom:878.579649px;}
.y112{bottom:881.819647px;}
.ya9{bottom:882.899647px;}
.ya{bottom:884.699646px;}
.y8d{bottom:886.499645px;}
.yf2{bottom:888.119645px;}
.y103{bottom:890.099644px;}
.y3d{bottom:898.019641px;}
.yc6{bottom:898.919640px;}
.y111{bottom:899.459640px;}
.ya8{bottom:900.719640px;}
.y141{bottom:901.079640px;}
.y8c{bottom:904.499638px;}
.y9{bottom:904.859638px;}
.yf1{bottom:905.939638px;}
.ya7{bottom:914.939634px;}
.y3c{bottom:917.279633px;}
.y7{bottom:917.639633px;}
.y8b{bottom:922.139631px;}
.yf0{bottom:923.759630px;}
.y8{bottom:926.099630px;}
.y140{bottom:933.479627px;}
.y110{bottom:935.279626px;}
.y3b{bottom:935.819626px;}
.y8a{bottom:940.139624px;}
.y6{bottom:941.399623px;}
.y13f{bottom:949.679620px;}
.y10f{bottom:952.919619px;}
.yc5{bottom:953.459619px;}
.ya6{bottom:957.779617px;}
.y3a{bottom:957.959617px;}
.y13e{bottom:965.879614px;}
.y10e{bottom:970.919612px;}
.yc4{bottom:971.459611px;}
.y5{bottom:973.259611px;}
.y39{bottom:975.599610px;}
.y13d{bottom:982.079607px;}
.y10d{bottom:988.739605px;}
.yc3{bottom:988.919604px;}
.ya5{bottom:993.419603px;}
.y38{bottom:993.599603px;}
.y13c{bottom:998.279601px;}
.y4{bottom:1004.939598px;}
.y10c{bottom:1006.379597px;}
.yc2{bottom:1006.559597px;}
.ya4{bottom:1007.459597px;}
.y37{bottom:1011.419595px;}
.y13b{bottom:1014.479594px;}
.y10b{bottom:1024.379590px;}
.yc1{bottom:1024.559590px;}
.y89{bottom:1028.879588px;}
.y36{bottom:1029.239588px;}
.y13a{bottom:1030.319588px;}
.y3{bottom:1036.799585px;}
.y10a{bottom:1042.739583px;}
.yc0{bottom:1045.439582px;}
.y88{bottom:1046.699581px;}
.y35{bottom:1047.059581px;}
.y1{bottom:1080.179568px;}
.h14{height:22.320000px;}
.h11{height:26.849102px;}
.hf{height:28.812718px;}
.h6{height:33.282072px;}
.h17{height:35.125906px;}
.h5{height:35.269684px;}
.ha{height:38.367100px;}
.h16{height:38.872669px;}
.h9{height:40.796994px;}
.h1{height:41.231993px;}
.h10{height:42.525749px;}
.hc{height:43.086117px;}
.hd{height:45.701171px;}
.h12{height:46.027898px;}
.he{height:46.834541px;}
.h7{height:49.677100px;}
.h8{height:50.069644px;}
.h4{height:53.651268px;}
.hb{height:54.794752px;}
.h15{height:58.120446px;}
.h13{height:59.560445px;}
.h3{height:59.994925px;}
.h2{height:75.330374px;}
.h0{height:1188.000000px;}
.w1{width:8.460000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.759818px;}
.x1c{left:169.019932px;}
.x1e{left:170.999932px;}
.x21{left:173.699931px;}
.x1d{left:174.779930px;}
.x22{left:177.659929px;}
.x3b{left:179.999928px;}
.x29{left:184.139926px;}
.x23{left:185.399926px;}
.x19{left:189.179924px;}
.x43{left:190.799924px;}
.x30{left:191.879923px;}
.x1a{left:194.939922px;}
.x51{left:198.719951px;}
.x1{left:208.079917px;}
.x2a{left:209.519884px;}
.xc{left:217.259913px;}
.x4{left:219.600586px;}
.x52{left:223.739911px;}
.x5{left:233.999906px;}
.x1f{left:236.879905px;}
.x20{left:242.639903px;}
.x26{left:262.259895px;}
.x50{left:266.039894px;}
.x2b{left:268.379893px;}
.x27{left:273.239891px;}
.x2c{left:280.259888px;}
.x44{left:282.959887px;}
.x2f{left:285.659886px;}
.x40{left:287.459885px;}
.x6{left:288.899884px;}
.x4c{left:293.579399px;}
.x4e{left:296.639881px;}
.x24{left:303.299879px;}
.x7{left:306.179878px;}
.x4d{left:310.319876px;}
.x1b{left:328.859420px;}
.x16{left:336.419865px;}
.x45{left:342.359863px;}
.x4f{left:344.699862px;}
.x46{left:354.239924px;}
.x28{left:361.979855px;}
.x4b{left:365.579854px;}
.xd{left:376.379849px;}
.x2d{left:378.719849px;}
.xe{left:397.979841px;}
.x41{left:401.039840px;}
.x38{left:403.559839px;}
.x39{left:408.959836px;}
.x3a{left:416.519833px;}
.x31{left:418.499833px;}
.x8{left:426.779829px;}
.x9{left:440.999824px;}
.x17{left:447.839821px;}
.xf{left:459.359816px;}
.x3{left:463.679815px;}
.x53{left:496.079802px;}
.x49{left:510.659750px;}
.x10{left:525.959790px;}
.x11{left:531.539787px;}
.x36{left:544.139782px;}
.x48{left:549.179780px;}
.xa{left:550.439780px;}
.x47{left:562.499775px;}
.x12{left:569.159772px;}
.xb{left:570.409272px;}
.x4a{left:573.119771px;}
.x13{left:574.739770px;}
.x18{left:584.819766px;}
.x14{left:593.279763px;}
.x37{left:604.799758px;}
.x35{left:606.419757px;}
.x34{left:613.799754px;}
.x32{left:630.719748px;}
.x15{left:635.399746px;}
.x3e{left:651.959739px;}
.x3f{left:665.099734px;}
.x3c{left:669.239732px;}
.x3d{left:673.559731px;}
.x33{left:677.339729px;}
.x42{left:730.259708px;}
.x25{left:754.559424px;}
.x2e{left:765.539694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.189909pt;}
.ls3{letter-spacing:0.270507pt;}
.ls5{letter-spacing:44.470130pt;}
.ls2{letter-spacing:49.376718pt;}
.ls4{letter-spacing:69.478120pt;}
.ws5{word-spacing:-43.003100pt;}
.ws0{word-spacing:-25.116257pt;}
.ws2{word-spacing:-17.596260pt;}
.ws3{word-spacing:-13.836261pt;}
.ws1{word-spacing:-13.235035pt;}
.ws8{word-spacing:-12.483195pt;}
.ws9{word-spacing:-11.279995pt;}
.ws6{word-spacing:-8.723197pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:2.029421pt;}
._1{margin-left:-1.286278pt;}
._0{width:1.107418pt;}
._3{width:2.399281pt;}
._9{width:3.478888pt;}
._8{width:4.461054pt;}
._10{width:5.725465pt;}
._6{width:6.651986pt;}
._e{width:7.590621pt;}
._1e{width:8.511899pt;}
._7{width:9.411406pt;}
._12{width:10.436486pt;}
._2{width:11.366219pt;}
._d{width:12.369063pt;}
._4{width:13.620644pt;}
._5{width:14.667285pt;}
._c{width:15.654746pt;}
._f{width:16.761425pt;}
._11{width:18.376758pt;}
._b{width:20.047888pt;}
._a{width:21.084401pt;}
._28{width:22.264060pt;}
._27{width:23.230026pt;}
._16{width:33.951236pt;}
._15{width:34.866898pt;}
._1b{width:37.035682pt;}
._1a{width:38.072982pt;}
._18{width:43.768488pt;}
._19{width:45.225346pt;}
._1d{width:56.466863pt;}
._1c{width:60.339233pt;}
._22{width:88.261641pt;}
._24{width:95.267751pt;}
._23{width:99.114990pt;}
._17{width:101.745182pt;}
._26{width:117.068772pt;}
._25{width:118.038086pt;}
._21{width:151.356885pt;}
._20{width:155.845331pt;}
._1f{width:195.925503pt;}
._14{width:349.185506pt;}
._13{width:481.857756pt;}
.fsa{font-size:34.892786pt;}
.fsb{font-size:34.942706pt;}
.fs5{font-size:40.305264pt;}
.fs4{font-size:42.712303pt;}
.fsd{font-size:45.119982pt;}
.fs0{font-size:49.932780pt;}
.fs7{font-size:52.940139pt;}
.fs9{font-size:55.345045pt;}
.fsc{font-size:59.902909pt;}
.fs6{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs8{font-size:70.385039pt;}
.fs2{font-size:80.012768pt;}
.fs1{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:3.839734pt;}
.y2{bottom:94.559962pt;}
.yef{bottom:112.319955pt;}
.ya3{bottom:113.439955pt;}
.y67{bottom:116.319953pt;}
.y139{bottom:117.279953pt;}
.y87{bottom:117.759953pt;}
.y102{bottom:125.119950pt;}
.yee{bottom:128.159949pt;}
.ybe{bottom:128.799948pt;}
.ya2{bottom:129.279948pt;}
.y66{bottom:132.159947pt;}
.y86{bottom:133.759946pt;}
.ybf{bottom:135.039946pt;}
.y34{bottom:137.599945pt;}
.yed{bottom:144.159942pt;}
.ya1{bottom:145.119942pt;}
.ybc{bottom:146.719941pt;}
.y65{bottom:147.999941pt;}
.y85{bottom:149.759940pt;}
.ybd{bottom:152.959939pt;}
.y33{bottom:153.439939pt;}
.yec{bottom:159.839936pt;}
.ya0{bottom:160.959936pt;}
.y64{bottom:163.839934pt;}
.ybb{bottom:164.639934pt;}
.y84{bottom:165.599934pt;}
.y32{bottom:169.439932pt;}
.y138{bottom:175.359930pt;}
.yeb{bottom:175.839930pt;}
.y9f{bottom:176.799929pt;}
.y63{bottom:179.679928pt;}
.y83{bottom:181.599927pt;}
.yba{bottom:181.759927pt;}
.y31{bottom:185.119926pt;}
.y137{bottom:189.919924pt;}
.yea{bottom:192.159923pt;}
.y9e{bottom:192.319923pt;}
.y62{bottom:195.519922pt;}
.y82{bottom:197.439921pt;}
.y30{bottom:201.119920pt;}
.y136{bottom:204.319918pt;}
.y9d{bottom:208.159917pt;}
.ye9{bottom:208.799916pt;}
.y61{bottom:211.359915pt;}
.yb9{bottom:213.439915pt;}
.y81{bottom:213.599915pt;}
.y2f{bottom:216.959913pt;}
.y135{bottom:218.719913pt;}
.y9c{bottom:224.479910pt;}
.ye8{bottom:224.959910pt;}
.y60{bottom:227.359909pt;}
.yb8{bottom:229.759908pt;}
.y80{bottom:231.039908pt;}
.y2e{bottom:232.639907pt;}
.y134{bottom:232.959907pt;}
.ye3{bottom:240.479904pt;}
.y9b{bottom:241.759903pt;}
.y5f{bottom:243.039903pt;}
.ye5{bottom:244.319902pt;}
.y7f{bottom:246.719901pt;}
.yb7{bottom:247.039901pt;}
.y133{bottom:247.519901pt;}
.y2d{bottom:248.639901pt;}
.ye7{bottom:255.999898pt;}
.ye2{bottom:256.159898pt;}
.y9a{bottom:258.719897pt;}
.y5e{bottom:258.879896pt;}
.y132{bottom:261.919895pt;}
.ye4{bottom:262.239895pt;}
.y7e{bottom:262.559895pt;}
.yb6{bottom:263.839894pt;}
.y2c{bottom:264.479894pt;}
.ye6{bottom:265.919894pt;}
.y99{bottom:274.719890pt;}
.y5d{bottom:274.879890pt;}
.y131{bottom:276.319889pt;}
.y7d{bottom:278.399889pt;}
.yb5{bottom:279.999888pt;}
.y2b{bottom:280.319888pt;}
.ye1{bottom:284.319886pt;}
.y98{bottom:288.959884pt;}
.y5c{bottom:290.559884pt;}
.y130{bottom:290.719884pt;}
.yb4{bottom:294.399882pt;}
.y7c{bottom:294.719882pt;}
.y2a{bottom:296.159882pt;}
.ye0{bottom:300.159880pt;}
.y97{bottom:301.759879pt;}
.y12f{bottom:305.119878pt;}
.y5b{bottom:306.559877pt;}
.yb3{bottom:306.879877pt;}
.y7b{bottom:311.999875pt;}
.y29{bottom:312.159875pt;}
.ydf{bottom:315.999874pt;}
.y12e{bottom:319.519872pt;}
.y5a{bottom:322.399871pt;}
.y28{bottom:327.839869pt;}
.y7a{bottom:329.119868pt;}
.yde{bottom:331.999867pt;}
.y12d{bottom:333.919866pt;}
.y59{bottom:338.079865pt;}
.y27{bottom:343.679863pt;}
.y79{bottom:344.959862pt;}
.ydd{bottom:347.839861pt;}
.y12c{bottom:348.319861pt;}
.y58{bottom:354.079858pt;}
.y26{bottom:359.679856pt;}
.y78{bottom:360.799856pt;}
.y12b{bottom:362.879855pt;}
.ydc{bottom:363.519855pt;}
.y57{bottom:369.919852pt;}
.y25{bottom:375.359850pt;}
.y77{bottom:376.639849pt;}
.y12a{bottom:377.279849pt;}
.ydb{bottom:379.999848pt;}
.y56{bottom:385.759846pt;}
.y24{bottom:391.359843pt;}
.y129{bottom:391.679843pt;}
.y76{bottom:392.959843pt;}
.yda{bottom:400.319840pt;}
.y55{bottom:401.759839pt;}
.y128{bottom:405.919838pt;}
.y23{bottom:407.839837pt;}
.y75{bottom:413.279835pt;}
.y54{bottom:418.399833pt;}
.yd9{bottom:419.999832pt;}
.y127{bottom:420.479832pt;}
.y22{bottom:427.999829pt;}
.y74{bottom:433.439827pt;}
.yd8{bottom:433.759826pt;}
.y53{bottom:434.399826pt;}
.y126{bottom:434.879826pt;}
.y21{bottom:447.999821pt;}
.y125{bottom:449.279820pt;}
.y73{bottom:450.239820pt;}
.y52{bottom:451.199820pt;}
.yd7{bottom:457.919817pt;}
.y124{bottom:463.679815pt;}
.y20{bottom:464.799814pt;}
.y72{bottom:465.919814pt;}
.y51{bottom:467.999813pt;}
.yd6{bottom:475.999810pt;}
.y123{bottom:478.079809pt;}
.y1f{bottom:479.199808pt;}
.y71{bottom:481.919807pt;}
.y50{bottom:483.839806pt;}
.y122{bottom:492.479803pt;}
.y1e{bottom:494.239802pt;}
.y70{bottom:497.759801pt;}
.y4f{bottom:499.679800pt;}
.y121{bottom:506.879797pt;}
.yd5{bottom:509.919796pt;}
.y1d{bottom:511.039796pt;}
.y6f{bottom:513.599795pt;}
.y4e{bottom:515.999794pt;}
.y120{bottom:521.279791pt;}
.yd4{bottom:522.719791pt;}
.y6e{bottom:529.439788pt;}
.y1c{bottom:529.599788pt;}
.y4d{bottom:535.839786pt;}
.y101{bottom:536.319785pt;}
.y1b{bottom:543.999782pt;}
.y6d{bottom:545.279782pt;}
.y11f{bottom:550.239780pt;}
.y4c{bottom:551.519779pt;}
.y100{bottom:555.999778pt;}
.y1a{bottom:558.399777pt;}
.y6c{bottom:561.119776pt;}
.y11e{bottom:564.479774pt;}
.y4b{bottom:567.519773pt;}
.y19{bottom:572.799771pt;}
.yff{bottom:573.279771pt;}
.y6b{bottom:576.959769pt;}
.yd3{bottom:577.119769pt;}
.y11d{bottom:578.879768pt;}
.y4a{bottom:583.359767pt;}
.y18{bottom:587.199765pt;}
.yfe{bottom:587.679765pt;}
.y6a{bottom:592.799763pt;}
.y11c{bottom:593.439763pt;}
.yd2{bottom:594.719762pt;}
.y49{bottom:599.039760pt;}
.y17{bottom:601.599759pt;}
.yfd{bottom:602.079759pt;}
.y69{bottom:607.199757pt;}
.y11b{bottom:608.479757pt;}
.yd1{bottom:610.559756pt;}
.y48{bottom:615.039754pt;}
.y16{bottom:615.999754pt;}
.yfc{bottom:616.319753pt;}
.y68{bottom:619.679752pt;}
.yb2{bottom:623.199751pt;}
.y11a{bottom:628.479749pt;}
.ycf{bottom:628.639749pt;}
.y15{bottom:630.559748pt;}
.yfb{bottom:630.879748pt;}
.y47{bottom:632.319747pt;}
.yd0{bottom:635.039746pt;}
.yb1{bottom:638.879744pt;}
.y14{bottom:644.959742pt;}
.y96{bottom:645.119742pt;}
.yfa{bottom:645.439742pt;}
.yce{bottom:646.079742pt;}
.y119{bottom:648.799740pt;}
.y46{bottom:649.599740pt;}
.yb0{bottom:654.559738pt;}
.ycd{bottom:658.559737pt;}
.y13{bottom:659.199736pt;}
.y107{bottom:660.480000pt;}
.y95{bottom:661.119736pt;}
.yf9{bottom:661.759735pt;}
.y106{bottom:664.319734pt;}
.y109{bottom:664.799734pt;}
.y45{bottom:666.879733pt;}
.y118{bottom:668.479733pt;}
.yaf{bottom:670.399732pt;}
.y12{bottom:674.239730pt;}
.y94{bottom:676.959729pt;}
.yf8{bottom:681.919727pt;}
.ycc{bottom:682.559727pt;}
.y44{bottom:682.879727pt;}
.y117{bottom:684.159726pt;}
.yae{bottom:686.239726pt;}
.y11{bottom:691.199724pt;}
.y93{bottom:692.639723pt;}
.yad{bottom:699.039720pt;}
.y43{bottom:699.519720pt;}
.y146{bottom:699.999720pt;}
.y116{bottom:700.159720pt;}
.ycb{bottom:700.799720pt;}
.yf7{bottom:702.079719pt;}
.y92{bottom:708.479717pt;}
.y10{bottom:710.399716pt;}
.y105{bottom:711.039716pt;}
.y145{bottom:714.399714pt;}
.y42{bottom:715.519714pt;}
.y115{bottom:715.999714pt;}
.yac{bottom:718.399713pt;}
.yca{bottom:719.039712pt;}
.yf6{bottom:722.239711pt;}
.y91{bottom:724.639710pt;}
.yf{bottom:727.679709pt;}
.y144{bottom:728.479709pt;}
.y41{bottom:731.359707pt;}
.y114{bottom:731.839707pt;}
.yab{bottom:734.079706pt;}
.yc9{bottom:734.719706pt;}
.y90{bottom:740.479704pt;}
.yf5{bottom:741.919703pt;}
.y143{bottom:743.359703pt;}
.ye{bottom:744.959702pt;}
.yaa{bottom:746.719701pt;}
.yc8{bottom:747.519701pt;}
.y113{bottom:747.679701pt;}
.y40{bottom:748.159701pt;}
.y104{bottom:751.039700pt;}
.yd{bottom:751.839699pt;}
.y8f{bottom:756.319697pt;}
.yf4{bottom:757.759697pt;}
.yc{bottom:762.239695pt;}
.y3f{bottom:763.999694pt;}
.yc7{bottom:769.119692pt;}
.y142{bottom:771.999691pt;}
.y8e{bottom:772.159691pt;}
.yf3{bottom:773.759690pt;}
.yb{bottom:779.519688pt;}
.y3e{bottom:780.959688pt;}
.y112{bottom:783.839686pt;}
.ya9{bottom:784.799686pt;}
.ya{bottom:786.399685pt;}
.y8d{bottom:787.999685pt;}
.yf2{bottom:789.439684pt;}
.y103{bottom:791.199684pt;}
.y3d{bottom:798.239681pt;}
.yc6{bottom:799.039680pt;}
.y111{bottom:799.519680pt;}
.ya8{bottom:800.639680pt;}
.y141{bottom:800.959680pt;}
.y8c{bottom:803.999678pt;}
.y9{bottom:804.319678pt;}
.yf1{bottom:805.279678pt;}
.ya7{bottom:813.279675pt;}
.y3c{bottom:815.359674pt;}
.y7{bottom:815.679674pt;}
.y8b{bottom:819.679672pt;}
.yf0{bottom:821.119672pt;}
.y8{bottom:823.199671pt;}
.y140{bottom:829.759668pt;}
.y110{bottom:831.359667pt;}
.y3b{bottom:831.839667pt;}
.y8a{bottom:835.679666pt;}
.y6{bottom:836.799665pt;}
.y13f{bottom:844.159662pt;}
.y10f{bottom:847.039661pt;}
.yc5{bottom:847.519661pt;}
.ya6{bottom:851.359659pt;}
.y3a{bottom:851.519659pt;}
.y13e{bottom:858.559657pt;}
.y10e{bottom:863.039655pt;}
.yc4{bottom:863.519655pt;}
.y5{bottom:865.119654pt;}
.y39{bottom:867.199653pt;}
.y13d{bottom:872.959651pt;}
.y10d{bottom:878.879648pt;}
.yc3{bottom:879.039648pt;}
.ya5{bottom:883.039647pt;}
.y38{bottom:883.199647pt;}
.y13c{bottom:887.359645pt;}
.y4{bottom:893.279643pt;}
.y10c{bottom:894.559642pt;}
.yc2{bottom:894.719642pt;}
.ya4{bottom:895.519642pt;}
.y37{bottom:899.039640pt;}
.y13b{bottom:901.759639pt;}
.y10b{bottom:910.559636pt;}
.yc1{bottom:910.719636pt;}
.y89{bottom:914.559634pt;}
.y36{bottom:914.879634pt;}
.y13a{bottom:915.839634pt;}
.y3{bottom:921.599631pt;}
.y10a{bottom:926.879629pt;}
.yc0{bottom:929.279628pt;}
.y88{bottom:930.399628pt;}
.y35{bottom:930.719628pt;}
.y1{bottom:960.159616pt;}
.h14{height:19.840000pt;}
.h11{height:23.865868pt;}
.hf{height:25.611305pt;}
.h6{height:29.584064pt;}
.h17{height:31.223028pt;}
.h5{height:31.350830pt;}
.ha{height:34.104089pt;}
.h16{height:34.553484pt;}
.h9{height:36.263995pt;}
.h1{height:36.650661pt;}
.h10{height:37.800665pt;}
.hc{height:38.298771pt;}
.hd{height:40.623263pt;}
.h12{height:40.913687pt;}
.he{height:41.630703pt;}
.h7{height:44.157422pt;}
.h8{height:44.506350pt;}
.h4{height:47.690016pt;}
.hb{height:48.706447pt;}
.h15{height:51.662618pt;}
.h13{height:52.942618pt;}
.h3{height:53.328822pt;}
.h2{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w1{width:7.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.119838pt;}
.x1c{left:150.239940pt;}
.x1e{left:151.999939pt;}
.x21{left:154.399938pt;}
.x1d{left:155.359938pt;}
.x22{left:157.919937pt;}
.x3b{left:159.999936pt;}
.x29{left:163.679935pt;}
.x23{left:164.799934pt;}
.x19{left:168.159933pt;}
.x43{left:169.599932pt;}
.x30{left:170.559932pt;}
.x1a{left:173.279931pt;}
.x51{left:176.639956pt;}
.x1{left:184.959926pt;}
.x2a{left:186.239897pt;}
.xc{left:193.119923pt;}
.x4{left:195.200521pt;}
.x52{left:198.879920pt;}
.x5{left:207.999917pt;}
.x1f{left:210.559916pt;}
.x20{left:215.679914pt;}
.x26{left:233.119907pt;}
.x50{left:236.479905pt;}
.x2b{left:238.559905pt;}
.x27{left:242.879903pt;}
.x2c{left:249.119900pt;}
.x44{left:251.519899pt;}
.x2f{left:253.919898pt;}
.x40{left:255.519898pt;}
.x6{left:256.799897pt;}
.x4c{left:260.959466pt;}
.x4e{left:263.679895pt;}
.x24{left:269.599892pt;}
.x7{left:272.159891pt;}
.x4d{left:275.839890pt;}
.x1b{left:292.319485pt;}
.x16{left:299.039880pt;}
.x45{left:304.319878pt;}
.x4f{left:306.399877pt;}
.x46{left:314.879932pt;}
.x28{left:321.759871pt;}
.x4b{left:324.959870pt;}
.xd{left:334.559866pt;}
.x2d{left:336.639865pt;}
.xe{left:353.759858pt;}
.x41{left:356.479857pt;}
.x38{left:358.719857pt;}
.x39{left:363.519855pt;}
.x3a{left:370.239852pt;}
.x31{left:371.999851pt;}
.x8{left:379.359848pt;}
.x9{left:391.999843pt;}
.x17{left:398.079841pt;}
.xf{left:408.319837pt;}
.x3{left:412.159835pt;}
.x53{left:440.959824pt;}
.x49{left:453.919778pt;}
.x10{left:467.519813pt;}
.x11{left:472.479811pt;}
.x36{left:483.679807pt;}
.x48{left:488.159805pt;}
.xa{left:489.279804pt;}
.x47{left:499.999800pt;}
.x12{left:505.919798pt;}
.xb{left:507.030464pt;}
.x4a{left:509.439796pt;}
.x13{left:510.879796pt;}
.x18{left:519.839792pt;}
.x14{left:527.359789pt;}
.x37{left:537.599785pt;}
.x35{left:539.039784pt;}
.x34{left:545.599782pt;}
.x32{left:560.639776pt;}
.x15{left:564.799774pt;}
.x3e{left:579.519768pt;}
.x3f{left:591.199764pt;}
.x3c{left:594.879762pt;}
.x3d{left:598.719761pt;}
.x33{left:602.079759pt;}
.x42{left:649.119740pt;}
.x25{left:670.719488pt;}
.x2e{left:680.479728pt;}
}




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