
    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_2e15a5ffadff7fc34f31c610.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b54b7a24dc075c08e2699c0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.760143;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_a74641c7a9ee80c1c95dc7c0.woff2')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_63619bf595c92080dcb24fdc.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_daea897852ef991a152de006.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_42e1c16230f4c133a1c0de6e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d01a45393743619cbc79eba0.woff2')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_29d716445a9714b51ec2cc66.woff2')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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.596160px;}
.lsa{letter-spacing:-0.336960px;}
.ls7{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.264960px;}
.ls26{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.084240px;}
.lsb{letter-spacing:-0.077760px;}
.lse{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.179280px;}
.lsf{letter-spacing:0.331200px;}
.ls1f{letter-spacing:0.336960px;}
.ls17{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.395280px;}
.ls20{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.777600px;}
.ls1d{letter-spacing:1.440000px;}
.ls22{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.880000px;}
.ls18{letter-spacing:3.600000px;}
.ls1e{letter-spacing:5.040000px;}
.ls23{letter-spacing:7.920000px;}
.ls19{letter-spacing:8.640000px;}
.ls12{letter-spacing:10.800000px;}
.ls28{letter-spacing:23.760000px;}
.ls13{letter-spacing:67.680000px;}
.ls14{letter-spacing:70.755840px;}
.ls2{letter-spacing:846.000000px;}
.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;}
}
.ws43{word-spacing:-23.755680px;}
.ws49{word-spacing:-23.418720px;}
.ws2{word-spacing:-21.539520px;}
.ws1{word-spacing:-20.554560px;}
.ws5{word-spacing:-18.144000px;}
.ws33{word-spacing:-18.072000px;}
.ws36{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws4d{word-spacing:-17.280000px;}
.ws3{word-spacing:-15.963840px;}
.ws3f{word-spacing:-14.700960px;}
.ws0{word-spacing:-12.204000px;}
.wsd{word-spacing:-0.777600px;}
.ws3c{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.504000px;}
.ws3d{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.331200px;}
.wse{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.192960px;}
.wsf{word-spacing:-0.179280px;}
.ws2b{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.132480px;}
.ws30{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws24{word-spacing:0.059760px;}
.ws4a{word-spacing:0.179280px;}
.ws46{word-spacing:0.216000px;}
.ws7{word-spacing:0.264960px;}
.wsa{word-spacing:0.270000px;}
.ws16{word-spacing:0.288000px;}
.ws23{word-spacing:0.298800px;}
.ws9{word-spacing:0.324000px;}
.wsb{word-spacing:0.421200px;}
.ws47{word-spacing:0.648000px;}
.wsc{word-spacing:0.673920px;}
.ws15{word-spacing:0.720000px;}
.ws1c{word-spacing:1.008000px;}
.ws4b{word-spacing:1.254960px;}
.ws3b{word-spacing:1.296000px;}
.ws1e{word-spacing:1.440000px;}
.ws1b{word-spacing:1.728000px;}
.ws26{word-spacing:2.016000px;}
.ws19{word-spacing:2.160000px;}
.ws1a{word-spacing:2.448000px;}
.ws13{word-spacing:2.736000px;}
.ws14{word-spacing:2.880000px;}
.ws38{word-spacing:3.168000px;}
.ws4c{word-spacing:3.456000px;}
.ws1d{word-spacing:3.600000px;}
.ws2e{word-spacing:3.888000px;}
.ws21{word-spacing:4.320000px;}
.ws34{word-spacing:4.608000px;}
.ws3e{word-spacing:4.840560px;}
.ws2c{word-spacing:4.896000px;}
.ws2d{word-spacing:5.040000px;}
.ws22{word-spacing:5.328000px;}
.ws42{word-spacing:5.616000px;}
.ws17{word-spacing:5.760000px;}
.ws27{word-spacing:6.048000px;}
.ws45{word-spacing:6.336000px;}
.ws2f{word-spacing:6.480000px;}
.ws12{word-spacing:6.768000px;}
.ws2a{word-spacing:7.200000px;}
.ws41{word-spacing:7.488000px;}
.ws28{word-spacing:7.920000px;}
.ws40{word-spacing:8.064000px;}
.ws29{word-spacing:8.208000px;}
.ws25{word-spacing:8.640000px;}
.ws31{word-spacing:8.928000px;}
.ws48{word-spacing:9.360000px;}
.ws39{word-spacing:10.368000px;}
.ws37{word-spacing:10.656000px;}
.ws1f{word-spacing:10.800000px;}
.ws20{word-spacing:11.088000px;}
.ws32{word-spacing:11.520000px;}
.ws3a{word-spacing:12.240000px;}
.ws18{word-spacing:12.960000px;}
.ws44{word-spacing:13.680000px;}
.ws4f{word-spacing:23.760000px;}
.ws4e{word-spacing:24.048000px;}
._10{margin-left:-23.194800px;}
._4{margin-left:-2.719440px;}
._2{margin-left:-1.080000px;}
._3{width:1.253520px;}
._9{width:2.359440px;}
._1{width:30.294000px;}
._7{width:62.938800px;}
._5{width:194.400000px;}
._8{width:198.164160px;}
._0{width:753.138000px;}
._f{width:889.945920px;}
._a{width:919.440000px;}
._d{width:1118.880000px;}
._e{width:1126.080000px;}
._6{width:1481.760000px;}
._b{width:1584.000000px;}
._c{width:1844.640000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(128,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,204,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:12.240000px;}
.y6{bottom:16.560000px;}
.yba{bottom:18.900000px;}
.y4{bottom:80.280000px;}
.y5{bottom:80.820000px;}
.y3{bottom:113.040000px;}
.yaa{bottom:135.900000px;}
.y106{bottom:140.400000px;}
.y5e{bottom:145.080000px;}
.ybd{bottom:145.980180px;}
.y120{bottom:154.800000px;}
.y44{bottom:157.320000px;}
.ya9{bottom:168.660000px;}
.y5d{bottom:171.180000px;}
.y105{bottom:173.520000px;}
.ybc{bottom:174.784500px;}
.y11f{bottom:178.740000px;}
.y43{bottom:181.260000px;}
.y7d{bottom:183.060000px;}
.ybb{bottom:194.580000px;}
.ya8{bottom:201.600000px;}
.y8c{bottom:204.480000px;}
.y104{bottom:206.460000px;}
.y7c{bottom:207.000000px;}
.yb8{bottom:208.620000px;}
.y11e{bottom:211.500000px;}
.y42{bottom:214.020000px;}
.ya7{bottom:225.360000px;}
.y103{bottom:230.220000px;}
.y8b{bottom:230.580000px;}
.y11d{bottom:235.260000px;}
.yc9{bottom:237.240000px;}
.y41{bottom:237.780000px;}
.y7b{bottom:239.760000px;}
.y25{bottom:245.880000px;}
.yea{bottom:248.040000px;}
.ya6{bottom:249.120000px;}
.y102{bottom:253.980000px;}
.y11c{bottom:259.020000px;}
.y40{bottom:261.540000px;}
.y7a{bottom:263.520000px;}
.yc8{bottom:271.445220px;}
.ya5{bottom:272.880000px;}
.y101{bottom:277.740000px;}
.ye9{bottom:280.800000px;}
.y24{bottom:281.340000px;}
.y11b{bottom:282.960000px;}
.yc7{bottom:291.420000px;}
.y3f{bottom:294.300000px;}
.y79{bottom:296.280000px;}
.y100{bottom:301.680000px;}
.ye8{bottom:304.560000px;}
.ya4{bottom:305.820000px;}
.y23{bottom:314.100000px;}
.y11a{bottom:315.720000px;}
.yc6{bottom:317.520000px;}
.y3e{bottom:318.240000px;}
.y78{bottom:320.220000px;}
.ya3{bottom:329.580000px;}
.yff{bottom:331.920000px;}
.ye7{bottom:337.500000px;}
.y119{bottom:339.480000px;}
.y3d{bottom:342.000000px;}
.y77{bottom:343.980000px;}
.y22{bottom:347.400000px;}
.ya2{bottom:353.340000px;}
.y118{bottom:363.240000px;}
.y3c{bottom:365.760000px;}
.y76{bottom:367.740000px;}
.ye6{bottom:370.260000px;}
.ya1{bottom:377.100000px;}
.yfe{bottom:379.620000px;}
.y21{bottom:380.160000px;}
.y3b{bottom:389.520000px;}
.ye5{bottom:394.020000px;}
.y117{bottom:396.180000px;}
.y75{bottom:400.500000px;}
.yfd{bottom:403.380000px;}
.y20{bottom:403.920000px;}
.ya0{bottom:409.860000px;}
.y3a{bottom:413.460000px;}
.ye4{bottom:417.780000px;}
.y116{bottom:419.940000px;}
.y74{bottom:424.440000px;}
.yfc{bottom:427.140000px;}
.y1f{bottom:427.680000px;}
.y9f{bottom:433.800000px;}
.y39{bottom:437.220000px;}
.ye3{bottom:441.720000px;}
.y115{bottom:443.700000px;}
.y73{bottom:448.200000px;}
.y1e{bottom:451.440000px;}
.y9e{bottom:457.560000px;}
.yfb{bottom:459.900000px;}
.y38{bottom:460.980000px;}
.ye2{bottom:465.480000px;}
.y1d{bottom:475.380000px;}
.y114{bottom:476.460000px;}
.y72{bottom:480.960000px;}
.y9d{bottom:481.320000px;}
.yfa{bottom:483.840000px;}
.y37{bottom:484.740000px;}
.ye1{bottom:489.240000px;}
.yb7{bottom:491.400000px;}
.y71{bottom:504.720000px;}
.y9c{bottom:505.080000px;}
.yf9{bottom:507.600000px;}
.y1c{bottom:507.780000px;}
.y113{bottom:509.400000px;}
.ye0{bottom:513.000000px;}
.y36{bottom:516.064500px;}
.y5c{bottom:522.720000px;}
.yb6{bottom:524.340000px;}
.y70{bottom:528.480000px;}
.yf8{bottom:531.360000px;}
.y112{bottom:533.160000px;}
.y35{bottom:535.860000px;}
.ydf{bottom:536.940000px;}
.y9b{bottom:538.020000px;}
.y1b{bottom:540.540000px;}
.y5b{bottom:546.480000px;}
.yb5{bottom:548.100000px;}
.y6f{bottom:552.420000px;}
.yf7{bottom:555.120000px;}
.y111{bottom:556.920000px;}
.yde{bottom:560.700000px;}
.y9a{bottom:561.780000px;}
.y34{bottom:561.960000px;}
.yb4{bottom:571.860000px;}
.y1a{bottom:573.660000px;}
.yf6{bottom:579.060000px;}
.y5a{bottom:579.420000px;}
.y110{bottom:580.680000px;}
.ydd{bottom:584.460000px;}
.y6e{bottom:585.180000px;}
.y99{bottom:585.540000px;}
.yb3{bottom:595.620000px;}
.y8a{bottom:597.600000px;}
.yf5{bottom:602.820000px;}
.y59{bottom:603.180000px;}
.y19{bottom:606.600000px;}
.y6d{bottom:608.940000px;}
.y98{bottom:609.300000px;}
.y10f{bottom:613.620000px;}
.y12b{bottom:615.960000px;}
.ydc{bottom:617.220000px;}
.y89{bottom:621.360000px;}
.yf4{bottom:626.580000px;}
.y58{bottom:626.940000px;}
.yb2{bottom:628.380000px;}
.y6c{bottom:632.700000px;}
.y97{bottom:633.240000px;}
.y10e{bottom:637.380000px;}
.y18{bottom:639.360000px;}
.ydb{bottom:641.160000px;}
.y12a{bottom:646.020000px;}
.y57{bottom:650.700000px;}
.yb1{bottom:652.320000px;}
.y88{bottom:654.120000px;}
.y96{bottom:657.000000px;}
.yf3{bottom:659.340000px;}
.y17{bottom:663.120000px;}
.yda{bottom:664.920000px;}
.y6b{bottom:665.640000px;}
.y10d{bottom:670.140000px;}
.y56{bottom:674.640000px;}
.yb0{bottom:676.080000px;}
.yc5{bottom:677.520000px;}
.y87{bottom:677.880000px;}
.y95{bottom:680.760000px;}
.yf2{bottom:683.280000px;}
.y16{bottom:686.880000px;}
.yd9{bottom:688.680000px;}
.y6a{bottom:689.400000px;}
.y10c{bottom:693.900000px;}
.y55{bottom:698.400000px;}
.yaf{bottom:699.840000px;}
.y86{bottom:701.640000px;}
.y94{bottom:704.520000px;}
.yf1{bottom:707.040000px;}
.yc4{bottom:710.460000px;}
.y15{bottom:710.820000px;}
.yd8{bottom:712.440000px;}
.y69{bottom:713.160000px;}
.yae{bottom:723.600000px;}
.y10b{bottom:724.140000px;}
.y129{bottom:725.580000px;}
.y93{bottom:728.460000px;}
.yf0{bottom:730.800000px;}
.y54{bottom:731.160000px;}
.y14{bottom:734.580000px;}
.yd7{bottom:736.380000px;}
.y68{bottom:736.920000px;}
.yc3{bottom:743.220000px;}
.yad{bottom:747.540000px;}
.y128{bottom:749.340000px;}
.y92{bottom:752.220000px;}
.yef{bottom:754.560000px;}
.y53{bottom:754.920000px;}
.y85{bottom:758.340000px;}
.yd6{bottom:760.140000px;}
.y13{bottom:766.980000px;}
.y67{bottom:769.860000px;}
.y10a{bottom:771.479850px;}
.y91{bottom:775.980000px;}
.yee{bottom:778.500000px;}
.yac{bottom:778.680000px;}
.y52{bottom:778.860000px;}
.y127{bottom:782.100000px;}
.y33{bottom:790.740000px;}
.y84{bottom:791.100000px;}
.yd5{bottom:792.900000px;}
.y66{bottom:793.620000px;}
.y90{bottom:799.740000px;}
.y12{bottom:800.100000px;}
.y51{bottom:802.620000px;}
.y109{bottom:802.982880px;}
.yab{bottom:804.780000px;}
.y126{bottom:805.860000px;}
.yed{bottom:809.635500px;}
.yc2{bottom:814.680000px;}
.y83{bottom:814.860000px;}
.yd4{bottom:816.660000px;}
.y65{bottom:817.380000px;}
.y108{bottom:822.957660px;}
.y32{bottom:823.680000px;}
.y50{bottom:826.380000px;}
.y11{bottom:833.040000px;}
.yec{bottom:838.439820px;}
.yc1{bottom:838.440000px;}
.y82{bottom:838.800000px;}
.yd3{bottom:840.420000px;}
.y64{bottom:841.140000px;}
.y31{bottom:847.440000px;}
.y107{bottom:848.520000px;}
.y4f{bottom:850.140000px;}
.yc0{bottom:862.200000px;}
.y10{bottom:862.385040px;}
.y125{bottom:862.560000px;}
.yd2{bottom:864.360000px;}
.yeb{bottom:864.540000px;}
.y30{bottom:871.200000px;}
.y63{bottom:871.380000px;}
.y81{bottom:871.560000px;}
.y4e{bottom:880.380000px;}
.yf{bottom:881.280000px;}
.ybf{bottom:885.960000px;}
.y124{bottom:886.320000px;}
.yd1{bottom:888.120000px;}
.y2f{bottom:894.960000px;}
.y80{bottom:895.320000px;}
.ybe{bottom:909.720000px;}
.ye{bottom:912.780000px;}
.y2e{bottom:918.720000px;}
.y62{bottom:919.080000px;}
.yd0{bottom:920.880000px;}
.y4d{bottom:928.080000px;}
.yd{bottom:934.920000px;}
.y2d{bottom:942.660000px;}
.y61{bottom:943.020000px;}
.ycf{bottom:944.640000px;}
.y4c{bottom:952.020000px;}
.yc{bottom:957.060000px;}
.y2c{bottom:966.420000px;}
.y123{bottom:966.780000px;}
.yce{bottom:968.580000px;}
.y4b{bottom:975.780000px;}
.y2b{bottom:990.180000px;}
.y122{bottom:990.540000px;}
.y8f{bottom:999.180000px;}
.y60{bottom:999.540000px;}
.yb{bottom:1000.267920px;}
.ycd{bottom:1001.340000px;}
.y4a{bottom:1008.540000px;}
.y2a{bottom:1013.940000px;}
.y121{bottom:1014.300000px;}
.ya{bottom:1022.760000px;}
.y8e{bottom:1022.940000px;}
.y5f{bottom:1023.300000px;}
.ycc{bottom:1025.100000px;}
.y49{bottom:1032.300000px;}
.y29{bottom:1037.880000px;}
.y8d{bottom:1046.880000px;}
.y7f{bottom:1047.240000px;}
.ycb{bottom:1055.163060px;}
.y48{bottom:1056.240000px;}
.y28{bottom:1070.640000px;}
.y7e{bottom:1071.000000px;}
.y9{bottom:1072.446300px;}
.yca{bottom:1079.466300px;}
.y47{bottom:1080.000000px;}
.y27{bottom:1094.400000px;}
.y8{bottom:1096.560000px;}
.y46{bottom:1103.760000px;}
.y26{bottom:1124.640000px;}
.y45{bottom:1127.520000px;}
.y7{bottom:1128.960000px;}
.y2{bottom:1148.580000px;}
.y1{bottom:1199.520000px;}
.h5{height:32.940000px;}
.h3{height:47.545312px;}
.h10{height:58.621992px;}
.hc{height:60.226875px;}
.ha{height:63.763920px;}
.h6{height:65.010937px;}
.hf{height:67.837500px;}
.hd{height:70.628906px;}
.h4{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:76.824000px;}
.h8{height:81.101250px;}
.h7{height:87.859687px;}
.h2{height:92.232000px;}
.he{height:266.401500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w3{width:341.820000px;}
.w4{width:375.840000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:119.520000px;}
.x1{left:127.620000px;}
.x6{left:152.100000px;}
.x13{left:170.100000px;}
.x4{left:175.500000px;}
.xd{left:212.580000px;}
.x14{left:234.000000px;}
.x5{left:274.671540px;}
.x10{left:369.720000px;}
.x12{left:407.520000px;}
.x7{left:415.259280px;}
.x11{left:461.340000px;}
.x3{left:466.740000px;}
.x2{left:478.260000px;}
.xb{left:505.620000px;}
.x8{left:525.420000px;}
.xc{left:583.369200px;}
.xe{left:588.960000px;}
.x9{left:642.420000px;}
.xa{left:829.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.529920pt;}
.lsa{letter-spacing:-0.299520pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.235520pt;}
.ls26{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.074880pt;}
.lsb{letter-spacing:-0.069120pt;}
.lse{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.159360pt;}
.lsf{letter-spacing:0.294400pt;}
.ls1f{letter-spacing:0.299520pt;}
.ls17{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.351360pt;}
.ls20{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.691200pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls23{letter-spacing:7.040000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls28{letter-spacing:21.120000pt;}
.ls13{letter-spacing:60.160000pt;}
.ls14{letter-spacing:62.894080pt;}
.ls2{letter-spacing:752.000000pt;}
.ws43{word-spacing:-21.116160pt;}
.ws49{word-spacing:-20.816640pt;}
.ws2{word-spacing:-19.146240pt;}
.ws1{word-spacing:-18.270720pt;}
.ws5{word-spacing:-16.128000pt;}
.ws33{word-spacing:-16.064000pt;}
.ws36{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws4d{word-spacing:-15.360000pt;}
.ws3{word-spacing:-14.190080pt;}
.ws3f{word-spacing:-13.067520pt;}
.ws0{word-spacing:-10.848000pt;}
.wsd{word-spacing:-0.691200pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.448000pt;}
.ws3d{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.294400pt;}
.wse{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.171520pt;}
.wsf{word-spacing:-0.159360pt;}
.ws2b{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.117760pt;}
.ws30{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053120pt;}
.ws4a{word-spacing:0.159360pt;}
.ws46{word-spacing:0.192000pt;}
.ws7{word-spacing:0.235520pt;}
.wsa{word-spacing:0.240000pt;}
.ws16{word-spacing:0.256000pt;}
.ws23{word-spacing:0.265600pt;}
.ws9{word-spacing:0.288000pt;}
.wsb{word-spacing:0.374400pt;}
.ws47{word-spacing:0.576000pt;}
.wsc{word-spacing:0.599040pt;}
.ws15{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.896000pt;}
.ws4b{word-spacing:1.115520pt;}
.ws3b{word-spacing:1.152000pt;}
.ws1e{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.536000pt;}
.ws26{word-spacing:1.792000pt;}
.ws19{word-spacing:1.920000pt;}
.ws1a{word-spacing:2.176000pt;}
.ws13{word-spacing:2.432000pt;}
.ws14{word-spacing:2.560000pt;}
.ws38{word-spacing:2.816000pt;}
.ws4c{word-spacing:3.072000pt;}
.ws1d{word-spacing:3.200000pt;}
.ws2e{word-spacing:3.456000pt;}
.ws21{word-spacing:3.840000pt;}
.ws34{word-spacing:4.096000pt;}
.ws3e{word-spacing:4.302720pt;}
.ws2c{word-spacing:4.352000pt;}
.ws2d{word-spacing:4.480000pt;}
.ws22{word-spacing:4.736000pt;}
.ws42{word-spacing:4.992000pt;}
.ws17{word-spacing:5.120000pt;}
.ws27{word-spacing:5.376000pt;}
.ws45{word-spacing:5.632000pt;}
.ws2f{word-spacing:5.760000pt;}
.ws12{word-spacing:6.016000pt;}
.ws2a{word-spacing:6.400000pt;}
.ws41{word-spacing:6.656000pt;}
.ws28{word-spacing:7.040000pt;}
.ws40{word-spacing:7.168000pt;}
.ws29{word-spacing:7.296000pt;}
.ws25{word-spacing:7.680000pt;}
.ws31{word-spacing:7.936000pt;}
.ws48{word-spacing:8.320000pt;}
.ws39{word-spacing:9.216000pt;}
.ws37{word-spacing:9.472000pt;}
.ws1f{word-spacing:9.600000pt;}
.ws20{word-spacing:9.856000pt;}
.ws32{word-spacing:10.240000pt;}
.ws3a{word-spacing:10.880000pt;}
.ws18{word-spacing:11.520000pt;}
.ws44{word-spacing:12.160000pt;}
.ws4f{word-spacing:21.120000pt;}
.ws4e{word-spacing:21.376000pt;}
._10{margin-left:-20.617600pt;}
._4{margin-left:-2.417280pt;}
._2{margin-left:-0.960000pt;}
._3{width:1.114240pt;}
._9{width:2.097280pt;}
._1{width:26.928000pt;}
._7{width:55.945600pt;}
._5{width:172.800000pt;}
._8{width:176.145920pt;}
._0{width:669.456000pt;}
._f{width:791.063040pt;}
._a{width:817.280000pt;}
._d{width:994.560000pt;}
._e{width:1000.960000pt;}
._6{width:1317.120000pt;}
._b{width:1408.000000pt;}
._c{width:1639.680000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:10.880000pt;}
.y6{bottom:14.720000pt;}
.yba{bottom:16.800000pt;}
.y4{bottom:71.360000pt;}
.y5{bottom:71.840000pt;}
.y3{bottom:100.480000pt;}
.yaa{bottom:120.800000pt;}
.y106{bottom:124.800000pt;}
.y5e{bottom:128.960000pt;}
.ybd{bottom:129.760160pt;}
.y120{bottom:137.600000pt;}
.y44{bottom:139.840000pt;}
.ya9{bottom:149.920000pt;}
.y5d{bottom:152.160000pt;}
.y105{bottom:154.240000pt;}
.ybc{bottom:155.364000pt;}
.y11f{bottom:158.880000pt;}
.y43{bottom:161.120000pt;}
.y7d{bottom:162.720000pt;}
.ybb{bottom:172.960000pt;}
.ya8{bottom:179.200000pt;}
.y8c{bottom:181.760000pt;}
.y104{bottom:183.520000pt;}
.y7c{bottom:184.000000pt;}
.yb8{bottom:185.440000pt;}
.y11e{bottom:188.000000pt;}
.y42{bottom:190.240000pt;}
.ya7{bottom:200.320000pt;}
.y103{bottom:204.640000pt;}
.y8b{bottom:204.960000pt;}
.y11d{bottom:209.120000pt;}
.yc9{bottom:210.880000pt;}
.y41{bottom:211.360000pt;}
.y7b{bottom:213.120000pt;}
.y25{bottom:218.560000pt;}
.yea{bottom:220.480000pt;}
.ya6{bottom:221.440000pt;}
.y102{bottom:225.760000pt;}
.y11c{bottom:230.240000pt;}
.y40{bottom:232.480000pt;}
.y7a{bottom:234.240000pt;}
.yc8{bottom:241.284640pt;}
.ya5{bottom:242.560000pt;}
.y101{bottom:246.880000pt;}
.ye9{bottom:249.600000pt;}
.y24{bottom:250.080000pt;}
.y11b{bottom:251.520000pt;}
.yc7{bottom:259.040000pt;}
.y3f{bottom:261.600000pt;}
.y79{bottom:263.360000pt;}
.y100{bottom:268.160000pt;}
.ye8{bottom:270.720000pt;}
.ya4{bottom:271.840000pt;}
.y23{bottom:279.200000pt;}
.y11a{bottom:280.640000pt;}
.yc6{bottom:282.240000pt;}
.y3e{bottom:282.880000pt;}
.y78{bottom:284.640000pt;}
.ya3{bottom:292.960000pt;}
.yff{bottom:295.040000pt;}
.ye7{bottom:300.000000pt;}
.y119{bottom:301.760000pt;}
.y3d{bottom:304.000000pt;}
.y77{bottom:305.760000pt;}
.y22{bottom:308.800000pt;}
.ya2{bottom:314.080000pt;}
.y118{bottom:322.880000pt;}
.y3c{bottom:325.120000pt;}
.y76{bottom:326.880000pt;}
.ye6{bottom:329.120000pt;}
.ya1{bottom:335.200000pt;}
.yfe{bottom:337.440000pt;}
.y21{bottom:337.920000pt;}
.y3b{bottom:346.240000pt;}
.ye5{bottom:350.240000pt;}
.y117{bottom:352.160000pt;}
.y75{bottom:356.000000pt;}
.yfd{bottom:358.560000pt;}
.y20{bottom:359.040000pt;}
.ya0{bottom:364.320000pt;}
.y3a{bottom:367.520000pt;}
.ye4{bottom:371.360000pt;}
.y116{bottom:373.280000pt;}
.y74{bottom:377.280000pt;}
.yfc{bottom:379.680000pt;}
.y1f{bottom:380.160000pt;}
.y9f{bottom:385.600000pt;}
.y39{bottom:388.640000pt;}
.ye3{bottom:392.640000pt;}
.y115{bottom:394.400000pt;}
.y73{bottom:398.400000pt;}
.y1e{bottom:401.280000pt;}
.y9e{bottom:406.720000pt;}
.yfb{bottom:408.800000pt;}
.y38{bottom:409.760000pt;}
.ye2{bottom:413.760000pt;}
.y1d{bottom:422.560000pt;}
.y114{bottom:423.520000pt;}
.y72{bottom:427.520000pt;}
.y9d{bottom:427.840000pt;}
.yfa{bottom:430.080000pt;}
.y37{bottom:430.880000pt;}
.ye1{bottom:434.880000pt;}
.yb7{bottom:436.800000pt;}
.y71{bottom:448.640000pt;}
.y9c{bottom:448.960000pt;}
.yf9{bottom:451.200000pt;}
.y1c{bottom:451.360000pt;}
.y113{bottom:452.800000pt;}
.ye0{bottom:456.000000pt;}
.y36{bottom:458.724000pt;}
.y5c{bottom:464.640000pt;}
.yb6{bottom:466.080000pt;}
.y70{bottom:469.760000pt;}
.yf8{bottom:472.320000pt;}
.y112{bottom:473.920000pt;}
.y35{bottom:476.320000pt;}
.ydf{bottom:477.280000pt;}
.y9b{bottom:478.240000pt;}
.y1b{bottom:480.480000pt;}
.y5b{bottom:485.760000pt;}
.yb5{bottom:487.200000pt;}
.y6f{bottom:491.040000pt;}
.yf7{bottom:493.440000pt;}
.y111{bottom:495.040000pt;}
.yde{bottom:498.400000pt;}
.y9a{bottom:499.360000pt;}
.y34{bottom:499.520000pt;}
.yb4{bottom:508.320000pt;}
.y1a{bottom:509.920000pt;}
.yf6{bottom:514.720000pt;}
.y5a{bottom:515.040000pt;}
.y110{bottom:516.160000pt;}
.ydd{bottom:519.520000pt;}
.y6e{bottom:520.160000pt;}
.y99{bottom:520.480000pt;}
.yb3{bottom:529.440000pt;}
.y8a{bottom:531.200000pt;}
.yf5{bottom:535.840000pt;}
.y59{bottom:536.160000pt;}
.y19{bottom:539.200000pt;}
.y6d{bottom:541.280000pt;}
.y98{bottom:541.600000pt;}
.y10f{bottom:545.440000pt;}
.y12b{bottom:547.520000pt;}
.ydc{bottom:548.640000pt;}
.y89{bottom:552.320000pt;}
.yf4{bottom:556.960000pt;}
.y58{bottom:557.280000pt;}
.yb2{bottom:558.560000pt;}
.y6c{bottom:562.400000pt;}
.y97{bottom:562.880000pt;}
.y10e{bottom:566.560000pt;}
.y18{bottom:568.320000pt;}
.ydb{bottom:569.920000pt;}
.y12a{bottom:574.240000pt;}
.y57{bottom:578.400000pt;}
.yb1{bottom:579.840000pt;}
.y88{bottom:581.440000pt;}
.y96{bottom:584.000000pt;}
.yf3{bottom:586.080000pt;}
.y17{bottom:589.440000pt;}
.yda{bottom:591.040000pt;}
.y6b{bottom:591.680000pt;}
.y10d{bottom:595.680000pt;}
.y56{bottom:599.680000pt;}
.yb0{bottom:600.960000pt;}
.yc5{bottom:602.240000pt;}
.y87{bottom:602.560000pt;}
.y95{bottom:605.120000pt;}
.yf2{bottom:607.360000pt;}
.y16{bottom:610.560000pt;}
.yd9{bottom:612.160000pt;}
.y6a{bottom:612.800000pt;}
.y10c{bottom:616.800000pt;}
.y55{bottom:620.800000pt;}
.yaf{bottom:622.080000pt;}
.y86{bottom:623.680000pt;}
.y94{bottom:626.240000pt;}
.yf1{bottom:628.480000pt;}
.yc4{bottom:631.520000pt;}
.y15{bottom:631.840000pt;}
.yd8{bottom:633.280000pt;}
.y69{bottom:633.920000pt;}
.yae{bottom:643.200000pt;}
.y10b{bottom:643.680000pt;}
.y129{bottom:644.960000pt;}
.y93{bottom:647.520000pt;}
.yf0{bottom:649.600000pt;}
.y54{bottom:649.920000pt;}
.y14{bottom:652.960000pt;}
.yd7{bottom:654.560000pt;}
.y68{bottom:655.040000pt;}
.yc3{bottom:660.640000pt;}
.yad{bottom:664.480000pt;}
.y128{bottom:666.080000pt;}
.y92{bottom:668.640000pt;}
.yef{bottom:670.720000pt;}
.y53{bottom:671.040000pt;}
.y85{bottom:674.080000pt;}
.yd6{bottom:675.680000pt;}
.y13{bottom:681.760000pt;}
.y67{bottom:684.320000pt;}
.y10a{bottom:685.759867pt;}
.y91{bottom:689.760000pt;}
.yee{bottom:692.000000pt;}
.yac{bottom:692.160000pt;}
.y52{bottom:692.320000pt;}
.y127{bottom:695.200000pt;}
.y33{bottom:702.880000pt;}
.y84{bottom:703.200000pt;}
.yd5{bottom:704.800000pt;}
.y66{bottom:705.440000pt;}
.y90{bottom:710.880000pt;}
.y12{bottom:711.200000pt;}
.y51{bottom:713.440000pt;}
.y109{bottom:713.762560pt;}
.yab{bottom:715.360000pt;}
.y126{bottom:716.320000pt;}
.yed{bottom:719.676000pt;}
.yc2{bottom:724.160000pt;}
.y83{bottom:724.320000pt;}
.yd4{bottom:725.920000pt;}
.y65{bottom:726.560000pt;}
.y108{bottom:731.517920pt;}
.y32{bottom:732.160000pt;}
.y50{bottom:734.560000pt;}
.y11{bottom:740.480000pt;}
.yec{bottom:745.279840pt;}
.yc1{bottom:745.280000pt;}
.y82{bottom:745.600000pt;}
.yd3{bottom:747.040000pt;}
.y64{bottom:747.680000pt;}
.y31{bottom:753.280000pt;}
.y107{bottom:754.240000pt;}
.y4f{bottom:755.680000pt;}
.yc0{bottom:766.400000pt;}
.y10{bottom:766.564480pt;}
.y125{bottom:766.720000pt;}
.yd2{bottom:768.320000pt;}
.yeb{bottom:768.480000pt;}
.y30{bottom:774.400000pt;}
.y63{bottom:774.560000pt;}
.y81{bottom:774.720000pt;}
.y4e{bottom:782.560000pt;}
.yf{bottom:783.360000pt;}
.ybf{bottom:787.520000pt;}
.y124{bottom:787.840000pt;}
.yd1{bottom:789.440000pt;}
.y2f{bottom:795.520000pt;}
.y80{bottom:795.840000pt;}
.ybe{bottom:808.640000pt;}
.ye{bottom:811.360000pt;}
.y2e{bottom:816.640000pt;}
.y62{bottom:816.960000pt;}
.yd0{bottom:818.560000pt;}
.y4d{bottom:824.960000pt;}
.yd{bottom:831.040000pt;}
.y2d{bottom:837.920000pt;}
.y61{bottom:838.240000pt;}
.ycf{bottom:839.680000pt;}
.y4c{bottom:846.240000pt;}
.yc{bottom:850.720000pt;}
.y2c{bottom:859.040000pt;}
.y123{bottom:859.360000pt;}
.yce{bottom:860.960000pt;}
.y4b{bottom:867.360000pt;}
.y2b{bottom:880.160000pt;}
.y122{bottom:880.480000pt;}
.y8f{bottom:888.160000pt;}
.y60{bottom:888.480000pt;}
.yb{bottom:889.127040pt;}
.ycd{bottom:890.080000pt;}
.y4a{bottom:896.480000pt;}
.y2a{bottom:901.280000pt;}
.y121{bottom:901.600000pt;}
.ya{bottom:909.120000pt;}
.y8e{bottom:909.280000pt;}
.y5f{bottom:909.600000pt;}
.ycc{bottom:911.200000pt;}
.y49{bottom:917.600000pt;}
.y29{bottom:922.560000pt;}
.y8d{bottom:930.560000pt;}
.y7f{bottom:930.880000pt;}
.ycb{bottom:937.922720pt;}
.y48{bottom:938.880000pt;}
.y28{bottom:951.680000pt;}
.y7e{bottom:952.000000pt;}
.y9{bottom:953.285600pt;}
.yca{bottom:959.525600pt;}
.y47{bottom:960.000000pt;}
.y27{bottom:972.800000pt;}
.y8{bottom:974.720000pt;}
.y46{bottom:981.120000pt;}
.y26{bottom:999.680000pt;}
.y45{bottom:1002.240000pt;}
.y7{bottom:1003.520000pt;}
.y2{bottom:1020.960000pt;}
.y1{bottom:1066.240000pt;}
.h5{height:29.280000pt;}
.h3{height:42.262500pt;}
.h10{height:52.108438pt;}
.hc{height:53.535000pt;}
.ha{height:56.679040pt;}
.h6{height:57.787500pt;}
.hf{height:60.300000pt;}
.hd{height:62.781250pt;}
.h4{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:68.288000pt;}
.h8{height:72.090000pt;}
.h7{height:78.097500pt;}
.h2{height:81.984000pt;}
.he{height:236.801333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w3{width:303.840000pt;}
.w4{width:334.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:106.240000pt;}
.x1{left:113.440000pt;}
.x6{left:135.200000pt;}
.x13{left:151.200000pt;}
.x4{left:156.000000pt;}
.xd{left:188.960000pt;}
.x14{left:208.000000pt;}
.x5{left:244.152480pt;}
.x10{left:328.640000pt;}
.x12{left:362.240000pt;}
.x7{left:369.119360pt;}
.x11{left:410.080000pt;}
.x3{left:414.880000pt;}
.x2{left:425.120000pt;}
.xb{left:449.440000pt;}
.x8{left:467.040000pt;}
.xc{left:518.550400pt;}
.xe{left:523.520000pt;}
.x9{left:571.040000pt;}
.xa{left:736.960000pt;}
}




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