
    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_81e407b10115dcddfa1401f9.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_05787606d906e6ec32151274.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_f6a8eaa9b8c66c6b5dbadf99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_406931b373c93f964d2d2aba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_e116510af85ce6a022e7dafe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_012b4c64595faf1362f5961e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_440b7a216da2794c30ba73d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_7031696db39890dea5c0d8a1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b4ccd1d340d0445208022055.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_92459c2466c1599e41ed7a6f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_938bc9433ef66cdfdee2b5eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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;}
.lsd{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.148800px;}
.ls1{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:5.760000px;}
.ls6{letter-spacing:52.704000px;}
.ls4{letter-spacing:82.746720px;}
.ls8{letter-spacing:168.426720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-66.240000px;}
.ws8{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.145400px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.716000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.296000px;}
.ws3{word-spacing:-13.147200px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.391040px;}
._1{width:1.189200px;}
._8{width:2.676240px;}
._5{width:4.236960px;}
._3{width:5.369280px;}
._2{width:6.642480px;}
._17{width:8.481600px;}
._6{width:9.621360px;}
._7{width:10.876320px;}
._13{width:12.037200px;}
._4{width:13.827120px;}
._18{width:14.996400px;}
._a{width:16.092000px;}
._9{width:17.280000px;}
._12{width:19.296000px;}
._15{width:21.024000px;}
._14{width:22.089840px;}
._e{width:23.472000px;}
._c{width:25.128000px;}
._d{width:26.208000px;}
._1e{width:27.230400px;}
._1b{width:28.318800px;}
._1a{width:29.376000px;}
._16{width:31.000320px;}
._19{width:32.696880px;}
._22{width:33.841440px;}
._b{width:35.784000px;}
._f{width:37.728000px;}
._10{width:38.736000px;}
._11{width:39.912000px;}
._1f{width:41.731200px;}
._1d{width:42.989760px;}
._1c{width:44.182080px;}
._20{width:58.092480px;}
._21{width:59.152320px;}
._23{width:82.800000px;}
._24{width:84.528000px;}
._25{width:139.320000px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(10,10,10);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.600000px;}
.y3{bottom:77.760000px;}
.y33{bottom:111.600000px;}
.yfe{bottom:120.600000px;}
.y5c{bottom:121.860000px;}
.y15b{bottom:124.920000px;}
.y13c{bottom:127.800000px;}
.y32{bottom:128.520000px;}
.ya1{bottom:129.780000px;}
.y80{bottom:130.860000px;}
.y116{bottom:132.480000px;}
.ydf{bottom:133.200000px;}
.yfd{bottom:141.300000px;}
.yca{bottom:141.840000px;}
.y5b{bottom:142.560000px;}
.ya0{bottom:150.480000px;}
.y7f{bottom:151.560000px;}
.yde{bottom:153.900000px;}
.y31{bottom:157.860000px;}
.y5a{bottom:163.290000px;}
.y13b{bottom:166.530000px;}
.y115{bottom:169.410000px;}
.y30{bottom:173.190000px;}
.ydd{bottom:174.630000px;}
.yfc{bottom:180.030000px;}
.yc9{bottom:180.570000px;}
.y59{bottom:183.990000px;}
.y114{bottom:188.490000px;}
.y2f{bottom:188.670000px;}
.y9f{bottom:188.850000px;}
.y7e{bottom:190.290000px;}
.y2e{bottom:194.610000px;}
.ydc{bottom:195.330000px;}
.yfb{bottom:200.730000px;}
.yc8{bottom:201.270000px;}
.y58{bottom:204.690000px;}
.y13a{bottom:205.230000px;}
.y15a{bottom:206.670000px;}
.y113{bottom:207.390000px;}
.y2d{bottom:216.390000px;}
.yfa{bottom:221.430000px;}
.yc7{bottom:221.970000px;}
.y9e{bottom:225.750000px;}
.y139{bottom:225.930000px;}
.y112{bottom:226.290000px;}
.y159{bottom:227.370000px;}
.y7d{bottom:228.990000px;}
.y2c{bottom:233.130000px;}
.ydb{bottom:234.030000px;}
.yf9{bottom:242.130000px;}
.y57{bottom:243.390000px;}
.y9d{bottom:244.650000px;}
.y111{bottom:245.370000px;}
.y138{bottom:246.630000px;}
.yda{bottom:254.730000px;}
.y158{bottom:257.070000px;}
.yc6{bottom:260.670000px;}
.y9c{bottom:263.730000px;}
.y56{bottom:264.090000px;}
.y110{bottom:264.450000px;}
.y137{bottom:267.330000px;}
.y2b{bottom:267.510000px;}
.y7c{bottom:267.690000px;}
.yd9{bottom:275.430000px;}
.yf8{bottom:280.470000px;}
.yc5{bottom:281.370000px;}
.y9b{bottom:282.630000px;}
.y10f{bottom:283.350000px;}
.y55{bottom:284.790000px;}
.y157{bottom:286.770000px;}
.y136{bottom:288.030000px;}
.y2a{bottom:288.210000px;}
.y9a{bottom:301.710000px;}
.yc4{bottom:302.070000px;}
.y10e{bottom:302.430000px;}
.y54{bottom:305.490000px;}
.y7b{bottom:306.390000px;}
.y156{bottom:307.470000px;}
.y135{bottom:308.730000px;}
.y29{bottom:308.910000px;}
.yd8{bottom:314.130000px;}
.yf7{bottom:319.530000px;}
.y99{bottom:320.610000px;}
.y10d{bottom:321.330000px;}
.y7a{bottom:327.090000px;}
.y155{bottom:328.170000px;}
.y28{bottom:329.430000px;}
.yd7{bottom:334.830000px;}
.y98{bottom:339.510000px;}
.yf6{bottom:340.230000px;}
.y10c{bottom:340.410000px;}
.yc3{bottom:340.770000px;}
.y53{bottom:343.830000px;}
.y134{bottom:347.430000px;}
.y79{bottom:347.790000px;}
.y27{bottom:350.130000px;}
.yd6{bottom:355.530000px;}
.y154{bottom:357.870000px;}
.y97{bottom:358.590000px;}
.y10b{bottom:359.310000px;}
.yf5{bottom:360.930000px;}
.yc2{bottom:361.470000px;}
.y133{bottom:368.130000px;}
.y78{bottom:368.490000px;}
.y26{bottom:370.830000px;}
.yd5{bottom:376.230000px;}
.y96{bottom:377.490000px;}
.y10a{bottom:378.210000px;}
.yf4{bottom:381.630000px;}
.yc1{bottom:382.170000px;}
.y52{bottom:382.890000px;}
.y153{bottom:387.570000px;}
.y132{bottom:388.830000px;}
.y77{bottom:389.190000px;}
.y25{bottom:391.530000px;}
.yd4{bottom:396.930000px;}
.y109{bottom:397.290000px;}
.yf3{bottom:402.330000px;}
.yc0{bottom:402.870000px;}
.y51{bottom:403.590000px;}
.y152{bottom:408.315000px;}
.y131{bottom:409.575000px;}
.y24{bottom:412.275000px;}
.y95{bottom:414.975000px;}
.y108{bottom:416.235000px;}
.yf2{bottom:423.075000px;}
.ybf{bottom:423.615000px;}
.y50{bottom:424.335000px;}
.y76{bottom:427.575000px;}
.y130{bottom:430.275000px;}
.y23{bottom:432.975000px;}
.y94{bottom:435.675000px;}
.y151{bottom:438.015000px;}
.yf1{bottom:443.775000px;}
.y22{bottom:453.675000px;}
.yd3{bottom:456.375000px;}
.y150{bottom:458.715000px;}
.ybe{bottom:461.955000px;}
.y4f{bottom:463.035000px;}
.y75{bottom:466.095000px;}
.y12f{bottom:468.615000px;}
.y21{bottom:474.375000px;}
.yd2{bottom:477.075000px;}
.ybd{bottom:480.855000px;}
.yf0{bottom:482.475000px;}
.y4e{bottom:483.735000px;}
.y14f{bottom:488.415000px;}
.y107{bottom:492.375000px;}
.y20{bottom:495.075000px;}
.ybc{bottom:499.755000px;}
.y74{bottom:502.995000px;}
.yef{bottom:503.175000px;}
.y4d{bottom:504.435000px;}
.y12e{bottom:505.515000px;}
.y14e{bottom:509.115000px;}
.y106{bottom:513.075000px;}
.yd1{bottom:515.415000px;}
.y1f{bottom:515.775000px;}
.ybb{bottom:518.835000px;}
.y73{bottom:522.075000px;}
.yee{bottom:523.875000px;}
.y12d{bottom:524.595000px;}
.y4c{bottom:525.135000px;}
.y14d{bottom:529.815000px;}
.y105{bottom:533.775000px;}
.y1e{bottom:536.475000px;}
.yba{bottom:537.735000px;}
.y72{bottom:540.975000px;}
.y12c{bottom:543.495000px;}
.yed{bottom:544.575000px;}
.y4b{bottom:545.835000px;}
.yd0{bottom:554.115000px;}
.y104{bottom:554.475000px;}
.yb9{bottom:556.815000px;}
.y1d{bottom:557.175000px;}
.y14c{bottom:559.515000px;}
.y71{bottom:560.055000px;}
.y12b{bottom:562.395000px;}
.y103{bottom:575.175000px;}
.yb8{bottom:575.715000px;}
.y1c{bottom:577.875000px;}
.y70{bottom:578.955000px;}
.y14b{bottom:580.215000px;}
.y12a{bottom:581.475000px;}
.yec{bottom:583.275000px;}
.y4a{bottom:584.175000px;}
.ycf{bottom:593.175000px;}
.yb7{bottom:594.615000px;}
.y93{bottom:595.515000px;}
.y102{bottom:595.875000px;}
.y6f{bottom:597.855000px;}
.y129{bottom:600.375000px;}
.y14a{bottom:609.915000px;}
.yb6{bottom:613.695000px;}
.yce{bottom:613.875000px;}
.y1b{bottom:616.215000px;}
.y6e{bottom:616.935000px;}
.y128{bottom:619.455000px;}
.y49{bottom:621.075000px;}
.yeb{bottom:621.975000px;}
.y149{bottom:630.615000px;}
.y101{bottom:634.215000px;}
.y92{bottom:634.575000px;}
.y6d{bottom:635.835000px;}
.y127{bottom:638.355000px;}
.y48{bottom:640.155000px;}
.yea{bottom:642.675000px;}
.yb5{bottom:651.135000px;}
.y148{bottom:651.315000px;}
.y1a{bottom:651.495000px;}
.y91{bottom:655.305000px;}
.y126{bottom:657.285000px;}
.y47{bottom:659.085000px;}
.ye9{bottom:663.405000px;}
.y19{bottom:668.805000px;}
.yb4{bottom:671.865000px;}
.ycd{bottom:672.945000px;}
.y6c{bottom:673.305000px;}
.y90{bottom:676.005000px;}
.y125{bottom:676.365000px;}
.y46{bottom:677.985000px;}
.y147{bottom:681.045000px;}
.y18{bottom:686.085000px;}
.y6b{bottom:694.005000px;}
.y8f{bottom:696.705000px;}
.y45{bottom:697.065000px;}
.y146{bottom:701.745000px;}
.ye8{bottom:702.105000px;}
.yb3{bottom:710.205000px;}
.ycc{bottom:712.005000px;}
.y124{bottom:713.805000px;}
.y6a{bottom:714.705000px;}
.y44{bottom:715.965000px;}
.y8e{bottom:717.405000px;}
.y17{bottom:721.365000px;}
.y145{bottom:722.445000px;}
.ye7{bottom:722.805000px;}
.ycb{bottom:732.705000px;}
.y69{bottom:735.405000px;}
.y8d{bottom:738.105000px;}
.y16{bottom:747.465000px;}
.yb2{bottom:748.905000px;}
.y144{bottom:752.145000px;}
.y123{bottom:752.505000px;}
.y43{bottom:753.405000px;}
.y68{bottom:756.105000px;}
.ye6{bottom:761.145000px;}
.y15{bottom:764.745000px;}
.y143{bottom:772.845000px;}
.y42{bottom:774.105000px;}
.y8c{bottom:776.805000px;}
.y14{bottom:782.025000px;}
.yb1{bottom:787.965000px;}
.y122{bottom:790.665000px;}
.y67{bottom:794.445000px;}
.y100{bottom:794.805000px;}
.y8b{bottom:797.505000px;}
.ye5{bottom:799.845000px;}
.y142{bottom:802.545000px;}
.yb0{bottom:808.665000px;}
.y121{bottom:809.745000px;}
.y41{bottom:812.805000px;}
.yff{bottom:815.505000px;}
.y12{bottom:818.025000px;}
.y8a{bottom:818.205000px;}
.y141{bottom:823.245000px;}
.y13{bottom:826.305000px;}
.y120{bottom:828.645000px;}
.yaf{bottom:829.365000px;}
.y40{bottom:833.505000px;}
.y89{bottom:838.905000px;}
.y140{bottom:843.945000px;}
.y11f{bottom:847.545000px;}
.y11{bottom:847.725000px;}
.y3f{bottom:854.205000px;}
.y88{bottom:859.605000px;}
.y13f{bottom:864.645000px;}
.y11e{bottom:866.625000px;}
.yae{bottom:868.065000px;}
.y10{bottom:869.505000px;}
.y3e{bottom:874.905000px;}
.y87{bottom:880.305000px;}
.y11d{bottom:885.525000px;}
.yad{bottom:888.765000px;}
.y3d{bottom:895.605000px;}
.yf{bottom:896.730000px;}
.y86{bottom:901.050000px;}
.y13e{bottom:904.110000px;}
.y11c{bottom:904.650000px;}
.yac{bottom:909.510000px;}
.y66{bottom:913.650000px;}
.y3c{bottom:916.350000px;}
.y85{bottom:921.750000px;}
.y11b{bottom:923.550000px;}
.y13d{bottom:925.350000px;}
.ye{bottom:929.850000px;}
.yab{bottom:930.210000px;}
.y65{bottom:934.350000px;}
.y3b{bottom:937.050000px;}
.ye4{bottom:939.750000px;}
.y84{bottom:942.450000px;}
.yaa{bottom:950.910000px;}
.y64{bottom:955.050000px;}
.y3a{bottom:957.750000px;}
.ye3{bottom:960.450000px;}
.y11a{bottom:961.530000px;}
.yd{bottom:962.790000px;}
.y83{bottom:963.150000px;}
.y63{bottom:975.750000px;}
.y39{bottom:978.450000px;}
.y119{bottom:980.430000px;}
.ye2{bottom:981.150000px;}
.ya9{bottom:989.070000px;}
.yc{bottom:992.670000px;}
.y62{bottom:996.450000px;}
.y118{bottom:999.510000px;}
.y82{bottom:1001.850000px;}
.y38{bottom:1017.150000px;}
.y117{bottom:1018.410000px;}
.yb{bottom:1025.970000px;}
.ya8{bottom:1026.150000px;}
.y37{bottom:1037.850000px;}
.ye1{bottom:1040.190000px;}
.y81{bottom:1040.550000px;}
.ya7{bottom:1045.050000px;}
.ya{bottom:1045.410000px;}
.y61{bottom:1055.850000px;}
.y36{bottom:1058.550000px;}
.ya6{bottom:1063.950000px;}
.y9{bottom:1064.850000px;}
.y60{bottom:1076.550000px;}
.ye0{bottom:1078.890000px;}
.y35{bottom:1079.250000px;}
.ya5{bottom:1083.030000px;}
.y8{bottom:1083.390000px;}
.y5f{bottom:1097.250000px;}
.y34{bottom:1099.950000px;}
.ya4{bottom:1101.930000px;}
.y7{bottom:1102.110000px;}
.y5e{bottom:1117.950000px;}
.y6{bottom:1120.650000px;}
.ya3{bottom:1121.010000px;}
.y5{bottom:1138.290000px;}
.y5d{bottom:1138.650000px;}
.ya2{bottom:1139.910000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.hd{height:32.273438px;}
.hb{height:43.246406px;}
.hc{height:48.410156px;}
.h6{height:50.364141px;}
.he{height:53.077852px;}
.h4{height:53.573906px;}
.h5{height:56.801250px;}
.hf{height:59.383125px;}
.h3{height:63.949219px;}
.h9{height:64.546875px;}
.h2{height:65.884219px;}
.h8{height:80.208984px;}
.h7{height:102.832031px;}
.ha{height:1262.875980px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.976250px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x4{left:130.536000px;}
.xc{left:132.156000px;}
.x11{left:170.130000px;}
.x7{left:177.330000px;}
.xd{left:180.750000px;}
.x10{left:202.170000px;}
.xf{left:234.030000px;}
.xe{left:287.175000px;}
.xb{left:343.695000px;}
.x8{left:366.375000px;}
.x5{left:400.395000px;}
.x3{left:434.085000px;}
.x6{left:446.685000px;}
.x12{left:508.425000px;}
.x9{left:511.841250px;}
.xa{left:517.965000px;}
.x1{left:531.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.132267pt;}
.ls1{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls6{letter-spacing:46.848000pt;}
.ls4{letter-spacing:73.552640pt;}
.ls8{letter-spacing:149.712640pt;}
.wse{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.351467pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.192000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.818667pt;}
.ws3{word-spacing:-11.686400pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.057067pt;}
._8{width:2.378880pt;}
._5{width:3.766187pt;}
._3{width:4.772693pt;}
._2{width:5.904427pt;}
._17{width:7.539200pt;}
._6{width:8.552320pt;}
._7{width:9.667840pt;}
._13{width:10.699733pt;}
._4{width:12.290773pt;}
._18{width:13.330133pt;}
._a{width:14.304000pt;}
._9{width:15.360000pt;}
._12{width:17.152000pt;}
._15{width:18.688000pt;}
._14{width:19.635413pt;}
._e{width:20.864000pt;}
._c{width:22.336000pt;}
._d{width:23.296000pt;}
._1e{width:24.204800pt;}
._1b{width:25.172267pt;}
._1a{width:26.112000pt;}
._16{width:27.555840pt;}
._19{width:29.063893pt;}
._22{width:30.081280pt;}
._b{width:31.808000pt;}
._f{width:33.536000pt;}
._10{width:34.432000pt;}
._11{width:35.477333pt;}
._1f{width:37.094400pt;}
._1d{width:38.213120pt;}
._1c{width:39.272960pt;}
._20{width:51.637760pt;}
._21{width:52.579840pt;}
._23{width:73.600000pt;}
._24{width:75.136000pt;}
._25{width:123.840000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.200000pt;}
.y3{bottom:69.120000pt;}
.y33{bottom:99.200000pt;}
.yfe{bottom:107.200000pt;}
.y5c{bottom:108.320000pt;}
.y15b{bottom:111.040000pt;}
.y13c{bottom:113.600000pt;}
.y32{bottom:114.240000pt;}
.ya1{bottom:115.360000pt;}
.y80{bottom:116.320000pt;}
.y116{bottom:117.760000pt;}
.ydf{bottom:118.400000pt;}
.yfd{bottom:125.600000pt;}
.yca{bottom:126.080000pt;}
.y5b{bottom:126.720000pt;}
.ya0{bottom:133.760000pt;}
.y7f{bottom:134.720000pt;}
.yde{bottom:136.800000pt;}
.y31{bottom:140.320000pt;}
.y5a{bottom:145.146667pt;}
.y13b{bottom:148.026667pt;}
.y115{bottom:150.586667pt;}
.y30{bottom:153.946667pt;}
.ydd{bottom:155.226667pt;}
.yfc{bottom:160.026667pt;}
.yc9{bottom:160.506667pt;}
.y59{bottom:163.546667pt;}
.y114{bottom:167.546667pt;}
.y2f{bottom:167.706667pt;}
.y9f{bottom:167.866667pt;}
.y7e{bottom:169.146667pt;}
.y2e{bottom:172.986667pt;}
.ydc{bottom:173.626667pt;}
.yfb{bottom:178.426667pt;}
.yc8{bottom:178.906667pt;}
.y58{bottom:181.946667pt;}
.y13a{bottom:182.426667pt;}
.y15a{bottom:183.706667pt;}
.y113{bottom:184.346667pt;}
.y2d{bottom:192.346667pt;}
.yfa{bottom:196.826667pt;}
.yc7{bottom:197.306667pt;}
.y9e{bottom:200.666667pt;}
.y139{bottom:200.826667pt;}
.y112{bottom:201.146667pt;}
.y159{bottom:202.106667pt;}
.y7d{bottom:203.546667pt;}
.y2c{bottom:207.226667pt;}
.ydb{bottom:208.026667pt;}
.yf9{bottom:215.226667pt;}
.y57{bottom:216.346667pt;}
.y9d{bottom:217.466667pt;}
.y111{bottom:218.106667pt;}
.y138{bottom:219.226667pt;}
.yda{bottom:226.426667pt;}
.y158{bottom:228.506667pt;}
.yc6{bottom:231.706667pt;}
.y9c{bottom:234.426667pt;}
.y56{bottom:234.746667pt;}
.y110{bottom:235.066667pt;}
.y137{bottom:237.626667pt;}
.y2b{bottom:237.786667pt;}
.y7c{bottom:237.946667pt;}
.yd9{bottom:244.826667pt;}
.yf8{bottom:249.306667pt;}
.yc5{bottom:250.106667pt;}
.y9b{bottom:251.226667pt;}
.y10f{bottom:251.866667pt;}
.y55{bottom:253.146667pt;}
.y157{bottom:254.906667pt;}
.y136{bottom:256.026667pt;}
.y2a{bottom:256.186667pt;}
.y9a{bottom:268.186667pt;}
.yc4{bottom:268.506667pt;}
.y10e{bottom:268.826667pt;}
.y54{bottom:271.546667pt;}
.y7b{bottom:272.346667pt;}
.y156{bottom:273.306667pt;}
.y135{bottom:274.426667pt;}
.y29{bottom:274.586667pt;}
.yd8{bottom:279.226667pt;}
.yf7{bottom:284.026667pt;}
.y99{bottom:284.986667pt;}
.y10d{bottom:285.626667pt;}
.y7a{bottom:290.746667pt;}
.y155{bottom:291.706667pt;}
.y28{bottom:292.826667pt;}
.yd7{bottom:297.626667pt;}
.y98{bottom:301.786667pt;}
.yf6{bottom:302.426667pt;}
.y10c{bottom:302.586667pt;}
.yc3{bottom:302.906667pt;}
.y53{bottom:305.626667pt;}
.y134{bottom:308.826667pt;}
.y79{bottom:309.146667pt;}
.y27{bottom:311.226667pt;}
.yd6{bottom:316.026667pt;}
.y154{bottom:318.106667pt;}
.y97{bottom:318.746667pt;}
.y10b{bottom:319.386667pt;}
.yf5{bottom:320.826667pt;}
.yc2{bottom:321.306667pt;}
.y133{bottom:327.226667pt;}
.y78{bottom:327.546667pt;}
.y26{bottom:329.626667pt;}
.yd5{bottom:334.426667pt;}
.y96{bottom:335.546667pt;}
.y10a{bottom:336.186667pt;}
.yf4{bottom:339.226667pt;}
.yc1{bottom:339.706667pt;}
.y52{bottom:340.346667pt;}
.y153{bottom:344.506667pt;}
.y132{bottom:345.626667pt;}
.y77{bottom:345.946667pt;}
.y25{bottom:348.026667pt;}
.yd4{bottom:352.826667pt;}
.y109{bottom:353.146667pt;}
.yf3{bottom:357.626667pt;}
.yc0{bottom:358.106667pt;}
.y51{bottom:358.746667pt;}
.y152{bottom:362.946667pt;}
.y131{bottom:364.066667pt;}
.y24{bottom:366.466667pt;}
.y95{bottom:368.866667pt;}
.y108{bottom:369.986667pt;}
.yf2{bottom:376.066667pt;}
.ybf{bottom:376.546667pt;}
.y50{bottom:377.186667pt;}
.y76{bottom:380.066667pt;}
.y130{bottom:382.466667pt;}
.y23{bottom:384.866667pt;}
.y94{bottom:387.266667pt;}
.y151{bottom:389.346667pt;}
.yf1{bottom:394.466667pt;}
.y22{bottom:403.266667pt;}
.yd3{bottom:405.666667pt;}
.y150{bottom:407.746667pt;}
.ybe{bottom:410.626667pt;}
.y4f{bottom:411.586667pt;}
.y75{bottom:414.306667pt;}
.y12f{bottom:416.546667pt;}
.y21{bottom:421.666667pt;}
.yd2{bottom:424.066667pt;}
.ybd{bottom:427.426667pt;}
.yf0{bottom:428.866667pt;}
.y4e{bottom:429.986667pt;}
.y14f{bottom:434.146667pt;}
.y107{bottom:437.666667pt;}
.y20{bottom:440.066667pt;}
.ybc{bottom:444.226667pt;}
.y74{bottom:447.106667pt;}
.yef{bottom:447.266667pt;}
.y4d{bottom:448.386667pt;}
.y12e{bottom:449.346667pt;}
.y14e{bottom:452.546667pt;}
.y106{bottom:456.066667pt;}
.yd1{bottom:458.146667pt;}
.y1f{bottom:458.466667pt;}
.ybb{bottom:461.186667pt;}
.y73{bottom:464.066667pt;}
.yee{bottom:465.666667pt;}
.y12d{bottom:466.306667pt;}
.y4c{bottom:466.786667pt;}
.y14d{bottom:470.946667pt;}
.y105{bottom:474.466667pt;}
.y1e{bottom:476.866667pt;}
.yba{bottom:477.986667pt;}
.y72{bottom:480.866667pt;}
.y12c{bottom:483.106667pt;}
.yed{bottom:484.066667pt;}
.y4b{bottom:485.186667pt;}
.yd0{bottom:492.546667pt;}
.y104{bottom:492.866667pt;}
.yb9{bottom:494.946667pt;}
.y1d{bottom:495.266667pt;}
.y14c{bottom:497.346667pt;}
.y71{bottom:497.826667pt;}
.y12b{bottom:499.906667pt;}
.y103{bottom:511.266667pt;}
.yb8{bottom:511.746667pt;}
.y1c{bottom:513.666667pt;}
.y70{bottom:514.626667pt;}
.y14b{bottom:515.746667pt;}
.y12a{bottom:516.866667pt;}
.yec{bottom:518.466667pt;}
.y4a{bottom:519.266667pt;}
.ycf{bottom:527.266667pt;}
.yb7{bottom:528.546667pt;}
.y93{bottom:529.346667pt;}
.y102{bottom:529.666667pt;}
.y6f{bottom:531.426667pt;}
.y129{bottom:533.666667pt;}
.y14a{bottom:542.146667pt;}
.yb6{bottom:545.506667pt;}
.yce{bottom:545.666667pt;}
.y1b{bottom:547.746667pt;}
.y6e{bottom:548.386667pt;}
.y128{bottom:550.626667pt;}
.y49{bottom:552.066667pt;}
.yeb{bottom:552.866667pt;}
.y149{bottom:560.546667pt;}
.y101{bottom:563.746667pt;}
.y92{bottom:564.066667pt;}
.y6d{bottom:565.186667pt;}
.y127{bottom:567.426667pt;}
.y48{bottom:569.026667pt;}
.yea{bottom:571.266667pt;}
.yb5{bottom:578.786667pt;}
.y148{bottom:578.946667pt;}
.y1a{bottom:579.106667pt;}
.y91{bottom:582.493333pt;}
.y126{bottom:584.253333pt;}
.y47{bottom:585.853333pt;}
.ye9{bottom:589.693333pt;}
.y19{bottom:594.493333pt;}
.yb4{bottom:597.213333pt;}
.ycd{bottom:598.173333pt;}
.y6c{bottom:598.493333pt;}
.y90{bottom:600.893333pt;}
.y125{bottom:601.213333pt;}
.y46{bottom:602.653333pt;}
.y147{bottom:605.373333pt;}
.y18{bottom:609.853333pt;}
.y6b{bottom:616.893333pt;}
.y8f{bottom:619.293333pt;}
.y45{bottom:619.613333pt;}
.y146{bottom:623.773333pt;}
.ye8{bottom:624.093333pt;}
.yb3{bottom:631.293333pt;}
.ycc{bottom:632.893333pt;}
.y124{bottom:634.493333pt;}
.y6a{bottom:635.293333pt;}
.y44{bottom:636.413333pt;}
.y8e{bottom:637.693333pt;}
.y17{bottom:641.213333pt;}
.y145{bottom:642.173333pt;}
.ye7{bottom:642.493333pt;}
.ycb{bottom:651.293333pt;}
.y69{bottom:653.693333pt;}
.y8d{bottom:656.093333pt;}
.y16{bottom:664.413333pt;}
.yb2{bottom:665.693333pt;}
.y144{bottom:668.573333pt;}
.y123{bottom:668.893333pt;}
.y43{bottom:669.693333pt;}
.y68{bottom:672.093333pt;}
.ye6{bottom:676.573333pt;}
.y15{bottom:679.773333pt;}
.y143{bottom:686.973333pt;}
.y42{bottom:688.093333pt;}
.y8c{bottom:690.493333pt;}
.y14{bottom:695.133333pt;}
.yb1{bottom:700.413333pt;}
.y122{bottom:702.813333pt;}
.y67{bottom:706.173333pt;}
.y100{bottom:706.493333pt;}
.y8b{bottom:708.893333pt;}
.ye5{bottom:710.973333pt;}
.y142{bottom:713.373333pt;}
.yb0{bottom:718.813333pt;}
.y121{bottom:719.773333pt;}
.y41{bottom:722.493333pt;}
.yff{bottom:724.893333pt;}
.y12{bottom:727.133333pt;}
.y8a{bottom:727.293333pt;}
.y141{bottom:731.773333pt;}
.y13{bottom:734.493333pt;}
.y120{bottom:736.573333pt;}
.yaf{bottom:737.213333pt;}
.y40{bottom:740.893333pt;}
.y89{bottom:745.693333pt;}
.y140{bottom:750.173333pt;}
.y11f{bottom:753.373333pt;}
.y11{bottom:753.533333pt;}
.y3f{bottom:759.293333pt;}
.y88{bottom:764.093333pt;}
.y13f{bottom:768.573333pt;}
.y11e{bottom:770.333333pt;}
.yae{bottom:771.613333pt;}
.y10{bottom:772.893333pt;}
.y3e{bottom:777.693333pt;}
.y87{bottom:782.493333pt;}
.y11d{bottom:787.133333pt;}
.yad{bottom:790.013333pt;}
.y3d{bottom:796.093333pt;}
.yf{bottom:797.093333pt;}
.y86{bottom:800.933333pt;}
.y13e{bottom:803.653333pt;}
.y11c{bottom:804.133333pt;}
.yac{bottom:808.453333pt;}
.y66{bottom:812.133333pt;}
.y3c{bottom:814.533333pt;}
.y85{bottom:819.333333pt;}
.y11b{bottom:820.933333pt;}
.y13d{bottom:822.533333pt;}
.ye{bottom:826.533333pt;}
.yab{bottom:826.853333pt;}
.y65{bottom:830.533333pt;}
.y3b{bottom:832.933333pt;}
.ye4{bottom:835.333333pt;}
.y84{bottom:837.733333pt;}
.yaa{bottom:845.253333pt;}
.y64{bottom:848.933333pt;}
.y3a{bottom:851.333333pt;}
.ye3{bottom:853.733333pt;}
.y11a{bottom:854.693333pt;}
.yd{bottom:855.813333pt;}
.y83{bottom:856.133333pt;}
.y63{bottom:867.333333pt;}
.y39{bottom:869.733333pt;}
.y119{bottom:871.493333pt;}
.ye2{bottom:872.133333pt;}
.ya9{bottom:879.173333pt;}
.yc{bottom:882.373333pt;}
.y62{bottom:885.733333pt;}
.y118{bottom:888.453333pt;}
.y82{bottom:890.533333pt;}
.y38{bottom:904.133333pt;}
.y117{bottom:905.253333pt;}
.yb{bottom:911.973333pt;}
.ya8{bottom:912.133333pt;}
.y37{bottom:922.533333pt;}
.ye1{bottom:924.613333pt;}
.y81{bottom:924.933333pt;}
.ya7{bottom:928.933333pt;}
.ya{bottom:929.253333pt;}
.y61{bottom:938.533333pt;}
.y36{bottom:940.933333pt;}
.ya6{bottom:945.733333pt;}
.y9{bottom:946.533333pt;}
.y60{bottom:956.933333pt;}
.ye0{bottom:959.013333pt;}
.y35{bottom:959.333333pt;}
.ya5{bottom:962.693333pt;}
.y8{bottom:963.013333pt;}
.y5f{bottom:975.333333pt;}
.y34{bottom:977.733333pt;}
.ya4{bottom:979.493333pt;}
.y7{bottom:979.653333pt;}
.y5e{bottom:993.733333pt;}
.y6{bottom:996.133333pt;}
.ya3{bottom:996.453333pt;}
.y5{bottom:1011.813333pt;}
.y5d{bottom:1012.133333pt;}
.ya2{bottom:1013.253333pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.hd{height:28.687500pt;}
.hb{height:38.441250pt;}
.hc{height:43.031250pt;}
.h6{height:44.768125pt;}
.he{height:47.180312pt;}
.h4{height:47.621250pt;}
.h5{height:50.490000pt;}
.hf{height:52.785000pt;}
.h3{height:56.843750pt;}
.h9{height:57.375000pt;}
.h2{height:58.563750pt;}
.h8{height:71.296875pt;}
.h7{height:91.406250pt;}
.ha{height:1122.556427pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.756667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x4{left:116.032000pt;}
.xc{left:117.472000pt;}
.x11{left:151.226667pt;}
.x7{left:157.626667pt;}
.xd{left:160.666667pt;}
.x10{left:179.706667pt;}
.xf{left:208.026667pt;}
.xe{left:255.266667pt;}
.xb{left:305.506667pt;}
.x8{left:325.666667pt;}
.x5{left:355.906667pt;}
.x3{left:385.853333pt;}
.x6{left:397.053333pt;}
.x12{left:451.933333pt;}
.x9{left:454.970000pt;}
.xa{left:460.413333pt;}
.x1{left:472.733333pt;}
}




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