
    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_6fc369f0918fb7855332d685.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_9535886b7e138a2234fbc739.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e1b1d6cd5a11cf7fdddf398.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65a5fa6524045a4dbb360327.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_97600097e75f7794984217d9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_6193fc93719873dbca485474.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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_7fffb53d91a18cccdbf70fb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.877441;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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:ffd;src:url('chunks/assets/font_cc2cccc0405daae1cbb9a91c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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:ffe;src:url('chunks/assets/font_751a025b803c8cda846e7137.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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;}
.ls9{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.452400px;}
.ls3{letter-spacing:-0.382800px;}
.ls10{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.lsa{letter-spacing:7.920000px;}
.ls12{letter-spacing:15.240000px;}
.ls19{letter-spacing:16.560000px;}
.ls1a{letter-spacing:22.320000px;}
.ls11{letter-spacing:24.636000px;}
.lse{letter-spacing:27.516000px;}
.lsd{letter-spacing:31.836000px;}
.lsc{letter-spacing:33.264000px;}
.ls6{letter-spacing:33.276000px;}
.ls14{letter-spacing:40.476000px;}
.lsb{letter-spacing:54.876000px;}
.ls18{letter-spacing:55.186560px;}
.ls15{letter-spacing:63.516000px;}
.ls17{letter-spacing:89.746560px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.wsc{word-spacing:-48.600000px;}
.ws3{word-spacing:-21.058800px;}
.wsa{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.wsb{word-spacing:-0.060480px;}
.ws4{word-spacing:0.000000px;}
._35{margin-left:-218.208000px;}
._29{margin-left:-217.111680px;}
._28{margin-left:-215.280000px;}
._36{margin-left:-208.399680px;}
._3a{margin-left:-204.480000px;}
._27{margin-left:-193.855680px;}
._32{margin-left:-191.105280px;}
._31{margin-left:-187.920000px;}
._2d{margin-left:-175.449600px;}
._2c{margin-left:-172.080000px;}
._39{margin-left:-165.096000px;}
._2b{margin-left:-156.113280px;}
._2a{margin-left:-153.480000px;}
._30{margin-left:-151.951680px;}
._2e{margin-left:-150.660000px;}
._37{margin-left:-108.120000px;}
._38{margin-left:-97.920000px;}
._3b{margin-left:-94.536000px;}
._3c{margin-left:-59.040000px;}
._34{margin-left:-49.824000px;}
._33{margin-left:-48.240000px;}
._2f{margin-left:-16.560000px;}
._e{margin-left:-4.495680px;}
._d{margin-left:-3.456000px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._f{width:4.464000px;}
._7{width:5.472000px;}
._6{width:6.912000px;}
._5{width:8.824320px;}
._8{width:10.696320px;}
._14{width:12.456000px;}
._17{width:14.201280px;}
._9{width:15.822720px;}
._13{width:16.848000px;}
._c{width:19.016640px;}
._b{width:20.056320px;}
._a{width:21.096000px;}
._18{width:22.559040px;}
._10{width:23.760000px;}
._19{width:25.456320px;}
._1a{width:27.406080px;}
._16{width:28.825920px;}
._15{width:30.686400px;}
._1b{width:31.786560px;}
._24{width:33.177600px;}
._25{width:34.182720px;}
._20{width:35.856000px;}
._21{width:36.918720px;}
._11{width:38.304000px;}
._12{width:39.352320px;}
._23{width:41.472000px;}
._22{width:42.552000px;}
._1f{width:44.660160px;}
._1d{width:45.783360px;}
._1c{width:47.540160px;}
._1e{width:49.104000px;}
._26{width:1729.568640px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2c{bottom:3.600000px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.yd8{bottom:23.040000px;}
.ye2{bottom:23.070000px;}
.ydf{bottom:23.400000px;}
.ydb{bottom:23.430000px;}
.yb{bottom:30.600000px;}
.y7{bottom:32.436000px;}
.y6{bottom:57.240000px;}
.y2b{bottom:91.476000px;}
.y5{bottom:118.836000px;}
.y11a{bottom:147.276000px;}
.y4c{bottom:148.716000px;}
.y81{bottom:152.310000px;}
.yca{bottom:155.910000px;}
.yc1{bottom:159.870000px;}
.yea{bottom:160.230000px;}
.y63{bottom:160.590000px;}
.yd6{bottom:164.550000px;}
.ya9{bottom:173.190000px;}
.y119{bottom:178.590000px;}
.y4b{bottom:180.030000px;}
.y29{bottom:181.110000px;}
.y90{bottom:182.550000px;}
.y80{bottom:183.270000px;}
.y100{bottom:185.790000px;}
.yc9{bottom:186.870000px;}
.yc0{bottom:191.190000px;}
.y62{bottom:191.550000px;}
.yd5{bottom:200.235000px;}
.ya8{bottom:204.195000px;}
.y118{bottom:209.595000px;}
.y4a{bottom:211.035000px;}
.y8f{bottom:213.555000px;}
.y7f{bottom:214.275000px;}
.y28{bottom:216.795000px;}
.yc8{bottom:218.235000px;}
.ybf{bottom:222.195000px;}
.y61{bottom:222.555000px;}
.yff{bottom:231.915000px;}
.ya7{bottom:235.155000px;}
.yd4{bottom:235.515000px;}
.y117{bottom:240.555000px;}
.y49{bottom:241.995000px;}
.y8e{bottom:244.515000px;}
.yc7{bottom:249.195000px;}
.y7e{bottom:249.915000px;}
.y27{bottom:252.075000px;}
.ybe{bottom:253.155000px;}
.y60{bottom:253.515000px;}
.ya6{bottom:270.795000px;}
.yd3{bottom:271.155000px;}
.y116{bottom:271.515000px;}
.yfe{bottom:278.355000px;}
.y8d{bottom:280.155000px;}
.y48{bottom:281.955000px;}
.y26{bottom:283.395000px;}
.ybd{bottom:284.115000px;}
.ye9{bottom:284.475000px;}
.y5f{bottom:284.835000px;}
.y7d{bottom:285.555000px;}
.y115{bottom:302.835000px;}
.ya5{bottom:306.075000px;}
.yd2{bottom:306.795000px;}
.yfd{bottom:309.315000px;}
.yc6{bottom:311.115000px;}
.y25{bottom:314.355000px;}
.ybc{bottom:315.435000px;}
.y8c{bottom:315.795000px;}
.y7c{bottom:316.515000px;}
.y5e{bottom:320.115000px;}
.y47{bottom:333.825000px;}
.yd1{bottom:342.465000px;}
.y24{bottom:345.345000px;}
.ya4{bottom:346.425000px;}
.y8b{bottom:346.785000px;}
.y7b{bottom:347.505000px;}
.y5d{bottom:351.465000px;}
.yfc{bottom:355.785000px;}
.y46{bottom:364.785000px;}
.y109{bottom:373.065000px;}
.y114{bottom:373.425000px;}
.ya3{bottom:377.385000px;}
.y8a{bottom:377.745000px;}
.y7a{bottom:378.825000px;}
.y23{bottom:380.985000px;}
.ybb{bottom:382.065000px;}
.y5c{bottom:382.425000px;}
.y45{bottom:395.745000px;}
.yfb{bottom:401.865000px;}
.y113{bottom:404.385000px;}
.ya2{bottom:408.345000px;}
.ye8{bottom:408.705000px;}
.y22{bottom:411.945000px;}
.y5b{bottom:413.385000px;}
.yba{bottom:417.345000px;}
.y79{bottom:418.425000px;}
.y108{bottom:422.385000px;}
.y44{bottom:427.065000px;}
.y112{bottom:435.345000px;}
.ya1{bottom:439.665000px;}
.y21{bottom:442.905000px;}
.y5a{bottom:444.345000px;}
.yfa{bottom:448.305000px;}
.yb9{bottom:448.665000px;}
.y107{bottom:453.390000px;}
.y43{bottom:458.070000px;}
.y78{bottom:467.790000px;}
.ya0{bottom:474.990000px;}
.y59{bottom:475.710000px;}
.y20{bottom:478.590000px;}
.yb8{bottom:479.670000px;}
.y106{bottom:484.710000px;}
.ye7{bottom:486.150000px;}
.y42{bottom:489.030000px;}
.yf9{bottom:494.430000px;}
.y77{bottom:498.750000px;}
.y9f{bottom:505.950000px;}
.y58{bottom:506.670000px;}
.y1f{bottom:509.550000px;}
.yb7{bottom:510.630000px;}
.y10f{bottom:510.990000px;}
.y105{bottom:515.670000px;}
.ye6{bottom:518.550000px;}
.y41{bottom:519.990000px;}
.y76{bottom:530.070000px;}
.ye5{bottom:536.190000px;}
.y57{bottom:537.630000px;}
.y1e{bottom:540.870000px;}
.yb6{bottom:541.590000px;}
.y10e{bottom:542.310000px;}
.y9e{bottom:546.270000px;}
.y104{bottom:546.630000px;}
.y40{bottom:551.310000px;}
.y75{bottom:561.030000px;}
.y89{bottom:568.590000px;}
.y1d{bottom:571.830000px;}
.yb5{bottom:572.910000px;}
.y56{bottom:573.270000px;}
.y9d{bottom:577.260000px;}
.y103{bottom:577.620000px;}
.y3f{bottom:582.300000px;}
.ye4{bottom:585.900000px;}
.yf8{bottom:586.980000px;}
.y74{bottom:596.700000px;}
.yd0{bottom:599.940000px;}
.y1c{bottom:602.820000px;}
.yb4{bottom:603.900000px;}
.y55{bottom:604.260000px;}
.y102{bottom:608.940000px;}
.y9c{bottom:612.900000px;}
.y3e{bottom:613.260000px;}
.y73{bottom:627.660000px;}
.yf7{bottom:633.420000px;}
.y1b{bottom:633.780000px;}
.yb3{bottom:634.860000px;}
.y54{bottom:635.220000px;}
.ye3{bottom:635.580000px;}
.y88{bottom:639.900000px;}
.y9b{bottom:643.860000px;}
.y3d{bottom:644.220000px;}
.y72{bottom:658.620000px;}
.yb2{bottom:665.820000px;}
.y53{bottom:666.540000px;}
.y1a{bottom:669.420000px;}
.y87{bottom:670.860000px;}
.y9a{bottom:674.820000px;}
.y3c{bottom:675.540000px;}
.yf6{bottom:679.500000px;}
.ye1{bottom:685.620000px;}
.y71{bottom:694.260000px;}
.y52{bottom:697.500000px;}
.y19{bottom:700.380000px;}
.yb1{bottom:701.490000px;}
.y86{bottom:701.850000px;}
.y3b{bottom:706.530000px;}
.y99{bottom:710.490000px;}
.yf5{bottom:710.850000px;}
.y70{bottom:725.250000px;}
.y51{bottom:728.490000px;}
.y18{bottom:731.370000px;}
.yb0{bottom:732.450000px;}
.y85{bottom:733.170000px;}
.ye0{bottom:735.330000px;}
.y3a{bottom:737.490000px;}
.y98{bottom:741.450000px;}
.y6f{bottom:756.570000px;}
.yf4{bottom:756.930000px;}
.y50{bottom:759.450000px;}
.y17{bottom:762.690000px;}
.yc5{bottom:764.130000px;}
.yaf{bottom:768.090000px;}
.y39{bottom:768.450000px;}
.y97{bottom:772.410000px;}
.yde{bottom:785.010000px;}
.y6e{bottom:788.610000px;}
.ycf{bottom:790.410000px;}
.y16{bottom:793.650000px;}
.y4f{bottom:795.090000px;}
.y38{bottom:799.410000px;}
.yf3{bottom:803.370000px;}
.y96{bottom:803.730000px;}
.y111{bottom:804.090000px;}
.yae{bottom:808.050000px;}
.y6d{bottom:819.930000px;}
.yce{bottom:821.730000px;}
.y15{bottom:824.610000px;}
.y4e{bottom:826.050000px;}
.y37{bottom:830.775000px;}
.y95{bottom:834.735000px;}
.ydd{bottom:835.095000px;}
.yad{bottom:839.055000px;}
.yf2{bottom:849.495000px;}
.y6c{bottom:852.015000px;}
.ycd{bottom:857.055000px;}
.y14{bottom:858.495000px;}
.y36{bottom:861.735000px;}
.y94{bottom:865.695000px;}
.y110{bottom:866.055000px;}
.yac{bottom:870.375000px;}
.y6b{bottom:883.335000px;}
.ydc{bottom:884.775000px;}
.y101{bottom:888.375000px;}
.y13{bottom:889.455000px;}
.y35{bottom:892.695000px;}
.yf1{bottom:895.935000px;}
.y93{bottom:896.655000px;}
.yc4{bottom:897.375000px;}
.yab{bottom:901.335000px;}
.y10d{bottom:919.335000px;}
.y6a{bottom:920.055000px;}
.y12{bottom:920.415000px;}
.y34{bottom:923.655000px;}
.yc3{bottom:928.335000px;}
.y92{bottom:932.295000px;}
.yda{bottom:934.455000px;}
.yf0{bottom:943.455000px;}
.y10c{bottom:950.295000px;}
.y11{bottom:951.375000px;}
.y33{bottom:955.005000px;}
.y69{bottom:955.365000px;}
.y84{bottom:959.325000px;}
.y91{bottom:972.285000px;}
.y10{bottom:982.725000px;}
.yd9{bottom:984.525000px;}
.y32{bottom:985.965000px;}
.y68{bottom:986.685000px;}
.yef{bottom:989.925000px;}
.yc2{bottom:990.285000px;}
.y83{bottom:994.965000px;}
.yf{bottom:1016.205000px;}
.ycc{bottom:1016.925000px;}
.y67{bottom:1019.085000px;}
.y31{bottom:1021.605000px;}
.y82{bottom:1025.925000px;}
.yd7{bottom:1034.205000px;}
.yee{bottom:1036.005000px;}
.ycb{bottom:1047.885000px;}
.y66{bottom:1050.045000px;}
.ye{bottom:1052.565000px;}
.y30{bottom:1056.885000px;}
.yed{bottom:1071.645000px;}
.y10b{bottom:1079.250000px;}
.y65{bottom:1082.490000px;}
.y4d{bottom:1083.570000px;}
.yd{bottom:1086.090000px;}
.y2f{bottom:1088.250000px;}
.yec{bottom:1102.650000px;}
.y10a{bottom:1110.210000px;}
.y64{bottom:1113.450000px;}
.yaa{bottom:1114.530000px;}
.yc{bottom:1115.970000px;}
.y2e{bottom:1119.210000px;}
.y4{bottom:1137.210000px;}
.yeb{bottom:1149.090000px;}
.y2d{bottom:1150.170000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2a{bottom:1193.730000px;}
.hc{height:16.596000px;}
.h6{height:43.956000px;}
.h7{height:47.264766px;}
.he{height:48.960000px;}
.hd{height:48.996000px;}
.h3{height:49.097812px;}
.h10{height:49.320000px;}
.hf{height:49.356000px;}
.h11{height:49.992188px;}
.h2{height:53.367188px;}
.h8{height:54.426094px;}
.h4{height:58.283437px;}
.h9{height:61.905938px;}
.hb{height:61.927031px;}
.ha{height:63.351562px;}
.h5{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.636000px;}
.w8{width:145.476000px;}
.w9{width:187.275000px;}
.w7{width:294.630000px;}
.w6{width:332.790000px;}
.w5{width:347.910000px;}
.w3{width:641.055000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:8.640000px;}
.x7{left:10.485000px;}
.x1{left:106.235987px;}
.x9{left:120.275987px;}
.x12{left:133.271987px;}
.xd{left:136.151987px;}
.x5{left:144.429000px;}
.x13{left:160.274987px;}
.x16{left:180.794987px;}
.xe{left:183.674987px;}
.x17{left:187.274987px;}
.x18{left:214.274987px;}
.x2{left:241.664987px;}
.xa{left:279.464987px;}
.xc{left:292.064987px;}
.x11{left:303.630000px;}
.x14{left:402.300000px;}
.x4{left:433.259987px;}
.xb{left:446.579987px;}
.x10{left:454.140000px;}
.x8{left:543.449987px;}
.x15{left:548.490000px;}
.x3{left:696.524987px;}
.x6{left:747.285000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.402133pt;}
.ls3{letter-spacing:-0.340267pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.lsa{letter-spacing:7.040000pt;}
.ls12{letter-spacing:13.546667pt;}
.ls19{letter-spacing:14.720000pt;}
.ls1a{letter-spacing:19.840000pt;}
.ls11{letter-spacing:21.898667pt;}
.lse{letter-spacing:24.458667pt;}
.lsd{letter-spacing:28.298667pt;}
.lsc{letter-spacing:29.568000pt;}
.ls6{letter-spacing:29.578667pt;}
.ls14{letter-spacing:35.978667pt;}
.lsb{letter-spacing:48.778667pt;}
.ls18{letter-spacing:49.054720pt;}
.ls15{letter-spacing:56.458667pt;}
.ls17{letter-spacing:79.774720pt;}
.ws7{word-spacing:-64.000000pt;}
.wsc{word-spacing:-43.200000pt;}
.ws3{word-spacing:-18.718933pt;}
.wsa{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.wsb{word-spacing:-0.053760pt;}
.ws4{word-spacing:0.000000pt;}
._35{margin-left:-193.962667pt;}
._29{margin-left:-192.988160pt;}
._28{margin-left:-191.360000pt;}
._36{margin-left:-185.244160pt;}
._3a{margin-left:-181.760000pt;}
._27{margin-left:-172.316160pt;}
._32{margin-left:-169.871360pt;}
._31{margin-left:-167.040000pt;}
._2d{margin-left:-155.955200pt;}
._2c{margin-left:-152.960000pt;}
._39{margin-left:-146.752000pt;}
._2b{margin-left:-138.767360pt;}
._2a{margin-left:-136.426667pt;}
._30{margin-left:-135.068160pt;}
._2e{margin-left:-133.920000pt;}
._37{margin-left:-96.106667pt;}
._38{margin-left:-87.040000pt;}
._3b{margin-left:-84.032000pt;}
._3c{margin-left:-52.480000pt;}
._34{margin-left:-44.288000pt;}
._33{margin-left:-42.880000pt;}
._2f{margin-left:-14.720000pt;}
._e{margin-left:-3.996160pt;}
._d{margin-left:-3.072000pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._f{width:3.968000pt;}
._7{width:4.864000pt;}
._6{width:6.144000pt;}
._5{width:7.843840pt;}
._8{width:9.507840pt;}
._14{width:11.072000pt;}
._17{width:12.623360pt;}
._9{width:14.064640pt;}
._13{width:14.976000pt;}
._c{width:16.903680pt;}
._b{width:17.827840pt;}
._a{width:18.752000pt;}
._18{width:20.052480pt;}
._10{width:21.120000pt;}
._19{width:22.627840pt;}
._1a{width:24.360960pt;}
._16{width:25.623040pt;}
._15{width:27.276800pt;}
._1b{width:28.254720pt;}
._24{width:29.491200pt;}
._25{width:30.384640pt;}
._20{width:31.872000pt;}
._21{width:32.816640pt;}
._11{width:34.048000pt;}
._12{width:34.979840pt;}
._23{width:36.864000pt;}
._22{width:37.824000pt;}
._1f{width:39.697920pt;}
._1d{width:40.696320pt;}
._1c{width:42.257920pt;}
._1e{width:43.648000pt;}
._26{width:1537.394347pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2c{bottom:3.200000pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.yd8{bottom:20.480000pt;}
.ye2{bottom:20.506667pt;}
.ydf{bottom:20.800000pt;}
.ydb{bottom:20.826667pt;}
.yb{bottom:27.200000pt;}
.y7{bottom:28.832000pt;}
.y6{bottom:50.880000pt;}
.y2b{bottom:81.312000pt;}
.y5{bottom:105.632000pt;}
.y11a{bottom:130.912000pt;}
.y4c{bottom:132.192000pt;}
.y81{bottom:135.386667pt;}
.yca{bottom:138.586667pt;}
.yc1{bottom:142.106667pt;}
.yea{bottom:142.426667pt;}
.y63{bottom:142.746667pt;}
.yd6{bottom:146.266667pt;}
.ya9{bottom:153.946667pt;}
.y119{bottom:158.746667pt;}
.y4b{bottom:160.026667pt;}
.y29{bottom:160.986667pt;}
.y90{bottom:162.266667pt;}
.y80{bottom:162.906667pt;}
.y100{bottom:165.146667pt;}
.yc9{bottom:166.106667pt;}
.yc0{bottom:169.946667pt;}
.y62{bottom:170.266667pt;}
.yd5{bottom:177.986667pt;}
.ya8{bottom:181.506667pt;}
.y118{bottom:186.306667pt;}
.y4a{bottom:187.586667pt;}
.y8f{bottom:189.826667pt;}
.y7f{bottom:190.466667pt;}
.y28{bottom:192.706667pt;}
.yc8{bottom:193.986667pt;}
.ybf{bottom:197.506667pt;}
.y61{bottom:197.826667pt;}
.yff{bottom:206.146667pt;}
.ya7{bottom:209.026667pt;}
.yd4{bottom:209.346667pt;}
.y117{bottom:213.826667pt;}
.y49{bottom:215.106667pt;}
.y8e{bottom:217.346667pt;}
.yc7{bottom:221.506667pt;}
.y7e{bottom:222.146667pt;}
.y27{bottom:224.066667pt;}
.ybe{bottom:225.026667pt;}
.y60{bottom:225.346667pt;}
.ya6{bottom:240.706667pt;}
.yd3{bottom:241.026667pt;}
.y116{bottom:241.346667pt;}
.yfe{bottom:247.426667pt;}
.y8d{bottom:249.026667pt;}
.y48{bottom:250.626667pt;}
.y26{bottom:251.906667pt;}
.ybd{bottom:252.546667pt;}
.ye9{bottom:252.866667pt;}
.y5f{bottom:253.186667pt;}
.y7d{bottom:253.826667pt;}
.y115{bottom:269.186667pt;}
.ya5{bottom:272.066667pt;}
.yd2{bottom:272.706667pt;}
.yfd{bottom:274.946667pt;}
.yc6{bottom:276.546667pt;}
.y25{bottom:279.426667pt;}
.ybc{bottom:280.386667pt;}
.y8c{bottom:280.706667pt;}
.y7c{bottom:281.346667pt;}
.y5e{bottom:284.546667pt;}
.y47{bottom:296.733333pt;}
.yd1{bottom:304.413333pt;}
.y24{bottom:306.973333pt;}
.ya4{bottom:307.933333pt;}
.y8b{bottom:308.253333pt;}
.y7b{bottom:308.893333pt;}
.y5d{bottom:312.413333pt;}
.yfc{bottom:316.253333pt;}
.y46{bottom:324.253333pt;}
.y109{bottom:331.613333pt;}
.y114{bottom:331.933333pt;}
.ya3{bottom:335.453333pt;}
.y8a{bottom:335.773333pt;}
.y7a{bottom:336.733333pt;}
.y23{bottom:338.653333pt;}
.ybb{bottom:339.613333pt;}
.y5c{bottom:339.933333pt;}
.y45{bottom:351.773333pt;}
.yfb{bottom:357.213333pt;}
.y113{bottom:359.453333pt;}
.ya2{bottom:362.973333pt;}
.ye8{bottom:363.293333pt;}
.y22{bottom:366.173333pt;}
.y5b{bottom:367.453333pt;}
.yba{bottom:370.973333pt;}
.y79{bottom:371.933333pt;}
.y108{bottom:375.453333pt;}
.y44{bottom:379.613333pt;}
.y112{bottom:386.973333pt;}
.ya1{bottom:390.813333pt;}
.y21{bottom:393.693333pt;}
.y5a{bottom:394.973333pt;}
.yfa{bottom:398.493333pt;}
.yb9{bottom:398.813333pt;}
.y107{bottom:403.013333pt;}
.y43{bottom:407.173333pt;}
.y78{bottom:415.813333pt;}
.ya0{bottom:422.213333pt;}
.y59{bottom:422.853333pt;}
.y20{bottom:425.413333pt;}
.yb8{bottom:426.373333pt;}
.y106{bottom:430.853333pt;}
.ye7{bottom:432.133333pt;}
.y42{bottom:434.693333pt;}
.yf9{bottom:439.493333pt;}
.y77{bottom:443.333333pt;}
.y9f{bottom:449.733333pt;}
.y58{bottom:450.373333pt;}
.y1f{bottom:452.933333pt;}
.yb7{bottom:453.893333pt;}
.y10f{bottom:454.213333pt;}
.y105{bottom:458.373333pt;}
.ye6{bottom:460.933333pt;}
.y41{bottom:462.213333pt;}
.y76{bottom:471.173333pt;}
.ye5{bottom:476.613333pt;}
.y57{bottom:477.893333pt;}
.y1e{bottom:480.773333pt;}
.yb6{bottom:481.413333pt;}
.y10e{bottom:482.053333pt;}
.y9e{bottom:485.573333pt;}
.y104{bottom:485.893333pt;}
.y40{bottom:490.053333pt;}
.y75{bottom:498.693333pt;}
.y89{bottom:505.413333pt;}
.y1d{bottom:508.293333pt;}
.yb5{bottom:509.253333pt;}
.y56{bottom:509.573333pt;}
.y9d{bottom:513.120000pt;}
.y103{bottom:513.440000pt;}
.y3f{bottom:517.600000pt;}
.ye4{bottom:520.800000pt;}
.yf8{bottom:521.760000pt;}
.y74{bottom:530.400000pt;}
.yd0{bottom:533.280000pt;}
.y1c{bottom:535.840000pt;}
.yb4{bottom:536.800000pt;}
.y55{bottom:537.120000pt;}
.y102{bottom:541.280000pt;}
.y9c{bottom:544.800000pt;}
.y3e{bottom:545.120000pt;}
.y73{bottom:557.920000pt;}
.yf7{bottom:563.040000pt;}
.y1b{bottom:563.360000pt;}
.yb3{bottom:564.320000pt;}
.y54{bottom:564.640000pt;}
.ye3{bottom:564.960000pt;}
.y88{bottom:568.800000pt;}
.y9b{bottom:572.320000pt;}
.y3d{bottom:572.640000pt;}
.y72{bottom:585.440000pt;}
.yb2{bottom:591.840000pt;}
.y53{bottom:592.480000pt;}
.y1a{bottom:595.040000pt;}
.y87{bottom:596.320000pt;}
.y9a{bottom:599.840000pt;}
.y3c{bottom:600.480000pt;}
.yf6{bottom:604.000000pt;}
.ye1{bottom:609.440000pt;}
.y71{bottom:617.120000pt;}
.y52{bottom:620.000000pt;}
.y19{bottom:622.560000pt;}
.yb1{bottom:623.546667pt;}
.y86{bottom:623.866667pt;}
.y3b{bottom:628.026667pt;}
.y99{bottom:631.546667pt;}
.yf5{bottom:631.866667pt;}
.y70{bottom:644.666667pt;}
.y51{bottom:647.546667pt;}
.y18{bottom:650.106667pt;}
.yb0{bottom:651.066667pt;}
.y85{bottom:651.706667pt;}
.ye0{bottom:653.626667pt;}
.y3a{bottom:655.546667pt;}
.y98{bottom:659.066667pt;}
.y6f{bottom:672.506667pt;}
.yf4{bottom:672.826667pt;}
.y50{bottom:675.066667pt;}
.y17{bottom:677.946667pt;}
.yc5{bottom:679.226667pt;}
.yaf{bottom:682.746667pt;}
.y39{bottom:683.066667pt;}
.y97{bottom:686.586667pt;}
.yde{bottom:697.786667pt;}
.y6e{bottom:700.986667pt;}
.ycf{bottom:702.586667pt;}
.y16{bottom:705.466667pt;}
.y4f{bottom:706.746667pt;}
.y38{bottom:710.586667pt;}
.yf3{bottom:714.106667pt;}
.y96{bottom:714.426667pt;}
.y111{bottom:714.746667pt;}
.yae{bottom:718.266667pt;}
.y6d{bottom:728.826667pt;}
.yce{bottom:730.426667pt;}
.y15{bottom:732.986667pt;}
.y4e{bottom:734.266667pt;}
.y37{bottom:738.466667pt;}
.y95{bottom:741.986667pt;}
.ydd{bottom:742.306667pt;}
.yad{bottom:745.826667pt;}
.yf2{bottom:755.106667pt;}
.y6c{bottom:757.346667pt;}
.ycd{bottom:761.826667pt;}
.y14{bottom:763.106667pt;}
.y36{bottom:765.986667pt;}
.y94{bottom:769.506667pt;}
.y110{bottom:769.826667pt;}
.yac{bottom:773.666667pt;}
.y6b{bottom:785.186667pt;}
.ydc{bottom:786.466667pt;}
.y101{bottom:789.666667pt;}
.y13{bottom:790.626667pt;}
.y35{bottom:793.506667pt;}
.yf1{bottom:796.386667pt;}
.y93{bottom:797.026667pt;}
.yc4{bottom:797.666667pt;}
.yab{bottom:801.186667pt;}
.y10d{bottom:817.186667pt;}
.y6a{bottom:817.826667pt;}
.y12{bottom:818.146667pt;}
.y34{bottom:821.026667pt;}
.yc3{bottom:825.186667pt;}
.y92{bottom:828.706667pt;}
.yda{bottom:830.626667pt;}
.yf0{bottom:838.626667pt;}
.y10c{bottom:844.706667pt;}
.y11{bottom:845.666667pt;}
.y33{bottom:848.893333pt;}
.y69{bottom:849.213333pt;}
.y84{bottom:852.733333pt;}
.y91{bottom:864.253333pt;}
.y10{bottom:873.533333pt;}
.yd9{bottom:875.133333pt;}
.y32{bottom:876.413333pt;}
.y68{bottom:877.053333pt;}
.yef{bottom:879.933333pt;}
.yc2{bottom:880.253333pt;}
.y83{bottom:884.413333pt;}
.yf{bottom:903.293333pt;}
.ycc{bottom:903.933333pt;}
.y67{bottom:905.853333pt;}
.y31{bottom:908.093333pt;}
.y82{bottom:911.933333pt;}
.yd7{bottom:919.293333pt;}
.yee{bottom:920.893333pt;}
.ycb{bottom:931.453333pt;}
.y66{bottom:933.373333pt;}
.ye{bottom:935.613333pt;}
.y30{bottom:939.453333pt;}
.yed{bottom:952.573333pt;}
.y10b{bottom:959.333333pt;}
.y65{bottom:962.213333pt;}
.y4d{bottom:963.173333pt;}
.yd{bottom:965.413333pt;}
.y2f{bottom:967.333333pt;}
.yec{bottom:980.133333pt;}
.y10a{bottom:986.853333pt;}
.y64{bottom:989.733333pt;}
.yaa{bottom:990.693333pt;}
.yc{bottom:991.973333pt;}
.y2e{bottom:994.853333pt;}
.y4{bottom:1010.853333pt;}
.yeb{bottom:1021.413333pt;}
.y2d{bottom:1022.373333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2a{bottom:1061.093333pt;}
.hc{height:14.752000pt;}
.h6{height:39.072000pt;}
.h7{height:42.013125pt;}
.he{height:43.520000pt;}
.hd{height:43.552000pt;}
.h3{height:43.642500pt;}
.h10{height:43.840000pt;}
.hf{height:43.872000pt;}
.h11{height:44.437500pt;}
.h2{height:47.437500pt;}
.h8{height:48.378750pt;}
.h4{height:51.807500pt;}
.h9{height:55.027500pt;}
.hb{height:55.046250pt;}
.ha{height:56.312500pt;}
.h5{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.232000pt;}
.w8{width:129.312000pt;}
.w9{width:166.466667pt;}
.w7{width:261.893333pt;}
.w6{width:295.813333pt;}
.w5{width:309.253333pt;}
.w3{width:569.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:7.680000pt;}
.x7{left:9.320000pt;}
.x1{left:94.431988pt;}
.x9{left:106.911988pt;}
.x12{left:118.463988pt;}
.xd{left:121.023988pt;}
.x5{left:128.381333pt;}
.x13{left:142.466655pt;}
.x16{left:160.706655pt;}
.xe{left:163.266655pt;}
.x17{left:166.466655pt;}
.x18{left:190.466655pt;}
.x2{left:214.813322pt;}
.xa{left:248.413322pt;}
.xc{left:259.613322pt;}
.x11{left:269.893333pt;}
.x14{left:357.600000pt;}
.x4{left:385.119988pt;}
.xb{left:396.959988pt;}
.x10{left:403.680000pt;}
.x8{left:483.066655pt;}
.x15{left:487.546667pt;}
.x3{left:619.133322pt;}
.x6{left:664.253333pt;}
}




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