
    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_9489a7407839816d4fa96a49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976074;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_96dbeb96383520f382effb85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_0b251ed4bae30ee8083567bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a5af3c2def41eb40f15837a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b009f80f1831fac6a9edf29c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_77f0d0c28382f495ce1365a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929688;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_6432ca679726a12b73828bd8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_110961797e2fbb4afd197ea7.woff2')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_e2e138ca9f2a7169b6964867.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_cc3d77a54e1b427fb3e3a643.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_e82b48eacb1686408af6bf79.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-29.340000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.200000px;}
.ls2{letter-spacing:-0.229800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.119400px;}
.ls2e{letter-spacing:-0.109200px;}
.ls2f{letter-spacing:-0.066000px;}
.ls31{letter-spacing:-0.036000px;}
.ls1b{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.213600px;}
.ls14{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.249600px;}
.ls1{letter-spacing:0.371400px;}
.ls1e{letter-spacing:22.151520px;}
.ls28{letter-spacing:24.696000px;}
.ls2c{letter-spacing:25.227936px;}
.ls30{letter-spacing:25.416000px;}
.ls29{letter-spacing:30.071808px;}
.ls27{letter-spacing:30.143520px;}
.ls1f{letter-spacing:30.251808px;}
.ls16{letter-spacing:30.323520px;}
.lsa{letter-spacing:30.863520px;}
.ls5{letter-spacing:49.377600px;}
.ls4{letter-spacing:49.428000px;}
.ls10{letter-spacing:49.493664px;}
.lse{letter-spacing:49.608000px;}
.ls21{letter-spacing:56.160000px;}
.ls6{letter-spacing:57.600000px;}
.ls18{letter-spacing:61.977600px;}
.ls17{letter-spacing:62.028000px;}
.ls8{letter-spacing:65.916000px;}
.ls7{letter-spacing:66.060000px;}
.ls26{letter-spacing:68.184000px;}
.ls12{letter-spacing:69.034176px;}
.ls11{letter-spacing:69.147360px;}
.ls2b{letter-spacing:70.149600px;}
.ls2d{letter-spacing:70.200000px;}
.lsb{letter-spacing:70.293600px;}
.lsc{letter-spacing:70.344000px;}
.ls19{letter-spacing:74.484000px;}
.lsd{letter-spacing:93.225600px;}
.lsf{letter-spacing:93.276000px;}
.ls13{letter-spacing:96.778080px;}
.ls22{letter-spacing:97.560000px;}
.ls20{letter-spacing:97.704000px;}
.ls1d{letter-spacing:101.793600px;}
.ls1c{letter-spacing:101.844000px;}
.ls23{letter-spacing:119.622000px;}
.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;}
}
.wsa{word-spacing:-37.913760px;}
.wsb{word-spacing:-32.576544px;}
.ws9{word-spacing:-32.544000px;}
.ws10{word-spacing:-29.810304px;}
.wse{word-spacing:-29.777760px;}
.ws23{word-spacing:-27.423840px;}
.wsd{word-spacing:-27.174240px;}
.ws22{word-spacing:-24.440544px;}
.ws13{word-spacing:-24.408000px;}
.ws16{word-spacing:-21.641760px;}
.ws12{word-spacing:-20.232000px;}
.ws11{word-spacing:-20.160000px;}
.ws21{word-spacing:-19.251840px;}
.ws1{word-spacing:-19.038240px;}
.ws6{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.wsf{word-spacing:-14.970240px;}
.ws14{word-spacing:-14.319360px;}
.ws20{word-spacing:-13.505760px;}
.ws1b{word-spacing:-1.908000px;}
.ws4{word-spacing:-1.317240px;}
.ws1e{word-spacing:-1.007088px;}
.ws3{word-spacing:-0.688080px;}
.ws2{word-spacing:-0.501120px;}
.wsc{word-spacing:-0.442800px;}
.ws7{word-spacing:-0.084384px;}
.ws8{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.ws25{word-spacing:0.108000px;}
.ws24{word-spacing:0.219696px;}
.ws15{word-spacing:2.041920px;}
.ws1a{word-spacing:35.454000px;}
.ws1d{word-spacing:62.394000px;}
.ws19{word-spacing:62.778000px;}
.ws1c{word-spacing:76.038000px;}
.ws1f{word-spacing:93.654000px;}
.ws18{word-spacing:120.714000px;}
.ws17{word-spacing:134.418000px;}
._2{margin-left:-3.346848px;}
._7{margin-left:-2.262240px;}
._0{margin-left:-1.153440px;}
._1{width:1.730160px;}
._3{width:3.271680px;}
._e{width:31.843680px;}
._5{width:39.171648px;}
._a{width:61.542000px;}
._c{width:92.760000px;}
._b{width:102.102000px;}
._9{width:160.242000px;}
._4{width:1439.244000px;}
._d{width:1596.204000px;}
._6{width:1632.924000px;}
._8{width:1831.655232px;}
.fcc{color:rgb(192,0,0);}
.fcb{color:rgb(179,34,69);}
.fc9{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fca{color:rgb(64,64,64);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(127,111,193);}
.fc6{color:rgb(0,176,80);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(55,52,139);}
.fsb{font-size:48.240000px;}
.fs14{font-size:54.000000px;}
.fs17{font-size:59.760000px;}
.fs18{font-size:59.904000px;}
.fs15{font-size:63.360000px;}
.fs11{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs13{font-size:95.760000px;}
.fs16{font-size:95.904000px;}
.fs4{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fs7{font-size:113.760000px;}
.fsc{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs8{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fsf{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:13.170000px;}
.yae{bottom:13.215000px;}
.y95{bottom:13.890000px;}
.yf1{bottom:17.565000px;}
.y1b{bottom:18.000000px;}
.y6{bottom:20.592000px;}
.y24{bottom:31.392000px;}
.y94{bottom:33.120000px;}
.y1a{bottom:39.600000px;}
.y5{bottom:42.192000px;}
.ycf{bottom:42.945000px;}
.yaf{bottom:45.615000px;}
.yba{bottom:47.415000px;}
.yde{bottom:47.490000px;}
.y93{bottom:52.350000px;}
.yce{bottom:63.105000px;}
.y92{bottom:71.610000px;}
.yb0{bottom:75.315000px;}
.ye0{bottom:75.495000px;}
.ybb{bottom:80.790000px;}
.y91{bottom:90.825000px;}
.ydf{bottom:93.810000px;}
.yd0{bottom:99.285000px;}
.yb1{bottom:105.045000px;}
.ye{bottom:111.636000px;}
.y88{bottom:111.960000px;}
.ybc{bottom:114.150000px;}
.ye1{bottom:124.740000px;}
.y4a{bottom:126.324000px;}
.y14{bottom:130.680000px;}
.yb2{bottom:134.745000px;}
.y19{bottom:134.892000px;}
.yd2{bottom:135.465000px;}
.yd{bottom:141.336000px;}
.y89{bottom:142.845000px;}
.y30{bottom:144.576000px;}
.ybd{bottom:147.525000px;}
.ydd{bottom:149.580000px;}
.ycd{bottom:150.840000px;}
.y49{bottom:155.490000px;}
.yd1{bottom:155.625000px;}
.y15{bottom:159.630000px;}
.y87{bottom:163.980000px;}
.yb3{bottom:164.445000px;}
.y18{bottom:164.595000px;}
.ye2{bottom:164.850000px;}
.yc{bottom:166.530000px;}
.yaa{bottom:169.455000px;}
.y10e{bottom:169.560000px;}
.y8a{bottom:173.700000px;}
.yc6{bottom:176.910000px;}
.yc3{bottom:178.095000px;}
.ybe{bottom:180.900000px;}
.yd4{bottom:181.725000px;}
.y2f{bottom:190.695000px;}
.yb4{bottom:194.190000px;}
.y108{bottom:194.250000px;}
.y17{bottom:194.325000px;}
.ye4{bottom:195.765000px;}
.yb{bottom:196.230000px;}
.ya9{bottom:198.255000px;}
.yc5{bottom:198.510000px;}
.y48{bottom:199.590000px;}
.yc2{bottom:199.695000px;}
.y129{bottom:201.600000px;}
.yd3{bottom:201.885000px;}
.y13{bottom:203.250000px;}
.y10d{bottom:204.120000px;}
.y8b{bottom:204.555000px;}
.ye3{bottom:214.095000px;}
.ybf{bottom:214.275000px;}
.y5d{bottom:216.030000px;}
.y57{bottom:218.415000px;}
.y67{bottom:220.890000px;}
.yb5{bottom:223.890000px;}
.y16{bottom:224.025000px;}
.ya{bottom:225.930000px;}
.y107{bottom:226.110000px;}
.y83{bottom:226.770000px;}
.ya8{bottom:227.085000px;}
.y128{bottom:227.520000px;}
.yd6{bottom:228.030000px;}
.y12{bottom:228.450000px;}
.y47{bottom:228.750000px;}
.y8c{bottom:235.440000px;}
.ye6{bottom:235.875000px;}
.y6b{bottom:237.675000px;}
.y117{bottom:238.860000px;}
.y5c{bottom:241.230000px;}
.y66{bottom:246.090000px;}
.yc0{bottom:247.650000px;}
.y10c{bottom:247.860000px;}
.yd5{bottom:248.145000px;}
.y2e{bottom:249.735000px;}
.y56{bottom:251.535000px;}
.y11{bottom:253.695000px;}
.y78{bottom:254.010000px;}
.ye5{bottom:254.160000px;}
.ya7{bottom:255.885000px;}
.y82{bottom:260.070000px;}
.y44{bottom:260.565000px;}
.y127{bottom:261.030000px;}
.y6a{bottom:262.875000px;}
.y9e{bottom:263.775000px;}
.y106{bottom:265.890000px;}
.yb8{bottom:266.220000px;}
.y8d{bottom:266.295000px;}
.y5b{bottom:266.430000px;}
.yb6{bottom:266.835000px;}
.yad{bottom:267.840000px;}
.y131{bottom:268.275000px;}
.y65{bottom:271.290000px;}
.y9{bottom:272.595000px;}
.y46{bottom:272.880000px;}
.yd8{bottom:274.290000px;}
.ye8{bottom:275.940000px;}
.y10{bottom:278.895000px;}
.y10b{bottom:282.600000px;}
.ya6{bottom:284.685000px;}
.y126{bottom:286.950000px;}
.y69{bottom:288.075000px;}
.y132{bottom:288.285000px;}
.yc1{bottom:292.530000px;}
.y9d{bottom:292.575000px;}
.y2d{bottom:293.475000px;}
.ye7{bottom:294.270000px;}
.yd7{bottom:294.405000px;}
.y81{bottom:294.480000px;}
.y55{bottom:295.815000px;}
.y39{bottom:296.535000px;}
.y8e{bottom:297.150000px;}
.y105{bottom:297.390000px;}
.ycc{bottom:300.930000px;}
.y77{bottom:304.590000px;}
.y68{bottom:313.275000px;}
.ya5{bottom:313.485000px;}
.y10a{bottom:315.750000px;}
.yea{bottom:316.050000px;}
.y45{bottom:317.880000px;}
.y4{bottom:320.070000px;}
.y125{bottom:320.250000px;}
.y9c{bottom:321.405000px;}
.yf{bottom:324.975000px;}
.yf9{bottom:325.050000px;}
.y130{bottom:326.775000px;}
.y8f{bottom:328.035000px;}
.y54{bottom:328.245000px;}
.y104{bottom:328.935000px;}
.y38{bottom:328.965000px;}
.yd9{bottom:330.630000px;}
.ycb{bottom:333.360000px;}
.ye9{bottom:334.335000px;}
.y22{bottom:336.210000px;}
.y80{bottom:337.680000px;}
.y23{bottom:338.910000px;}
.y2c{bottom:339.555000px;}
.ya4{bottom:344.625000px;}
.y124{bottom:346.170000px;}
.y9b{bottom:350.205000px;}
.yf8{bottom:353.850000px;}
.y63{bottom:354.315000px;}
.y76{bottom:355.215000px;}
.yec{bottom:356.115000px;}
.y60{bottom:357.015000px;}
.y5e{bottom:357.585000px;}
.y90{bottom:358.890000px;}
.y103{bottom:360.615000px;}
.y53{bottom:360.645000px;}
.y43{bottom:363.930000px;}
.yca{bottom:365.760000px;}
.y7f{bottom:372.060000px;}
.yeb{bottom:374.430000px;}
.y12f{bottom:375.015000px;}
.y37{bottom:377.925000px;}
.y123{bottom:380.550000px;}
.yf7{bottom:382.650000px;}
.ydb{bottom:384.405000px;}
.y42{bottom:393.090000px;}
.y52{bottom:393.765000px;}
.y2b{bottom:394.125000px;}
.yee{bottom:396.210000px;}
.y21{bottom:396.540000px;}
.y9a{bottom:397.005000px;}
.yc9{bottom:398.160000px;}
.y102{bottom:400.575000px;}
.y75{bottom:408.315000px;}
.y5f{bottom:408.930000px;}
.yf6{bottom:411.450000px;}
.yed{bottom:414.540000px;}
.y7e{bottom:416.880000px;}
.yda{bottom:417.390000px;}
.y3{bottom:424.410000px;}
.y122{bottom:424.695000px;}
.y99{bottom:425.805000px;}
.y12e{bottom:429.765000px;}
.yc8{bottom:430.560000px;}
.y101{bottom:431.895000px;}
.y41{bottom:437.190000px;}
.y2a{bottom:438.045000px;}
.ya3{bottom:439.350000px;}
.yf5{bottom:440.280000px;}
.y36{bottom:442.185000px;}
.y7d{bottom:449.280000px;}
.y121{bottom:453.855000px;}
.yf0{bottom:453.960000px;}
.y98{bottom:454.605000px;}
.y64{bottom:456.225000px;}
.y6c{bottom:456.450000px;}
.y20{bottom:456.840000px;}
.yc7{bottom:462.960000px;}
.y100{bottom:463.755000px;}
.y12d{bottom:464.325000px;}
.y40{bottom:466.380000px;}
.ya2{bottom:468.180000px;}
.y74{bottom:468.435000px;}
.yf4{bottom:469.080000px;}
.y112{bottom:469.695000px;}
.y51{bottom:470.490000px;}
.y3a{bottom:475.890000px;}
.y2{bottom:476.250000px;}
.yef{bottom:479.700000px;}
.y29{bottom:481.785000px;}
.y115{bottom:485.895000px;}
.y35{bottom:489.570000px;}
.y7c{bottom:495.930000px;}
.ya1{bottom:496.980000px;}
.y120{bottom:497.235000px;}
.yf3{bottom:497.880000px;}
.y119{bottom:500.550000px;}
.y111{bottom:502.095000px;}
.y50{bottom:502.890000px;}
.yff{bottom:503.565000px;}
.y97{bottom:503.790000px;}
.y73{bottom:508.395000px;}
.y3f{bottom:511.380000px;}
.y1f{bottom:515.700000px;}
.y114{bottom:518.295000px;}
.y34{bottom:521.970000px;}
.y12c{bottom:523.005000px;}
.y7b{bottom:525.090000px;}
.ya0{bottom:525.780000px;}
.yf2{bottom:526.680000px;}
.y28{bottom:527.010000px;}
.y1{bottom:528.090000px;}
.y11f{bottom:530.535000px;}
.y110{bottom:534.495000px;}
.y62{bottom:534.600000px;}
.yfe{bottom:535.065000px;}
.y5a{bottom:535.140000px;}
.y118{bottom:535.290000px;}
.y4f{bottom:536.010000px;}
.y6e{bottom:536.070000px;}
.y6f{bottom:538.380000px;}
.y72{bottom:549.105000px;}
.y113{bottom:550.725000px;}
.y9f{bottom:556.920000px;}
.y12b{bottom:557.745000px;}
.y3e{bottom:558.000000px;}
.y61{bottom:559.800000px;}
.y59{bottom:560.370000px;}
.y6d{bottom:561.270000px;}
.y1e{bottom:563.610000px;}
.y11e{bottom:564.015000px;}
.yfd{bottom:566.565000px;}
.y10f{bottom:566.925000px;}
.y85{bottom:569.850000px;}
.y7a{bottom:570.090000px;}
.y33{bottom:570.930000px;}
.y27{bottom:578.130000px;}
.y4e{bottom:580.290000px;}
.y71{bottom:584.745000px;}
.y3d{bottom:596.160000px;}
.yfc{bottom:597.885000px;}
.y11d{bottom:598.245000px;}
.y116{bottom:602.025000px;}
.y84{bottom:602.250000px;}
.y8{bottom:609.225000px;}
.y4d{bottom:612.690000px;}
.y12a{bottom:618.270000px;}
.y26{bottom:622.050000px;}
.y79{bottom:623.730000px;}
.yb7{bottom:624.060000px;}
.y1d{bottom:624.090000px;}
.y32{bottom:624.930000px;}
.yfb{bottom:629.745000px;}
.y3c{bottom:634.350000px;}
.y70{bottom:637.845000px;}
.y11c{bottom:643.245000px;}
.y4c{bottom:645.840000px;}
.yab{bottom:653.250000px;}
.y86{bottom:662.430000px;}
.y31{bottom:663.840000px;}
.y25{bottom:667.230000px;}
.y96{bottom:667.290000px;}
.yc4{bottom:667.410000px;}
.y3b{bottom:673.230000px;}
.y58{bottom:675.360000px;}
.y11b{bottom:675.645000px;}
.yfa{bottom:679.470000px;}
.ydc{bottom:679.605000px;}
.y7{bottom:750.570000px;}
.y109{bottom:750.810000px;}
.y11a{bottom:751.065000px;}
.y4b{bottom:753.150000px;}
.y1c{bottom:753.195000px;}
.yac{bottom:756.255000px;}
.h10{height:47.980898px;}
.h22{height:53.709961px;}
.h2a{height:59.439023px;}
.h2b{height:59.582250px;}
.h23{height:63.019687px;}
.h17{height:65.884219px;}
.h4{height:71.613281px;}
.h1b{height:75.093750px;}
.h8{height:83.787539px;}
.h9{height:83.930766px;}
.h1a{height:86.255508px;}
.h7{height:86.402953px;}
.h1f{height:95.245664px;}
.h26{height:95.388891px;}
.h24{height:98.051133px;}
.h25{height:98.198578px;}
.h6{height:107.419922px;}
.h16{height:107.563148px;}
.h3{height:108.000000px;}
.h1e{height:110.583984px;}
.h20{height:110.731430px;}
.h2c{height:113.148984px;}
.hb{height:114.813281px;}
.ha{height:116.481797px;}
.h11{height:119.594180px;}
.h14{height:119.737406px;}
.h13{height:123.116836px;}
.h19{height:123.264281px;}
.h1c{height:131.052305px;}
.h1d{height:131.195531px;}
.hc{height:134.912461px;}
.h18{height:135.059906px;}
.hf{height:143.226562px;}
.h12{height:143.369789px;}
.h5{height:147.445312px;}
.h1{height:147.653086px;}
.h2{height:147.763688px;}
.hd{height:166.858945px;}
.he{height:167.002172px;}
.h15{height:174.668906px;}
.h27{height:324.000000px;}
.h21{height:379.260000px;}
.h28{height:454.500000px;}
.h29{height:511.020000px;}
.h0{height:810.000000px;}
.w2{width:519.840000px;}
.w4{width:556.740000px;}
.w3{width:576.000000px;}
.w5{width:693.540000px;}
.w6{width:854.820000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x47{left:9.828000px;}
.x31{left:16.845000px;}
.x48{left:21.492000px;}
.x30{left:23.910000px;}
.x2f{left:26.205000px;}
.x5a{left:30.204000px;}
.x5b{left:31.752000px;}
.x66{left:32.940000px;}
.x5f{left:38.880000px;}
.x59{left:49.320000px;}
.x64{left:53.355000px;}
.x46{left:56.850000px;}
.x3e{left:58.931979px;}
.x1e{left:63.359979px;}
.x2e{left:64.470000px;}
.xc{left:67.067979px;}
.x4b{left:69.810000px;}
.x60{left:74.985000px;}
.x61{left:76.935000px;}
.x81{left:80.135979px;}
.xb{left:84.023979px;}
.x57{left:85.500000px;}
.x5e{left:90.900000px;}
.x84{left:94.247979px;}
.xd{left:97.163979px;}
.x62{left:98.820000px;}
.x5c{left:101.310000px;}
.x4f{left:103.935000px;}
.x18{left:109.511979px;}
.x7{left:110.627979px;}
.x3f{left:112.931979px;}
.x49{left:117.255000px;}
.x44{left:119.880000px;}
.x85{left:121.247979px;}
.x5d{left:124.305000px;}
.x82{left:127.331979px;}
.x4a{left:129.390000px;}
.x14{left:136.871979px;}
.x33{left:139.290000px;}
.x15{left:143.567979px;}
.x32{left:144.570000px;}
.x35{left:146.370000px;}
.x50{left:147.990000px;}
.x21{left:152.459979px;}
.x1f{left:153.614979px;}
.x36{left:155.490000px;}
.x68{left:160.890000px;}
.x11{left:163.829979px;}
.x34{left:165.570000px;}
.x51{left:169.709979px;}
.x20{left:174.989979px;}
.x83{left:181.334979px;}
.x65{left:188.205000px;}
.x52{left:190.049979px;}
.x67{left:194.970000px;}
.x2{left:200.954979px;}
.x1{left:220.424979px;}
.x6d{left:221.969979px;}
.x4c{left:227.265000px;}
.x37{left:259.995000px;}
.x39{left:264.990000px;}
.x45{left:267.945000px;}
.x4e{left:274.215000px;}
.x4{left:277.229979px;}
.x38{left:291.450000px;}
.x7c{left:293.549979px;}
.x7d{left:296.249979px;}
.x6a{left:301.350000px;}
.x70{left:312.089979px;}
.x78{left:319.829979px;}
.x6e{left:325.949979px;}
.x75{left:329.729979px;}
.x71{left:336.959979px;}
.x69{left:338.070000px;}
.x77{left:342.179979px;}
.x58{left:343.440000px;}
.x6f{left:360.179979px;}
.xf{left:368.924979px;}
.x3b{left:375.840000px;}
.x5{left:389.264979px;}
.x3c{left:395.715000px;}
.x76{left:397.979979px;}
.x3a{left:407.850000px;}
.x19{left:413.969979px;}
.x63{left:423.180000px;}
.x2b{left:448.379979px;}
.x3{left:476.204979px;}
.x2d{left:496.695000px;}
.x1d{left:527.324979px;}
.x53{left:529.199979px;}
.x24{left:571.859979px;}
.x1a{left:584.489979px;}
.x9{left:635.189979px;}
.x10{left:693.149979px;}
.x6{left:713.489979px;}
.x4d{left:763.200000px;}
.x54{left:824.069979px;}
.x7e{left:840.989979px;}
.x55{left:844.409979px;}
.x1c{left:846.029979px;}
.x2c{left:853.200000px;}
.x40{left:861.014979px;}
.x80{left:863.309979px;}
.x74{left:865.649979px;}
.x7f{left:869.069979px;}
.xa{left:872.609979px;}
.x7a{left:880.634979px;}
.x42{left:893.594979px;}
.x41{left:894.854979px;}
.x72{left:904.934979px;}
.x56{left:906.224979px;}
.x73{left:913.214979px;}
.x79{left:918.794979px;}
.x26{left:920.084979px;}
.x29{left:921.779979px;}
.x25{left:924.659979px;}
.x7b{left:930.134979px;}
.x2a{left:979.559979px;}
.x12{left:1032.329979px;}
.x6b{left:1045.439979px;}
.x6c{left:1079.279979px;}
.x22{left:1094.504979px;}
.x23{left:1128.344979px;}
.xe{left:1146.164979px;}
.x1b{left:1169.924979px;}
.x86{left:1185.554979px;}
.x27{left:1205.429979px;}
.x8{left:1210.109979px;}
.x17{left:1215.509979px;}
.x43{left:1246.064979px;}
.x16{left:1257.479979px;}
.x28{left:1261.289979px;}
.x3d{left:1311.944979px;}
.x13{left:1321.124979px;}
@media print{
.v2{vertical-align:-26.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.400000pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106133pt;}
.ls2e{letter-spacing:-0.097067pt;}
.ls2f{letter-spacing:-0.058667pt;}
.ls31{letter-spacing:-0.032000pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.189867pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.221867pt;}
.ls1{letter-spacing:0.330133pt;}
.ls1e{letter-spacing:19.690240pt;}
.ls28{letter-spacing:21.952000pt;}
.ls2c{letter-spacing:22.424832pt;}
.ls30{letter-spacing:22.592000pt;}
.ls29{letter-spacing:26.730496pt;}
.ls27{letter-spacing:26.794240pt;}
.ls1f{letter-spacing:26.890496pt;}
.ls16{letter-spacing:26.954240pt;}
.lsa{letter-spacing:27.434240pt;}
.ls5{letter-spacing:43.891200pt;}
.ls4{letter-spacing:43.936000pt;}
.ls10{letter-spacing:43.994368pt;}
.lse{letter-spacing:44.096000pt;}
.ls21{letter-spacing:49.920000pt;}
.ls6{letter-spacing:51.200000pt;}
.ls18{letter-spacing:55.091200pt;}
.ls17{letter-spacing:55.136000pt;}
.ls8{letter-spacing:58.592000pt;}
.ls7{letter-spacing:58.720000pt;}
.ls26{letter-spacing:60.608000pt;}
.ls12{letter-spacing:61.363712pt;}
.ls11{letter-spacing:61.464320pt;}
.ls2b{letter-spacing:62.355200pt;}
.ls2d{letter-spacing:62.400000pt;}
.lsb{letter-spacing:62.483200pt;}
.lsc{letter-spacing:62.528000pt;}
.ls19{letter-spacing:66.208000pt;}
.lsd{letter-spacing:82.867200pt;}
.lsf{letter-spacing:82.912000pt;}
.ls13{letter-spacing:86.024960pt;}
.ls22{letter-spacing:86.720000pt;}
.ls20{letter-spacing:86.848000pt;}
.ls1d{letter-spacing:90.483200pt;}
.ls1c{letter-spacing:90.528000pt;}
.ls23{letter-spacing:106.330667pt;}
.wsa{word-spacing:-33.701120pt;}
.wsb{word-spacing:-28.956928pt;}
.ws9{word-spacing:-28.928000pt;}
.ws10{word-spacing:-26.498048pt;}
.wse{word-spacing:-26.469120pt;}
.ws23{word-spacing:-24.376747pt;}
.wsd{word-spacing:-24.154880pt;}
.ws22{word-spacing:-21.724928pt;}
.ws13{word-spacing:-21.696000pt;}
.ws16{word-spacing:-19.237120pt;}
.ws12{word-spacing:-17.984000pt;}
.ws11{word-spacing:-17.920000pt;}
.ws21{word-spacing:-17.112747pt;}
.ws1{word-spacing:-16.922880pt;}
.ws6{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.wsf{word-spacing:-13.306880pt;}
.ws14{word-spacing:-12.728320pt;}
.ws20{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-1.696000pt;}
.ws4{word-spacing:-1.170880pt;}
.ws1e{word-spacing:-0.895189pt;}
.ws3{word-spacing:-0.611627pt;}
.ws2{word-spacing:-0.445440pt;}
.wsc{word-spacing:-0.393600pt;}
.ws7{word-spacing:-0.075008pt;}
.ws8{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws25{word-spacing:0.096000pt;}
.ws24{word-spacing:0.195285pt;}
.ws15{word-spacing:1.815040pt;}
.ws1a{word-spacing:31.514667pt;}
.ws1d{word-spacing:55.461333pt;}
.ws19{word-spacing:55.802667pt;}
.ws1c{word-spacing:67.589333pt;}
.ws1f{word-spacing:83.248000pt;}
.ws18{word-spacing:107.301333pt;}
.ws17{word-spacing:119.482667pt;}
._2{margin-left:-2.974976pt;}
._7{margin-left:-2.010880pt;}
._0{margin-left:-1.025280pt;}
._1{width:1.537920pt;}
._3{width:2.908160pt;}
._e{width:28.305493pt;}
._5{width:34.819243pt;}
._a{width:54.704000pt;}
._c{width:82.453333pt;}
._b{width:90.757333pt;}
._9{width:142.437333pt;}
._4{width:1279.328000pt;}
._d{width:1418.848000pt;}
._6{width:1451.488000pt;}
._8{width:1628.137984pt;}
.fsb{font-size:42.880000pt;}
.fs14{font-size:48.000000pt;}
.fs17{font-size:53.120000pt;}
.fs18{font-size:53.248000pt;}
.fs15{font-size:56.320000pt;}
.fs11{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs13{font-size:85.120000pt;}
.fs16{font-size:85.248000pt;}
.fs4{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fs7{font-size:101.120000pt;}
.fsc{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs8{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fsf{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:11.706667pt;}
.yae{bottom:11.746667pt;}
.y95{bottom:12.346667pt;}
.yf1{bottom:15.613333pt;}
.y1b{bottom:16.000000pt;}
.y6{bottom:18.304000pt;}
.y24{bottom:27.904000pt;}
.y94{bottom:29.440000pt;}
.y1a{bottom:35.200000pt;}
.y5{bottom:37.504000pt;}
.ycf{bottom:38.173333pt;}
.yaf{bottom:40.546667pt;}
.yba{bottom:42.146667pt;}
.yde{bottom:42.213333pt;}
.y93{bottom:46.533333pt;}
.yce{bottom:56.093333pt;}
.y92{bottom:63.653333pt;}
.yb0{bottom:66.946667pt;}
.ye0{bottom:67.106667pt;}
.ybb{bottom:71.813333pt;}
.y91{bottom:80.733333pt;}
.ydf{bottom:83.386667pt;}
.yd0{bottom:88.253333pt;}
.yb1{bottom:93.373333pt;}
.ye{bottom:99.232000pt;}
.y88{bottom:99.520000pt;}
.ybc{bottom:101.466667pt;}
.ye1{bottom:110.880000pt;}
.y4a{bottom:112.288000pt;}
.y14{bottom:116.160000pt;}
.yb2{bottom:119.773333pt;}
.y19{bottom:119.904000pt;}
.yd2{bottom:120.413333pt;}
.yd{bottom:125.632000pt;}
.y89{bottom:126.973333pt;}
.y30{bottom:128.512000pt;}
.ybd{bottom:131.133333pt;}
.ydd{bottom:132.960000pt;}
.ycd{bottom:134.080000pt;}
.y49{bottom:138.213333pt;}
.yd1{bottom:138.333333pt;}
.y15{bottom:141.893333pt;}
.y87{bottom:145.760000pt;}
.yb3{bottom:146.173333pt;}
.y18{bottom:146.306667pt;}
.ye2{bottom:146.533333pt;}
.yc{bottom:148.026667pt;}
.yaa{bottom:150.626667pt;}
.y10e{bottom:150.720000pt;}
.y8a{bottom:154.400000pt;}
.yc6{bottom:157.253333pt;}
.yc3{bottom:158.306667pt;}
.ybe{bottom:160.800000pt;}
.yd4{bottom:161.533333pt;}
.y2f{bottom:169.506667pt;}
.yb4{bottom:172.613333pt;}
.y108{bottom:172.666667pt;}
.y17{bottom:172.733333pt;}
.ye4{bottom:174.013333pt;}
.yb{bottom:174.426667pt;}
.ya9{bottom:176.226667pt;}
.yc5{bottom:176.453333pt;}
.y48{bottom:177.413333pt;}
.yc2{bottom:177.506667pt;}
.y129{bottom:179.200000pt;}
.yd3{bottom:179.453333pt;}
.y13{bottom:180.666667pt;}
.y10d{bottom:181.440000pt;}
.y8b{bottom:181.826667pt;}
.ye3{bottom:190.306667pt;}
.ybf{bottom:190.466667pt;}
.y5d{bottom:192.026667pt;}
.y57{bottom:194.146667pt;}
.y67{bottom:196.346667pt;}
.yb5{bottom:199.013333pt;}
.y16{bottom:199.133333pt;}
.ya{bottom:200.826667pt;}
.y107{bottom:200.986667pt;}
.y83{bottom:201.573333pt;}
.ya8{bottom:201.853333pt;}
.y128{bottom:202.240000pt;}
.yd6{bottom:202.693333pt;}
.y12{bottom:203.066667pt;}
.y47{bottom:203.333333pt;}
.y8c{bottom:209.280000pt;}
.ye6{bottom:209.666667pt;}
.y6b{bottom:211.266667pt;}
.y117{bottom:212.320000pt;}
.y5c{bottom:214.426667pt;}
.y66{bottom:218.746667pt;}
.yc0{bottom:220.133333pt;}
.y10c{bottom:220.320000pt;}
.yd5{bottom:220.573333pt;}
.y2e{bottom:221.986667pt;}
.y56{bottom:223.586667pt;}
.y11{bottom:225.506667pt;}
.y78{bottom:225.786667pt;}
.ye5{bottom:225.920000pt;}
.ya7{bottom:227.453333pt;}
.y82{bottom:231.173333pt;}
.y44{bottom:231.613333pt;}
.y127{bottom:232.026667pt;}
.y6a{bottom:233.666667pt;}
.y9e{bottom:234.466667pt;}
.y106{bottom:236.346667pt;}
.yb8{bottom:236.640000pt;}
.y8d{bottom:236.706667pt;}
.y5b{bottom:236.826667pt;}
.yb6{bottom:237.186667pt;}
.yad{bottom:238.080000pt;}
.y131{bottom:238.466667pt;}
.y65{bottom:241.146667pt;}
.y9{bottom:242.306667pt;}
.y46{bottom:242.560000pt;}
.yd8{bottom:243.813333pt;}
.ye8{bottom:245.280000pt;}
.y10{bottom:247.906667pt;}
.y10b{bottom:251.200000pt;}
.ya6{bottom:253.053333pt;}
.y126{bottom:255.066667pt;}
.y69{bottom:256.066667pt;}
.y132{bottom:256.253333pt;}
.yc1{bottom:260.026667pt;}
.y9d{bottom:260.066667pt;}
.y2d{bottom:260.866667pt;}
.ye7{bottom:261.573333pt;}
.yd7{bottom:261.693333pt;}
.y81{bottom:261.760000pt;}
.y55{bottom:262.946667pt;}
.y39{bottom:263.586667pt;}
.y8e{bottom:264.133333pt;}
.y105{bottom:264.346667pt;}
.ycc{bottom:267.493333pt;}
.y77{bottom:270.746667pt;}
.y68{bottom:278.466667pt;}
.ya5{bottom:278.653333pt;}
.y10a{bottom:280.666667pt;}
.yea{bottom:280.933333pt;}
.y45{bottom:282.560000pt;}
.y4{bottom:284.506667pt;}
.y125{bottom:284.666667pt;}
.y9c{bottom:285.693333pt;}
.yf{bottom:288.866667pt;}
.yf9{bottom:288.933333pt;}
.y130{bottom:290.466667pt;}
.y8f{bottom:291.586667pt;}
.y54{bottom:291.773333pt;}
.y104{bottom:292.386667pt;}
.y38{bottom:292.413333pt;}
.yd9{bottom:293.893333pt;}
.ycb{bottom:296.320000pt;}
.ye9{bottom:297.186667pt;}
.y22{bottom:298.853333pt;}
.y80{bottom:300.160000pt;}
.y23{bottom:301.253333pt;}
.y2c{bottom:301.826667pt;}
.ya4{bottom:306.333333pt;}
.y124{bottom:307.706667pt;}
.y9b{bottom:311.293333pt;}
.yf8{bottom:314.533333pt;}
.y63{bottom:314.946667pt;}
.y76{bottom:315.746667pt;}
.yec{bottom:316.546667pt;}
.y60{bottom:317.346667pt;}
.y5e{bottom:317.853333pt;}
.y90{bottom:319.013333pt;}
.y103{bottom:320.546667pt;}
.y53{bottom:320.573333pt;}
.y43{bottom:323.493333pt;}
.yca{bottom:325.120000pt;}
.y7f{bottom:330.720000pt;}
.yeb{bottom:332.826667pt;}
.y12f{bottom:333.346667pt;}
.y37{bottom:335.933333pt;}
.y123{bottom:338.266667pt;}
.yf7{bottom:340.133333pt;}
.ydb{bottom:341.693333pt;}
.y42{bottom:349.413333pt;}
.y52{bottom:350.013333pt;}
.y2b{bottom:350.333333pt;}
.yee{bottom:352.186667pt;}
.y21{bottom:352.480000pt;}
.y9a{bottom:352.893333pt;}
.yc9{bottom:353.920000pt;}
.y102{bottom:356.066667pt;}
.y75{bottom:362.946667pt;}
.y5f{bottom:363.493333pt;}
.yf6{bottom:365.733333pt;}
.yed{bottom:368.480000pt;}
.y7e{bottom:370.560000pt;}
.yda{bottom:371.013333pt;}
.y3{bottom:377.253333pt;}
.y122{bottom:377.506667pt;}
.y99{bottom:378.493333pt;}
.y12e{bottom:382.013333pt;}
.yc8{bottom:382.720000pt;}
.y101{bottom:383.906667pt;}
.y41{bottom:388.613333pt;}
.y2a{bottom:389.373333pt;}
.ya3{bottom:390.533333pt;}
.yf5{bottom:391.360000pt;}
.y36{bottom:393.053333pt;}
.y7d{bottom:399.360000pt;}
.y121{bottom:403.426667pt;}
.yf0{bottom:403.520000pt;}
.y98{bottom:404.093333pt;}
.y64{bottom:405.533333pt;}
.y6c{bottom:405.733333pt;}
.y20{bottom:406.080000pt;}
.yc7{bottom:411.520000pt;}
.y100{bottom:412.226667pt;}
.y12d{bottom:412.733333pt;}
.y40{bottom:414.560000pt;}
.ya2{bottom:416.160000pt;}
.y74{bottom:416.386667pt;}
.yf4{bottom:416.960000pt;}
.y112{bottom:417.506667pt;}
.y51{bottom:418.213333pt;}
.y3a{bottom:423.013333pt;}
.y2{bottom:423.333333pt;}
.yef{bottom:426.400000pt;}
.y29{bottom:428.253333pt;}
.y115{bottom:431.906667pt;}
.y35{bottom:435.173333pt;}
.y7c{bottom:440.826667pt;}
.ya1{bottom:441.760000pt;}
.y120{bottom:441.986667pt;}
.yf3{bottom:442.560000pt;}
.y119{bottom:444.933333pt;}
.y111{bottom:446.306667pt;}
.y50{bottom:447.013333pt;}
.yff{bottom:447.613333pt;}
.y97{bottom:447.813333pt;}
.y73{bottom:451.906667pt;}
.y3f{bottom:454.560000pt;}
.y1f{bottom:458.400000pt;}
.y114{bottom:460.706667pt;}
.y34{bottom:463.973333pt;}
.y12c{bottom:464.893333pt;}
.y7b{bottom:466.746667pt;}
.ya0{bottom:467.360000pt;}
.yf2{bottom:468.160000pt;}
.y28{bottom:468.453333pt;}
.y1{bottom:469.413333pt;}
.y11f{bottom:471.586667pt;}
.y110{bottom:475.106667pt;}
.y62{bottom:475.200000pt;}
.yfe{bottom:475.613333pt;}
.y5a{bottom:475.680000pt;}
.y118{bottom:475.813333pt;}
.y4f{bottom:476.453333pt;}
.y6e{bottom:476.506667pt;}
.y6f{bottom:478.560000pt;}
.y72{bottom:488.093333pt;}
.y113{bottom:489.533333pt;}
.y9f{bottom:495.040000pt;}
.y12b{bottom:495.773333pt;}
.y3e{bottom:496.000000pt;}
.y61{bottom:497.600000pt;}
.y59{bottom:498.106667pt;}
.y6d{bottom:498.906667pt;}
.y1e{bottom:500.986667pt;}
.y11e{bottom:501.346667pt;}
.yfd{bottom:503.613333pt;}
.y10f{bottom:503.933333pt;}
.y85{bottom:506.533333pt;}
.y7a{bottom:506.746667pt;}
.y33{bottom:507.493333pt;}
.y27{bottom:513.893333pt;}
.y4e{bottom:515.813333pt;}
.y71{bottom:519.773333pt;}
.y3d{bottom:529.920000pt;}
.yfc{bottom:531.453333pt;}
.y11d{bottom:531.773333pt;}
.y116{bottom:535.133333pt;}
.y84{bottom:535.333333pt;}
.y8{bottom:541.533333pt;}
.y4d{bottom:544.613333pt;}
.y12a{bottom:549.573333pt;}
.y26{bottom:552.933333pt;}
.y79{bottom:554.426667pt;}
.yb7{bottom:554.720000pt;}
.y1d{bottom:554.746667pt;}
.y32{bottom:555.493333pt;}
.yfb{bottom:559.773333pt;}
.y3c{bottom:563.866667pt;}
.y70{bottom:566.973333pt;}
.y11c{bottom:571.773333pt;}
.y4c{bottom:574.080000pt;}
.yab{bottom:580.666667pt;}
.y86{bottom:588.826667pt;}
.y31{bottom:590.080000pt;}
.y25{bottom:593.093333pt;}
.y96{bottom:593.146667pt;}
.yc4{bottom:593.253333pt;}
.y3b{bottom:598.426667pt;}
.y58{bottom:600.320000pt;}
.y11b{bottom:600.573333pt;}
.yfa{bottom:603.973333pt;}
.ydc{bottom:604.093333pt;}
.y7{bottom:667.173333pt;}
.y109{bottom:667.386667pt;}
.y11a{bottom:667.613333pt;}
.y4b{bottom:669.466667pt;}
.y1c{bottom:669.506667pt;}
.yac{bottom:672.226667pt;}
.h10{height:42.649687pt;}
.h22{height:47.742188pt;}
.h2a{height:52.834688pt;}
.h2b{height:52.962000pt;}
.h23{height:56.017500pt;}
.h17{height:58.563750pt;}
.h4{height:63.656250pt;}
.h1b{height:66.750000pt;}
.h8{height:74.477812pt;}
.h9{height:74.605125pt;}
.h1a{height:76.671562pt;}
.h7{height:76.802625pt;}
.h1f{height:84.662813pt;}
.h26{height:84.790125pt;}
.h24{height:87.156562pt;}
.h25{height:87.287625pt;}
.h6{height:95.484375pt;}
.h16{height:95.611688pt;}
.h3{height:96.000000pt;}
.h1e{height:98.296875pt;}
.h20{height:98.427937pt;}
.h2c{height:100.576875pt;}
.hb{height:102.056250pt;}
.ha{height:103.539375pt;}
.h11{height:106.305937pt;}
.h14{height:106.433250pt;}
.h13{height:109.437187pt;}
.h19{height:109.568250pt;}
.h1c{height:116.490937pt;}
.h1d{height:116.618250pt;}
.hc{height:119.922187pt;}
.h18{height:120.053250pt;}
.hf{height:127.312500pt;}
.h12{height:127.439813pt;}
.h5{height:131.062500pt;}
.h1{height:131.247187pt;}
.h2{height:131.345500pt;}
.hd{height:148.319063pt;}
.he{height:148.446375pt;}
.h15{height:155.261250pt;}
.h27{height:288.000000pt;}
.h21{height:337.120000pt;}
.h28{height:404.000000pt;}
.h29{height:454.240000pt;}
.h0{height:720.000000pt;}
.w2{width:462.080000pt;}
.w4{width:494.880000pt;}
.w3{width:512.000000pt;}
.w5{width:616.480000pt;}
.w6{width:759.840000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x47{left:8.736000pt;}
.x31{left:14.973333pt;}
.x48{left:19.104000pt;}
.x30{left:21.253333pt;}
.x2f{left:23.293333pt;}
.x5a{left:26.848000pt;}
.x5b{left:28.224000pt;}
.x66{left:29.280000pt;}
.x5f{left:34.560000pt;}
.x59{left:43.840000pt;}
.x64{left:47.426667pt;}
.x46{left:50.533333pt;}
.x3e{left:52.383981pt;}
.x1e{left:56.319981pt;}
.x2e{left:57.306667pt;}
.xc{left:59.615981pt;}
.x4b{left:62.053333pt;}
.x60{left:66.653333pt;}
.x61{left:68.386667pt;}
.x81{left:71.231981pt;}
.xb{left:74.687981pt;}
.x57{left:76.000000pt;}
.x5e{left:80.800000pt;}
.x84{left:83.775981pt;}
.xd{left:86.367981pt;}
.x62{left:87.840000pt;}
.x5c{left:90.053333pt;}
.x4f{left:92.386667pt;}
.x18{left:97.343981pt;}
.x7{left:98.335981pt;}
.x3f{left:100.383981pt;}
.x49{left:104.226667pt;}
.x44{left:106.560000pt;}
.x85{left:107.775981pt;}
.x5d{left:110.493333pt;}
.x82{left:113.183981pt;}
.x4a{left:115.013333pt;}
.x14{left:121.663981pt;}
.x33{left:123.813333pt;}
.x15{left:127.615981pt;}
.x32{left:128.506667pt;}
.x35{left:130.106667pt;}
.x50{left:131.546667pt;}
.x21{left:135.519981pt;}
.x1f{left:136.546648pt;}
.x36{left:138.213333pt;}
.x68{left:143.013333pt;}
.x11{left:145.626648pt;}
.x34{left:147.173333pt;}
.x51{left:150.853314pt;}
.x20{left:155.546648pt;}
.x83{left:161.186648pt;}
.x65{left:167.293333pt;}
.x52{left:168.933314pt;}
.x67{left:173.306667pt;}
.x2{left:178.626648pt;}
.x1{left:195.933314pt;}
.x6d{left:197.306648pt;}
.x4c{left:202.013333pt;}
.x37{left:231.106667pt;}
.x39{left:235.546667pt;}
.x45{left:238.173333pt;}
.x4e{left:243.746667pt;}
.x4{left:246.426648pt;}
.x38{left:259.066667pt;}
.x7c{left:260.933314pt;}
.x7d{left:263.333314pt;}
.x6a{left:267.866667pt;}
.x70{left:277.413314pt;}
.x78{left:284.293314pt;}
.x6e{left:289.733314pt;}
.x75{left:293.093314pt;}
.x71{left:299.519981pt;}
.x69{left:300.506667pt;}
.x77{left:304.159981pt;}
.x58{left:305.280000pt;}
.x6f{left:320.159981pt;}
.xf{left:327.933314pt;}
.x3b{left:334.080000pt;}
.x5{left:346.013314pt;}
.x3c{left:351.746667pt;}
.x76{left:353.759981pt;}
.x3a{left:362.533333pt;}
.x19{left:367.973314pt;}
.x63{left:376.160000pt;}
.x2b{left:398.559981pt;}
.x3{left:423.293314pt;}
.x2d{left:441.506667pt;}
.x1d{left:468.733314pt;}
.x53{left:470.399981pt;}
.x24{left:508.319981pt;}
.x1a{left:519.546648pt;}
.x9{left:564.613314pt;}
.x10{left:616.133314pt;}
.x6{left:634.213314pt;}
.x4d{left:678.400000pt;}
.x54{left:732.506648pt;}
.x7e{left:747.546648pt;}
.x55{left:750.586648pt;}
.x1c{left:752.026648pt;}
.x2c{left:758.400000pt;}
.x40{left:765.346648pt;}
.x80{left:767.386648pt;}
.x74{left:769.466648pt;}
.x7f{left:772.506648pt;}
.xa{left:775.653314pt;}
.x7a{left:782.786648pt;}
.x42{left:794.306648pt;}
.x41{left:795.426648pt;}
.x72{left:804.386648pt;}
.x56{left:805.533314pt;}
.x73{left:811.746648pt;}
.x79{left:816.706648pt;}
.x26{left:817.853314pt;}
.x29{left:819.359981pt;}
.x25{left:821.919981pt;}
.x7b{left:826.786648pt;}
.x2a{left:870.719981pt;}
.x12{left:917.626648pt;}
.x6b{left:929.279981pt;}
.x6c{left:959.359981pt;}
.x22{left:972.893314pt;}
.x23{left:1002.973314pt;}
.xe{left:1018.813314pt;}
.x1b{left:1039.933314pt;}
.x86{left:1053.826648pt;}
.x27{left:1071.493314pt;}
.x8{left:1075.653314pt;}
.x17{left:1080.453314pt;}
.x43{left:1107.613314pt;}
.x16{left:1117.759981pt;}
.x28{left:1121.146648pt;}
.x3d{left:1166.173314pt;}
.x13{left:1174.333314pt;}
}




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