
    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_3cd9fa2cdf2339d87bdac15d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_89542e2ba7b6cf932939ff09.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23380c4416ac2df813f1ae30.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_215c1d62ba5f732d89195a25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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;}
.m5{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);}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.105481,-0.226658,0.226656,0.105484,0,0);-ms-transform:matrix(0.105481,-0.226658,0.226656,0.105484,0,0);-webkit-transform:matrix(0.105481,-0.226658,0.226656,0.105484,0,0);}
.m6{transform:matrix(0.110286,-0.224113,0.228755,0.100853,0,0);-ms-transform:matrix(0.110286,-0.224113,0.228755,0.100853,0,0);-webkit-transform:matrix(0.110286,-0.224113,0.228755,0.100853,0,0);}
.m1{transform:matrix(0.110848,-0.223807,0.228729,0.100910,0,0);-ms-transform:matrix(0.110848,-0.223807,0.228729,0.100910,0,0);-webkit-transform:matrix(0.110848,-0.223807,0.228729,0.100910,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.842451px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.513734px;}
.v5{vertical-align:5.983380px;}
.v4{vertical-align:15.028920px;}
.v8{vertical-align:16.088401px;}
.v7{vertical-align:45.862156px;}
.v6{vertical-align:57.163232px;}
.v3{vertical-align:75.017657px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.074885px;}
.ls2{letter-spacing:107.972021px;}
.ls3{letter-spacing:107.986253px;}
.ls1{letter-spacing:107.986262px;}
.ls4{letter-spacing:804.528026px;}
.ls5{letter-spacing:813.931406px;}
.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;}
}
.wse{word-spacing:-41.882401px;}
.ws4{word-spacing:-26.592002px;}
.ws5{word-spacing:-23.268000px;}
.wsb{word-spacing:-16.620000px;}
.wsd{word-spacing:-14.958000px;}
.wsf{word-spacing:-13.296001px;}
.ws9{word-spacing:-11.634000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:79.023828px;}
.wsc{word-spacing:81.394251px;}
.ws3{word-spacing:370.307712px;}
.ws2{word-spacing:420.186163px;}
.ws7{word-spacing:487.490302px;}
.ws6{word-spacing:882.209088px;}
.ws1{word-spacing:1780.578628px;}
.ws8{word-spacing:3606.520633px;}
._1{margin-left:-17.982001px;}
._7{margin-left:-16.704000px;}
._e{margin-left:-15.672009px;}
._0{margin-left:-13.365000px;}
._8{margin-left:-11.188800px;}
._a{margin-left:-8.630409px;}
._6{margin-left:-7.104000px;}
._4{margin-left:-5.279991px;}
._2{margin-left:-3.996000px;}
._c{margin-left:-2.970000px;}
._5{margin-left:-1.728000px;}
._b{width:1.290600px;}
._3{width:107.986253px;}
._d{width:218.104815px;}
._9{width:610.147370px;}
.fc8{color:transparent;}
.fc7{color:rgb(60,120,216);}
.fc5{color:rgb(230,145,56);}
.fc6{color:rgb(106,168,79);}
.fc4{color:rgb(255,0,0);}
.fc9{color:rgb(34,34,34);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(0,151,167);}
.fc0{color:rgb(7,27,157);}
.fs7{font-size:18.017738px;}
.fsa{font-size:36.000001px;}
.fsc{font-size:42.000000px;}
.fse{font-size:42.037186px;}
.fs6{font-size:48.000003px;}
.fsb{font-size:54.000002px;}
.fs4{font-size:60.000000px;}
.fsd{font-size:61.199997px;}
.fs12{font-size:72.000000px;}
.fs8{font-size:72.000002px;}
.fs10{font-size:78.000005px;}
.fs9{font-size:84.000000px;}
.fs13{font-size:90.000003px;}
.fs3{font-size:96.000006px;}
.fs1{font-size:108.000003px;}
.fs5{font-size:144.000005px;}
.fs2{font-size:151.200005px;}
.fsf{font-size:167.999999px;}
.fs11{font-size:192.000012px;}
.fs0{font-size:243.000008px;}
.y0{bottom:0.000000px;}
.y42{bottom:19.083187px;}
.yd7{bottom:20.056751px;}
.ye6{bottom:20.319562px;}
.y12c{bottom:20.680384px;}
.yb8{bottom:26.845049px;}
.y1f{bottom:26.953811px;}
.yc5{bottom:27.690563px;}
.ye{bottom:28.082245px;}
.y10d{bottom:30.432199px;}
.y12b{bottom:35.080384px;}
.yff{bottom:43.174107px;}
.y60{bottom:45.435020px;}
.yfc{bottom:51.528897px;}
.y5e{bottom:53.965557px;}
.yc7{bottom:56.733170px;}
.ye8{bottom:59.950479px;}
.yfe{bottom:64.774108px;}
.y95{bottom:66.370708px;}
.y20{bottom:66.810875px;}
.y10f{bottom:67.377043px;}
.y46{bottom:68.819563px;}
.y1e{bottom:69.793813px;}
.ya6{bottom:70.103593px;}
.yc9{bottom:71.816319px;}
.y1d{bottom:74.052320px;}
.y102{bottom:75.284377px;}
.y1c{bottom:76.234125px;}
.y124{bottom:77.211287px;}
.yc6{bottom:78.333171px;}
.y1b{bottom:78.415930px;}
.ybc{bottom:78.862479px;}
.yb9{bottom:78.923969px;}
.y1a{bottom:80.028649px;}
.yeb{bottom:82.516632px;}
.ybb{bottom:83.949956px;}
.y101{bottom:86.084376px;}
.yec{bottom:88.338583px;}
.y98{bottom:89.000314px;}
.yba{bottom:89.037433px;}
.y10e{bottom:90.777043px;}
.yea{bottom:91.630485px;}
.yc8{bottom:92.516316px;}
.y2c{bottom:93.490746px;}
.y45{bottom:94.019564px;}
.yd0{bottom:95.521394px;}
.ydb{bottom:97.228784px;}
.y139{bottom:98.562381px;}
.yd6{bottom:98.786087px;}
.y94{bottom:99.490709px;}
.ye9{bottom:100.744337px;}
.y6a{bottom:102.569766px;}
.ya5{bottom:103.223605px;}
.y10a{bottom:103.852899px;}
.yb7{bottom:106.902625px;}
.y81{bottom:108.531187px;}
.y97{bottom:110.114312px;}
.y68{bottom:111.165284px;}
.y19{bottom:112.128993px;}
.yfa{bottom:113.351575px;}
.y37{bottom:114.115169px;}
.y69{bottom:120.569767px;}
.y12a{bottom:122.135891px;}
.y123{bottom:124.191300px;}
.y138{bottom:125.562382px;}
.ycf{bottom:128.641406px;}
.yfd{bottom:130.644098px;}
.y96{bottom:131.228310px;}
.ya4{bottom:132.023606px;}
.y93{bottom:132.610710px;}
.y109{bottom:132.652897px;}
.y80{bottom:137.331187px;}
.yf9{bottom:138.191565px;}
.yb6{bottom:140.022626px;}
.yf6{bottom:140.965613px;}
.y70{bottom:141.506366px;}
.y18{bottom:145.248994px;}
.y41{bottom:151.231591px;}
.y62{bottom:151.344964px;}
.y137{bottom:152.562383px;}
.y122{bottom:153.171312px;}
.y100{bottom:155.022994px;}
.ya3{bottom:160.823618px;}
.yce{bottom:161.761407px;}
.yf8{bottom:163.031566px;}
.y72{bottom:163.290395px;}
.y5{bottom:165.418818px;}
.y92{bottom:165.730711px;}
.y7f{bottom:166.131200px;}
.y6f{bottom:169.478081px;}
.y33{bottom:171.489080px;}
.y64{bottom:173.128970px;}
.yb5{bottom:173.142627px;}
.y129{bottom:173.255892px;}
.y119{bottom:174.051245px;}
.yf5{bottom:174.085614px;}
.y75{bottom:175.473517px;}
.y17{bottom:178.368995px;}
.y136{bottom:179.562384px;}
.y40{bottom:180.031592px;}
.y126{bottom:180.383499px;}
.y121{bottom:182.151290px;}
.y2a{bottom:183.320773px;}
.y6e{bottom:185.678084px;}
.y74{bottom:186.577670px;}
.yf7{bottom:187.871567px;}
.ya2{bottom:189.623619px;}
.ye5{bottom:192.929229px;}
.ycd{bottom:194.881414px;}
.y7e{bottom:194.931201px;}
.y10b{bottom:195.849257px;}
.y6d{bottom:201.878087px;}
.y59{bottom:202.558971px;}
.y32{bottom:204.609081px;}
.y6b{bottom:204.858358px;}
.yb4{bottom:206.262651px;}
.y128{bottom:206.375893px;}
.y135{bottom:206.562385px;}
.y118{bottom:207.171246px;}
.yf4{bottom:207.205615px;}
.y73{bottom:208.177671px;}
.y5f{bottom:208.372127px;}
.y3f{bottom:208.831627px;}
.y16{bottom:211.488996px;}
.ya7{bottom:215.388055px;}
.y29{bottom:216.440774px;}
.y4{bottom:216.775067px;}
.y91{bottom:216.850712px;}
.ya1{bottom:218.423654px;}
.y71{bottom:220.740648px;}
.ye4{bottom:221.729264px;}
.y61{bottom:223.426124px;}
.yaa{bottom:223.504296px;}
.y5b{bottom:223.607755px;}
.y66{bottom:227.697085px;}
.ycc{bottom:228.001405px;}
.y120{bottom:229.131280px;}
.y134{bottom:233.562386px;}
.y3e{bottom:237.631628px;}
.y38{bottom:238.027083px;}
.yb3{bottom:239.382652px;}
.y127{bottom:239.495894px;}
.y117{bottom:240.291247px;}
.yf3{bottom:240.325616px;}
.yd{bottom:242.650912px;}
.y15{bottom:244.608997px;}
.y63{bottom:245.210130px;}
.y5d{bottom:245.391795px;}
.ya0{bottom:247.223655px;}
.y28{bottom:249.560775px;}
.ye3{bottom:250.529265px;}
.y8e{bottom:254.615884px;}
.y67{bottom:259.327001px;}
.y65{bottom:259.831924px;}
.y133{bottom:260.562386px;}
.ycb{bottom:261.121399px;}
.ya9{bottom:265.759702px;}
.y2b{bottom:266.288952px;}
.ye7{bottom:267.461989px;}
.y5a{bottom:268.426125px;}
.y90{bottom:268.655918px;}
.y36{bottom:269.362632px;}
.y44{bottom:270.419529px;}
.yc4{bottom:272.026823px;}
.y88{bottom:272.615896px;}
.y116{bottom:273.411248px;}
.yf2{bottom:273.445617px;}
.yc{bottom:275.770913px;}
.y9f{bottom:276.023667px;}
.y11f{bottom:276.111282px;}
.y14{bottom:277.729009px;}
.ye2{bottom:279.329277px;}
.y21{bottom:282.340340px;}
.y3{bottom:282.385058px;}
.y27{bottom:282.680787px;}
.y132{bottom:287.562387px;}
.y8d{bottom:287.735896px;}
.yd5{bottom:288.531249px;}
.ybd{bottom:288.629995px;}
.y8f{bottom:293.495919px;}
.y3d{bottom:295.231641px;}
.y43{bottom:295.619527px;}
.ya8{bottom:298.159708px;}
.y5c{bottom:302.842037px;}
.y9e{bottom:304.823668px;}
.y11e{bottom:305.091272px;}
.yc3{bottom:305.146835px;}
.y87{bottom:305.735908px;}
.y115{bottom:306.531249px;}
.yf1{bottom:306.565629px;}
.y31{bottom:306.849095px;}
.y10c{bottom:307.078213px;}
.ye1{bottom:308.129278px;}
.yb{bottom:308.890925px;}
.y13{bottom:310.849011px;}
.y89{bottom:312.821994px;}
.y131{bottom:314.562388px;}
.y8c{bottom:320.855897px;}
.yd4{bottom:321.651261px;}
.y3c{bottom:324.031653px;}
.y23{bottom:331.903802px;}
.y9d{bottom:333.623680px;}
.y11d{bottom:334.071273px;}
.ye0{bottom:336.929290px;}
.yc2{bottom:338.266836px;}
.y86{bottom:338.855909px;}
.y7d{bottom:338.931261px;}
.y114{bottom:339.651261px;}
.yf0{bottom:339.685630px;}
.y30{bottom:339.969096px;}
.yd9{bottom:340.652646px;}
.y130{bottom:341.562389px;}
.yb2{bottom:341.622644px;}
.ya{bottom:342.010927px;}
.y12{bottom:343.969017px;}
.y4d{bottom:347.716060px;}
.y2{bottom:347.995060px;}
.y4f{bottom:348.185534px;}
.y51{bottom:352.071363px;}
.y8b{bottom:353.975898px;}
.yd3{bottom:354.771262px;}
.yd8{bottom:358.652647px;}
.y108{bottom:359.151264px;}
.y9c{bottom:362.423692px;}
.ydf{bottom:365.729302px;}
.y7c{bottom:367.731274px;}
.y12f{bottom:368.562390px;}
.yc1{bottom:371.386843px;}
.y85{bottom:371.975916px;}
.y113{bottom:372.771262px;}
.yef{bottom:372.805637px;}
.y2f{bottom:373.089103px;}
.yb1{bottom:374.742651px;}
.y9{bottom:375.130933px;}
.y22{bottom:376.130198px;}
.y11{bottom:377.089008px;}
.y11c{bottom:381.051263px;}
.y3b{bottom:381.631655px;}
.y26{bottom:384.920796px;}
.y8a{bottom:387.095899px;}
.yd2{bottom:387.891269px;}
.y52{bottom:391.095466px;}
.y9b{bottom:391.223682px;}
.y107{bottom:392.271265px;}
.yde{bottom:394.529292px;}
.y12e{bottom:395.562394px;}
.y7b{bottom:396.531263px;}
.y48{bottom:397.309482px;}
.y4a{bottom:400.358255px;}
.yc0{bottom:404.506834px;}
.y84{bottom:405.095907px;}
.y112{bottom:405.891269px;}
.yee{bottom:405.925628px;}
.y2e{bottom:406.209094px;}
.yb0{bottom:407.862642px;}
.y8{bottom:408.250924px;}
.y11b{bottom:410.031264px;}
.y10{bottom:410.209002px;}
.y3a{bottom:410.431647px;}
.y54{bottom:412.879471px;}
.y1{bottom:413.605057px;}
.y78{bottom:417.306144px;}
.y25{bottom:418.040787px;}
.y9a{bottom:420.023674px;}
.yd1{bottom:421.011260px;}
.y4c{bottom:422.142272px;}
.y12d{bottom:422.562393px;}
.ydd{bottom:423.329284px;}
.y35{bottom:424.946897px;}
.y7a{bottom:425.331255px;}
.y106{bottom:425.391272px;}
.y125{bottom:433.030292px;}
.yae{bottom:433.666401px;}
.y58{bottom:436.077512px;}
.y82{bottom:436.848238px;}
.ybf{bottom:437.626828px;}
.y83{bottom:438.215901px;}
.y111{bottom:439.011260px;}
.yed{bottom:439.045622px;}
.y39{bottom:439.231645px;}
.y2d{bottom:439.329088px;}
.yaf{bottom:440.982636px;}
.y7{bottom:441.370918px;}
.y77{bottom:442.506138px;}
.y50{bottom:444.608849px;}
.y4e{bottom:448.122629px;}
.y99{bottom:448.823672px;}
.y24{bottom:451.160781px;}
.ydc{bottom:452.129283px;}
.y79{bottom:454.131254px;}
.y11a{bottom:457.011256px;}
.y49{bottom:457.808502px;}
.y105{bottom:458.511263px;}
.y47{bottom:463.176614px;}
.yad{bottom:466.066402px;}
.y56{bottom:467.447598px;}
.y76{bottom:467.706137px;}
.yf{bottom:471.387041px;}
.y110{bottom:472.131254px;}
.y4b{bottom:479.592513px;}
.y53{bottom:484.960631px;}
.y104{bottom:491.631257px;}
.y34{bottom:495.638468px;}
.yac{bottom:498.466410px;}
.y55{bottom:499.582437px;}
.y57{bottom:500.553897px;}
.y6{bottom:508.524991px;}
.ybe{bottom:513.705939px;}
.yca{bottom:517.524991px;}
.y6c{bottom:526.524993px;}
.yab{bottom:530.866415px;}
.yfb{bottom:535.524993px;}
.y103{bottom:537.024995px;}
.yda{bottom:553.524994px;}
.h8{height:13.117406px;}
.hc{height:26.244141px;}
.h14{height:30.604221px;}
.h10{height:30.618164px;}
.h7{height:34.992190px;}
.hf{height:39.313478px;}
.h16{height:39.366212px;}
.he{height:43.681641px;}
.h5{height:43.740235px;}
.h12{height:44.615037px;}
.h19{height:52.417969px;}
.ha{height:52.417970px;}
.h9{height:52.488283px;}
.h17{height:56.862309px;}
.hb{height:61.236328px;}
.h1b{height:65.610354px;}
.h4{height:69.984379px;}
.h13{height:71.982424px;}
.h2{height:78.732424px;}
.h1c{height:78.738859px;}
.h1d{height:94.820825px;}
.h6{height:104.976566px;}
.h3{height:110.225394px;}
.h1a{height:115.846536px;}
.h15{height:122.472656px;}
.h11{height:135.895656px;}
.hd{height:136.253985px;}
.h18{height:139.968759px;}
.h1{height:177.147955px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x77{left:10.125000px;}
.x5f{left:18.082678px;}
.x7a{left:19.939961px;}
.x1e{left:21.486769px;}
.x60{left:25.071922px;}
.x2a{left:27.557249px;}
.x70{left:30.327758px;}
.x79{left:31.934055px;}
.x72{left:33.407481px;}
.x53{left:36.944061px;}
.x87{left:38.365158px;}
.x8b{left:39.460631px;}
.x95{left:42.599411px;}
.x55{left:44.929207px;}
.x6{left:46.939963px;}
.x7{left:48.849959px;}
.x74{left:51.241692px;}
.xb{left:53.929208px;}
.x26{left:55.272202px;}
.x5d{left:56.359325px;}
.x19{left:59.447400px;}
.x20{left:62.979333px;}
.x82{left:65.237753px;}
.x2b{left:67.234254px;}
.x51{left:68.294293px;}
.x1f{left:69.968575px;}
.x61{left:72.082679px;}
.x8f{left:73.939964px;}
.x54{left:76.621066px;}
.x73{left:77.867128px;}
.x62{left:79.071922px;}
.x90{left:83.436065px;}
.x96{left:88.942917px;}
.x9{left:90.342523px;}
.x56{left:91.939964px;}
.x28{left:96.764766px;}
.x7c{left:98.805119px;}
.x1a{left:100.939964px;}
.x8{left:102.849958px;}
.x75{left:105.241691px;}
.x85{left:106.730317px;}
.xc{left:107.929207px;}
.x10{left:109.276541px;}
.x1b{left:113.447400px;}
.x83{left:119.237753px;}
.x63{left:126.082681px;}
.x91{left:127.939965px;}
.x68{left:129.670350px;}
.x76{left:146.734258px;}
.x2{left:148.269292px;}
.x27{left:150.764768px;}
.xd{left:154.939966px;}
.x84{left:160.730319px;}
.xe{left:167.447402px;}
.x69{left:176.681109px;}
.x3{left:198.919013px;}
.x78{left:205.331699px;}
.xf{left:208.939968px;}
.x4e{left:216.196421px;}
.x16{left:221.468508px;}
.x7d{left:232.718509px;}
.x4f{left:253.669744px;}
.x6f{left:269.180772px;}
.x50{left:275.453750px;}
.x7f{left:296.066413px;}
.x1{left:298.527658px;}
.x4{left:316.058545px;}
.x89{left:334.051211px;}
.x80{left:335.232610px;}
.x5{left:337.935071px;}
.x7e{left:438.179279px;}
.x4a{left:442.373032px;}
.x3a{left:445.376006px;}
.x8c{left:456.177165px;}
.x8d{left:468.770674px;}
.x45{left:471.546274px;}
.x35{left:474.549214px;}
.x49{left:479.247068px;}
.x94{left:480.392734px;}
.x39{left:482.250008px;}
.x42{left:489.088591px;}
.x31{left:492.091553px;}
.x46{left:495.169857px;}
.x36{left:498.172797px;}
.x29{left:501.126991px;}
.x1c{left:532.086632px;}
.x1d{left:541.139777px;}
.x47{left:543.559517px;}
.x37{left:546.562491px;}
.x64{left:552.375018px;}
.x48{left:566.263334px;}
.x38{left:569.266297px;}
.x5a{left:580.880944px;}
.x71{left:586.370078px;}
.x81{left:588.717514px;}
.x5e{left:589.954744px;}
.x43{left:592.088126px;}
.x5b{left:593.388381px;}
.x32{left:595.091044px;}
.x8e{left:620.749032px;}
.x25{left:623.427207px;}
.x15{left:625.278575px;}
.x66{left:627.569908px;}
.x92{left:629.769508px;}
.x93{left:633.549913px;}
.x5c{left:634.880945px;}
.x88{left:666.879963px;}
.x21{left:681.003922px;}
.x2c{left:682.771668px;}
.x3d{left:688.768706px;}
.x17{left:691.260817px;}
.x44{left:695.371072px;}
.x4c{left:724.948786px;}
.x65{left:728.985286px;}
.x2d{left:746.731340px;}
.x3e{left:752.728367px;}
.x24{left:772.014591px;}
.x86{left:785.967550px;}
.x18{left:806.486257px;}
.x33{left:810.132956px;}
.x6c{left:832.280495px;}
.x6d{left:843.819940px;}
.x67{left:850.514765px;}
.x6e{left:855.359386px;}
.x8a{left:865.420284px;}
.x23{left:876.912947px;}
.x6b{left:888.129802px;}
.x3c{left:900.794335px;}
.x4b{left:906.791362px;}
.x57{left:915.733492px;}
.x2e{left:929.601401px;}
.x22{left:933.750480px;}
.x34{left:936.079747px;}
.x7b{left:938.636805px;}
.x12{left:942.223246px;}
.x13{left:947.168671px;}
.x14{left:952.114094px;}
.x3f{left:957.382444px;}
.x3b{left:963.682118px;}
.x11{left:971.548033px;}
.x4d{left:976.254972px;}
.x2f{left:988.858775px;}
.x40{left:994.855813px;}
.x30{left:1010.642736px;}
.x41{left:1016.639819px;}
.x52{left:1035.912453px;}
.x58{left:1038.688064px;}
.x59{left:1039.801339px;}
.x6a{left:1042.136865px;}
.xa{left:1047.027099px;}
@media print{
.v2{vertical-align:-20.304401pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.012208pt;}
.v5{vertical-align:5.318560pt;}
.v4{vertical-align:13.359040pt;}
.v8{vertical-align:14.300800pt;}
.v7{vertical-align:40.766361pt;}
.v6{vertical-align:50.811762pt;}
.v3{vertical-align:66.682362pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.066564pt;}
.ls2{letter-spacing:95.975130pt;}
.ls3{letter-spacing:95.987780pt;}
.ls1{letter-spacing:95.987788pt;}
.ls4{letter-spacing:715.136023pt;}
.ls5{letter-spacing:723.494583pt;}
.wse{word-spacing:-37.228801pt;}
.ws4{word-spacing:-23.637335pt;}
.ws5{word-spacing:-20.682667pt;}
.wsb{word-spacing:-14.773333pt;}
.wsd{word-spacing:-13.296000pt;}
.wsf{word-spacing:-11.818667pt;}
.ws9{word-spacing:-10.341333pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:70.243402pt;}
.wsc{word-spacing:72.350445pt;}
.ws3{word-spacing:329.162411pt;}
.ws2{word-spacing:373.498812pt;}
.ws7{word-spacing:433.324713pt;}
.ws6{word-spacing:784.185856pt;}
.ws1{word-spacing:1582.736559pt;}
.ws8{word-spacing:3205.796119pt;}
._1{margin-left:-15.984001pt;}
._7{margin-left:-14.848000pt;}
._e{margin-left:-13.930675pt;}
._0{margin-left:-11.880000pt;}
._8{margin-left:-9.945600pt;}
._a{margin-left:-7.671475pt;}
._6{margin-left:-6.314667pt;}
._4{margin-left:-4.693326pt;}
._2{margin-left:-3.552000pt;}
._c{margin-left:-2.640000pt;}
._5{margin-left:-1.536000pt;}
._b{width:1.147200pt;}
._3{width:95.987780pt;}
._d{width:193.870946pt;}
._9{width:542.353217pt;}
.fs7{font-size:16.015767pt;}
.fsa{font-size:32.000001pt;}
.fsc{font-size:37.333333pt;}
.fse{font-size:37.366388pt;}
.fs6{font-size:42.666669pt;}
.fsb{font-size:48.000002pt;}
.fs4{font-size:53.333334pt;}
.fsd{font-size:54.399998pt;}
.fs12{font-size:64.000000pt;}
.fs8{font-size:64.000002pt;}
.fs10{font-size:69.333338pt;}
.fs9{font-size:74.666666pt;}
.fs13{font-size:80.000003pt;}
.fs3{font-size:85.333339pt;}
.fs1{font-size:96.000003pt;}
.fs5{font-size:128.000004pt;}
.fs2{font-size:134.400004pt;}
.fsf{font-size:149.333333pt;}
.fs11{font-size:170.666677pt;}
.fs0{font-size:216.000007pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:16.962833pt;}
.yd7{bottom:17.828223pt;}
.ye6{bottom:18.061833pt;}
.y12c{bottom:18.382563pt;}
.yb8{bottom:23.862265pt;}
.y1f{bottom:23.958943pt;}
.yc5{bottom:24.613834pt;}
.ye{bottom:24.961996pt;}
.y10d{bottom:27.050844pt;}
.y12b{bottom:31.182564pt;}
.yff{bottom:38.376984pt;}
.y60{bottom:40.386684pt;}
.yfc{bottom:45.803464pt;}
.y5e{bottom:47.969384pt;}
.yc7{bottom:50.429484pt;}
.ye8{bottom:53.289314pt;}
.yfe{bottom:57.576985pt;}
.y95{bottom:58.996185pt;}
.y20{bottom:59.387445pt;}
.y10f{bottom:59.890705pt;}
.y46{bottom:61.172945pt;}
.y1e{bottom:62.038945pt;}
.ya6{bottom:62.314305pt;}
.yc9{bottom:63.836728pt;}
.y1d{bottom:65.824285pt;}
.y102{bottom:66.919446pt;}
.y1c{bottom:67.763667pt;}
.y124{bottom:68.632255pt;}
.yc6{bottom:69.629485pt;}
.y1b{bottom:69.703049pt;}
.ybc{bottom:70.099982pt;}
.yb9{bottom:70.154639pt;}
.y1a{bottom:71.136577pt;}
.yeb{bottom:73.348118pt;}
.ybb{bottom:74.622183pt;}
.y101{bottom:76.519445pt;}
.yec{bottom:78.523185pt;}
.y98{bottom:79.111390pt;}
.yba{bottom:79.144385pt;}
.y10e{bottom:80.690705pt;}
.yea{bottom:81.449320pt;}
.yc8{bottom:82.236725pt;}
.y2c{bottom:83.102885pt;}
.y45{bottom:83.572945pt;}
.yd0{bottom:84.907905pt;}
.ydb{bottom:86.425585pt;}
.y139{bottom:87.611006pt;}
.yd6{bottom:87.809856pt;}
.y94{bottom:88.436186pt;}
.ye9{bottom:89.550522pt;}
.y6a{bottom:91.173126pt;}
.ya5{bottom:91.754316pt;}
.y10a{bottom:92.313688pt;}
.yb7{bottom:95.024556pt;}
.y81{bottom:96.472166pt;}
.y97{bottom:97.879389pt;}
.y68{bottom:98.813586pt;}
.y19{bottom:99.670216pt;}
.yfa{bottom:100.756956pt;}
.y37{bottom:101.435706pt;}
.y69{bottom:107.173126pt;}
.y12a{bottom:108.565236pt;}
.y123{bottom:110.392266pt;}
.y138{bottom:111.611006pt;}
.ycf{bottom:114.347916pt;}
.yfd{bottom:116.128087pt;}
.y96{bottom:116.647386pt;}
.ya4{bottom:117.354316pt;}
.y93{bottom:117.876186pt;}
.y109{bottom:117.913686pt;}
.y80{bottom:122.072167pt;}
.yf9{bottom:122.836947pt;}
.yb6{bottom:124.464557pt;}
.yf6{bottom:125.302767pt;}
.y70{bottom:125.783437pt;}
.y18{bottom:129.110217pt;}
.y41{bottom:134.428081pt;}
.y62{bottom:134.528857pt;}
.y137{bottom:135.611007pt;}
.y122{bottom:136.152277pt;}
.y100{bottom:137.798217pt;}
.ya3{bottom:142.954327pt;}
.yce{bottom:143.787917pt;}
.yf8{bottom:144.916947pt;}
.y72{bottom:145.147017pt;}
.y5{bottom:147.038949pt;}
.y92{bottom:147.316187pt;}
.y7f{bottom:147.672177pt;}
.y6f{bottom:150.647184pt;}
.y33{bottom:152.434738pt;}
.y64{bottom:153.892418pt;}
.yb5{bottom:153.904558pt;}
.y129{bottom:154.005238pt;}
.y119{bottom:154.712218pt;}
.yf5{bottom:154.742768pt;}
.y75{bottom:155.976460pt;}
.y17{bottom:158.550218pt;}
.y136{bottom:159.611008pt;}
.y40{bottom:160.028082pt;}
.y126{bottom:160.340888pt;}
.y121{bottom:161.912258pt;}
.y2a{bottom:162.951798pt;}
.y6e{bottom:165.047186pt;}
.y74{bottom:165.846818pt;}
.yf7{bottom:166.996948pt;}
.ya2{bottom:168.554328pt;}
.ye5{bottom:171.492648pt;}
.ycd{bottom:173.227923pt;}
.y7e{bottom:173.272178pt;}
.y10b{bottom:174.088228pt;}
.y6d{bottom:179.447188pt;}
.y59{bottom:180.052418pt;}
.y32{bottom:181.874739pt;}
.y6b{bottom:182.096319pt;}
.yb4{bottom:183.344579pt;}
.y128{bottom:183.445239pt;}
.y135{bottom:183.611009pt;}
.y118{bottom:184.152219pt;}
.yf4{bottom:184.182769pt;}
.y73{bottom:185.046819pt;}
.y5f{bottom:185.219669pt;}
.y3f{bottom:185.628113pt;}
.y16{bottom:187.990219pt;}
.ya7{bottom:191.456049pt;}
.y29{bottom:192.391799pt;}
.y4{bottom:192.688949pt;}
.y91{bottom:192.756189pt;}
.ya1{bottom:194.154359pt;}
.y71{bottom:196.213909pt;}
.ye4{bottom:197.092679pt;}
.y61{bottom:198.600999pt;}
.yaa{bottom:198.670485pt;}
.y5b{bottom:198.762449pt;}
.y66{bottom:202.397409pt;}
.ycc{bottom:202.667915pt;}
.y120{bottom:203.672249pt;}
.y134{bottom:207.611009pt;}
.y3e{bottom:211.228113pt;}
.y38{bottom:211.579629pt;}
.yb3{bottom:212.784580pt;}
.y127{bottom:212.885240pt;}
.y117{bottom:213.592220pt;}
.yf3{bottom:213.622770pt;}
.yd{bottom:215.689700pt;}
.y15{bottom:217.430220pt;}
.y63{bottom:217.964560pt;}
.y5d{bottom:218.126040pt;}
.ya0{bottom:219.754360pt;}
.y28{bottom:221.831800pt;}
.ye3{bottom:222.692680pt;}
.y8e{bottom:226.325230pt;}
.y67{bottom:230.512890pt;}
.y65{bottom:230.961710pt;}
.y133{bottom:231.611010pt;}
.ycb{bottom:232.107910pt;}
.ya9{bottom:236.230846pt;}
.y2b{bottom:236.701290pt;}
.ye7{bottom:237.743990pt;}
.y5a{bottom:238.601000pt;}
.y90{bottom:238.805260pt;}
.y36{bottom:239.433450pt;}
.y44{bottom:240.372914pt;}
.yc4{bottom:241.801620pt;}
.y88{bottom:242.325240pt;}
.y116{bottom:243.032220pt;}
.yf2{bottom:243.062770pt;}
.yc{bottom:245.129701pt;}
.y9f{bottom:245.354371pt;}
.y11f{bottom:245.432251pt;}
.y14{bottom:246.870231pt;}
.ye2{bottom:248.292691pt;}
.y21{bottom:250.969191pt;}
.y3{bottom:251.008941pt;}
.y27{bottom:251.271811pt;}
.y132{bottom:255.611011pt;}
.y8d{bottom:255.765241pt;}
.yd5{bottom:256.472221pt;}
.ybd{bottom:256.559996pt;}
.y8f{bottom:260.885261pt;}
.y3d{bottom:262.428125pt;}
.y43{bottom:262.772913pt;}
.ya8{bottom:265.030851pt;}
.y5c{bottom:269.192921pt;}
.y9e{bottom:270.954371pt;}
.y11e{bottom:271.192241pt;}
.yc3{bottom:271.241631pt;}
.y87{bottom:271.765251pt;}
.y115{bottom:272.472221pt;}
.yf1{bottom:272.502781pt;}
.y31{bottom:272.754751pt;}
.y10c{bottom:272.958411pt;}
.ye1{bottom:273.892691pt;}
.yb{bottom:274.569712pt;}
.y13{bottom:276.310232pt;}
.y89{bottom:278.063995pt;}
.y131{bottom:279.611012pt;}
.y8c{bottom:285.205242pt;}
.yd4{bottom:285.912232pt;}
.y3c{bottom:288.028136pt;}
.y23{bottom:295.025602pt;}
.y9d{bottom:296.554382pt;}
.y11d{bottom:296.952242pt;}
.ye0{bottom:299.492702pt;}
.yc2{bottom:300.681632pt;}
.y86{bottom:301.205252pt;}
.y7d{bottom:301.272232pt;}
.y114{bottom:301.912232pt;}
.yf0{bottom:301.942782pt;}
.y30{bottom:302.194752pt;}
.yd9{bottom:302.802352pt;}
.y130{bottom:303.611012pt;}
.yb2{bottom:303.664572pt;}
.ya{bottom:304.009712pt;}
.y12{bottom:305.750238pt;}
.y4d{bottom:309.080943pt;}
.y2{bottom:309.328943pt;}
.y4f{bottom:309.498253pt;}
.y51{bottom:312.952323pt;}
.y8b{bottom:314.645243pt;}
.yd3{bottom:315.352233pt;}
.yd8{bottom:318.802353pt;}
.y108{bottom:319.245568pt;}
.y9c{bottom:322.154393pt;}
.ydf{bottom:325.092713pt;}
.y7c{bottom:326.872243pt;}
.y12f{bottom:327.611013pt;}
.yc1{bottom:330.121638pt;}
.y85{bottom:330.645258pt;}
.y113{bottom:331.352233pt;}
.yef{bottom:331.382788pt;}
.y2f{bottom:331.634758pt;}
.yb1{bottom:333.104578pt;}
.y9{bottom:333.449718pt;}
.y22{bottom:334.337953pt;}
.y11{bottom:335.190229pt;}
.y11c{bottom:338.712234pt;}
.y3b{bottom:339.228138pt;}
.y26{bottom:342.151819pt;}
.y8a{bottom:344.085244pt;}
.yd2{bottom:344.792239pt;}
.y52{bottom:347.640414pt;}
.y9b{bottom:347.754384pt;}
.y107{bottom:348.685569pt;}
.yde{bottom:350.692704pt;}
.y12e{bottom:351.611017pt;}
.y7b{bottom:352.472234pt;}
.y48{bottom:353.163984pt;}
.y4a{bottom:355.874004pt;}
.yc0{bottom:359.561630pt;}
.y84{bottom:360.085250pt;}
.y112{bottom:360.792239pt;}
.yee{bottom:360.822780pt;}
.y2e{bottom:361.074750pt;}
.yb0{bottom:362.544570pt;}
.y8{bottom:362.889710pt;}
.y11b{bottom:364.472234pt;}
.y10{bottom:364.630224pt;}
.y3a{bottom:364.828130pt;}
.y54{bottom:367.003974pt;}
.y1{bottom:367.648940pt;}
.y78{bottom:370.938795pt;}
.y25{bottom:371.591811pt;}
.y9a{bottom:373.354377pt;}
.yd1{bottom:374.232231pt;}
.y4c{bottom:375.237575pt;}
.y12d{bottom:375.611016pt;}
.ydd{bottom:376.292697pt;}
.y35{bottom:377.730575pt;}
.y7a{bottom:378.072227pt;}
.y106{bottom:378.125575pt;}
.y125{bottom:384.915815pt;}
.yae{bottom:385.481245pt;}
.y58{bottom:387.624455pt;}
.y82{bottom:388.309545pt;}
.ybf{bottom:389.001625pt;}
.y83{bottom:389.525245pt;}
.y111{bottom:390.232231pt;}
.yed{bottom:390.262775pt;}
.y39{bottom:390.428129pt;}
.y2d{bottom:390.514745pt;}
.yaf{bottom:391.984565pt;}
.y7{bottom:392.329705pt;}
.y77{bottom:393.338789pt;}
.y50{bottom:395.207865pt;}
.y4e{bottom:398.331225pt;}
.y99{bottom:398.954375pt;}
.y24{bottom:401.031806pt;}
.ydc{bottom:401.892696pt;}
.y79{bottom:403.672226pt;}
.y11a{bottom:406.232228pt;}
.y49{bottom:406.940891pt;}
.y105{bottom:407.565567pt;}
.y47{bottom:411.712546pt;}
.yad{bottom:414.281246pt;}
.y56{bottom:415.508976pt;}
.y76{bottom:415.738788pt;}
.yf{bottom:419.010703pt;}
.y110{bottom:419.672226pt;}
.y4b{bottom:426.304456pt;}
.y53{bottom:431.076117pt;}
.y104{bottom:437.005562pt;}
.y34{bottom:440.567527pt;}
.yac{bottom:443.081253pt;}
.y55{bottom:444.073277pt;}
.y57{bottom:444.936797pt;}
.y6{bottom:452.022214pt;}
.ybe{bottom:456.627501pt;}
.yca{bottom:460.022214pt;}
.y6c{bottom:468.022216pt;}
.yab{bottom:471.881258pt;}
.yfb{bottom:476.022216pt;}
.y103{bottom:477.355551pt;}
.yda{bottom:492.022217pt;}
.h8{height:11.659916pt;}
.hc{height:23.328126pt;}
.h14{height:27.203752pt;}
.h10{height:27.216146pt;}
.h7{height:31.104169pt;}
.hf{height:34.945314pt;}
.h16{height:34.992189pt;}
.he{height:38.828125pt;}
.h5{height:38.880209pt;}
.h12{height:39.657811pt;}
.h19{height:46.593750pt;}
.ha{height:46.593751pt;}
.h9{height:46.656251pt;}
.h17{height:50.544274pt;}
.hb{height:54.432291pt;}
.h1b{height:58.320314pt;}
.h4{height:62.208337pt;}
.h13{height:63.984377pt;}
.h2{height:69.984377pt;}
.h1c{height:69.990097pt;}
.h1d{height:84.285178pt;}
.h6{height:93.312503pt;}
.h3{height:97.978128pt;}
.h1a{height:102.974699pt;}
.h15{height:108.864583pt;}
.h11{height:120.796139pt;}
.hd{height:121.114654pt;}
.h18{height:124.416675pt;}
.h1{height:157.464849pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x77{left:9.000000pt;}
.x5f{left:16.073491pt;}
.x7a{left:17.724410pt;}
.x1e{left:19.099350pt;}
.x60{left:22.286153pt;}
.x2a{left:24.495332pt;}
.x70{left:26.958007pt;}
.x79{left:28.385827pt;}
.x72{left:29.695539pt;}
.x53{left:32.839165pt;}
.x87{left:34.102363pt;}
.x8b{left:35.076116pt;}
.x95{left:37.866143pt;}
.x55{left:39.937073pt;}
.x6{left:41.724411pt;}
.x7{left:43.422185pt;}
.x74{left:45.548170pt;}
.xb{left:47.937074pt;}
.x26{left:49.130847pt;}
.x5d{left:50.097178pt;}
.x19{left:52.842134pt;}
.x20{left:55.981629pt;}
.x82{left:57.989114pt;}
.x2b{left:59.763782pt;}
.x51{left:60.706038pt;}
.x1f{left:62.194289pt;}
.x61{left:64.073493pt;}
.x8f{left:65.724412pt;}
.x54{left:68.107614pt;}
.x73{left:69.215225pt;}
.x62{left:70.286153pt;}
.x90{left:74.165391pt;}
.x96{left:79.060371pt;}
.x9{left:80.304465pt;}
.x56{left:81.724413pt;}
.x28{left:86.013126pt;}
.x7c{left:87.826773pt;}
.x1a{left:89.724413pt;}
.x8{left:91.422185pt;}
.x75{left:93.548170pt;}
.x85{left:94.871393pt;}
.xc{left:95.937073pt;}
.x10{left:97.134703pt;}
.x1b{left:100.842133pt;}
.x83{left:105.989113pt;}
.x63{left:112.073494pt;}
.x91{left:113.724414pt;}
.x68{left:115.262534pt;}
.x76{left:130.430451pt;}
.x2{left:131.794926pt;}
.x27{left:134.013127pt;}
.xd{left:137.724414pt;}
.x84{left:142.871395pt;}
.xe{left:148.842135pt;}
.x69{left:157.049875pt;}
.x3{left:176.816901pt;}
.x78{left:182.517066pt;}
.xf{left:185.724416pt;}
.x4e{left:192.174596pt;}
.x16{left:196.860896pt;}
.x7d{left:206.860897pt;}
.x4f{left:225.484217pt;}
.x6f{left:239.271798pt;}
.x50{left:244.847778pt;}
.x7f{left:263.170145pt;}
.x1{left:265.357918pt;}
.x4{left:280.940929pt;}
.x89{left:296.934410pt;}
.x80{left:297.984542pt;}
.x5{left:300.386730pt;}
.x7e{left:389.492692pt;}
.x4a{left:393.220473pt;}
.x3a{left:395.889783pt;}
.x8c{left:405.490813pt;}
.x8d{left:416.685043pt;}
.x45{left:419.152243pt;}
.x35{left:421.821523pt;}
.x49{left:425.997394pt;}
.x94{left:427.015764pt;}
.x39{left:428.666674pt;}
.x42{left:434.745414pt;}
.x31{left:437.414714pt;}
.x46{left:440.150984pt;}
.x36{left:442.820264pt;}
.x29{left:445.446214pt;}
.x1c{left:472.965895pt;}
.x1d{left:481.013135pt;}
.x47{left:483.164015pt;}
.x37{left:485.833326pt;}
.x64{left:491.000016pt;}
.x48{left:503.345186pt;}
.x38{left:506.014486pt;}
.x5a{left:516.338617pt;}
.x71{left:521.217847pt;}
.x81{left:523.304457pt;}
.x5e{left:524.404217pt;}
.x43{left:526.300557pt;}
.x5b{left:527.456339pt;}
.x32{left:528.969817pt;}
.x8e{left:551.776918pt;}
.x25{left:554.157518pt;}
.x15{left:555.803178pt;}
.x66{left:557.839918pt;}
.x92{left:559.795118pt;}
.x93{left:563.155478pt;}
.x5c{left:564.338618pt;}
.x88{left:592.782189pt;}
.x21{left:605.336819pt;}
.x2c{left:606.908149pt;}
.x3d{left:612.238850pt;}
.x17{left:614.454060pt;}
.x44{left:618.107620pt;}
.x4c{left:644.398921pt;}
.x65{left:647.986921pt;}
.x2d{left:663.761191pt;}
.x3e{left:669.091881pt;}
.x24{left:686.235192pt;}
.x86{left:698.637822pt;}
.x18{left:716.876673pt;}
.x33{left:720.118183pt;}
.x6c{left:739.804884pt;}
.x6d{left:750.062169pt;}
.x67{left:756.013124pt;}
.x6e{left:760.319454pt;}
.x8a{left:769.262475pt;}
.x23{left:779.478175pt;}
.x6b{left:789.448713pt;}
.x3c{left:800.706076pt;}
.x4b{left:806.036766pt;}
.x57{left:813.985326pt;}
.x2e{left:826.312356pt;}
.x22{left:830.000427pt;}
.x34{left:832.070887pt;}
.x7b{left:834.343827pt;}
.x12{left:837.531774pt;}
.x13{left:841.927707pt;}
.x14{left:846.323639pt;}
.x3f{left:851.006617pt;}
.x3b{left:856.606327pt;}
.x11{left:863.598252pt;}
.x4d{left:867.782198pt;}
.x2f{left:878.985578pt;}
.x40{left:884.316278pt;}
.x30{left:898.349099pt;}
.x41{left:903.679839pt;}
.x52{left:920.811069pt;}
.x58{left:923.278280pt;}
.x59{left:924.267857pt;}
.x6a{left:926.343880pt;}
.xa{left:930.690755pt;}
}




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