
    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_317857a3b9c95858e7a867e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_be22560388df0aafa541eb73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_870366e3fa702cc820ea3bb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_29be021d9f3c06c38eaa8c27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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_6dacbe1e1030edb672cfee6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_860833da706c44bef760e269.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.014160;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_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.800781;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_6f88e2be31a53d08723ed37d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_929935dd7d23239128d72148.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_a77b99ccc619110c5b99bfbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_a6d7d09f60574598165dde4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.600000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls6{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.384000px;}
.ls13{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.lse{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.840000px;}
.ls1c{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.972000px;}
.lsb{letter-spacing:1.320000px;}
.ls11{letter-spacing:1.740000px;}
.ls19{letter-spacing:5.340000px;}
.ls15{letter-spacing:7.740000px;}
.lsf{letter-spacing:9.000000px;}
.ls16{letter-spacing:10.200000px;}
.ls1{letter-spacing:10.800000px;}
.ls2{letter-spacing:45.900000px;}
.ls1e{letter-spacing:47.700000px;}
.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;}
}
.wsb{word-spacing:-60.000000px;}
.wse{word-spacing:-16.500000px;}
.ws12{word-spacing:-15.900000px;}
.ws10{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.540000px;}
.ws13{word-spacing:-15.420000px;}
.ws11{word-spacing:-15.360000px;}
.wsa{word-spacing:-15.240000px;}
.ws5{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.760000px;}
.wsd{word-spacing:-14.640000px;}
.ws16{word-spacing:-14.472000px;}
.ws14{word-spacing:-14.100000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.488000px;}
.ws15{word-spacing:-12.900000px;}
.ws0{word-spacing:-12.300000px;}
.ws2{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.616000px;}
.ws6{word-spacing:-11.100000px;}
.ws7{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-3.870000px;}
._8{margin-left:-2.112000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._5{width:2.484000px;}
._6{width:4.218000px;}
._b{width:5.232000px;}
._7{width:6.624000px;}
._9{width:7.884000px;}
._11{width:9.504000px;}
._f{width:10.524000px;}
._c{width:12.192000px;}
._12{width:13.332000px;}
._29{width:14.556000px;}
._27{width:15.876000px;}
._d{width:17.004000px;}
._10{width:18.048000px;}
._15{width:19.584000px;}
._1a{width:20.802000px;}
._19{width:21.834000px;}
._26{width:22.974000px;}
._14{width:24.000000px;}
._13{width:25.320000px;}
._4{width:26.400000px;}
._1e{width:28.056000px;}
._1d{width:29.916000px;}
._1f{width:32.706000px;}
._3{width:37.500000px;}
._28{width:46.854000px;}
._17{width:47.862000px;}
._22{width:53.082000px;}
._23{width:54.150000px;}
._1c{width:56.274000px;}
._1b{width:57.996000px;}
._18{width:61.242000px;}
._20{width:69.174000px;}
._21{width:70.794000px;}
._16{width:73.350000px;}
._25{width:79.740000px;}
._24{width:81.702000px;}
._2{width:345.024000px;}
._2a{width:1838.376000px;}
._e{width:1862.376000px;}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.000000px;}
.y3{bottom:9.585000px;}
.y4{bottom:20.385000px;}
.y4b{bottom:21.000000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.y4a{bottom:39.000000px;}
.y6{bottom:42.637500px;}
.y52{bottom:46.837500px;}
.y49{bottom:57.037500px;}
.y51{bottom:64.837500px;}
.y48{bottom:75.037500px;}
.y50{bottom:80.737500px;}
.y47{bottom:93.037500px;}
.yd0{bottom:93.337500px;}
.y111{bottom:94.537500px;}
.y139{bottom:95.437500px;}
.y86{bottom:97.837500px;}
.yec{bottom:99.337500px;}
.y33{bottom:108.037500px;}
.y32{bottom:111.637500px;}
.ycf{bottom:112.537500px;}
.y85{bottom:117.337500px;}
.yeb{bottom:118.537500px;}
.y110{bottom:119.137500px;}
.ya1{bottom:119.737500px;}
.yd9{bottom:121.837500px;}
.y31{bottom:130.837500px;}
.yce{bottom:132.037500px;}
.y84{bottom:136.537500px;}
.yea{bottom:137.737500px;}
.ya0{bottom:138.937500px;}
.yd8{bottom:141.037500px;}
.y10f{bottom:143.437500px;}
.y138{bottom:144.337500px;}
.y30{bottom:150.045000px;}
.ycd{bottom:151.230000px;}
.y46{bottom:151.837500px;}
.y83{bottom:155.745000px;}
.ye9{bottom:156.930000px;}
.y9f{bottom:158.130000px;}
.yd7{bottom:160.245000px;}
.y45{bottom:168.037500px;}
.y10e{bottom:168.075000px;}
.y137{bottom:168.675000px;}
.y2f{bottom:169.275000px;}
.ycc{bottom:170.475000px;}
.y82{bottom:174.975000px;}
.ye8{bottom:176.175000px;}
.y9e{bottom:177.375000px;}
.yd6{bottom:179.475000px;}
.y44{bottom:184.237500px;}
.y2e{bottom:188.475000px;}
.ycb{bottom:189.675000px;}
.y10d{bottom:192.375000px;}
.y136{bottom:193.275000px;}
.y81{bottom:194.175000px;}
.y9d{bottom:196.875000px;}
.yd5{bottom:198.675000px;}
.ye7{bottom:199.875000px;}
.y43{bottom:200.437500px;}
.y2d{bottom:207.675000px;}
.y80{bottom:213.375000px;}
.y9c{bottom:216.075000px;}
.y10c{bottom:216.975000px;}
.y135{bottom:217.575000px;}
.yd4{bottom:217.875000px;}
.y2c{bottom:226.875000px;}
.y42{bottom:232.567500px;}
.y7f{bottom:232.575000px;}
.y9b{bottom:235.575000px;}
.yd3{bottom:237.075000px;}
.y10b{bottom:241.275000px;}
.y134{bottom:242.175000px;}
.y2b{bottom:246.075000px;}
.yca{bottom:250.575000px;}
.y41{bottom:250.582500px;}
.y7e{bottom:251.775000px;}
.y9a{bottom:256.275000px;}
.y10a{bottom:265.875000px;}
.y133{bottom:266.475000px;}
.y40{bottom:268.582500px;}
.y2a{bottom:269.775000px;}
.y7d{bottom:270.975000px;}
.y99{bottom:275.475000px;}
.y3f{bottom:286.567500px;}
.yc9{bottom:288.975000px;}
.y7c{bottom:290.175000px;}
.y132{bottom:291.075000px;}
.y98{bottom:294.675000px;}
.y3e{bottom:304.582500px;}
.yc8{bottom:308.175000px;}
.y7b{bottom:309.375000px;}
.y97{bottom:313.875000px;}
.y109{bottom:314.775000px;}
.y131{bottom:315.375000px;}
.yc7{bottom:327.375000px;}
.y29{bottom:327.975000px;}
.y7a{bottom:328.575000px;}
.y3d{bottom:331.582500px;}
.y96{bottom:333.120000px;}
.y108{bottom:339.120000px;}
.y130{bottom:340.005000px;}
.yc6{bottom:346.620000px;}
.y28{bottom:347.805000px;}
.y79{bottom:348.120000px;}
.y95{bottom:352.620000px;}
.y3c{bottom:358.582500px;}
.y107{bottom:363.705000px;}
.y12f{bottom:364.305000px;}
.yc5{bottom:365.820000px;}
.y78{bottom:367.320000px;}
.y27{bottom:367.605000px;}
.y94{bottom:371.805000px;}
.y3b{bottom:376.567500px;}
.yc4{bottom:385.305000px;}
.y77{bottom:386.505000px;}
.y106{bottom:388.005000px;}
.y12e{bottom:388.920000px;}
.y93{bottom:391.005000px;}
.y3a{bottom:394.612500px;}
.yc3{bottom:404.505000px;}
.y26{bottom:404.820000px;}
.y76{bottom:405.705000px;}
.y92{bottom:410.205000px;}
.y39{bottom:412.612500px;}
.y105{bottom:412.620000px;}
.y12d{bottom:413.205000px;}
.yc2{bottom:423.705000px;}
.y25{bottom:424.320000px;}
.y75{bottom:424.905000px;}
.y91{bottom:429.420000px;}
.y38{bottom:430.612500px;}
.y104{bottom:436.905000px;}
.y12c{bottom:437.820000px;}
.yc1{bottom:442.920000px;}
.y24{bottom:443.820000px;}
.y37{bottom:448.612500px;}
.y74{bottom:448.620000px;}
.y103{bottom:461.505000px;}
.yc0{bottom:462.120000px;}
.y23{bottom:463.320000px;}
.y36{bottom:466.612500px;}
.y90{bottom:467.820000px;}
.y73{bottom:472.320000px;}
.ybf{bottom:481.320000px;}
.y22{bottom:482.820000px;}
.y35{bottom:484.612500px;}
.y102{bottom:485.820000px;}
.y12b{bottom:486.705000px;}
.y8f{bottom:487.005000px;}
.ybe{bottom:500.505000px;}
.y21{bottom:502.350000px;}
.y34{bottom:502.612500px;}
.y8e{bottom:506.250000px;}
.y72{bottom:509.550000px;}
.ye6{bottom:510.150000px;}
.y101{bottom:510.450000px;}
.y12a{bottom:511.050000px;}
.ybd{bottom:519.750000px;}
.y20{bottom:521.850000px;}
.y8d{bottom:525.450000px;}
.y71{bottom:528.750000px;}
.y100{bottom:534.750000px;}
.y129{bottom:535.650000px;}
.ybc{bottom:538.950000px;}
.y1f{bottom:541.350000px;}
.y8c{bottom:544.650000px;}
.y70{bottom:547.950000px;}
.ybb{bottom:558.150000px;}
.yff{bottom:559.350000px;}
.y128{bottom:559.950000px;}
.y1e{bottom:560.850000px;}
.y8b{bottom:563.850000px;}
.y6f{bottom:567.150000px;}
.yba{bottom:577.350000px;}
.y1d{bottom:580.350000px;}
.y8a{bottom:583.350000px;}
.yfe{bottom:583.650000px;}
.y127{bottom:584.550000px;}
.y6e{bottom:586.350000px;}
.yb9{bottom:596.550000px;}
.y1c{bottom:599.850000px;}
.y89{bottom:602.550000px;}
.y6d{bottom:605.850000px;}
.yfd{bottom:608.250000px;}
.y126{bottom:608.850000px;}
.yb8{bottom:616.050000px;}
.y1b{bottom:619.350000px;}
.y88{bottom:621.750000px;}
.y6c{bottom:625.050000px;}
.yfc{bottom:632.550000px;}
.y125{bottom:633.450000px;}
.yb7{bottom:635.250000px;}
.y1a{bottom:638.850000px;}
.yd2{bottom:640.950000px;}
.y6b{bottom:644.250000px;}
.y87{bottom:645.450000px;}
.yb6{bottom:654.450000px;}
.yfb{bottom:657.150000px;}
.y124{bottom:657.750000px;}
.y19{bottom:658.350000px;}
.ye5{bottom:660.150000px;}
.y6a{bottom:663.450000px;}
.yd1{bottom:664.650000px;}
.yb5{bottom:673.695000px;}
.y18{bottom:677.880000px;}
.ye4{bottom:679.380000px;}
.yfa{bottom:681.495000px;}
.y123{bottom:682.380000px;}
.y69{bottom:682.680000px;}
.yb4{bottom:692.880000px;}
.y17{bottom:697.380000px;}
.ye3{bottom:698.595000px;}
.y68{bottom:701.880000px;}
.yf9{bottom:706.080000px;}
.y122{bottom:706.695000px;}
.yb3{bottom:712.095000px;}
.y16{bottom:716.880000px;}
.ye2{bottom:717.780000px;}
.y67{bottom:721.080000px;}
.yb2{bottom:731.280000px;}
.yf8{bottom:732.195000px;}
.y15{bottom:736.380000px;}
.ye1{bottom:736.995000px;}
.y66{bottom:740.280000px;}
.yb1{bottom:750.495000px;}
.y121{bottom:755.580000px;}
.y14{bottom:755.880000px;}
.ye0{bottom:756.195000px;}
.y65{bottom:759.480000px;}
.yf7{bottom:768.780000px;}
.yb0{bottom:769.695000px;}
.y13{bottom:775.380000px;}
.y64{bottom:778.695000px;}
.y120{bottom:780.195000px;}
.yaf{bottom:788.880000px;}
.ydf{bottom:794.580000px;}
.y12{bottom:794.880000px;}
.y63{bottom:797.880000px;}
.yf6{bottom:803.880000px;}
.y11f{bottom:804.495000px;}
.yae{bottom:808.080000px;}
.yde{bottom:814.080000px;}
.y11{bottom:814.380000px;}
.y62{bottom:817.080000px;}
.yf5{bottom:821.580000px;}
.yad{bottom:827.295000px;}
.y11e{bottom:829.080000px;}
.ydd{bottom:833.295000px;}
.y10{bottom:833.880000px;}
.y61{bottom:836.580000px;}
.yac{bottom:846.825000px;}
.ydc{bottom:852.525000px;}
.y11d{bottom:853.425000px;}
.yf{bottom:853.725000px;}
.y60{bottom:855.825000px;}
.yf4{bottom:857.025000px;}
.yab{bottom:866.025000px;}
.ydb{bottom:871.725000px;}
.y5f{bottom:875.025000px;}
.y11c{bottom:878.025000px;}
.yaa{bottom:885.225000px;}
.ye{bottom:890.925000px;}
.yf3{bottom:892.125000px;}
.y5e{bottom:894.225000px;}
.y11b{bottom:902.325000px;}
.ya9{bottom:904.425000px;}
.yd{bottom:909.825000px;}
.y5d{bottom:913.425000px;}
.yda{bottom:914.625000px;}
.ya8{bottom:923.625000px;}
.y11a{bottom:926.925000px;}
.yf2{bottom:927.525000px;}
.y5c{bottom:932.625000px;}
.ya7{bottom:947.325000px;}
.yc{bottom:950.925000px;}
.y119{bottom:951.225000px;}
.y5b{bottom:951.825000px;}
.yf1{bottom:962.625000px;}
.yb{bottom:971.025000px;}
.y118{bottom:975.825000px;}
.yf0{bottom:980.325000px;}
.ya6{bottom:984.525000px;}
.y5a{bottom:990.225000px;}
.y117{bottom:1000.125000px;}
.ya5{bottom:1004.325000px;}
.y59{bottom:1009.455000px;}
.yef{bottom:1015.170000px;}
.ya{bottom:1022.070000px;}
.y116{bottom:1024.755000px;}
.ya4{bottom:1025.370000px;}
.y58{bottom:1028.670000px;}
.yee{bottom:1032.870000px;}
.ya3{bottom:1046.070000px;}
.y57{bottom:1047.855000px;}
.y115{bottom:1049.070000px;}
.y9{bottom:1058.355000px;}
.ya2{bottom:1065.855000px;}
.y56{bottom:1067.355000px;}
.yed{bottom:1068.570000px;}
.y114{bottom:1073.655000px;}
.y55{bottom:1086.570000px;}
.y8{bottom:1091.370000px;}
.y113{bottom:1097.955000px;}
.y54{bottom:1105.755000px;}
.y112{bottom:1122.570000px;}
.y53{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y4f{bottom:1144.455000px;}
.y4e{bottom:1163.655000px;}
.y4d{bottom:1173.570000px;}
.h9{height:23.085938px;}
.h15{height:28.257422px;}
.h10{height:30.700195px;}
.h11{height:33.632812px;}
.ha{height:35.085938px;}
.h6{height:35.179688px;}
.hb{height:39.418945px;}
.hc{height:39.471680px;}
.hd{height:39.577148px;}
.h4{height:43.798828px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h3{height:48.178711px;}
.h13{height:48.243164px;}
.h14{height:50.566406px;}
.h2{height:51.637500px;}
.h12{height:59.853516px;}
.he{height:62.460938px;}
.h8{height:78.837891px;}
.hf{height:517.620000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x9{left:81.637500px;}
.xe{left:86.137487px;}
.x3{left:170.130000px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.xb{left:269.774987px;}
.x7{left:276.674987px;}
.xd{left:281.474987px;}
.x8{left:282.674987px;}
.x2{left:426.450000px;}
.xa{left:432.749987px;}
.xc{left:694.724987px;}
.x4{left:766.425000px;}
@media print{
.v2{vertical-align:-13.866667pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.341333pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.746667pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.864000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls11{letter-spacing:1.546667pt;}
.ls19{letter-spacing:4.746667pt;}
.ls15{letter-spacing:6.880000pt;}
.lsf{letter-spacing:8.000000pt;}
.ls16{letter-spacing:9.066667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls2{letter-spacing:40.800000pt;}
.ls1e{letter-spacing:42.400000pt;}
.wsb{word-spacing:-53.333333pt;}
.wse{word-spacing:-14.666667pt;}
.ws12{word-spacing:-14.133333pt;}
.ws10{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.813333pt;}
.ws13{word-spacing:-13.706667pt;}
.ws11{word-spacing:-13.653333pt;}
.wsa{word-spacing:-13.546667pt;}
.ws5{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.120000pt;}
.wsd{word-spacing:-13.013333pt;}
.ws16{word-spacing:-12.864000pt;}
.ws14{word-spacing:-12.533333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.989333pt;}
.ws15{word-spacing:-11.466667pt;}
.ws0{word-spacing:-10.933333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.325333pt;}
.ws6{word-spacing:-9.866667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-3.440000pt;}
._8{margin-left:-1.877333pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._5{width:2.208000pt;}
._6{width:3.749333pt;}
._b{width:4.650667pt;}
._7{width:5.888000pt;}
._9{width:7.008000pt;}
._11{width:8.448000pt;}
._f{width:9.354667pt;}
._c{width:10.837333pt;}
._12{width:11.850667pt;}
._29{width:12.938667pt;}
._27{width:14.112000pt;}
._d{width:15.114667pt;}
._10{width:16.042667pt;}
._15{width:17.408000pt;}
._1a{width:18.490667pt;}
._19{width:19.408000pt;}
._26{width:20.421333pt;}
._14{width:21.333333pt;}
._13{width:22.506667pt;}
._4{width:23.466667pt;}
._1e{width:24.938667pt;}
._1d{width:26.592000pt;}
._1f{width:29.072000pt;}
._3{width:33.333333pt;}
._28{width:41.648000pt;}
._17{width:42.544000pt;}
._22{width:47.184000pt;}
._23{width:48.133333pt;}
._1c{width:50.021333pt;}
._1b{width:51.552000pt;}
._18{width:54.437333pt;}
._20{width:61.488000pt;}
._21{width:62.928000pt;}
._16{width:65.200000pt;}
._25{width:70.880000pt;}
._24{width:72.624000pt;}
._2{width:306.688000pt;}
._2a{width:1634.112000pt;}
._e{width:1655.445333pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.666667pt;}
.y3{bottom:8.520000pt;}
.y4{bottom:18.120000pt;}
.y4b{bottom:18.666667pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.y4a{bottom:34.666667pt;}
.y6{bottom:37.900000pt;}
.y52{bottom:41.633333pt;}
.y49{bottom:50.700000pt;}
.y51{bottom:57.633333pt;}
.y48{bottom:66.700000pt;}
.y50{bottom:71.766667pt;}
.y47{bottom:82.700000pt;}
.yd0{bottom:82.966667pt;}
.y111{bottom:84.033333pt;}
.y139{bottom:84.833333pt;}
.y86{bottom:86.966667pt;}
.yec{bottom:88.300000pt;}
.y33{bottom:96.033333pt;}
.y32{bottom:99.233333pt;}
.ycf{bottom:100.033333pt;}
.y85{bottom:104.300000pt;}
.yeb{bottom:105.366667pt;}
.y110{bottom:105.900000pt;}
.ya1{bottom:106.433333pt;}
.yd9{bottom:108.300000pt;}
.y31{bottom:116.300000pt;}
.yce{bottom:117.366667pt;}
.y84{bottom:121.366667pt;}
.yea{bottom:122.433333pt;}
.ya0{bottom:123.500000pt;}
.yd8{bottom:125.366667pt;}
.y10f{bottom:127.500000pt;}
.y138{bottom:128.300000pt;}
.y30{bottom:133.373333pt;}
.ycd{bottom:134.426667pt;}
.y46{bottom:134.966667pt;}
.y83{bottom:138.440000pt;}
.ye9{bottom:139.493333pt;}
.y9f{bottom:140.560000pt;}
.yd7{bottom:142.440000pt;}
.y45{bottom:149.366667pt;}
.y10e{bottom:149.400000pt;}
.y137{bottom:149.933333pt;}
.y2f{bottom:150.466667pt;}
.ycc{bottom:151.533333pt;}
.y82{bottom:155.533333pt;}
.ye8{bottom:156.600000pt;}
.y9e{bottom:157.666667pt;}
.yd6{bottom:159.533333pt;}
.y44{bottom:163.766667pt;}
.y2e{bottom:167.533333pt;}
.ycb{bottom:168.600000pt;}
.y10d{bottom:171.000000pt;}
.y136{bottom:171.800000pt;}
.y81{bottom:172.600000pt;}
.y9d{bottom:175.000000pt;}
.yd5{bottom:176.600000pt;}
.ye7{bottom:177.666667pt;}
.y43{bottom:178.166667pt;}
.y2d{bottom:184.600000pt;}
.y80{bottom:189.666667pt;}
.y9c{bottom:192.066667pt;}
.y10c{bottom:192.866667pt;}
.y135{bottom:193.400000pt;}
.yd4{bottom:193.666667pt;}
.y2c{bottom:201.666667pt;}
.y42{bottom:206.726667pt;}
.y7f{bottom:206.733333pt;}
.y9b{bottom:209.400000pt;}
.yd3{bottom:210.733333pt;}
.y10b{bottom:214.466667pt;}
.y134{bottom:215.266667pt;}
.y2b{bottom:218.733333pt;}
.yca{bottom:222.733333pt;}
.y41{bottom:222.740000pt;}
.y7e{bottom:223.800000pt;}
.y9a{bottom:227.800000pt;}
.y10a{bottom:236.333333pt;}
.y133{bottom:236.866667pt;}
.y40{bottom:238.740000pt;}
.y2a{bottom:239.800000pt;}
.y7d{bottom:240.866667pt;}
.y99{bottom:244.866667pt;}
.y3f{bottom:254.726667pt;}
.yc9{bottom:256.866667pt;}
.y7c{bottom:257.933333pt;}
.y132{bottom:258.733333pt;}
.y98{bottom:261.933333pt;}
.y3e{bottom:270.740000pt;}
.yc8{bottom:273.933333pt;}
.y7b{bottom:275.000000pt;}
.y97{bottom:279.000000pt;}
.y109{bottom:279.800000pt;}
.y131{bottom:280.333333pt;}
.yc7{bottom:291.000000pt;}
.y29{bottom:291.533333pt;}
.y7a{bottom:292.066667pt;}
.y3d{bottom:294.740000pt;}
.y96{bottom:296.106667pt;}
.y108{bottom:301.440000pt;}
.y130{bottom:302.226667pt;}
.yc6{bottom:308.106667pt;}
.y28{bottom:309.160000pt;}
.y79{bottom:309.440000pt;}
.y95{bottom:313.440000pt;}
.y3c{bottom:318.740000pt;}
.y107{bottom:323.293333pt;}
.y12f{bottom:323.826667pt;}
.yc5{bottom:325.173333pt;}
.y78{bottom:326.506667pt;}
.y27{bottom:326.760000pt;}
.y94{bottom:330.493333pt;}
.y3b{bottom:334.726667pt;}
.yc4{bottom:342.493333pt;}
.y77{bottom:343.560000pt;}
.y106{bottom:344.893333pt;}
.y12e{bottom:345.706667pt;}
.y93{bottom:347.560000pt;}
.y3a{bottom:350.766667pt;}
.yc3{bottom:359.560000pt;}
.y26{bottom:359.840000pt;}
.y76{bottom:360.626667pt;}
.y92{bottom:364.626667pt;}
.y39{bottom:366.766667pt;}
.y105{bottom:366.773333pt;}
.y12d{bottom:367.293333pt;}
.yc2{bottom:376.626667pt;}
.y25{bottom:377.173333pt;}
.y75{bottom:377.693333pt;}
.y91{bottom:381.706667pt;}
.y38{bottom:382.766667pt;}
.y104{bottom:388.360000pt;}
.y12c{bottom:389.173333pt;}
.yc1{bottom:393.706667pt;}
.y24{bottom:394.506667pt;}
.y37{bottom:398.766667pt;}
.y74{bottom:398.773333pt;}
.y103{bottom:410.226667pt;}
.yc0{bottom:410.773333pt;}
.y23{bottom:411.840000pt;}
.y36{bottom:414.766667pt;}
.y90{bottom:415.840000pt;}
.y73{bottom:419.840000pt;}
.ybf{bottom:427.840000pt;}
.y22{bottom:429.173333pt;}
.y35{bottom:430.766667pt;}
.y102{bottom:431.840000pt;}
.y12b{bottom:432.626667pt;}
.y8f{bottom:432.893333pt;}
.ybe{bottom:444.893333pt;}
.y21{bottom:446.533333pt;}
.y34{bottom:446.766667pt;}
.y8e{bottom:450.000000pt;}
.y72{bottom:452.933333pt;}
.ye6{bottom:453.466667pt;}
.y101{bottom:453.733333pt;}
.y12a{bottom:454.266667pt;}
.ybd{bottom:462.000000pt;}
.y20{bottom:463.866667pt;}
.y8d{bottom:467.066667pt;}
.y71{bottom:470.000000pt;}
.y100{bottom:475.333333pt;}
.y129{bottom:476.133333pt;}
.ybc{bottom:479.066667pt;}
.y1f{bottom:481.200000pt;}
.y8c{bottom:484.133333pt;}
.y70{bottom:487.066667pt;}
.ybb{bottom:496.133333pt;}
.yff{bottom:497.200000pt;}
.y128{bottom:497.733333pt;}
.y1e{bottom:498.533333pt;}
.y8b{bottom:501.200000pt;}
.y6f{bottom:504.133333pt;}
.yba{bottom:513.200000pt;}
.y1d{bottom:515.866667pt;}
.y8a{bottom:518.533333pt;}
.yfe{bottom:518.800000pt;}
.y127{bottom:519.600000pt;}
.y6e{bottom:521.200000pt;}
.yb9{bottom:530.266667pt;}
.y1c{bottom:533.200000pt;}
.y89{bottom:535.600000pt;}
.y6d{bottom:538.533333pt;}
.yfd{bottom:540.666667pt;}
.y126{bottom:541.200000pt;}
.yb8{bottom:547.600000pt;}
.y1b{bottom:550.533333pt;}
.y88{bottom:552.666667pt;}
.y6c{bottom:555.600000pt;}
.yfc{bottom:562.266667pt;}
.y125{bottom:563.066667pt;}
.yb7{bottom:564.666667pt;}
.y1a{bottom:567.866667pt;}
.yd2{bottom:569.733333pt;}
.y6b{bottom:572.666667pt;}
.y87{bottom:573.733333pt;}
.yb6{bottom:581.733333pt;}
.yfb{bottom:584.133333pt;}
.y124{bottom:584.666667pt;}
.y19{bottom:585.200000pt;}
.ye5{bottom:586.800000pt;}
.y6a{bottom:589.733333pt;}
.yd1{bottom:590.800000pt;}
.yb5{bottom:598.840000pt;}
.y18{bottom:602.560000pt;}
.ye4{bottom:603.893333pt;}
.yfa{bottom:605.773333pt;}
.y123{bottom:606.560000pt;}
.y69{bottom:606.826667pt;}
.yb4{bottom:615.893333pt;}
.y17{bottom:619.893333pt;}
.ye3{bottom:620.973333pt;}
.y68{bottom:623.893333pt;}
.yf9{bottom:627.626667pt;}
.y122{bottom:628.173333pt;}
.yb3{bottom:632.973333pt;}
.y16{bottom:637.226667pt;}
.ye2{bottom:638.026667pt;}
.y67{bottom:640.960000pt;}
.yb2{bottom:650.026667pt;}
.yf8{bottom:650.840000pt;}
.y15{bottom:654.560000pt;}
.ye1{bottom:655.106667pt;}
.y66{bottom:658.026667pt;}
.yb1{bottom:667.106667pt;}
.y121{bottom:671.626667pt;}
.y14{bottom:671.893333pt;}
.ye0{bottom:672.173333pt;}
.y65{bottom:675.093333pt;}
.yf7{bottom:683.360000pt;}
.yb0{bottom:684.173333pt;}
.y13{bottom:689.226667pt;}
.y64{bottom:692.173333pt;}
.y120{bottom:693.506667pt;}
.yaf{bottom:701.226667pt;}
.ydf{bottom:706.293333pt;}
.y12{bottom:706.560000pt;}
.y63{bottom:709.226667pt;}
.yf6{bottom:714.560000pt;}
.y11f{bottom:715.106667pt;}
.yae{bottom:718.293333pt;}
.yde{bottom:723.626667pt;}
.y11{bottom:723.893333pt;}
.y62{bottom:726.293333pt;}
.yf5{bottom:730.293333pt;}
.yad{bottom:735.373333pt;}
.y11e{bottom:736.960000pt;}
.ydd{bottom:740.706667pt;}
.y10{bottom:741.226667pt;}
.y61{bottom:743.626667pt;}
.yac{bottom:752.733333pt;}
.ydc{bottom:757.800000pt;}
.y11d{bottom:758.600000pt;}
.yf{bottom:758.866667pt;}
.y60{bottom:760.733333pt;}
.yf4{bottom:761.800000pt;}
.yab{bottom:769.800000pt;}
.ydb{bottom:774.866667pt;}
.y5f{bottom:777.800000pt;}
.y11c{bottom:780.466667pt;}
.yaa{bottom:786.866667pt;}
.ye{bottom:791.933333pt;}
.yf3{bottom:793.000000pt;}
.y5e{bottom:794.866667pt;}
.y11b{bottom:802.066667pt;}
.ya9{bottom:803.933333pt;}
.yd{bottom:808.733333pt;}
.y5d{bottom:811.933333pt;}
.yda{bottom:813.000000pt;}
.ya8{bottom:821.000000pt;}
.y11a{bottom:823.933333pt;}
.yf2{bottom:824.466667pt;}
.y5c{bottom:829.000000pt;}
.ya7{bottom:842.066667pt;}
.yc{bottom:845.266667pt;}
.y119{bottom:845.533333pt;}
.y5b{bottom:846.066667pt;}
.yf1{bottom:855.666667pt;}
.yb{bottom:863.133333pt;}
.y118{bottom:867.400000pt;}
.yf0{bottom:871.400000pt;}
.ya6{bottom:875.133333pt;}
.y5a{bottom:880.200000pt;}
.y117{bottom:889.000000pt;}
.ya5{bottom:892.733333pt;}
.y59{bottom:897.293333pt;}
.yef{bottom:902.373333pt;}
.ya{bottom:908.506667pt;}
.y116{bottom:910.893333pt;}
.ya4{bottom:911.440000pt;}
.y58{bottom:914.373333pt;}
.yee{bottom:918.106667pt;}
.ya3{bottom:929.840000pt;}
.y57{bottom:931.426667pt;}
.y115{bottom:932.506667pt;}
.y9{bottom:940.760000pt;}
.ya2{bottom:947.426667pt;}
.y56{bottom:948.760000pt;}
.yed{bottom:949.840000pt;}
.y114{bottom:954.360000pt;}
.y55{bottom:965.840000pt;}
.y8{bottom:970.106667pt;}
.y113{bottom:975.960000pt;}
.y54{bottom:982.893333pt;}
.y112{bottom:997.840000pt;}
.y53{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y4f{bottom:1017.293333pt;}
.y4e{bottom:1034.360000pt;}
.y4d{bottom:1043.173333pt;}
.h9{height:20.520833pt;}
.h15{height:25.117708pt;}
.h10{height:27.289062pt;}
.h11{height:29.895833pt;}
.ha{height:31.187500pt;}
.h6{height:31.270833pt;}
.hb{height:35.039062pt;}
.hc{height:35.085938pt;}
.hd{height:35.179688pt;}
.h4{height:38.932292pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h3{height:42.825521pt;}
.h13{height:42.882812pt;}
.h14{height:44.947917pt;}
.h2{height:45.900000pt;}
.h12{height:53.203125pt;}
.he{height:55.520833pt;}
.h8{height:70.078125pt;}
.hf{height:460.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x9{left:72.566667pt;}
.xe{left:76.566655pt;}
.x3{left:151.226667pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.xb{left:239.799988pt;}
.x7{left:245.933322pt;}
.xd{left:250.199988pt;}
.x8{left:251.266655pt;}
.x2{left:379.066667pt;}
.xa{left:384.666655pt;}
.xc{left:617.533322pt;}
.x4{left:681.266667pt;}
}




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