
    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_5ea8ee4e755d88a7d51c8c2c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1ef854273c34265646b8ecb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_080347fa2cee72f866dcdaa1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_6082d425e02c12f89ff2a549.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_433329dd45548a3c834be749.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_dd13f7469b0876ad35059368.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_af2f6c901e96a4ec932a4cd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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;}
.ls16{letter-spacing:-1.500000px;}
.ls13{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.462000px;}
.ls11{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.132000px;}
.ls14{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012000px;}
.lsb{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.810000px;}
.ls2{letter-spacing:1.038000px;}
.ls10{letter-spacing:1.644000px;}
.lse{letter-spacing:1.728000px;}
.lsc{letter-spacing:4.728000px;}
.ls12{letter-spacing:6.348000px;}
.lsf{letter-spacing:10.728000px;}
.lsa{letter-spacing:21.312000px;}
.ls4{letter-spacing:102.228000px;}
.ls3{letter-spacing:118.878000px;}
.ls0{letter-spacing:848.178000px;}
.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;}
}
.ws2{word-spacing:-27.120000px;}
.ws5{word-spacing:-21.696000px;}
.ws6{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.212000px;}
.ws9{word-spacing:-16.176000px;}
.wsb{word-spacing:-16.152000px;}
.ws8{word-spacing:-15.816000px;}
.wsa{word-spacing:-15.768000px;}
.ws1{word-spacing:-14.916000px;}
.ws3{word-spacing:-14.784000px;}
.ws4{word-spacing:-14.454000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-10.452000px;}
._e{margin-left:-7.800000px;}
._f{margin-left:-6.630000px;}
._10{margin-left:-5.100000px;}
._1d{margin-left:-4.050000px;}
._5{margin-left:-2.736000px;}
._1{margin-left:-1.140000px;}
._0{width:1.320000px;}
._4{width:3.120000px;}
._6{width:4.524000px;}
._17{width:6.120000px;}
._15{width:7.128000px;}
._14{width:8.424000px;}
._c{width:9.540000px;}
._b{width:10.800000px;}
._1e{width:11.868000px;}
._13{width:12.960000px;}
._21{width:14.004000px;}
._3{width:15.180000px;}
._2{width:16.560000px;}
._16{width:18.312000px;}
._8{width:19.332000px;}
._7{width:20.448000px;}
._9{width:21.888000px;}
._18{width:23.472000px;}
._19{width:24.624000px;}
._1a{width:25.848000px;}
._1b{width:27.204000px;}
._1c{width:28.650000px;}
._22{width:31.392000px;}
._23{width:32.808000px;}
._26{width:34.128000px;}
._25{width:35.982000px;}
._24{width:37.518000px;}
._2a{width:39.528000px;}
._1f{width:41.472000px;}
._20{width:42.648000px;}
._29{width:44.904000px;}
._27{width:46.260000px;}
._28{width:47.358000px;}
._30{width:52.128000px;}
._a{width:53.724000px;}
._2b{width:54.768000px;}
._2d{width:102.300000px;}
._31{width:109.584000px;}
._2e{width:194.040000px;}
._2f{width:290.880000px;}
._2c{width:332.844000px;}
._12{width:848.178000px;}
._d{width:850.890000px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:rgb(33,37,41);}
.fc5{color:rgb(17,85,204);}
.fc4{color:transparent;}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(54,96,145);}
.fc1{color:rgb(28,48,70);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:4.860000px;}
.y13{bottom:4.875000px;}
.y10{bottom:5.625000px;}
.y35{bottom:11.655000px;}
.y23{bottom:12.000000px;}
.y2c{bottom:12.030000px;}
.y3a{bottom:12.045000px;}
.y5{bottom:15.375000px;}
.y7{bottom:15.750000px;}
.y38{bottom:23.295000px;}
.y2e{bottom:25.500000px;}
.y32{bottom:25.875000px;}
.y2a{bottom:25.905000px;}
.y119{bottom:26.625000px;}
.y138{bottom:26.640000px;}
.y11c{bottom:26.985000px;}
.y1e{bottom:27.000000px;}
.y120{bottom:27.030000px;}
.y130{bottom:27.045000px;}
.y24{bottom:28.500000px;}
.y39{bottom:34.920000px;}
.y6{bottom:37.125000px;}
.y2f{bottom:39.375000px;}
.y33{bottom:39.750000px;}
.y2b{bottom:39.780000px;}
.y133{bottom:48.750000px;}
.y13a{bottom:48.795000px;}
.y1d{bottom:49.125000px;}
.y137{bottom:49.155000px;}
.y8{bottom:60.787500px;}
.y1c{bottom:70.875000px;}
.y4{bottom:76.912500px;}
.y1b{bottom:93.000000px;}
.y1a{bottom:114.780000px;}
.yf8{bottom:145.162500px;}
.y3{bottom:149.662500px;}
.ya6{bottom:151.170000px;}
.yc8{bottom:153.045000px;}
.ydd{bottom:154.170000px;}
.ydc{bottom:160.170000px;}
.y83{bottom:168.780000px;}
.yf7{bottom:170.295000px;}
.yc7{bottom:175.200000px;}
.ya5{bottom:176.325000px;}
.y132{bottom:177.075000px;}
.yc6{bottom:181.200000px;}
.ydb{bottom:188.325000px;}
.yf6{bottom:195.825000px;}
.y103{bottom:197.325000px;}
.ya4{bottom:201.825000px;}
.y116{bottom:210.075000px;}
.yc5{bottom:218.325000px;}
.y21{bottom:225.075000px;}
.ya3{bottom:226.950000px;}
.yf5{bottom:229.950000px;}
.y131{bottom:243.825000px;}
.yda{bottom:244.200000px;}
.ya2{bottom:252.075000px;}
.y20{bottom:254.700000px;}
.yd9{bottom:269.325000px;}
.y115{bottom:269.700000px;}
.ya1{bottom:277.575000px;}
.y102{bottom:280.575000px;}
.yf4{bottom:287.700000px;}
.y12f{bottom:288.450000px;}
.yd8{bottom:294.450000px;}
.y114{bottom:294.825000px;}
.ya0{bottom:302.745000px;}
.yc4{bottom:305.745000px;}
.y81{bottom:310.605000px;}
.yf3{bottom:312.870000px;}
.y47{bottom:313.245000px;}
.yd7{bottom:319.995000px;}
.y113{bottom:320.370000px;}
.y9f{bottom:327.855000px;}
.yc3{bottom:330.855000px;}
.y46{bottom:331.230000px;}
.yf2{bottom:338.355000px;}
.y80{bottom:344.730000px;}
.yd6{bottom:345.105000px;}
.y112{bottom:345.495000px;}
.y45{bottom:349.620000px;}
.y9e{bottom:353.370000px;}
.yc2{bottom:356.370000px;}
.y12e{bottom:358.605000px;}
.yf1{bottom:363.495000px;}
.y44{bottom:367.980000px;}
.y7f{bottom:370.245000px;}
.yd5{bottom:370.620000px;}
.y9d{bottom:378.480000px;}
.yc1{bottom:381.480000px;}
.y43{bottom:386.370000px;}
.yf0{bottom:388.605000px;}
.y12d{bottom:391.245000px;}
.y7e{bottom:395.355000px;}
.yd4{bottom:395.730000px;}
.y111{bottom:396.120000px;}
.y42{bottom:404.745000px;}
.yc0{bottom:406.995000px;}
.y9c{bottom:412.995000px;}
.yef{bottom:414.120000px;}
.y101{bottom:415.995000px;}
.y7d{bottom:420.870000px;}
.y110{bottom:421.245000px;}
.y41{bottom:423.120000px;}
.y12c{bottom:425.745000px;}
.ybf{bottom:432.150000px;}
.y9b{bottom:438.150000px;}
.yee{bottom:439.275000px;}
.y40{bottom:441.150000px;}
.yd2{bottom:446.400000px;}
.y12b{bottom:450.900000px;}
.yd3{bottom:452.400000px;}
.y7c{bottom:455.025000px;}
.y59{bottom:455.400000px;}
.y3f{bottom:459.525000px;}
.y9a{bottom:463.275000px;}
.yed{bottom:464.400000px;}
.y100{bottom:466.275000px;}
.ybe{bottom:469.275000px;}
.yd1{bottom:471.525000px;}
.y10f{bottom:471.900000px;}
.y12a{bottom:476.025000px;}
.y3e{bottom:477.900000px;}
.y7b{bottom:480.150000px;}
.y99{bottom:488.775000px;}
.yec{bottom:489.900000px;}
.yff{bottom:491.775000px;}
.y58{bottom:494.025000px;}
.y3d{bottom:496.275000px;}
.y10e{bottom:497.025000px;}
.y129{bottom:501.525000px;}
.y7a{bottom:505.650000px;}
.y98{bottom:513.900000px;}
.y3c{bottom:514.650000px;}
.ybd{bottom:515.025000px;}
.yfe{bottom:516.900000px;}
.yeb{bottom:521.025000px;}
.y128{bottom:526.650000px;}
.y79{bottom:530.775000px;}
.yd0{bottom:531.150000px;}
.y10d{bottom:531.525000px;}
.y147{bottom:532.650000px;}
.y3b{bottom:533.025000px;}
.y57{bottom:537.525000px;}
.y97{bottom:539.400000px;}
.ybc{bottom:540.525000px;}
.y6b{bottom:548.775000px;}
.yea{bottom:549.525000px;}
.y127{bottom:552.150000px;}
.y37{bottom:552.525000px;}
.yfd{bottom:554.025000px;}
.y78{bottom:555.900000px;}
.ycf{bottom:556.275000px;}
.y10c{bottom:556.650000px;}
.y146{bottom:557.775000px;}
.y96{bottom:564.570000px;}
.ybb{bottom:565.695000px;}
.y56{bottom:567.945000px;}
.y1f{bottom:571.695000px;}
.y6a{bottom:573.945000px;}
.ye9{bottom:574.695000px;}
.y126{bottom:577.320000px;}
.y77{bottom:581.445000px;}
.yce{bottom:581.820000px;}
.y145{bottom:582.945000px;}
.y95{bottom:589.695000px;}
.yba{bottom:590.820000px;}
.y19{bottom:591.945000px;}
.y69{bottom:599.445000px;}
.ye8{bottom:599.820000px;}
.y125{bottom:602.445000px;}
.y55{bottom:606.570000px;}
.ycd{bottom:606.945000px;}
.y10b{bottom:607.320000px;}
.y144{bottom:608.445000px;}
.y94{bottom:615.195000px;}
.yb9{bottom:616.320000px;}
.y36{bottom:617.445000px;}
.y68{bottom:624.570000px;}
.ye7{bottom:625.320000px;}
.y124{bottom:627.945000px;}
.y76{bottom:632.070000px;}
.y10a{bottom:632.445000px;}
.y143{bottom:633.570000px;}
.yb8{bottom:641.445000px;}
.y93{bottom:649.320000px;}
.y67{bottom:650.070000px;}
.ye6{bottom:650.445000px;}
.y54{bottom:651.195000px;}
.y75{bottom:657.195000px;}
.ycc{bottom:657.570000px;}
.y142{bottom:659.070000px;}
.y123{bottom:665.070000px;}
.yb7{bottom:666.945000px;}
.y92{bottom:674.445000px;}
.y66{bottom:675.195000px;}
.ye5{bottom:675.945000px;}
.y53{bottom:681.945000px;}
.ycb{bottom:682.695000px;}
.y141{bottom:684.195000px;}
.y34{bottom:687.195000px;}
.y74{bottom:691.350000px;}
.yb6{bottom:692.100000px;}
.y91{bottom:699.975000px;}
.y65{bottom:700.350000px;}
.ye4{bottom:701.100000px;}
.y122{bottom:703.725000px;}
.yca{bottom:707.850000px;}
.y140{bottom:709.350000px;}
.y52{bottom:712.725000px;}
.y73{bottom:716.850000px;}
.y109{bottom:717.225000px;}
.y90{bottom:725.100000px;}
.y64{bottom:725.850000px;}
.yb5{bottom:726.225000px;}
.y31{bottom:728.850000px;}
.y18{bottom:732.225000px;}
.y13f{bottom:734.850000px;}
.y72{bottom:741.975000px;}
.y108{bottom:742.725000px;}
.y121{bottom:748.350000px;}
.yc9{bottom:749.475000px;}
.y17{bottom:750.225000px;}
.y8f{bottom:750.600000px;}
.y51{bottom:750.975000px;}
.yb4{bottom:751.725000px;}
.ye3{bottom:757.725000px;}
.y13e{bottom:759.975000px;}
.y71{bottom:767.100000px;}
.y107{bottom:767.850000px;}
.y139{bottom:769.725000px;}
.y16{bottom:772.725000px;}
.y63{bottom:776.100000px;}
.yb3{bottom:776.850000px;}
.y8e{bottom:784.725000px;}
.y13d{bottom:785.100000px;}
.y106{bottom:792.975000px;}
.y15{bottom:795.600000px;}
.y50{bottom:796.725000px;}
.y30{bottom:798.225000px;}
.y62{bottom:801.600000px;}
.yb2{bottom:801.975000px;}
.y8d{bottom:809.850000px;}
.y13c{bottom:810.600000px;}
.ye2{bottom:810.975000px;}
.y14{bottom:818.130000px;}
.y105{bottom:818.520000px;}
.y61{bottom:826.755000px;}
.yb1{bottom:827.505000px;}
.y4f{bottom:830.130000px;}
.y8c{bottom:835.395000px;}
.y13b{bottom:835.755000px;}
.ye1{bottom:836.505000px;}
.y11f{bottom:837.630000px;}
.y12{bottom:841.005000px;}
.y104{bottom:843.630000px;}
.y70{bottom:852.270000px;}
.yb0{bottom:852.630000px;}
.y8b{bottom:860.505000px;}
.y4e{bottom:860.880000px;}
.y60{bottom:861.255000px;}
.ye0{bottom:861.630000px;}
.y2d{bottom:868.005000px;}
.y11{bottom:868.380000px;}
.y6f{bottom:877.380000px;}
.yaf{bottom:878.130000px;}
.y11e{bottom:882.255000px;}
.y8a{bottom:885.630000px;}
.y5f{bottom:886.380000px;}
.ydf{bottom:887.130000px;}
.yf{bottom:889.005000px;}
.y4d{bottom:891.630000px;}
.y6e{bottom:902.505000px;}
.y136{bottom:902.895000px;}
.yfc{bottom:903.255000px;}
.y11b{bottom:905.145000px;}
.y89{bottom:911.130000px;}
.y5e{bottom:911.505000px;}
.yad{bottom:912.255000px;}
.yae{bottom:918.255000px;}
.y4c{bottom:922.380000px;}
.ye{bottom:922.755000px;}
.y6d{bottom:928.005000px;}
.yfb{bottom:928.380000px;}
.y88{bottom:936.255000px;}
.y5d{bottom:937.005000px;}
.yac{bottom:937.380000px;}
.y29{bottom:937.395000px;}
.yd{bottom:944.505000px;}
.y11a{bottom:949.800000px;}
.y4b{bottom:952.800000px;}
.y6c{bottom:953.175000px;}
.yf9{bottom:953.925000px;}
.yfa{bottom:959.925000px;}
.y5c{bottom:962.175000px;}
.yab{bottom:962.925000px;}
.yc{bottom:964.800000px;}
.y135{bottom:969.675000px;}
.y87{bottom:970.800000px;}
.y118{bottom:972.675000px;}
.y4a{bottom:983.550000px;}
.yb{bottom:984.675000px;}
.y5b{bottom:987.675000px;}
.yaa{bottom:988.050000px;}
.y86{bottom:995.925000px;}
.ya{bottom:1004.925000px;}
.y28{bottom:1006.800000px;}
.y5a{bottom:1012.800000px;}
.ya9{bottom:1013.175000px;}
.y49{bottom:1014.300000px;}
.y117{bottom:1017.300000px;}
.y85{bottom:1021.050000px;}
.y9{bottom:1025.175000px;}
.y134{bottom:1036.425000px;}
.ya8{bottom:1038.675000px;}
.y27{bottom:1048.800000px;}
.y48{bottom:1052.550000px;}
.y2{bottom:1057.050000px;}
.y84{bottom:1058.175000px;}
.ya7{bottom:1063.800000px;}
.y82{bottom:1065.300000px;}
.y26{bottom:1066.800000px;}
.yde{bottom:1069.800000px;}
.y1{bottom:1084.830000px;}
.y25{bottom:1097.580000px;}
.y22{bottom:1123.080000px;}
.h8{height:21.750000px;}
.ha{height:21.787500px;}
.h9{height:22.125000px;}
.h6{height:25.500000px;}
.h2{height:29.838867px;}
.h15{height:31.912500px;}
.hf{height:32.250000px;}
.h1d{height:43.875000px;}
.h1e{height:43.897500px;}
.h1f{height:43.912500px;}
.h1c{height:47.742188px;}
.h1a{height:50.337891px;}
.h4{height:52.470703px;}
.h16{height:55.162500px;}
.h12{height:59.625000px;}
.h17{height:59.677734px;}
.h14{height:60.000000px;}
.h11{height:60.022500px;}
.h13{height:60.037500px;}
.h3{height:60.375000px;}
.he{height:61.435547px;}
.h19{height:62.964844px;}
.hd{height:65.250000px;}
.h22{height:65.625000px;}
.h1{height:65.645508px;}
.h20{height:66.000000px;}
.h21{height:66.022500px;}
.h23{height:66.037500px;}
.h10{height:67.579102px;}
.h5{height:71.613281px;}
.hc{height:73.722656px;}
.h7{height:83.548828px;}
.h1b{height:95.484375px;}
.h18{height:122.871094px;}
.hb{height:132.037500px;}
.h0{height:1263.000000px;}
.wf{width:52.162500px;}
.w12{width:52.537500px;}
.w3{width:69.412500px;}
.wb{width:73.537500px;}
.w14{width:94.912500px;}
.wa{width:104.662500px;}
.w11{width:158.700000px;}
.w6{width:201.105000px;}
.w13{width:211.575000px;}
.wc{width:232.980000px;}
.wd{width:260.745000px;}
.w15{width:315.150000px;}
.w9{width:334.650000px;}
.w8{width:342.525000px;}
.w10{width:467.070000px;}
.w7{width:473.820000px;}
.w4{width:607.770000px;}
.w5{width:670.425000px;}
.we{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:6.375000px;}
.x5{left:7.875000px;}
.x14{left:10.545000px;}
.x17{left:26.295000px;}
.x3{left:62.287500px;}
.x2{left:108.037487px;}
.x12{left:109.162500px;}
.xb{left:111.412500px;}
.x20{left:114.037487px;}
.x8{left:118.912487px;}
.x18{left:123.037487px;}
.x19{left:128.662487px;}
.x1e{left:162.074987px;}
.x4{left:177.450000px;}
.xc{left:178.582500px;}
.x2d{left:183.449987px;}
.x13{left:214.950000px;}
.x10{left:228.487500px;}
.x9{left:264.494987px;}
.x1a{left:278.369987px;}
.x24{left:280.994973px;}
.x25{left:286.994987px;}
.x15{left:289.245000px;}
.x2a{left:298.244973px;}
.x2b{left:304.244987px;}
.xd{left:310.650000px;}
.x6{left:317.774987px;}
.x1f{left:324.149987px;}
.x7{left:331.274987px;}
.x2e{left:374.400000px;}
.x22{left:425.444973px;}
.x23{left:431.444987px;}
.xa{left:446.444987px;}
.x11{left:450.570000px;}
.x2f{left:470.070000px;}
.x16{left:523.350000px;}
.x28{left:592.379973px;}
.x29{left:598.394987px;}
.x1c{left:606.629973px;}
.x1d{left:612.629987px;}
.x2c{left:629.520000px;}
.x1{left:682.424987px;}
.x1b{left:695.549987px;}
.x26{left:748.079973px;}
.x27{left:754.094987px;}
.xf{left:756.704987px;}
.x21{left:785.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.333333pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.410667pt;}
.ls11{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.117333pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.010667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.720000pt;}
.ls2{letter-spacing:0.922667pt;}
.ls10{letter-spacing:1.461333pt;}
.lse{letter-spacing:1.536000pt;}
.lsc{letter-spacing:4.202667pt;}
.ls12{letter-spacing:5.642667pt;}
.lsf{letter-spacing:9.536000pt;}
.lsa{letter-spacing:18.944000pt;}
.ls4{letter-spacing:90.869333pt;}
.ls3{letter-spacing:105.669333pt;}
.ls0{letter-spacing:753.936000pt;}
.ws2{word-spacing:-24.106667pt;}
.ws5{word-spacing:-19.285333pt;}
.ws6{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.410667pt;}
.ws9{word-spacing:-14.378667pt;}
.wsb{word-spacing:-14.357333pt;}
.ws8{word-spacing:-14.058667pt;}
.wsa{word-spacing:-14.016000pt;}
.ws1{word-spacing:-13.258667pt;}
.ws3{word-spacing:-13.141333pt;}
.ws4{word-spacing:-12.848000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-9.290667pt;}
._e{margin-left:-6.933333pt;}
._f{margin-left:-5.893333pt;}
._10{margin-left:-4.533333pt;}
._1d{margin-left:-3.600000pt;}
._5{margin-left:-2.432000pt;}
._1{margin-left:-1.013333pt;}
._0{width:1.173333pt;}
._4{width:2.773333pt;}
._6{width:4.021333pt;}
._17{width:5.440000pt;}
._15{width:6.336000pt;}
._14{width:7.488000pt;}
._c{width:8.480000pt;}
._b{width:9.600000pt;}
._1e{width:10.549333pt;}
._13{width:11.520000pt;}
._21{width:12.448000pt;}
._3{width:13.493333pt;}
._2{width:14.720000pt;}
._16{width:16.277333pt;}
._8{width:17.184000pt;}
._7{width:18.176000pt;}
._9{width:19.456000pt;}
._18{width:20.864000pt;}
._19{width:21.888000pt;}
._1a{width:22.976000pt;}
._1b{width:24.181333pt;}
._1c{width:25.466667pt;}
._22{width:27.904000pt;}
._23{width:29.162667pt;}
._26{width:30.336000pt;}
._25{width:31.984000pt;}
._24{width:33.349333pt;}
._2a{width:35.136000pt;}
._1f{width:36.864000pt;}
._20{width:37.909333pt;}
._29{width:39.914667pt;}
._27{width:41.120000pt;}
._28{width:42.096000pt;}
._30{width:46.336000pt;}
._a{width:47.754667pt;}
._2b{width:48.682667pt;}
._2d{width:90.933333pt;}
._31{width:97.408000pt;}
._2e{width:172.480000pt;}
._2f{width:258.560000pt;}
._2c{width:295.861333pt;}
._12{width:753.936000pt;}
._d{width:756.346667pt;}
.fs1{font-size:26.666667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:4.320000pt;}
.y13{bottom:4.333333pt;}
.y10{bottom:5.000000pt;}
.y35{bottom:10.360000pt;}
.y23{bottom:10.666667pt;}
.y2c{bottom:10.693333pt;}
.y3a{bottom:10.706667pt;}
.y5{bottom:13.666667pt;}
.y7{bottom:14.000000pt;}
.y38{bottom:20.706667pt;}
.y2e{bottom:22.666667pt;}
.y32{bottom:23.000000pt;}
.y2a{bottom:23.026667pt;}
.y119{bottom:23.666667pt;}
.y138{bottom:23.680000pt;}
.y11c{bottom:23.986667pt;}
.y1e{bottom:24.000000pt;}
.y120{bottom:24.026667pt;}
.y130{bottom:24.040000pt;}
.y24{bottom:25.333333pt;}
.y39{bottom:31.040000pt;}
.y6{bottom:33.000000pt;}
.y2f{bottom:35.000000pt;}
.y33{bottom:35.333333pt;}
.y2b{bottom:35.360000pt;}
.y133{bottom:43.333333pt;}
.y13a{bottom:43.373333pt;}
.y1d{bottom:43.666667pt;}
.y137{bottom:43.693333pt;}
.y8{bottom:54.033333pt;}
.y1c{bottom:63.000000pt;}
.y4{bottom:68.366667pt;}
.y1b{bottom:82.666667pt;}
.y1a{bottom:102.026667pt;}
.yf8{bottom:129.033333pt;}
.y3{bottom:133.033333pt;}
.ya6{bottom:134.373333pt;}
.yc8{bottom:136.040000pt;}
.ydd{bottom:137.040000pt;}
.ydc{bottom:142.373333pt;}
.y83{bottom:150.026667pt;}
.yf7{bottom:151.373333pt;}
.yc7{bottom:155.733333pt;}
.ya5{bottom:156.733333pt;}
.y132{bottom:157.400000pt;}
.yc6{bottom:161.066667pt;}
.ydb{bottom:167.400000pt;}
.yf6{bottom:174.066667pt;}
.y103{bottom:175.400000pt;}
.ya4{bottom:179.400000pt;}
.y116{bottom:186.733333pt;}
.yc5{bottom:194.066667pt;}
.y21{bottom:200.066667pt;}
.ya3{bottom:201.733333pt;}
.yf5{bottom:204.400000pt;}
.y131{bottom:216.733333pt;}
.yda{bottom:217.066667pt;}
.ya2{bottom:224.066667pt;}
.y20{bottom:226.400000pt;}
.yd9{bottom:239.400000pt;}
.y115{bottom:239.733333pt;}
.ya1{bottom:246.733333pt;}
.y102{bottom:249.400000pt;}
.yf4{bottom:255.733333pt;}
.y12f{bottom:256.400000pt;}
.yd8{bottom:261.733333pt;}
.y114{bottom:262.066667pt;}
.ya0{bottom:269.106667pt;}
.yc4{bottom:271.773333pt;}
.y81{bottom:276.093333pt;}
.yf3{bottom:278.106667pt;}
.y47{bottom:278.440000pt;}
.yd7{bottom:284.440000pt;}
.y113{bottom:284.773333pt;}
.y9f{bottom:291.426667pt;}
.yc3{bottom:294.093333pt;}
.y46{bottom:294.426667pt;}
.yf2{bottom:300.760000pt;}
.y80{bottom:306.426667pt;}
.yd6{bottom:306.760000pt;}
.y112{bottom:307.106667pt;}
.y45{bottom:310.773333pt;}
.y9e{bottom:314.106667pt;}
.yc2{bottom:316.773333pt;}
.y12e{bottom:318.760000pt;}
.yf1{bottom:323.106667pt;}
.y44{bottom:327.093333pt;}
.y7f{bottom:329.106667pt;}
.yd5{bottom:329.440000pt;}
.y9d{bottom:336.426667pt;}
.yc1{bottom:339.093333pt;}
.y43{bottom:343.440000pt;}
.yf0{bottom:345.426667pt;}
.y12d{bottom:347.773333pt;}
.y7e{bottom:351.426667pt;}
.yd4{bottom:351.760000pt;}
.y111{bottom:352.106667pt;}
.y42{bottom:359.773333pt;}
.yc0{bottom:361.773333pt;}
.y9c{bottom:367.106667pt;}
.yef{bottom:368.106667pt;}
.y101{bottom:369.773333pt;}
.y7d{bottom:374.106667pt;}
.y110{bottom:374.440000pt;}
.y41{bottom:376.106667pt;}
.y12c{bottom:378.440000pt;}
.ybf{bottom:384.133333pt;}
.y9b{bottom:389.466667pt;}
.yee{bottom:390.466667pt;}
.y40{bottom:392.133333pt;}
.yd2{bottom:396.800000pt;}
.y12b{bottom:400.800000pt;}
.yd3{bottom:402.133333pt;}
.y7c{bottom:404.466667pt;}
.y59{bottom:404.800000pt;}
.y3f{bottom:408.466667pt;}
.y9a{bottom:411.800000pt;}
.yed{bottom:412.800000pt;}
.y100{bottom:414.466667pt;}
.ybe{bottom:417.133333pt;}
.yd1{bottom:419.133333pt;}
.y10f{bottom:419.466667pt;}
.y12a{bottom:423.133333pt;}
.y3e{bottom:424.800000pt;}
.y7b{bottom:426.800000pt;}
.y99{bottom:434.466667pt;}
.yec{bottom:435.466667pt;}
.yff{bottom:437.133333pt;}
.y58{bottom:439.133333pt;}
.y3d{bottom:441.133333pt;}
.y10e{bottom:441.800000pt;}
.y129{bottom:445.800000pt;}
.y7a{bottom:449.466667pt;}
.y98{bottom:456.800000pt;}
.y3c{bottom:457.466667pt;}
.ybd{bottom:457.800000pt;}
.yfe{bottom:459.466667pt;}
.yeb{bottom:463.133333pt;}
.y128{bottom:468.133333pt;}
.y79{bottom:471.800000pt;}
.yd0{bottom:472.133333pt;}
.y10d{bottom:472.466667pt;}
.y147{bottom:473.466667pt;}
.y3b{bottom:473.800000pt;}
.y57{bottom:477.800000pt;}
.y97{bottom:479.466667pt;}
.ybc{bottom:480.466667pt;}
.y6b{bottom:487.800000pt;}
.yea{bottom:488.466667pt;}
.y127{bottom:490.800000pt;}
.y37{bottom:491.133333pt;}
.yfd{bottom:492.466667pt;}
.y78{bottom:494.133333pt;}
.ycf{bottom:494.466667pt;}
.y10c{bottom:494.800000pt;}
.y146{bottom:495.800000pt;}
.y96{bottom:501.840000pt;}
.ybb{bottom:502.840000pt;}
.y56{bottom:504.840000pt;}
.y1f{bottom:508.173333pt;}
.y6a{bottom:510.173333pt;}
.ye9{bottom:510.840000pt;}
.y126{bottom:513.173333pt;}
.y77{bottom:516.840000pt;}
.yce{bottom:517.173333pt;}
.y145{bottom:518.173333pt;}
.y95{bottom:524.173333pt;}
.yba{bottom:525.173333pt;}
.y19{bottom:526.173333pt;}
.y69{bottom:532.840000pt;}
.ye8{bottom:533.173333pt;}
.y125{bottom:535.506667pt;}
.y55{bottom:539.173333pt;}
.ycd{bottom:539.506667pt;}
.y10b{bottom:539.840000pt;}
.y144{bottom:540.840000pt;}
.y94{bottom:546.840000pt;}
.yb9{bottom:547.840000pt;}
.y36{bottom:548.840000pt;}
.y68{bottom:555.173333pt;}
.ye7{bottom:555.840000pt;}
.y124{bottom:558.173333pt;}
.y76{bottom:561.840000pt;}
.y10a{bottom:562.173333pt;}
.y143{bottom:563.173333pt;}
.yb8{bottom:570.173333pt;}
.y93{bottom:577.173333pt;}
.y67{bottom:577.840000pt;}
.ye6{bottom:578.173333pt;}
.y54{bottom:578.840000pt;}
.y75{bottom:584.173333pt;}
.ycc{bottom:584.506667pt;}
.y142{bottom:585.840000pt;}
.y123{bottom:591.173333pt;}
.yb7{bottom:592.840000pt;}
.y92{bottom:599.506667pt;}
.y66{bottom:600.173333pt;}
.ye5{bottom:600.840000pt;}
.y53{bottom:606.173333pt;}
.ycb{bottom:606.840000pt;}
.y141{bottom:608.173333pt;}
.y34{bottom:610.840000pt;}
.y74{bottom:614.533333pt;}
.yb6{bottom:615.200000pt;}
.y91{bottom:622.200000pt;}
.y65{bottom:622.533333pt;}
.ye4{bottom:623.200000pt;}
.y122{bottom:625.533333pt;}
.yca{bottom:629.200000pt;}
.y140{bottom:630.533333pt;}
.y52{bottom:633.533333pt;}
.y73{bottom:637.200000pt;}
.y109{bottom:637.533333pt;}
.y90{bottom:644.533333pt;}
.y64{bottom:645.200000pt;}
.yb5{bottom:645.533333pt;}
.y31{bottom:647.866667pt;}
.y18{bottom:650.866667pt;}
.y13f{bottom:653.200000pt;}
.y72{bottom:659.533333pt;}
.y108{bottom:660.200000pt;}
.y121{bottom:665.200000pt;}
.yc9{bottom:666.200000pt;}
.y17{bottom:666.866667pt;}
.y8f{bottom:667.200000pt;}
.y51{bottom:667.533333pt;}
.yb4{bottom:668.200000pt;}
.ye3{bottom:673.533333pt;}
.y13e{bottom:675.533333pt;}
.y71{bottom:681.866667pt;}
.y107{bottom:682.533333pt;}
.y139{bottom:684.200000pt;}
.y16{bottom:686.866667pt;}
.y63{bottom:689.866667pt;}
.yb3{bottom:690.533333pt;}
.y8e{bottom:697.533333pt;}
.y13d{bottom:697.866667pt;}
.y106{bottom:704.866667pt;}
.y15{bottom:707.200000pt;}
.y50{bottom:708.200000pt;}
.y30{bottom:709.533333pt;}
.y62{bottom:712.533333pt;}
.yb2{bottom:712.866667pt;}
.y8d{bottom:719.866667pt;}
.y13c{bottom:720.533333pt;}
.ye2{bottom:720.866667pt;}
.y14{bottom:727.226667pt;}
.y105{bottom:727.573333pt;}
.y61{bottom:734.893333pt;}
.yb1{bottom:735.560000pt;}
.y4f{bottom:737.893333pt;}
.y8c{bottom:742.573333pt;}
.y13b{bottom:742.893333pt;}
.ye1{bottom:743.560000pt;}
.y11f{bottom:744.560000pt;}
.y12{bottom:747.560000pt;}
.y104{bottom:749.893333pt;}
.y70{bottom:757.573333pt;}
.yb0{bottom:757.893333pt;}
.y8b{bottom:764.893333pt;}
.y4e{bottom:765.226667pt;}
.y60{bottom:765.560000pt;}
.ye0{bottom:765.893333pt;}
.y2d{bottom:771.560000pt;}
.y11{bottom:771.893333pt;}
.y6f{bottom:779.893333pt;}
.yaf{bottom:780.560000pt;}
.y11e{bottom:784.226667pt;}
.y8a{bottom:787.226667pt;}
.y5f{bottom:787.893333pt;}
.ydf{bottom:788.560000pt;}
.yf{bottom:790.226667pt;}
.y4d{bottom:792.560000pt;}
.y6e{bottom:802.226667pt;}
.y136{bottom:802.573333pt;}
.yfc{bottom:802.893333pt;}
.y11b{bottom:804.573333pt;}
.y89{bottom:809.893333pt;}
.y5e{bottom:810.226667pt;}
.yad{bottom:810.893333pt;}
.yae{bottom:816.226667pt;}
.y4c{bottom:819.893333pt;}
.ye{bottom:820.226667pt;}
.y6d{bottom:824.893333pt;}
.yfb{bottom:825.226667pt;}
.y88{bottom:832.226667pt;}
.y5d{bottom:832.893333pt;}
.yac{bottom:833.226667pt;}
.y29{bottom:833.240000pt;}
.yd{bottom:839.560000pt;}
.y11a{bottom:844.266667pt;}
.y4b{bottom:846.933333pt;}
.y6c{bottom:847.266667pt;}
.yf9{bottom:847.933333pt;}
.yfa{bottom:853.266667pt;}
.y5c{bottom:855.266667pt;}
.yab{bottom:855.933333pt;}
.yc{bottom:857.600000pt;}
.y135{bottom:861.933333pt;}
.y87{bottom:862.933333pt;}
.y118{bottom:864.600000pt;}
.y4a{bottom:874.266667pt;}
.yb{bottom:875.266667pt;}
.y5b{bottom:877.933333pt;}
.yaa{bottom:878.266667pt;}
.y86{bottom:885.266667pt;}
.ya{bottom:893.266667pt;}
.y28{bottom:894.933333pt;}
.y5a{bottom:900.266667pt;}
.ya9{bottom:900.600000pt;}
.y49{bottom:901.600000pt;}
.y117{bottom:904.266667pt;}
.y85{bottom:907.600000pt;}
.y9{bottom:911.266667pt;}
.y134{bottom:921.266667pt;}
.ya8{bottom:923.266667pt;}
.y27{bottom:932.266667pt;}
.y48{bottom:935.600000pt;}
.y2{bottom:939.600000pt;}
.y84{bottom:940.600000pt;}
.ya7{bottom:945.600000pt;}
.y82{bottom:946.933333pt;}
.y26{bottom:948.266667pt;}
.yde{bottom:950.933333pt;}
.y1{bottom:964.293333pt;}
.y25{bottom:975.626667pt;}
.y22{bottom:998.293333pt;}
.h8{height:19.333333pt;}
.ha{height:19.366667pt;}
.h9{height:19.666667pt;}
.h6{height:22.666667pt;}
.h2{height:26.523438pt;}
.h15{height:28.366667pt;}
.hf{height:28.666667pt;}
.h1d{height:39.000000pt;}
.h1e{height:39.020000pt;}
.h1f{height:39.033333pt;}
.h1c{height:42.437500pt;}
.h1a{height:44.744792pt;}
.h4{height:46.640625pt;}
.h16{height:49.033333pt;}
.h12{height:53.000000pt;}
.h17{height:53.046875pt;}
.h14{height:53.333333pt;}
.h11{height:53.353333pt;}
.h13{height:53.366667pt;}
.h3{height:53.666667pt;}
.he{height:54.609375pt;}
.h19{height:55.968750pt;}
.hd{height:58.000000pt;}
.h22{height:58.333333pt;}
.h1{height:58.351562pt;}
.h20{height:58.666667pt;}
.h21{height:58.686667pt;}
.h23{height:58.700000pt;}
.h10{height:60.070312pt;}
.h5{height:63.656250pt;}
.hc{height:65.531250pt;}
.h7{height:74.265625pt;}
.h1b{height:84.875000pt;}
.h18{height:109.218750pt;}
.hb{height:117.366667pt;}
.h0{height:1122.666667pt;}
.wf{width:46.366667pt;}
.w12{width:46.700000pt;}
.w3{width:61.700000pt;}
.wb{width:65.366667pt;}
.w14{width:84.366667pt;}
.wa{width:93.033333pt;}
.w11{width:141.066667pt;}
.w6{width:178.760000pt;}
.w13{width:188.066667pt;}
.wc{width:207.093333pt;}
.wd{width:231.773333pt;}
.w15{width:280.133333pt;}
.w9{width:297.466667pt;}
.w8{width:304.466667pt;}
.w10{width:415.173333pt;}
.w7{width:421.173333pt;}
.w4{width:540.240000pt;}
.w5{width:595.933333pt;}
.we{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:5.666667pt;}
.x5{left:7.000000pt;}
.x14{left:9.373333pt;}
.x17{left:23.373333pt;}
.x3{left:55.366667pt;}
.x2{left:96.033322pt;}
.x12{left:97.033333pt;}
.xb{left:99.033333pt;}
.x20{left:101.366655pt;}
.x8{left:105.699988pt;}
.x18{left:109.366655pt;}
.x19{left:114.366655pt;}
.x1e{left:144.066655pt;}
.x4{left:157.733333pt;}
.xc{left:158.740000pt;}
.x2d{left:163.066655pt;}
.x13{left:191.066667pt;}
.x10{left:203.100000pt;}
.x9{left:235.106655pt;}
.x1a{left:247.439988pt;}
.x24{left:249.773310pt;}
.x25{left:255.106655pt;}
.x15{left:257.106667pt;}
.x2a{left:265.106643pt;}
.x2b{left:270.439988pt;}
.xd{left:276.133333pt;}
.x6{left:282.466655pt;}
.x1f{left:288.133322pt;}
.x7{left:294.466655pt;}
.x2e{left:332.800000pt;}
.x22{left:378.173310pt;}
.x23{left:383.506655pt;}
.xa{left:396.839988pt;}
.x11{left:400.506667pt;}
.x2f{left:417.840000pt;}
.x16{left:465.200000pt;}
.x28{left:526.559976pt;}
.x29{left:531.906655pt;}
.x1c{left:539.226643pt;}
.x1d{left:544.559988pt;}
.x2c{left:559.573333pt;}
.x1{left:606.599988pt;}
.x1b{left:618.266655pt;}
.x26{left:664.959976pt;}
.x27{left:670.306655pt;}
.xf{left:672.626655pt;}
.x21{left:697.959988pt;}
}




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