
    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_2d1132324a1d93ef541dc94b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1a154cb7bf75070bdf5f5d1e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_cd13baa958133abeeb1c5d4f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_6cd835b0a9186e7c1c5e92c9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_086aec1fcf54a344bede1d8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.860840;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a231f04d8446663e579ef8fe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_75e74938316ca1c2319f5057.woff')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_9f02d1e17b57ef2dabc6c563.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0664c2ff9c1c9fff5755b964.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_bfe69879a1d812f01592079e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010620px;}
.ls1{letter-spacing:0.018600px;}
.ls4{letter-spacing:0.019560px;}
.lsd{letter-spacing:0.021106px;}
.lsb{letter-spacing:0.021238px;}
.lsa{letter-spacing:0.021282px;}
.lsc{letter-spacing:0.741660px;}
.ls2{letter-spacing:18.914013px;}
.ls9{letter-spacing:33.980686px;}
.ls7{letter-spacing:34.015846px;}
.ls6{letter-spacing:54.872978px;}
.ls5{letter-spacing:54.908378px;}
.ls0{letter-spacing:1148.525071px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.996143px;}
.ws5{word-spacing:-32.418587px;}
.ws9{word-spacing:-18.021275px;}
.wsa{word-spacing:-18.021231px;}
.wsb{word-spacing:-18.021099px;}
.ws1{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.613273px;}
.ws4{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.505755px;}
.ws8{word-spacing:0.000000px;}
._23{margin-left:-8.855896px;}
._18{margin-left:-7.191861px;}
._4{margin-left:-5.960592px;}
._3{margin-left:-4.655316px;}
._2{margin-left:-2.813857px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._f{width:2.334492px;}
._8{width:3.699686px;}
._b{width:5.647631px;}
._a{width:6.673064px;}
._20{width:7.809411px;}
._7{width:8.825381px;}
._9{width:9.829883px;}
._d{width:10.843602px;}
._1f{width:12.693780px;}
._e{width:13.814835px;}
._24{width:14.923086px;}
._17{width:16.481241px;}
._10{width:17.854848px;}
._19{width:19.194875px;}
._6{width:20.220555px;}
._5{width:21.264497px;}
._1c{width:22.445307px;}
._1d{width:23.828400px;}
._21{width:25.829034px;}
._6b{width:26.868110px;}
._1b{width:28.015085px;}
._14{width:29.870581px;}
._15{width:31.085802px;}
._16{width:32.256909px;}
._12{width:33.576463px;}
._13{width:34.975929px;}
._22{width:36.555231px;}
._11{width:37.636718px;}
._1e{width:38.953761px;}
._c{width:40.895508px;}
._1a{width:41.915801px;}
._68{width:42.920145px;}
._2a{width:44.960268px;}
._67{width:46.072376px;}
._6c{width:47.179578px;}
._25{width:50.702632px;}
._26{width:52.679854px;}
._6f{width:54.838466px;}
._6e{width:56.062238px;}
._3a{width:58.856303px;}
._50{width:60.586207px;}
._4f{width:65.023626px;}
._2c{width:67.454157px;}
._5c{width:71.626683px;}
._62{width:74.211792px;}
._3b{width:77.375962px;}
._64{width:81.078126px;}
._43{width:85.443568px;}
._55{width:87.474257px;}
._45{width:89.538028px;}
._3d{width:92.015006px;}
._30{width:96.361028px;}
._33{width:97.623576px;}
._58{width:101.231510px;}
._6d{width:114.653205px;}
._5d{width:115.793069px;}
._5e{width:118.102432px;}
._47{width:121.444383px;}
._35{width:123.717529px;}
._41{width:126.720678px;}
._4c{width:128.289719px;}
._49{width:129.692577px;}
._4e{width:132.341791px;}
._42{width:133.930503px;}
._48{width:140.163255px;}
._4d{width:146.021864px;}
._2f{width:150.508418px;}
._44{width:152.188060px;}
._53{width:154.102015px;}
._36{width:155.703787px;}
._40{width:159.237716px;}
._5b{width:165.649966px;}
._34{width:167.255869px;}
._59{width:172.320529px;}
._3e{width:177.248508px;}
._32{width:178.886661px;}
._69{width:179.960933px;}
._46{width:182.353933px;}
._4b{width:183.493153px;}
._56{width:187.529836px;}
._70{width:190.114602px;}
._28{width:191.293843px;}
._52{width:195.720884px;}
._37{width:199.570411px;}
._2b{width:200.575844px;}
._5a{width:203.432483px;}
._39{width:210.461122px;}
._29{width:215.413834px;}
._63{width:223.654071px;}
._65{width:226.987912px;}
._60{width:229.461441px;}
._54{width:245.840179px;}
._6a{width:246.935580px;}
._61{width:259.653831px;}
._31{width:266.092241px;}
._4a{width:273.431809px;}
._3f{width:283.530636px;}
._2d{width:314.067186px;}
._38{width:321.263045px;}
._66{width:323.236509px;}
._3c{width:343.599146px;}
._5f{width:369.824347px;}
._2e{width:372.003645px;}
._57{width:388.329708px;}
._51{width:544.084119px;}
._27{width:1203.954563px;}
.fce{color:rgb(238,0,0);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(5,99,193);}
.fc7{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc8{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fcc{color:rgb(0,101,204);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y26{bottom:1.259254px;}
.y43{bottom:1.438981px;}
.yab{bottom:3.959072px;}
.yc4{bottom:3.959171px;}
.y16{bottom:4.319059px;}
.yf2{bottom:4.319098px;}
.yb3{bottom:4.319147px;}
.yee{bottom:4.319311px;}
.y45{bottom:4.498950px;}
.y18{bottom:4.499059px;}
.y28{bottom:4.499073px;}
.yb{bottom:4.500038px;}
.y14{bottom:5.039059px;}
.yc{bottom:32.880287px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:55.560278px;}
.yfa{bottom:128.640249px;}
.yc1{bottom:133.859946px;}
.y89{bottom:134.399946px;}
.y6e{bottom:137.099945px;}
.ya8{bottom:138.359945px;}
.y41{bottom:143.219943px;}
.yf9{bottom:160.319936px;}
.yc0{bottom:164.819934px;}
.y88{bottom:165.539934px;}
.y6d{bottom:168.059933px;}
.ya7{bottom:169.319932px;}
.y40{bottom:174.179930px;}
.y107{bottom:182.459927px;}
.yf8{bottom:191.459923px;}
.yef{bottom:192.179923px;}
.ybf{bottom:195.959922px;}
.y87{bottom:196.499921px;}
.y6c{bottom:199.199920px;}
.ya6{bottom:200.459920px;}
.y3f{bottom:205.319918px;}
.y106{bottom:213.419915px;}
.yed{bottom:218.820600px;}
.yec{bottom:223.139911px;}
.ybe{bottom:226.919909px;}
.y86{bottom:227.639909px;}
.y6b{bottom:230.159908px;}
.ya5{bottom:231.419907px;}
.y3e{bottom:236.279905px;}
.y105{bottom:244.559902px;}
.yf7{bottom:254.279898px;}
.yeb{bottom:254.999898px;}
.ybd{bottom:258.059897px;}
.y85{bottom:258.599897px;}
.yce{bottom:258.779896px;}
.y6a{bottom:261.119896px;}
.ya4{bottom:262.559895px;}
.y3d{bottom:267.419893px;}
.y104{bottom:275.519890px;}
.yea{bottom:286.139886px;}
.ybc{bottom:289.019884px;}
.y84{bottom:289.739884px;}
.ycd{bottom:290.639884px;}
.y69{bottom:293.519883px;}
.y3c{bottom:298.379881px;}
.y103{bottom:306.659877px;}
.yf6{bottom:317.099873px;}
.ye9{bottom:317.819873px;}
.ybb{bottom:320.159872px;}
.y83{bottom:320.699872px;}
.ycc{bottom:321.599871px;}
.y68{bottom:324.659870px;}
.y3b{bottom:329.519868px;}
.y102{bottom:337.619865px;}
.ye8{bottom:348.959860px;}
.yba{bottom:351.119860px;}
.y82{bottom:351.659859px;}
.ya3{bottom:351.839859px;}
.ycb{bottom:353.459859px;}
.y67{bottom:355.619858px;}
.y25{bottom:364.980600px;}
.y101{bottom:368.759852px;}
.ye7{bottom:379.919848px;}
.ya2{bottom:382.799847px;}
.yb9{bottom:382.979847px;}
.y81{bottom:384.059846px;}
.yca{bottom:384.419846px;}
.y66{bottom:386.759845px;}
.y3a{bottom:389.639844px;}
.y100{bottom:408.719837px;}
.ye6{bottom:411.779835px;}
.ya1{bottom:413.939834px;}
.y80{bottom:415.199834px;}
.yc9{bottom:416.279833px;}
.y65{bottom:417.719833px;}
.y4e{bottom:425.459830px;}
.yff{bottom:439.859824px;}
.ye5{bottom:442.739823px;}
.yf5{bottom:443.639823px;}
.y4d{bottom:444.179822px;}
.ya0{bottom:444.899822px;}
.yb8{bottom:445.079822px;}
.y7f{bottom:446.159822px;}
.yc8{bottom:447.239821px;}
.y64{bottom:448.859820px;}
.y4c{bottom:462.719815px;}
.yfe{bottom:470.819812px;}
.ye4{bottom:473.879810px;}
.yf4{bottom:474.599810px;}
.y9f{bottom:476.039810px;}
.y7e{bottom:477.299809px;}
.yc7{bottom:478.379809px;}
.y63{bottom:479.819808px;}
.y4b{bottom:481.439807px;}
.y4a{bottom:500.699800px;}
.yfd{bottom:501.959799px;}
.ye3{bottom:505.739798px;}
.y9e{bottom:506.999797px;}
.yb7{bottom:507.179797px;}
.y7d{bottom:508.259797px;}
.yc6{bottom:510.239796px;}
.y62{bottom:510.959796px;}
.y24{bottom:512.399795px;}
.yfc{bottom:532.919787px;}
.ye2{bottom:536.699785px;}
.y9d{bottom:538.139785px;}
.yb6{bottom:538.859784px;}
.y7c{bottom:539.399784px;}
.yc5{bottom:541.199784px;}
.y61{bottom:541.919783px;}
.y39{bottom:544.259782px;}
.y38{bottom:561.539775px;}
.yfb{bottom:564.059774px;}
.ye1{bottom:567.659773px;}
.yc3{bottom:568.200600px;}
.yf3{bottom:568.559773px;}
.y9c{bottom:569.099772px;}
.yb5{bottom:569.999772px;}
.y7b{bottom:570.359772px;}
.yc2{bottom:572.159771px;}
.y60{bottom:573.059771px;}
.y37{bottom:578.819768px;}
.y36{bottom:596.099762px;}
.ye0{bottom:599.519760px;}
.y9b{bottom:600.239760px;}
.y7a{bottom:601.499759px;}
.yb4{bottom:601.859759px;}
.y23{bottom:603.479759px;}
.y5f{bottom:604.019758px;}
.y35{bottom:613.379755px;}
.yb2{bottom:628.500600px;}
.y34{bottom:630.479748px;}
.ydf{bottom:630.659748px;}
.y9a{bottom:631.199748px;}
.y79{bottom:632.279747px;}
.yb1{bottom:632.819747px;}
.y22{bottom:633.719747px;}
.y5e{bottom:635.159746px;}
.y33{bottom:647.759741px;}
.y21{bottom:650.099740px;}
.yde{bottom:661.619735px;}
.y99{bottom:662.339735px;}
.yb0{bottom:663.959734px;}
.y78{bottom:664.859734px;}
.y32{bottom:665.039734px;}
.y5d{bottom:666.119734px;}
.y20{bottom:666.659733px;}
.y1f{bottom:681.959727px;}
.y31{bottom:682.319727px;}
.y98{bottom:693.299723px;}
.ydd{bottom:693.479723px;}
.yaf{bottom:695.639722px;}
.y77{bottom:695.819722px;}
.y5c{bottom:697.259721px;}
.y30{bottom:699.599720px;}
.y1e{bottom:710.579716px;}
.y2f{bottom:716.699713px;}
.y97{bottom:724.259710px;}
.ydc{bottom:724.439710px;}
.yae{bottom:726.779709px;}
.y76{bottom:726.959709px;}
.y5b{bottom:728.219709px;}
.y2e{bottom:733.979706px;}
.y1d{bottom:739.199704px;}
.y2d{bottom:751.259699px;}
.yf1{bottom:751.260600px;}
.ydb{bottom:755.579698px;}
.y96{bottom:756.659697px;}
.yad{bottom:757.739697px;}
.y75{bottom:757.919697px;}
.y5a{bottom:759.359696px;}
.y1c{bottom:767.999693px;}
.y2c{bottom:768.539693px;}
.y1b{bottom:784.919686px;}
.y2b{bottom:785.819686px;}
.yda{bottom:786.539685px;}
.y95{bottom:787.799685px;}
.yac{bottom:788.879684px;}
.y74{bottom:789.059684px;}
.y59{bottom:790.319684px;}
.y2a{bottom:803.099679px;}
.y27{bottom:814.080600px;}
.yaa{bottom:816.600600px;}
.yd9{bottom:818.399673px;}
.y94{bottom:818.759672px;}
.y73{bottom:820.019672px;}
.y29{bottom:820.199672px;}
.ya9{bottom:820.559672px;}
.y1a{bottom:821.279671px;}
.y58{bottom:821.459671px;}
.y13{bottom:847.380600px;}
.y15{bottom:847.920600px;}
.yd8{bottom:849.359660px;}
.y93{bottom:849.899660px;}
.y72{bottom:851.159660px;}
.y17{bottom:852.419659px;}
.y19{bottom:853.859658px;}
.yd7{bottom:880.499648px;}
.y92{bottom:880.859648px;}
.y71{bottom:882.119647px;}
.y57{bottom:883.379647px;}
.y12{bottom:884.639646px;}
.y91{bottom:911.999635px;}
.yd6{bottom:912.179635px;}
.y70{bottom:913.259635px;}
.y56{bottom:914.519634px;}
.y11{bottom:917.399633px;}
.y10{bottom:938.099625px;}
.y90{bottom:942.779623px;}
.yd5{bottom:943.319623px;}
.y6f{bottom:944.039622px;}
.y55{bottom:945.479622px;}
.yf{bottom:970.859612px;}
.yf0{bottom:974.279610px;}
.yd4{bottom:975.179610px;}
.y8f{bottom:975.359610px;}
.y54{bottom:976.619609px;}
.ye{bottom:1000.019600px;}
.yd3{bottom:1006.139598px;}
.y8e{bottom:1006.319597px;}
.y53{bottom:1007.579597px;}
.yd{bottom:1019.279592px;}
.yd2{bottom:1037.279585px;}
.y8d{bottom:1037.459585px;}
.y52{bottom:1038.719585px;}
.y42{bottom:1045.740600px;}
.y48{bottom:1060.859576px;}
.y8c{bottom:1068.419573px;}
.yd1{bottom:1068.959572px;}
.y51{bottom:1069.679572px;}
.y47{bottom:1082.639567px;}
.y8b{bottom:1099.559560px;}
.yd0{bottom:1100.099560px;}
.y50{bottom:1100.819560px;}
.y46{bottom:1104.419558px;}
.y44{bottom:1121.520600px;}
.y49{bottom:1126.199550px;}
.y8a{bottom:1130.339548px;}
.ycf{bottom:1131.059548px;}
.y4f{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1182.179527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.940000px;}
.h12{height:14.040000px;}
.h13{height:16.200000px;}
.hc{height:20.160000px;}
.h6{height:20.340000px;}
.h17{height:20.520000px;}
.ha{height:20.700000px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.he{height:38.759750px;}
.h10{height:39.339828px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.h15{height:43.536076px;}
.hd{height:44.149201px;}
.h7{height:44.893107px;}
.hf{height:45.281232px;}
.h14{height:46.025138px;}
.h2{height:47.545293px;}
.h8{height:48.796855px;}
.h9{height:50.027324px;}
.h16{height:52.453104px;}
.hb{height:58.531969px;}
.h0{height:1263.000000px;}
.wb{width:0.900000px;}
.w10{width:3.060000px;}
.w6{width:3.600000px;}
.w3{width:4.500000px;}
.wa{width:6.660000px;}
.w11{width:7.560000px;}
.wf{width:7.740000px;}
.we{width:7.920000px;}
.w8{width:8.280000px;}
.w2{width:9.720000px;}
.wd{width:9.900000px;}
.w9{width:14.580000px;}
.w4{width:20.880000px;}
.w7{width:33.840000px;}
.w5{width:58.500000px;}
.wc{width:439.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x19{left:100.259960px;}
.x17{left:102.239959px;}
.x16{left:104.939958px;}
.x1{left:107.999957px;}
.xa{left:111.419955px;}
.x13{left:113.579955px;}
.x7{left:115.199954px;}
.x1b{left:117.359953px;}
.x14{left:119.879952px;}
.x15{left:121.319882px;}
.x2d{left:127.259949px;}
.x35{left:129.241272px;}
.x2c{left:131.399947px;}
.x4{left:132.659947px;}
.xc{left:135.720000px;}
.x1a{left:148.859940px;}
.x18{left:158.939936px;}
.x1e{left:161.999935px;}
.x2b{left:170.459932px;}
.x27{left:187.380000px;}
.x8{left:191.519257px;}
.xd{left:194.220000px;}
.xe{left:197.820000px;}
.x28{left:203.759918px;}
.x1f{left:224.100000px;}
.xf{left:231.659907px;}
.x10{left:234.540000px;}
.x20{left:236.340000px;}
.x34{left:240.479904px;}
.x1c{left:243.359856px;}
.x11{left:265.140000px;}
.x31{left:270.359937px;}
.x1d{left:285.839886px;}
.x12{left:287.819885px;}
.x9{left:292.859883px;}
.x26{left:294.119882px;}
.x23{left:296.279838px;}
.x2{left:302.579879px;}
.xb{left:350.461242px;}
.x22{left:392.219843px;}
.x24{left:397.799802px;}
.x2f{left:444.779822px;}
.x5{left:464.399814px;}
.x32{left:590.580000px;}
.x2e{left:595.080000px;}
.x30{left:606.600227px;}
.x2a{left:607.860000px;}
.x29{left:624.059790px;}
.x3{left:666.179734px;}
.x21{left:675.360000px;}
.x25{left:694.979463px;}
.x33{left:776.340000px;}
.x6{left:780.120000px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009440pt;}
.ls1{letter-spacing:0.016533pt;}
.ls4{letter-spacing:0.017387pt;}
.lsd{letter-spacing:0.018761pt;}
.lsb{letter-spacing:0.018878pt;}
.lsa{letter-spacing:0.018917pt;}
.lsc{letter-spacing:0.659253pt;}
.ls2{letter-spacing:16.812456pt;}
.ls9{letter-spacing:30.205055pt;}
.ls7{letter-spacing:30.236308pt;}
.ls6{letter-spacing:48.775980pt;}
.ls5{letter-spacing:48.807447pt;}
.ls0{letter-spacing:1020.911174pt;}
.ws0{word-spacing:-37.329905pt;}
.ws5{word-spacing:-28.816521pt;}
.ws9{word-spacing:-16.018911pt;}
.wsa{word-spacing:-16.018872pt;}
.wsb{word-spacing:-16.018755pt;}
.ws1{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.767354pt;}
.ws4{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws3{word-spacing:-12.005115pt;}
.ws8{word-spacing:0.000000pt;}
._23{margin-left:-7.871907pt;}
._18{margin-left:-6.392765pt;}
._4{margin-left:-5.298304pt;}
._3{margin-left:-4.138058pt;}
._2{margin-left:-2.501206pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._f{width:2.075104pt;}
._8{width:3.288610pt;}
._b{width:5.020116pt;}
._a{width:5.931613pt;}
._20{width:6.941699pt;}
._7{width:7.844783pt;}
._9{width:8.737674pt;}
._d{width:9.638757pt;}
._1f{width:11.283360pt;}
._e{width:12.279853pt;}
._24{width:13.264965pt;}
._17{width:14.649992pt;}
._10{width:15.870976pt;}
._19{width:17.062112pt;}
._6{width:17.973827pt;}
._5{width:18.901775pt;}
._1c{width:19.951384pt;}
._1d{width:21.180800pt;}
._21{width:22.959141pt;}
._6b{width:23.882764pt;}
._1b{width:24.902297pt;}
._14{width:26.551627pt;}
._15{width:27.631824pt;}
._16{width:28.672808pt;}
._12{width:29.845745pt;}
._13{width:31.089715pt;}
._22{width:32.493539pt;}
._11{width:33.454861pt;}
._1e{width:34.625565pt;}
._c{width:36.351563pt;}
._1a{width:37.258489pt;}
._68{width:38.151240pt;}
._2a{width:39.964683pt;}
._67{width:40.953223pt;}
._6c{width:41.937402pt;}
._25{width:45.069006pt;}
._26{width:46.826537pt;}
._6f{width:48.745303pt;}
._6e{width:49.833101pt;}
._3a{width:52.316713pt;}
._50{width:53.854406pt;}
._4f{width:57.798779pt;}
._2c{width:59.959251pt;}
._5c{width:63.668163pt;}
._62{width:65.966037pt;}
._3b{width:68.778633pt;}
._64{width:72.069445pt;}
._43{width:75.949838pt;}
._55{width:77.754895pt;}
._45{width:79.589359pt;}
._3d{width:81.791116pt;}
._30{width:85.654247pt;}
._33{width:86.776512pt;}
._58{width:89.983564pt;}
._6d{width:101.913960pt;}
._5d{width:102.927172pt;}
._5e{width:104.979940pt;}
._47{width:107.950562pt;}
._35{width:109.971137pt;}
._41{width:112.640602pt;}
._4c{width:114.035306pt;}
._49{width:115.282291pt;}
._4e{width:117.637148pt;}
._42{width:119.049336pt;}
._48{width:124.589560pt;}
._4d{width:129.797212pt;}
._2f{width:133.785261pt;}
._44{width:135.278276pt;}
._53{width:136.979569pt;}
._36{width:138.403367pt;}
._40{width:141.544636pt;}
._5b{width:147.244414pt;}
._34{width:148.671884pt;}
._59{width:153.173804pt;}
._3e{width:157.554230pt;}
._32{width:159.010365pt;}
._69{width:159.965274pt;}
._46{width:162.092385pt;}
._4b{width:163.105025pt;}
._56{width:166.693188pt;}
._70{width:168.990757pt;}
._28{width:170.038972pt;}
._52{width:173.974119pt;}
._37{width:177.395921pt;}
._2b{width:178.289639pt;}
._5a{width:180.828874pt;}
._39{width:187.076553pt;}
._29{width:191.478963pt;}
._63{width:198.803619pt;}
._65{width:201.767033pt;}
._60{width:203.965726pt;}
._54{width:218.524603pt;}
._6a{width:219.498293pt;}
._61{width:230.803405pt;}
._31{width:236.526436pt;}
._4a{width:243.050497pt;}
._3f{width:252.027232pt;}
._2d{width:279.170832pt;}
._38{width:285.567151pt;}
._66{width:287.321341pt;}
._3c{width:305.421463pt;}
._5f{width:328.732753pt;}
._2e{width:330.669907pt;}
._57{width:345.181962pt;}
._51{width:483.630328pt;}
._27{width:1070.181834pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y26{bottom:1.119336pt;}
.y43{bottom:1.279094pt;}
.yab{bottom:3.519175pt;}
.yc4{bottom:3.519263pt;}
.y16{bottom:3.839164pt;}
.yf2{bottom:3.839198pt;}
.yb3{bottom:3.839242pt;}
.yee{bottom:3.839387pt;}
.y45{bottom:3.999066pt;}
.y18{bottom:3.999164pt;}
.y28{bottom:3.999176pt;}
.yb{bottom:4.000034pt;}
.y14{bottom:4.479164pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:49.386914pt;}
.yfa{bottom:114.346888pt;}
.yc1{bottom:118.986619pt;}
.y89{bottom:119.466619pt;}
.y6e{bottom:121.866618pt;}
.ya8{bottom:122.986617pt;}
.y41{bottom:127.306616pt;}
.yf9{bottom:142.506610pt;}
.yc0{bottom:146.506608pt;}
.y88{bottom:147.146608pt;}
.y6d{bottom:149.386607pt;}
.ya7{bottom:150.506606pt;}
.y40{bottom:154.826605pt;}
.y107{bottom:162.186602pt;}
.yf8{bottom:170.186599pt;}
.yef{bottom:170.826598pt;}
.ybf{bottom:174.186597pt;}
.y87{bottom:174.666597pt;}
.y6c{bottom:177.066596pt;}
.ya6{bottom:178.186595pt;}
.y3f{bottom:182.506594pt;}
.y106{bottom:189.706591pt;}
.yed{bottom:194.507200pt;}
.yec{bottom:198.346587pt;}
.ybe{bottom:201.706586pt;}
.y86{bottom:202.346586pt;}
.y6b{bottom:204.586585pt;}
.ya5{bottom:205.706584pt;}
.y3e{bottom:210.026583pt;}
.y105{bottom:217.386580pt;}
.yf7{bottom:226.026576pt;}
.yeb{bottom:226.666576pt;}
.ybd{bottom:229.386575pt;}
.y85{bottom:229.866575pt;}
.yce{bottom:230.026575pt;}
.y6a{bottom:232.106574pt;}
.ya4{bottom:233.386573pt;}
.y3d{bottom:237.706572pt;}
.y104{bottom:244.906569pt;}
.yea{bottom:254.346565pt;}
.ybc{bottom:256.906564pt;}
.y84{bottom:257.546564pt;}
.ycd{bottom:258.346563pt;}
.y69{bottom:260.906562pt;}
.y3c{bottom:265.226561pt;}
.y103{bottom:272.586558pt;}
.yf6{bottom:281.866554pt;}
.ye9{bottom:282.506554pt;}
.ybb{bottom:284.586553pt;}
.y83{bottom:285.066553pt;}
.ycc{bottom:285.866552pt;}
.y68{bottom:288.586551pt;}
.y3b{bottom:292.906550pt;}
.y102{bottom:300.106547pt;}
.ye8{bottom:310.186543pt;}
.yba{bottom:312.106542pt;}
.y82{bottom:312.586542pt;}
.ya3{bottom:312.746542pt;}
.ycb{bottom:314.186541pt;}
.y67{bottom:316.106540pt;}
.y25{bottom:324.427200pt;}
.y101{bottom:327.786536pt;}
.ye7{bottom:337.706532pt;}
.ya2{bottom:340.266531pt;}
.yb9{bottom:340.426530pt;}
.y81{bottom:341.386530pt;}
.yca{bottom:341.706530pt;}
.y66{bottom:343.786529pt;}
.y3a{bottom:346.346528pt;}
.y100{bottom:363.306521pt;}
.ye6{bottom:366.026520pt;}
.ya1{bottom:367.946519pt;}
.y80{bottom:369.066519pt;}
.yc9{bottom:370.026519pt;}
.y65{bottom:371.306518pt;}
.y4e{bottom:378.186515pt;}
.yff{bottom:390.986510pt;}
.ye5{bottom:393.546509pt;}
.yf5{bottom:394.346509pt;}
.y4d{bottom:394.826509pt;}
.ya0{bottom:395.466508pt;}
.yb8{bottom:395.626508pt;}
.y7f{bottom:396.586508pt;}
.yc8{bottom:397.546508pt;}
.y64{bottom:398.986507pt;}
.y4c{bottom:411.306502pt;}
.yfe{bottom:418.506499pt;}
.ye4{bottom:421.226498pt;}
.yf4{bottom:421.866498pt;}
.y9f{bottom:423.146497pt;}
.y7e{bottom:424.266497pt;}
.yc7{bottom:425.226497pt;}
.y63{bottom:426.506496pt;}
.y4b{bottom:427.946495pt;}
.y4a{bottom:445.066489pt;}
.yfd{bottom:446.186488pt;}
.ye3{bottom:449.546487pt;}
.y9e{bottom:450.666486pt;}
.yb7{bottom:450.826486pt;}
.y7d{bottom:451.786486pt;}
.yc6{bottom:453.546485pt;}
.y62{bottom:454.186485pt;}
.y24{bottom:455.466484pt;}
.yfc{bottom:473.706477pt;}
.ye2{bottom:477.066476pt;}
.y9d{bottom:478.346475pt;}
.yb6{bottom:478.986475pt;}
.y7c{bottom:479.466475pt;}
.yc5{bottom:481.066474pt;}
.y61{bottom:481.706474pt;}
.y39{bottom:483.786473pt;}
.y38{bottom:499.146467pt;}
.yfb{bottom:501.386466pt;}
.ye1{bottom:504.586465pt;}
.yc3{bottom:505.067200pt;}
.yf3{bottom:505.386465pt;}
.y9c{bottom:505.866464pt;}
.yb5{bottom:506.666464pt;}
.y7b{bottom:506.986464pt;}
.yc2{bottom:508.586463pt;}
.y60{bottom:509.386463pt;}
.y37{bottom:514.506461pt;}
.y36{bottom:529.866455pt;}
.ye0{bottom:532.906454pt;}
.y9b{bottom:533.546453pt;}
.y7a{bottom:534.666453pt;}
.yb4{bottom:534.986453pt;}
.y23{bottom:536.426452pt;}
.y5f{bottom:536.906452pt;}
.y35{bottom:545.226449pt;}
.yb2{bottom:558.667200pt;}
.y34{bottom:560.426442pt;}
.ydf{bottom:560.586442pt;}
.y9a{bottom:561.066442pt;}
.y79{bottom:562.026442pt;}
.yb1{bottom:562.506442pt;}
.y22{bottom:563.306441pt;}
.y5e{bottom:564.586441pt;}
.y33{bottom:575.786436pt;}
.y21{bottom:577.866436pt;}
.yde{bottom:588.106431pt;}
.y99{bottom:588.746431pt;}
.yb0{bottom:590.186431pt;}
.y78{bottom:590.986430pt;}
.y32{bottom:591.146430pt;}
.y5d{bottom:592.106430pt;}
.y20{bottom:592.586430pt;}
.y1f{bottom:606.186424pt;}
.y31{bottom:606.506424pt;}
.y98{bottom:616.266420pt;}
.ydd{bottom:616.426420pt;}
.yaf{bottom:618.346419pt;}
.y77{bottom:618.506419pt;}
.y5c{bottom:619.786419pt;}
.y30{bottom:621.866418pt;}
.y1e{bottom:631.626414pt;}
.y2f{bottom:637.066412pt;}
.y97{bottom:643.786409pt;}
.ydc{bottom:643.946409pt;}
.yae{bottom:646.026408pt;}
.y76{bottom:646.186408pt;}
.y5b{bottom:647.306408pt;}
.y2e{bottom:652.426406pt;}
.y1d{bottom:657.066404pt;}
.y2d{bottom:667.786400pt;}
.yf1{bottom:667.787200pt;}
.ydb{bottom:671.626398pt;}
.y96{bottom:672.586398pt;}
.yad{bottom:673.546397pt;}
.y75{bottom:673.706397pt;}
.y5a{bottom:674.986397pt;}
.y1c{bottom:682.666394pt;}
.y2c{bottom:683.146393pt;}
.y1b{bottom:697.706388pt;}
.y2b{bottom:698.506387pt;}
.yda{bottom:699.146387pt;}
.y95{bottom:700.266387pt;}
.yac{bottom:701.226386pt;}
.y74{bottom:701.386386pt;}
.y59{bottom:702.506386pt;}
.y2a{bottom:713.866381pt;}
.y27{bottom:723.627200pt;}
.yaa{bottom:725.867200pt;}
.yd9{bottom:727.466376pt;}
.y94{bottom:727.786376pt;}
.y73{bottom:728.906375pt;}
.y29{bottom:729.066375pt;}
.ya9{bottom:729.386375pt;}
.y1a{bottom:730.026375pt;}
.y58{bottom:730.186375pt;}
.y13{bottom:753.227200pt;}
.y15{bottom:753.707200pt;}
.yd8{bottom:754.986365pt;}
.y93{bottom:755.466364pt;}
.y72{bottom:756.586364pt;}
.y17{bottom:757.706364pt;}
.y19{bottom:758.986363pt;}
.yd7{bottom:782.666354pt;}
.y92{bottom:782.986353pt;}
.y71{bottom:784.106353pt;}
.y57{bottom:785.226353pt;}
.y12{bottom:786.346352pt;}
.y91{bottom:810.666342pt;}
.yd6{bottom:810.826342pt;}
.y70{bottom:811.786342pt;}
.y56{bottom:812.906342pt;}
.y11{bottom:815.466340pt;}
.y10{bottom:833.866333pt;}
.y90{bottom:838.026331pt;}
.yd5{bottom:838.506331pt;}
.y6f{bottom:839.146331pt;}
.y55{bottom:840.426330pt;}
.yf{bottom:862.986321pt;}
.yf0{bottom:866.026320pt;}
.yd4{bottom:866.826320pt;}
.y8f{bottom:866.986320pt;}
.y54{bottom:868.106319pt;}
.ye{bottom:888.906311pt;}
.yd3{bottom:894.346309pt;}
.y8e{bottom:894.506309pt;}
.y53{bottom:895.626308pt;}
.yd{bottom:906.026304pt;}
.yd2{bottom:922.026298pt;}
.y8d{bottom:922.186298pt;}
.y52{bottom:923.306297pt;}
.y42{bottom:929.547200pt;}
.y48{bottom:942.986289pt;}
.y8c{bottom:949.706287pt;}
.yd1{bottom:950.186287pt;}
.y51{bottom:950.826286pt;}
.y47{bottom:962.346282pt;}
.y8b{bottom:977.386276pt;}
.yd0{bottom:977.866276pt;}
.y50{bottom:978.506275pt;}
.y46{bottom:981.706274pt;}
.y44{bottom:996.907200pt;}
.y49{bottom:1001.066266pt;}
.y8a{bottom:1004.746265pt;}
.ycf{bottom:1005.386265pt;}
.y4f{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1050.826246pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.280000pt;}
.h12{height:12.480000pt;}
.h13{height:14.400000pt;}
.hc{height:17.920000pt;}
.h6{height:18.080000pt;}
.h17{height:18.240000pt;}
.ha{height:18.400000pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.he{height:34.453111pt;}
.h10{height:34.968736pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.h15{height:38.698735pt;}
.hd{height:39.243734pt;}
.h7{height:39.904984pt;}
.hf{height:40.249984pt;}
.h14{height:40.911234pt;}
.h2{height:42.262483pt;}
.h8{height:43.374983pt;}
.h9{height:44.468732pt;}
.h16{height:46.624981pt;}
.hb{height:52.028417pt;}
.h0{height:1122.666667pt;}
.wb{width:0.800000pt;}
.w10{width:2.720000pt;}
.w6{width:3.200000pt;}
.w3{width:4.000000pt;}
.wa{width:5.920000pt;}
.w11{width:6.720000pt;}
.wf{width:6.880000pt;}
.we{width:7.040000pt;}
.w8{width:7.360000pt;}
.w2{width:8.640000pt;}
.wd{width:8.800000pt;}
.w9{width:12.960000pt;}
.w4{width:18.560000pt;}
.w7{width:30.080000pt;}
.w5{width:52.000000pt;}
.wc{width:390.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x19{left:89.119964pt;}
.x17{left:90.879964pt;}
.x16{left:93.279963pt;}
.x1{left:95.999962pt;}
.xa{left:99.039960pt;}
.x13{left:100.959960pt;}
.x7{left:102.399959pt;}
.x1b{left:104.319958pt;}
.x14{left:106.559957pt;}
.x15{left:107.839895pt;}
.x2d{left:113.119955pt;}
.x35{left:114.881131pt;}
.x2c{left:116.799953pt;}
.x4{left:117.919953pt;}
.xc{left:120.640000pt;}
.x1a{left:132.319947pt;}
.x18{left:141.279943pt;}
.x1e{left:143.999942pt;}
.x2b{left:151.519939pt;}
.x27{left:166.560000pt;}
.x8{left:170.239340pt;}
.xd{left:172.640000pt;}
.xe{left:175.840000pt;}
.x28{left:181.119928pt;}
.x1f{left:199.200000pt;}
.xf{left:205.919918pt;}
.x10{left:208.480000pt;}
.x20{left:210.080000pt;}
.x34{left:213.759914pt;}
.x1c{left:216.319872pt;}
.x11{left:235.680000pt;}
.x31{left:240.319944pt;}
.x1d{left:254.079898pt;}
.x12{left:255.839898pt;}
.x9{left:260.319896pt;}
.x26{left:261.439895pt;}
.x23{left:263.359856pt;}
.x2{left:268.959892pt;}
.xb{left:311.521104pt;}
.x22{left:348.639861pt;}
.x24{left:353.599824pt;}
.x2f{left:395.359842pt;}
.x5{left:412.799835pt;}
.x32{left:524.960000pt;}
.x2e{left:528.960000pt;}
.x30{left:539.200202pt;}
.x2a{left:540.320000pt;}
.x29{left:554.719813pt;}
.x3{left:592.159763pt;}
.x21{left:600.320000pt;}
.x25{left:617.759523pt;}
.x33{left:690.080000pt;}
.x6{left:693.440000pt;}
}




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