
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_c318cb70fda1a84e44f67710.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_2400fb02e1a93c7cf1723471.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_5187d0d9f3081a4b6115c4b4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_7547a94d03c27df677cbe1da.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_1557d7c9495a960675958606.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_19f37f8d44ab2606d6f3e8d6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_73f75f9e48769fc36e7a81b6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_47a6af2e9433a8e55f333232.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.760000px;}
.v5{vertical-align:-69.120000px;}
.v2{vertical-align:-60.600000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.640000px;}
.ls3{letter-spacing:-1.728000px;}
.ls7{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:16.306560px;}
.lsa{letter-spacing:46.546560px;}
.lsc{letter-spacing:2867.496000px;}
.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:-60.480000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.586800px;}
.ws8{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.653200px;}
.ws5{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-8.928000px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-3.507840px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.416480px;}
._b{width:5.731200px;}
._a{width:7.427520px;}
._5{width:8.611200px;}
._6{width:9.613440px;}
._7{width:11.183040px;}
._d{width:12.375360px;}
._10{width:13.505280px;}
._9{width:17.026560px;}
._f{width:18.857760px;}
._14{width:21.876480px;}
._12{width:23.595840px;}
._13{width:25.392480px;}
._11{width:296.419200px;}
._8{width:2141.003040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsa{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.911500px;}
.y40{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y9c{bottom:5.025000px;}
.y94{bottom:5.040000px;}
.y5a{bottom:5.370000px;}
.y9a{bottom:5.385000px;}
.y96{bottom:5.400000px;}
.ycb{bottom:5.415000px;}
.y2{bottom:10.080000px;}
.y49{bottom:10.834500px;}
.y56{bottom:15.874500px;}
.y3f{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.yc3{bottom:23.445000px;}
.ya5{bottom:23.745000px;}
.y93{bottom:23.760000px;}
.yc4{bottom:23.805000px;}
.ya0{bottom:24.105000px;}
.ya8{bottom:24.150000px;}
.yb4{bottom:24.165000px;}
.y55{bottom:31.354500px;}
.y3e{bottom:38.520000px;}
.y48{bottom:40.354500px;}
.y92{bottom:42.120000px;}
.yb2{bottom:42.165000px;}
.yb3{bottom:42.525000px;}
.y3{bottom:47.880000px;}
.y54{bottom:48.634500px;}
.y47{bottom:52.234500px;}
.y3d{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.y53{bottom:64.834500px;}
.y46{bottom:65.194500px;}
.y3c{bottom:72.765000px;}
.y45{bottom:78.514500px;}
.y52{bottom:80.314500px;}
.y3b{bottom:90.045000px;}
.y51{bottom:92.914500px;}
.yf8{bottom:98.316000px;}
.y50{bottom:99.394500px;}
.y58{bottom:99.756000px;}
.y44{bottom:100.114500px;}
.y12a{bottom:102.996000px;}
.y90{bottom:103.356000px;}
.y3a{bottom:107.325000px;}
.yc1{bottom:113.436000px;}
.y4f{bottom:115.234500px;}
.yf7{bottom:115.596000px;}
.y129{bottom:120.276000px;}
.y8f{bottom:120.636000px;}
.y39{bottom:124.605000px;}
.y57{bottom:126.396000px;}
.y4e{bottom:130.714500px;}
.yf6{bottom:132.876000px;}
.y128{bottom:137.556000px;}
.y8e{bottom:137.916000px;}
.yc0{bottom:139.716000px;}
.y41{bottom:140.440500px;}
.y38{bottom:141.885000px;}
.y4d{bottom:146.224500px;}
.yf5{bottom:150.195000px;}
.y127{bottom:154.875000px;}
.y8d{bottom:155.235000px;}
.y37{bottom:159.165000px;}
.y4c{bottom:161.704500px;}
.y43{bottom:162.424500px;}
.ybf{bottom:166.035000px;}
.yf4{bottom:167.475000px;}
.y126{bottom:171.795000px;}
.y8c{bottom:172.155000px;}
.y42{bottom:173.224500px;}
.y36{bottom:176.445000px;}
.y4b{bottom:176.824500px;}
.yf3{bottom:184.755000px;}
.y8b{bottom:189.435000px;}
.ybe{bottom:189.450000px;}
.y35{bottom:193.725000px;}
.y125{bottom:198.435000px;}
.yf2{bottom:203.115000px;}
.y8a{bottom:206.715000px;}
.ybd{bottom:208.890000px;}
.y34{bottom:210.675000px;}
.y124{bottom:215.715000px;}
.y89{bottom:223.995000px;}
.ybc{bottom:228.330000px;}
.yf1{bottom:229.755000px;}
.y123{bottom:232.995000px;}
.y33{bottom:236.595000px;}
.y88{bottom:241.275000px;}
.yf0{bottom:246.675000px;}
.ybb{bottom:247.770000px;}
.y122{bottom:250.275000px;}
.y32{bottom:252.075000px;}
.y87{bottom:258.555000px;}
.yef{bottom:263.955000px;}
.yba{bottom:266.850000px;}
.y121{bottom:267.195000px;}
.y1d{bottom:267.555000px;}
.y86{bottom:276.225000px;}
.yee{bottom:281.265000px;}
.y31{bottom:283.035000px;}
.y120{bottom:284.505000px;}
.yb9{bottom:286.305000px;}
.y1c{bottom:291.675000px;}
.y85{bottom:293.505000px;}
.y30{bottom:298.515000px;}
.yed{bottom:298.545000px;}
.y11f{bottom:301.785000px;}
.yb8{bottom:305.745000px;}
.y84{bottom:310.785000px;}
.y2f{bottom:313.995000px;}
.y1b{bottom:315.795000px;}
.yec{bottom:315.825000px;}
.y11e{bottom:320.145000px;}
.yb7{bottom:325.185000px;}
.y83{bottom:328.065000px;}
.y2e{bottom:329.865000px;}
.yeb{bottom:333.105000px;}
.y1a{bottom:339.945000px;}
.ye{bottom:343.185000px;}
.yb6{bottom:344.625000px;}
.y2d{bottom:345.345000px;}
.y11d{bottom:346.785000px;}
.yea{bottom:351.465000px;}
.y82{bottom:354.345000px;}
.y2c{bottom:360.825000px;}
.yb5{bottom:363.705000px;}
.y19{bottom:364.065000px;}
.y81{bottom:371.625000px;}
.y2b{bottom:376.305000px;}
.ye9{bottom:378.105000px;}
.y11c{bottom:381.345000px;}
.yb1{bottom:383.145000px;}
.y18{bottom:388.185000px;}
.y80{bottom:388.545000px;}
.y2a{bottom:391.785000px;}
.ye8{bottom:395.385000px;}
.y11b{bottom:398.625000px;}
.y7f{bottom:405.870000px;}
.y29{bottom:407.265000px;}
.y17{bottom:412.305000px;}
.ye7{bottom:412.350000px;}
.y11a{bottom:415.950000px;}
.y28{bottom:422.745000px;}
.ye6{bottom:429.630000px;}
.y7e{bottom:432.150000px;}
.y119{bottom:432.870000px;}
.y16{bottom:436.425000px;}
.y27{bottom:438.225000px;}
.yb0{bottom:443.310000px;}
.ye5{bottom:446.910000px;}
.y7d{bottom:449.430000px;}
.y118{bottom:451.230000px;}
.y26{bottom:454.065000px;}
.y15{bottom:460.590000px;}
.ye4{bottom:464.190000px;}
.y7c{bottom:466.710000px;}
.y25{bottom:469.590000px;}
.y117{bottom:477.870000px;}
.ye3{bottom:481.470000px;}
.y7b{bottom:483.990000px;}
.y14{bottom:484.710000px;}
.y24{bottom:485.070000px;}
.yaf{bottom:486.150000px;}
.y149{bottom:494.430000px;}
.y116{bottom:495.150000px;}
.ye2{bottom:500.190000px;}
.y23{bottom:500.550000px;}
.yae{bottom:505.590000px;}
.y13{bottom:508.830000px;}
.y7a{bottom:510.270000px;}
.y115{bottom:512.430000px;}
.y22{bottom:516.030000px;}
.ye1{bottom:526.470000px;}
.y79{bottom:527.550000px;}
.y148{bottom:528.990000px;}
.y114{bottom:529.710000px;}
.y21{bottom:531.510000px;}
.y12{bottom:532.950000px;}
.yad{bottom:543.420000px;}
.ye0{bottom:543.780000px;}
.y78{bottom:544.860000px;}
.y147{bottom:546.300000px;}
.y20{bottom:546.990000px;}
.y113{bottom:547.020000px;}
.y11{bottom:557.070000px;}
.ydf{bottom:561.060000px;}
.y77{bottom:562.140000px;}
.y1f{bottom:562.470000px;}
.yac{bottom:562.860000px;}
.y146{bottom:563.580000px;}
.y112{bottom:564.300000px;}
.yde{bottom:577.980000px;}
.y76{bottom:579.420000px;}
.y145{bottom:580.860000px;}
.y10{bottom:581.550000px;}
.yab{bottom:582.300000px;}
.y1e{bottom:593.460000px;}
.ydd{bottom:595.260000px;}
.y144{bottom:598.140000px;}
.yaa{bottom:601.740000px;}
.y75{bottom:605.340000px;}
.yf{bottom:605.700000px;}
.y111{bottom:608.940000px;}
.ydc{bottom:612.540000px;}
.y143{bottom:615.420000px;}
.y74{bottom:622.620000px;}
.y110{bottom:626.220000px;}
.ydb{bottom:629.820000px;}
.y142{bottom:632.340000px;}
.ya9{bottom:639.540000px;}
.y73{bottom:639.900000px;}
.y10f{bottom:643.500000px;}
.yda{bottom:648.180000px;}
.y141{bottom:649.620000px;}
.y72{bottom:657.180000px;}
.ya7{bottom:658.980000px;}
.y10e{bottom:660.780000px;}
.y140{bottom:666.900000px;}
.yd9{bottom:674.850000px;}
.y10d{bottom:678.090000px;}
.y71{bottom:683.490000px;}
.y13f{bottom:684.210000px;}
.yd8{bottom:692.130000px;}
.y10c{bottom:696.450000px;}
.ya6{bottom:697.185000px;}
.y70{bottom:700.770000px;}
.y13e{bottom:701.490000px;}
.yd7{bottom:709.410000px;}
.ya4{bottom:716.265000px;}
.y6f{bottom:718.050000px;}
.y13d{bottom:718.770000px;}
.y10b{bottom:723.090000px;}
.yd6{bottom:726.690000px;}
.y6e{bottom:735.330000px;}
.y13c{bottom:736.050000px;}
.y10a{bottom:740.010000px;}
.yd5{bottom:743.610000px;}
.y6d{bottom:752.610000px;}
.y13b{bottom:753.330000px;}
.y109{bottom:757.290000px;}
.ya3{bottom:758.010000px;}
.yd4{bottom:760.890000px;}
.y6c{bottom:769.530000px;}
.y13a{bottom:770.610000px;}
.y108{bottom:774.570000px;}
.yd3{bottom:778.170000px;}
.ya2{bottom:781.425000px;}
.y139{bottom:787.890000px;}
.y107{bottom:791.850000px;}
.yd2{bottom:795.450000px;}
.y6b{bottom:796.170000px;}
.ya1{bottom:800.910000px;}
.y138{bottom:805.215000px;}
.y106{bottom:809.175000px;}
.y6a{bottom:813.495000px;}
.yd1{bottom:813.855000px;}
.y9f{bottom:819.990000px;}
.y137{bottom:822.495000px;}
.y105{bottom:827.535000px;}
.y69{bottom:830.415000px;}
.yd0{bottom:831.135000px;}
.y136{bottom:839.415000px;}
.y68{bottom:847.695000px;}
.y104{bottom:854.175000px;}
.ycf{bottom:854.550000px;}
.y135{bottom:856.695000px;}
.y9e{bottom:858.150000px;}
.y67{bottom:864.975000px;}
.y103{bottom:871.455000px;}
.y134{bottom:873.975000px;}
.yce{bottom:873.990000px;}
.y9d{bottom:877.590000px;}
.y66{bottom:882.255000px;}
.y102{bottom:888.735000px;}
.y133{bottom:891.255000px;}
.ycd{bottom:893.070000px;}
.y9b{bottom:897.030000px;}
.y65{bottom:899.535000px;}
.y101{bottom:905.655000px;}
.y132{bottom:908.535000px;}
.ycc{bottom:912.510000px;}
.y99{bottom:916.110000px;}
.y64{bottom:916.815000px;}
.y100{bottom:922.935000px;}
.y131{bottom:925.815000px;}
.yca{bottom:931.950000px;}
.y63{bottom:933.765000px;}
.y98{bottom:935.565000px;}
.yff{bottom:940.245000px;}
.y130{bottom:942.765000px;}
.yc9{bottom:951.405000px;}
.y97{bottom:955.005000px;}
.yfe{bottom:958.605000px;}
.y62{bottom:960.405000px;}
.yd{bottom:960.765000px;}
.yc{bottom:966.165000px;}
.y12f{bottom:969.405000px;}
.yc8{bottom:970.845000px;}
.y61{bottom:977.685000px;}
.yb{bottom:983.445000px;}
.yfd{bottom:985.245000px;}
.y12e{bottom:986.685000px;}
.yc7{bottom:989.925000px;}
.y95{bottom:992.805000px;}
.y60{bottom:994.965000px;}
.yfc{bottom:1002.525000px;}
.y12d{bottom:1003.965000px;}
.yc6{bottom:1009.365000px;}
.y5f{bottom:1011.885000px;}
.y91{bottom:1012.245000px;}
.ya{bottom:1019.805000px;}
.y12c{bottom:1021.245000px;}
.yc5{bottom:1028.805000px;}
.yfb{bottom:1037.085000px;}
.y5e{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.yc2{bottom:1048.245000px;}
.yfa{bottom:1054.365000px;}
.y5d{bottom:1055.445000px;}
.yf9{bottom:1071.330000px;}
.y8{bottom:1072.050000px;}
.y5c{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.y5b{bottom:1089.690000px;}
.y12b{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h13{height:5.650313px;}
.h1a{height:18.345000px;}
.h17{height:18.705000px;}
.h19{height:18.720000px;}
.h14{height:27.720000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.h18{height:37.065000px;}
.h1e{height:37.080000px;}
.h1f{height:37.110000px;}
.h1b{height:37.425000px;}
.h1d{height:37.476000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h1c{height:42.229688px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h16{height:55.830000px;}
.h7{height:58.050000px;}
.h6{height:59.357813px;}
.he{height:60.155156px;}
.h9{height:60.952500px;}
.h20{height:62.163910px;}
.h15{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.hf{height:202.005000px;}
.ha{height:615.045000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:102.270000px;}
.w2{width:103.702500px;}
.we{width:112.710000px;}
.w9{width:114.192000px;}
.w13{width:120.636000px;}
.w12{width:121.032000px;}
.wd{width:128.550000px;}
.w4{width:132.502500px;}
.wc{width:132.525000px;}
.w14{width:132.885000px;}
.wa{width:134.301000px;}
.wb{width:140.805000px;}
.w7{width:147.645000px;}
.w15{width:148.710000px;}
.w10{width:148.725000px;}
.w11{width:149.760000px;}
.wf{width:149.832000px;}
.w16{width:160.245000px;}
.w18{width:162.435000px;}
.w6{width:163.080000px;}
.w19{width:165.645000px;}
.w17{width:166.395000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x19{left:8.295000px;}
.x37{left:10.785000px;}
.x4{left:13.305000px;}
.x14{left:14.386500px;}
.x17{left:16.186500px;}
.x28{left:17.265000px;}
.x1c{left:18.346500px;}
.x16{left:19.426500px;}
.x43{left:20.505000px;}
.x33{left:21.960000px;}
.x15{left:26.266500px;}
.x6{left:28.785000px;}
.x2b{left:29.865000px;}
.x2c{left:31.665000px;}
.x24{left:33.480000px;}
.x2e{left:37.845000px;}
.x26{left:39.270000px;}
.x2d{left:42.135000px;}
.xe{left:43.906500px;}
.x2f{left:46.095000px;}
.x1d{left:47.542500px;}
.x29{left:49.305000px;}
.xf{left:50.782500px;}
.x13{left:53.302500px;}
.xd{left:55.102500px;}
.x1f{left:57.262500px;}
.x1a{left:62.295000px;}
.x41{left:63.750000px;}
.x1e{left:66.265500px;}
.x1{left:78.529500px;}
.x12{left:83.905500px;}
.x7{left:86.436000px;}
.x44{left:91.836000px;}
.x11{left:92.905500px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x31{left:108.769500px;}
.x3f{left:118.129500px;}
.x10{left:124.585500px;}
.x22{left:125.689500px;}
.x39{left:139.054500px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.xa{left:208.515000px;}
.x18{left:218.970000px;}
.x32{left:242.385000px;}
.x23{left:274.065000px;}
.x38{left:279.105000px;}
.x3a{left:289.545000px;}
.x30{left:325.950000px;}
.x3e{left:369.510000px;}
.x34{left:371.670000px;}
.x25{left:377.070000px;}
.x3b{left:411.300000px;}
.x40{left:446.220000px;}
.x35{left:485.460000px;}
.x27{left:491.985000px;}
.x3c{left:532.665000px;}
.xb{left:599.655000px;}
.x42{left:609.750000px;}
.x2a{left:627.030000px;}
.x36{left:636.030000px;}
.x3d{left:666.285000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v5{vertical-align:-61.440000pt;}
.v2{vertical-align:-53.866667pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.680000pt;}
.ls3{letter-spacing:-1.536000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:14.494720pt;}
.lsa{letter-spacing:41.374720pt;}
.lsc{letter-spacing:2548.885333pt;}
.wsa{word-spacing:-53.760000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.854933pt;}
.ws8{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.025067pt;}
.ws5{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-7.936000pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-3.118080pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:3.925760pt;}
._b{width:5.094400pt;}
._a{width:6.602240pt;}
._5{width:7.654400pt;}
._6{width:8.545280pt;}
._7{width:9.940480pt;}
._d{width:11.000320pt;}
._10{width:12.004693pt;}
._9{width:15.134720pt;}
._f{width:16.762453pt;}
._14{width:19.445760pt;}
._12{width:20.974080pt;}
._13{width:22.571093pt;}
._11{width:263.483733pt;}
._8{width:1903.113813pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsa{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.588000pt;}
.y40{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y9c{bottom:4.466667pt;}
.y94{bottom:4.480000pt;}
.y5a{bottom:4.773333pt;}
.y9a{bottom:4.786667pt;}
.y96{bottom:4.800000pt;}
.ycb{bottom:4.813333pt;}
.y2{bottom:8.960000pt;}
.y49{bottom:9.630667pt;}
.y56{bottom:14.110667pt;}
.y3f{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.yc3{bottom:20.840000pt;}
.ya5{bottom:21.106667pt;}
.y93{bottom:21.120000pt;}
.yc4{bottom:21.160000pt;}
.ya0{bottom:21.426667pt;}
.ya8{bottom:21.466667pt;}
.yb4{bottom:21.480000pt;}
.y55{bottom:27.870667pt;}
.y3e{bottom:34.240000pt;}
.y48{bottom:35.870667pt;}
.y92{bottom:37.440000pt;}
.yb2{bottom:37.480000pt;}
.yb3{bottom:37.800000pt;}
.y3{bottom:42.560000pt;}
.y54{bottom:43.230667pt;}
.y47{bottom:46.430667pt;}
.y3d{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:57.630667pt;}
.y46{bottom:57.950667pt;}
.y3c{bottom:64.680000pt;}
.y45{bottom:69.790667pt;}
.y52{bottom:71.390667pt;}
.y3b{bottom:80.040000pt;}
.y51{bottom:82.590667pt;}
.yf8{bottom:87.392000pt;}
.y50{bottom:88.350667pt;}
.y58{bottom:88.672000pt;}
.y44{bottom:88.990667pt;}
.y12a{bottom:91.552000pt;}
.y90{bottom:91.872000pt;}
.y3a{bottom:95.400000pt;}
.yc1{bottom:100.832000pt;}
.y4f{bottom:102.430667pt;}
.yf7{bottom:102.752000pt;}
.y129{bottom:106.912000pt;}
.y8f{bottom:107.232000pt;}
.y39{bottom:110.760000pt;}
.y57{bottom:112.352000pt;}
.y4e{bottom:116.190667pt;}
.yf6{bottom:118.112000pt;}
.y128{bottom:122.272000pt;}
.y8e{bottom:122.592000pt;}
.yc0{bottom:124.192000pt;}
.y41{bottom:124.836000pt;}
.y38{bottom:126.120000pt;}
.y4d{bottom:129.977333pt;}
.yf5{bottom:133.506667pt;}
.y127{bottom:137.666667pt;}
.y8d{bottom:137.986667pt;}
.y37{bottom:141.480000pt;}
.y4c{bottom:143.737333pt;}
.y43{bottom:144.377333pt;}
.ybf{bottom:147.586667pt;}
.yf4{bottom:148.866667pt;}
.y126{bottom:152.706667pt;}
.y8c{bottom:153.026667pt;}
.y42{bottom:153.977333pt;}
.y36{bottom:156.840000pt;}
.y4b{bottom:157.177333pt;}
.yf3{bottom:164.226667pt;}
.y8b{bottom:168.386667pt;}
.ybe{bottom:168.400000pt;}
.y35{bottom:172.200000pt;}
.y125{bottom:176.386667pt;}
.yf2{bottom:180.546667pt;}
.y8a{bottom:183.746667pt;}
.ybd{bottom:185.680000pt;}
.y34{bottom:187.266667pt;}
.y124{bottom:191.746667pt;}
.y89{bottom:199.106667pt;}
.ybc{bottom:202.960000pt;}
.yf1{bottom:204.226667pt;}
.y123{bottom:207.106667pt;}
.y33{bottom:210.306667pt;}
.y88{bottom:214.466667pt;}
.yf0{bottom:219.266667pt;}
.ybb{bottom:220.240000pt;}
.y122{bottom:222.466667pt;}
.y32{bottom:224.066667pt;}
.y87{bottom:229.826667pt;}
.yef{bottom:234.626667pt;}
.yba{bottom:237.200000pt;}
.y121{bottom:237.506667pt;}
.y1d{bottom:237.826667pt;}
.y86{bottom:245.533333pt;}
.yee{bottom:250.013333pt;}
.y31{bottom:251.586667pt;}
.y120{bottom:252.893333pt;}
.yb9{bottom:254.493333pt;}
.y1c{bottom:259.266667pt;}
.y85{bottom:260.893333pt;}
.y30{bottom:265.346667pt;}
.yed{bottom:265.373333pt;}
.y11f{bottom:268.253333pt;}
.yb8{bottom:271.773333pt;}
.y84{bottom:276.253333pt;}
.y2f{bottom:279.106667pt;}
.y1b{bottom:280.706667pt;}
.yec{bottom:280.733333pt;}
.y11e{bottom:284.573333pt;}
.yb7{bottom:289.053333pt;}
.y83{bottom:291.613333pt;}
.y2e{bottom:293.213333pt;}
.yeb{bottom:296.093333pt;}
.y1a{bottom:302.173333pt;}
.ye{bottom:305.053333pt;}
.yb6{bottom:306.333333pt;}
.y2d{bottom:306.973333pt;}
.y11d{bottom:308.253333pt;}
.yea{bottom:312.413333pt;}
.y82{bottom:314.973333pt;}
.y2c{bottom:320.733333pt;}
.yb5{bottom:323.293333pt;}
.y19{bottom:323.613333pt;}
.y81{bottom:330.333333pt;}
.y2b{bottom:334.493333pt;}
.ye9{bottom:336.093333pt;}
.y11c{bottom:338.973333pt;}
.yb1{bottom:340.573333pt;}
.y18{bottom:345.053333pt;}
.y80{bottom:345.373333pt;}
.y2a{bottom:348.253333pt;}
.ye8{bottom:351.453333pt;}
.y11b{bottom:354.333333pt;}
.y7f{bottom:360.773333pt;}
.y29{bottom:362.013333pt;}
.y17{bottom:366.493333pt;}
.ye7{bottom:366.533333pt;}
.y11a{bottom:369.733333pt;}
.y28{bottom:375.773333pt;}
.ye6{bottom:381.893333pt;}
.y7e{bottom:384.133333pt;}
.y119{bottom:384.773333pt;}
.y16{bottom:387.933333pt;}
.y27{bottom:389.533333pt;}
.yb0{bottom:394.053333pt;}
.ye5{bottom:397.253333pt;}
.y7d{bottom:399.493333pt;}
.y118{bottom:401.093333pt;}
.y26{bottom:403.613333pt;}
.y15{bottom:409.413333pt;}
.ye4{bottom:412.613333pt;}
.y7c{bottom:414.853333pt;}
.y25{bottom:417.413333pt;}
.y117{bottom:424.773333pt;}
.ye3{bottom:427.973333pt;}
.y7b{bottom:430.213333pt;}
.y14{bottom:430.853333pt;}
.y24{bottom:431.173333pt;}
.yaf{bottom:432.133333pt;}
.y149{bottom:439.493333pt;}
.y116{bottom:440.133333pt;}
.ye2{bottom:444.613333pt;}
.y23{bottom:444.933333pt;}
.yae{bottom:449.413333pt;}
.y13{bottom:452.293333pt;}
.y7a{bottom:453.573333pt;}
.y115{bottom:455.493333pt;}
.y22{bottom:458.693333pt;}
.ye1{bottom:467.973333pt;}
.y79{bottom:468.933333pt;}
.y148{bottom:470.213333pt;}
.y114{bottom:470.853333pt;}
.y21{bottom:472.453333pt;}
.y12{bottom:473.733333pt;}
.yad{bottom:483.040000pt;}
.ye0{bottom:483.360000pt;}
.y78{bottom:484.320000pt;}
.y147{bottom:485.600000pt;}
.y20{bottom:486.213333pt;}
.y113{bottom:486.240000pt;}
.y11{bottom:495.173333pt;}
.ydf{bottom:498.720000pt;}
.y77{bottom:499.680000pt;}
.y1f{bottom:499.973333pt;}
.yac{bottom:500.320000pt;}
.y146{bottom:500.960000pt;}
.y112{bottom:501.600000pt;}
.yde{bottom:513.760000pt;}
.y76{bottom:515.040000pt;}
.y145{bottom:516.320000pt;}
.y10{bottom:516.933333pt;}
.yab{bottom:517.600000pt;}
.y1e{bottom:527.520000pt;}
.ydd{bottom:529.120000pt;}
.y144{bottom:531.680000pt;}
.yaa{bottom:534.880000pt;}
.y75{bottom:538.080000pt;}
.yf{bottom:538.400000pt;}
.y111{bottom:541.280000pt;}
.ydc{bottom:544.480000pt;}
.y143{bottom:547.040000pt;}
.y74{bottom:553.440000pt;}
.y110{bottom:556.640000pt;}
.ydb{bottom:559.840000pt;}
.y142{bottom:562.080000pt;}
.ya9{bottom:568.480000pt;}
.y73{bottom:568.800000pt;}
.y10f{bottom:572.000000pt;}
.yda{bottom:576.160000pt;}
.y141{bottom:577.440000pt;}
.y72{bottom:584.160000pt;}
.ya7{bottom:585.760000pt;}
.y10e{bottom:587.360000pt;}
.y140{bottom:592.800000pt;}
.yd9{bottom:599.866667pt;}
.y10d{bottom:602.746667pt;}
.y71{bottom:607.546667pt;}
.y13f{bottom:608.186667pt;}
.yd8{bottom:615.226667pt;}
.y10c{bottom:619.066667pt;}
.ya6{bottom:619.720000pt;}
.y70{bottom:622.906667pt;}
.y13e{bottom:623.546667pt;}
.yd7{bottom:630.586667pt;}
.ya4{bottom:636.680000pt;}
.y6f{bottom:638.266667pt;}
.y13d{bottom:638.906667pt;}
.y10b{bottom:642.746667pt;}
.yd6{bottom:645.946667pt;}
.y6e{bottom:653.626667pt;}
.y13c{bottom:654.266667pt;}
.y10a{bottom:657.786667pt;}
.yd5{bottom:660.986667pt;}
.y6d{bottom:668.986667pt;}
.y13b{bottom:669.626667pt;}
.y109{bottom:673.146667pt;}
.ya3{bottom:673.786667pt;}
.yd4{bottom:676.346667pt;}
.y6c{bottom:684.026667pt;}
.y13a{bottom:684.986667pt;}
.y108{bottom:688.506667pt;}
.yd3{bottom:691.706667pt;}
.ya2{bottom:694.600000pt;}
.y139{bottom:700.346667pt;}
.y107{bottom:703.866667pt;}
.yd2{bottom:707.066667pt;}
.y6b{bottom:707.706667pt;}
.ya1{bottom:711.920000pt;}
.y138{bottom:715.746667pt;}
.y106{bottom:719.266667pt;}
.y6a{bottom:723.106667pt;}
.yd1{bottom:723.426667pt;}
.y9f{bottom:728.880000pt;}
.y137{bottom:731.106667pt;}
.y105{bottom:735.586667pt;}
.y69{bottom:738.146667pt;}
.yd0{bottom:738.786667pt;}
.y136{bottom:746.146667pt;}
.y68{bottom:753.506667pt;}
.y104{bottom:759.266667pt;}
.ycf{bottom:759.600000pt;}
.y135{bottom:761.506667pt;}
.y9e{bottom:762.800000pt;}
.y67{bottom:768.866667pt;}
.y103{bottom:774.626667pt;}
.y134{bottom:776.866667pt;}
.yce{bottom:776.880000pt;}
.y9d{bottom:780.080000pt;}
.y66{bottom:784.226667pt;}
.y102{bottom:789.986667pt;}
.y133{bottom:792.226667pt;}
.ycd{bottom:793.840000pt;}
.y9b{bottom:797.360000pt;}
.y65{bottom:799.586667pt;}
.y101{bottom:805.026667pt;}
.y132{bottom:807.586667pt;}
.ycc{bottom:811.120000pt;}
.y99{bottom:814.320000pt;}
.y64{bottom:814.946667pt;}
.y100{bottom:820.386667pt;}
.y131{bottom:822.946667pt;}
.yca{bottom:828.400000pt;}
.y63{bottom:830.013333pt;}
.y98{bottom:831.613333pt;}
.yff{bottom:835.773333pt;}
.y130{bottom:838.013333pt;}
.yc9{bottom:845.693333pt;}
.y97{bottom:848.893333pt;}
.yfe{bottom:852.093333pt;}
.y62{bottom:853.693333pt;}
.yd{bottom:854.013333pt;}
.yc{bottom:858.813333pt;}
.y12f{bottom:861.693333pt;}
.yc8{bottom:862.973333pt;}
.y61{bottom:869.053333pt;}
.yb{bottom:874.173333pt;}
.yfd{bottom:875.773333pt;}
.y12e{bottom:877.053333pt;}
.yc7{bottom:879.933333pt;}
.y95{bottom:882.493333pt;}
.y60{bottom:884.413333pt;}
.yfc{bottom:891.133333pt;}
.y12d{bottom:892.413333pt;}
.yc6{bottom:897.213333pt;}
.y5f{bottom:899.453333pt;}
.y91{bottom:899.773333pt;}
.ya{bottom:906.493333pt;}
.y12c{bottom:907.773333pt;}
.yc5{bottom:914.493333pt;}
.yfb{bottom:921.853333pt;}
.y5e{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.yc2{bottom:931.773333pt;}
.yfa{bottom:937.213333pt;}
.y5d{bottom:938.173333pt;}
.yf9{bottom:952.293333pt;}
.y8{bottom:952.933333pt;}
.y5c{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.y5b{bottom:968.613333pt;}
.y12b{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h13{height:5.022500pt;}
.h1a{height:16.306667pt;}
.h17{height:16.626667pt;}
.h19{height:16.640000pt;}
.h14{height:24.640000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.h18{height:32.946667pt;}
.h1e{height:32.960000pt;}
.h1f{height:32.986667pt;}
.h1b{height:33.266667pt;}
.h1d{height:33.312000pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h1c{height:37.537500pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h16{height:49.626667pt;}
.h7{height:51.600000pt;}
.h6{height:52.762500pt;}
.he{height:53.471250pt;}
.h9{height:54.180000pt;}
.h20{height:55.256809pt;}
.h15{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.hf{height:179.560000pt;}
.ha{height:546.706667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:90.906667pt;}
.w2{width:92.180000pt;}
.we{width:100.186667pt;}
.w9{width:101.504000pt;}
.w13{width:107.232000pt;}
.w12{width:107.584000pt;}
.wd{width:114.266667pt;}
.w4{width:117.780000pt;}
.wc{width:117.800000pt;}
.w14{width:118.120000pt;}
.wa{width:119.378667pt;}
.wb{width:125.160000pt;}
.w7{width:131.240000pt;}
.w15{width:132.186667pt;}
.w10{width:132.200000pt;}
.w11{width:133.120000pt;}
.wf{width:133.184000pt;}
.w16{width:142.440000pt;}
.w18{width:144.386667pt;}
.w6{width:144.960000pt;}
.w19{width:147.240000pt;}
.w17{width:147.906667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x19{left:7.373333pt;}
.x37{left:9.586667pt;}
.x4{left:11.826667pt;}
.x14{left:12.788000pt;}
.x17{left:14.388000pt;}
.x28{left:15.346667pt;}
.x1c{left:16.308000pt;}
.x16{left:17.268000pt;}
.x43{left:18.226667pt;}
.x33{left:19.520000pt;}
.x15{left:23.348000pt;}
.x6{left:25.586667pt;}
.x2b{left:26.546667pt;}
.x2c{left:28.146667pt;}
.x24{left:29.760000pt;}
.x2e{left:33.640000pt;}
.x26{left:34.906667pt;}
.x2d{left:37.453333pt;}
.xe{left:39.028000pt;}
.x2f{left:40.973333pt;}
.x1d{left:42.260000pt;}
.x29{left:43.826667pt;}
.xf{left:45.140000pt;}
.x13{left:47.380000pt;}
.xd{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x41{left:56.666667pt;}
.x1e{left:58.902667pt;}
.x1{left:69.804000pt;}
.x12{left:74.582667pt;}
.x7{left:76.832000pt;}
.x44{left:81.632000pt;}
.x11{left:82.582667pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x31{left:96.684000pt;}
.x3f{left:105.004000pt;}
.x10{left:110.742667pt;}
.x22{left:111.724000pt;}
.x39{left:123.604000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.xa{left:185.346667pt;}
.x18{left:194.640000pt;}
.x32{left:215.453333pt;}
.x23{left:243.613333pt;}
.x38{left:248.093333pt;}
.x3a{left:257.373333pt;}
.x30{left:289.733333pt;}
.x3e{left:328.453333pt;}
.x34{left:330.373333pt;}
.x25{left:335.173333pt;}
.x3b{left:365.600000pt;}
.x40{left:396.640000pt;}
.x35{left:431.520000pt;}
.x27{left:437.320000pt;}
.x3c{left:473.480000pt;}
.xb{left:533.026667pt;}
.x42{left:542.000000pt;}
.x2a{left:557.360000pt;}
.x36{left:565.360000pt;}
.x3d{left:592.253333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xc{left:717.413333pt;}
}




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