
    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_31913c2c62993a9173b733fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_980ea526d78513183b4749e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_8de0fc123c9c77f7e0018ad3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114746;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_97aa113b1aa6908ae9e60531.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_20b3a33ea6dfaa0dee50f994.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149414;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_aaa6c3c1ec0fca4daab863f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f93bab8f54690126784f06b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_c7dba07fe4b7a5bd473d966c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_98b5b3509629b9e7fa5bacd3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_c52b28a5c66f850b6e6be11b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_49cf961f3e76dab5d039518e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.950684;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_b205406937407c4570e6699b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_69d124bdc22251a53df21da8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;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_00976b3ca76795abac8256fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.870117;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:fff;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_78254273bf3373df675fe35e.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:33.120000px;}
.lsb{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.171600px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.097800px;}
.ls8{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.187200px;}
.ls4{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:38.304000px;}
.lsf{letter-spacing:42.624000px;}
.ls12{letter-spacing:59.321280px;}
.lse{letter-spacing:59.345280px;}
.ls11{letter-spacing:162.144000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsb{word-spacing:-66.240000px;}
.ws1{word-spacing:-27.036000px;}
.ws0{word-spacing:-27.000000px;}
.wsd{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.326600px;}
.ws4{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.228000px;}
.ws9{word-spacing:-15.174000px;}
.ws6{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.508000px;}
.wsa{word-spacing:0.000000px;}
._9{margin-left:-9.036000px;}
._1d{margin-left:-5.904000px;}
._24{margin-left:-4.104960px;}
._5{margin-left:-2.808000px;}
._2{margin-left:-1.273920px;}
._0{width:1.044000px;}
._14{width:2.304000px;}
._c{width:3.312000px;}
._13{width:4.752000px;}
._12{width:5.832000px;}
._21{width:7.094400px;}
._16{width:8.352000px;}
._17{width:9.504000px;}
._15{width:10.656000px;}
._b{width:12.312000px;}
._a{width:13.392000px;}
._1e{width:14.400000px;}
._18{width:16.416000px;}
._25{width:18.014400px;}
._11{width:19.080000px;}
._1c{width:20.545920px;}
._6{width:22.176000px;}
._4{width:23.400000px;}
._19{width:24.408000px;}
._d{width:25.848000px;}
._e{width:26.928000px;}
._26{width:27.984000px;}
._23{width:29.278080px;}
._f{width:31.032000px;}
._10{width:32.184000px;}
._1a{width:41.616000px;}
._1b{width:42.840000px;}
._8{width:47.592000px;}
._7{width:48.600000px;}
._22{width:53.500560px;}
._1f{width:79.416000px;}
._20{width:80.496000px;}
._3{width:1029.405120px;}
._1{width:2783.688000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fcb{color:rgb(255,0,0);}
.fca{color:rgb(132,150,176);}
.fc2{color:rgb(4,156,207);}
.fc1{color:rgb(16,102,98);}
.fc9{color:rgb(68,84,106);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:87.120000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:2.880000px;}
.y5f{bottom:3.060000px;}
.ye{bottom:3.240000px;}
.ya{bottom:5.040000px;}
.yc{bottom:5.580000px;}
.y2{bottom:8.820000px;}
.yfe{bottom:9.000000px;}
.y60{bottom:9.180000px;}
.y36{bottom:12.960000px;}
.y1d{bottom:18.360000px;}
.y125{bottom:21.600000px;}
.yfc{bottom:23.400000px;}
.y1c{bottom:34.020000px;}
.y5e{bottom:35.100000px;}
.y8a{bottom:36.900000px;}
.yd{bottom:39.420000px;}
.y35{bottom:42.840000px;}
.y8{bottom:45.900000px;}
.y1b{bottom:49.500000px;}
.y5d{bottom:64.800000px;}
.y1a{bottom:65.025000px;}
.y34{bottom:73.800000px;}
.y19{bottom:80.505000px;}
.y18{bottom:95.985000px;}
.y13d{bottom:101.556000px;}
.y33{bottom:104.985000px;}
.y15e{bottom:105.336000px;}
.y122{bottom:108.216000px;}
.y174{bottom:109.836000px;}
.y17{bottom:112.545000px;}
.y37{bottom:113.985000px;}
.yd6{bottom:116.496000px;}
.yb0{bottom:116.856000px;}
.y5b{bottom:117.036000px;}
.y86{bottom:124.596000px;}
.yf8{bottom:127.476000px;}
.y13c{bottom:129.996000px;}
.y15d{bottom:133.956000px;}
.y32{bottom:135.945000px;}
.y121{bottom:136.656000px;}
.yee{bottom:137.556000px;}
.y5a{bottom:137.736000px;}
.y173{bottom:138.456000px;}
.yd5{bottom:144.936000px;}
.yaf{bottom:145.296000px;}
.y85{bottom:153.030000px;}
.yf7{bottom:155.910000px;}
.y59{bottom:158.430000px;}
.y15c{bottom:163.470000px;}
.y120{bottom:165.270000px;}
.yed{bottom:166.170000px;}
.y31{bottom:167.085000px;}
.y172{bottom:168.150000px;}
.yd4{bottom:173.370000px;}
.yae{bottom:173.730000px;}
.y58{bottom:179.130000px;}
.y84{bottom:181.470000px;}
.y13b{bottom:186.870000px;}
.y4d{bottom:191.385000px;}
.y15b{bottom:191.910000px;}
.yec{bottom:194.610000px;}
.y171{bottom:197.670000px;}
.yf6{bottom:198.030000px;}
.y30{bottom:198.045000px;}
.y57{bottom:199.830000px;}
.yd3{bottom:201.810000px;}
.yad{bottom:202.170000px;}
.y83{bottom:204.150000px;}
.y11f{bottom:205.950000px;}
.y4c{bottom:211.185000px;}
.y15a{bottom:220.350000px;}
.y56{bottom:220.530000px;}
.yeb{bottom:223.050000px;}
.yf5{bottom:226.470000px;}
.y2f{bottom:229.185000px;}
.yd2{bottom:230.250000px;}
.yac{bottom:230.790000px;}
.y4b{bottom:230.805000px;}
.y82{bottom:233.850000px;}
.y11e{bottom:234.570000px;}
.y1f{bottom:237.270000px;}
.y170{bottom:239.610000px;}
.y159{bottom:248.970000px;}
.y4a{bottom:250.425000px;}
.yea{bottom:251.490000px;}
.yf4{bottom:254.910000px;}
.yd1{bottom:258.690000px;}
.y13a{bottom:258.870000px;}
.y2e{bottom:260.145000px;}
.yab{bottom:260.310000px;}
.y81{bottom:262.290000px;}
.y11d{bottom:263.010000px;}
.y16f{bottom:268.050000px;}
.y49{bottom:269.325000px;}
.y158{bottom:277.410000px;}
.y55{bottom:279.765000px;}
.ye9{bottom:281.370000px;}
.yf3{bottom:283.350000px;}
.y48{bottom:284.805000px;}
.yd0{bottom:287.130000px;}
.y139{bottom:287.310000px;}
.yaa{bottom:288.750000px;}
.y80{bottom:290.730000px;}
.y2d{bottom:291.285000px;}
.y11c{bottom:291.450000px;}
.y16e{bottom:296.670000px;}
.y47{bottom:300.465000px;}
.y157{bottom:306.930000px;}
.ye8{bottom:311.430000px;}
.yf2{bottom:311.790000px;}
.ycf{bottom:315.570000px;}
.y138{bottom:315.750000px;}
.y46{bottom:315.945000px;}
.y54{bottom:316.485000px;}
.ya9{bottom:317.190000px;}
.y7f{bottom:319.170000px;}
.y11b{bottom:319.890000px;}
.y2c{bottom:322.245000px;}
.y16d{bottom:326.190000px;}
.y45{bottom:332.145000px;}
.y156{bottom:335.370000px;}
.ye7{bottom:341.355000px;}
.yf1{bottom:341.895000px;}
.yce{bottom:344.235000px;}
.ya8{bottom:345.855000px;}
.y7e{bottom:347.655000px;}
.y11a{bottom:348.375000px;}
.y44{bottom:351.765000px;}
.y2b{bottom:353.385000px;}
.y16c{bottom:354.855000px;}
.y18e{bottom:357.015000px;}
.y155{bottom:364.035000px;}
.ye6{bottom:369.795000px;}
.y43{bottom:370.695000px;}
.yf0{bottom:371.775000px;}
.ycd{bottom:372.675000px;}
.ya7{bottom:374.295000px;}
.y7d{bottom:376.095000px;}
.y2a{bottom:384.375000px;}
.y16b{bottom:384.555000px;}
.y42{bottom:386.175000px;}
.y119{bottom:389.235000px;}
.y53{bottom:390.135000px;}
.y154{bottom:392.475000px;}
.y18d{bottom:396.255000px;}
.ye5{bottom:398.235000px;}
.ycc{bottom:401.115000px;}
.y41{bottom:401.655000px;}
.ya6{bottom:402.735000px;}
.y7c{bottom:404.535000px;}
.y16a{bottom:414.075000px;}
.y29{bottom:415.515000px;}
.y40{bottom:417.495000px;}
.y118{bottom:417.675000px;}
.y153{bottom:420.915000px;}
.y18c{bottom:424.875000px;}
.ye4{bottom:426.675000px;}
.y52{bottom:427.035000px;}
.ycb{bottom:429.555000px;}
.ya5{bottom:431.175000px;}
.yef{bottom:431.715000px;}
.y7b{bottom:433.155000px;}
.y3f{bottom:434.775000px;}
.y169{bottom:442.515000px;}
.y137{bottom:444.675000px;}
.y117{bottom:446.115000px;}
.y28{bottom:446.475000px;}
.y152{bottom:449.535000px;}
.y3e{bottom:452.055000px;}
.y18b{bottom:454.575000px;}
.ye3{bottom:455.115000px;}
.yca{bottom:457.995000px;}
.ya4{bottom:459.615000px;}
.y7a{bottom:461.595000px;}
.y51{bottom:463.755000px;}
.y3d{bottom:469.335000px;}
.y136{bottom:473.115000px;}
.y116{bottom:474.555000px;}
.y27{bottom:477.615000px;}
.y151{bottom:479.055000px;}
.ye2{bottom:483.555000px;}
.y18a{bottom:484.275000px;}
.y168{bottom:484.455000px;}
.yc9{bottom:486.435000px;}
.y3c{bottom:486.615000px;}
.ya3{bottom:488.055000px;}
.y79{bottom:490.035000px;}
.y50{bottom:500.655000px;}
.y135{bottom:501.555000px;}
.y115{bottom:502.995000px;}
.y3b{bottom:503.715000px;}
.y150{bottom:507.495000px;}
.y26{bottom:508.575000px;}
.ye1{bottom:512.175000px;}
.y167{bottom:513.075000px;}
.y189{bottom:513.795000px;}
.yc8{bottom:514.875000px;}
.ya2{bottom:516.495000px;}
.y78{bottom:518.475000px;}
.y3a{bottom:520.995000px;}
.y134{bottom:529.995000px;}
.y114{bottom:531.435000px;}
.y14f{bottom:535.935000px;}
.y4f{bottom:537.375000px;}
.y39{bottom:538.275000px;}
.y25{bottom:539.715000px;}
.ye0{bottom:540.615000px;}
.y166{bottom:542.775000px;}
.yc7{bottom:543.315000px;}
.y188{bottom:543.495000px;}
.ya1{bottom:544.935000px;}
.y77{bottom:546.915000px;}
.y38{bottom:555.915000px;}
.y4e{bottom:556.635000px;}
.y133{bottom:558.435000px;}
.y113{bottom:560.055000px;}
.y14e{bottom:564.375000px;}
.ydf{bottom:569.055000px;}
.y24{bottom:570.675000px;}
.yc6{bottom:571.755000px;}
.y165{bottom:572.295000px;}
.ya0{bottom:573.375000px;}
.y76{bottom:575.355000px;}
.y187{bottom:585.435000px;}
.y132{bottom:586.875000px;}
.y112{bottom:588.495000px;}
.y14d{bottom:592.815000px;}
.yde{bottom:597.495000px;}
.yc5{bottom:600.375000px;}
.y23{bottom:601.815000px;}
.y9f{bottom:601.995000px;}
.y75{bottom:603.825000px;}
.y186{bottom:614.085000px;}
.y164{bottom:614.265000px;}
.y131{bottom:615.345000px;}
.y14c{bottom:621.285000px;}
.ydd{bottom:625.965000px;}
.yc4{bottom:628.845000px;}
.y111{bottom:629.205000px;}
.y9e{bottom:630.465000px;}
.y74{bottom:632.265000px;}
.y22{bottom:632.775000px;}
.y185{bottom:643.605000px;}
.y130{bottom:643.785000px;}
.y14b{bottom:649.905000px;}
.ydc{bottom:654.405000px;}
.y163{bottom:655.125000px;}
.yc3{bottom:657.285000px;}
.y110{bottom:657.825000px;}
.y9d{bottom:658.905000px;}
.y73{bottom:660.705000px;}
.y21{bottom:663.780000px;}
.y12f{bottom:672.225000px;}
.y184{bottom:673.305000px;}
.ydb{bottom:682.845000px;}
.y20{bottom:684.480000px;}
.yc2{bottom:685.725000px;}
.y10f{bottom:686.265000px;}
.y9c{bottom:687.345000px;}
.y72{bottom:689.325000px;}
.y14a{bottom:694.365000px;}
.y162{bottom:698.505000px;}
.y12e{bottom:700.845000px;}
.y183{bottom:702.825000px;}
.yda{bottom:711.465000px;}
.yc1{bottom:714.165000px;}
.y10e{bottom:714.705000px;}
.y9b{bottom:715.785000px;}
.y71{bottom:717.765000px;}
.y149{bottom:722.805000px;}
.y161{bottom:727.125000px;}
.y12d{bottom:729.285000px;}
.y182{bottom:731.445000px;}
.yd9{bottom:741.345000px;}
.yc0{bottom:742.605000px;}
.y10d{bottom:743.145000px;}
.y9a{bottom:744.225000px;}
.y70{bottom:746.205000px;}
.y160{bottom:755.565000px;}
.y12c{bottom:757.725000px;}
.y148{bottom:766.365000px;}
.ybf{bottom:771.045000px;}
.yd8{bottom:771.225000px;}
.y10c{bottom:771.585000px;}
.y99{bottom:772.665000px;}
.y181{bottom:773.385000px;}
.y6f{bottom:774.645000px;}
.y15f{bottom:784.005000px;}
.y12b{bottom:786.165000px;}
.ybe{bottom:799.485000px;}
.yd7{bottom:799.665000px;}
.y98{bottom:801.105000px;}
.y180{bottom:801.825000px;}
.y6e{bottom:803.085000px;}
.y16{bottom:809.205000px;}
.y147{bottom:809.745000px;}
.y10b{bottom:812.445000px;}
.ybd{bottom:827.925000px;}
.y97{bottom:829.545000px;}
.y17f{bottom:830.265000px;}
.y6d{bottom:831.525000px;}
.y146{bottom:838.185000px;}
.y10a{bottom:840.885000px;}
.ybc{bottom:856.545000px;}
.y96{bottom:858.165000px;}
.y17e{bottom:859.785000px;}
.y6c{bottom:859.965000px;}
.y145{bottom:866.805000px;}
.y109{bottom:869.325000px;}
.y12a{bottom:873.150000px;}
.ybb{bottom:885.030000px;}
.y95{bottom:886.650000px;}
.y6b{bottom:888.450000px;}
.y144{bottom:895.290000px;}
.y108{bottom:897.810000px;}
.yba{bottom:913.470000px;}
.y129{bottom:914.010000px;}
.y94{bottom:915.090000px;}
.y6a{bottom:916.890000px;}
.y17d{bottom:918.150000px;}
.y143{bottom:923.730000px;}
.y107{bottom:926.250000px;}
.yb9{bottom:941.910000px;}
.y128{bottom:942.450000px;}
.y93{bottom:943.530000px;}
.y15{bottom:944.970000px;}
.y69{bottom:945.510000px;}
.y17c{bottom:947.670000px;}
.y142{bottom:952.170000px;}
.y106{bottom:954.690000px;}
.yb8{bottom:970.530000px;}
.y127{bottom:970.890000px;}
.y92{bottom:971.970000px;}
.y14{bottom:973.050000px;}
.y68{bottom:973.950000px;}
.y17b{bottom:976.290000px;}
.y105{bottom:983.310000px;}
.y141{bottom:995.550000px;}
.yb7{bottom:1000.050000px;}
.y91{bottom:1000.410000px;}
.y13{bottom:1002.030000px;}
.y67{bottom:1002.390000px;}
.y104{bottom:1011.750000px;}
.y17a{bottom:1018.230000px;}
.y140{bottom:1023.990000px;}
.yb6{bottom:1028.490000px;}
.y90{bottom:1028.850000px;}
.y66{bottom:1030.830000px;}
.y12{bottom:1037.310000px;}
.y103{bottom:1040.190000px;}
.y179{bottom:1046.670000px;}
.y13f{bottom:1052.610000px;}
.yb5{bottom:1056.930000px;}
.y8f{bottom:1057.290000px;}
.y65{bottom:1059.270000px;}
.y11{bottom:1065.750000px;}
.y102{bottom:1068.630000px;}
.y178{bottom:1076.370000px;}
.y13e{bottom:1081.050000px;}
.yb4{bottom:1085.550000px;}
.y8e{bottom:1085.730000px;}
.y64{bottom:1087.710000px;}
.y10{bottom:1094.190000px;}
.y177{bottom:1106.070000px;}
.y101{bottom:1109.490000px;}
.yf{bottom:1113.630000px;}
.y8d{bottom:1114.350000px;}
.yb3{bottom:1115.070000px;}
.y63{bottom:1116.150000px;}
.y7{bottom:1134.870000px;}
.y176{bottom:1135.590000px;}
.y100{bottom:1137.960000px;}
.y9{bottom:1142.640000px;}
.y8c{bottom:1142.820000px;}
.yb2{bottom:1143.540000px;}
.yb{bottom:1144.080000px;}
.y62{bottom:1144.620000px;}
.y6{bottom:1154.520000px;}
.y175{bottom:1165.320000px;}
.yff{bottom:1166.400000px;}
.y8b{bottom:1171.260000px;}
.yb1{bottom:1171.980000px;}
.y1{bottom:1172.700000px;}
.y61{bottom:1173.060000px;}
.y5{bottom:1175.220000px;}
.yfb{bottom:1189.260000px;}
.y89{bottom:1190.340000px;}
.y124{bottom:1192.140000px;}
.y4{bottom:1196.820000px;}
.yfa{bottom:1205.820000px;}
.y88{bottom:1206.900000px;}
.y123{bottom:1210.500000px;}
.y3{bottom:1218.780000px;}
.y126{bottom:1219.140000px;}
.yfd{bottom:1223.640000px;}
.yf9{bottom:1224.180000px;}
.y5c{bottom:1224.540000px;}
.y87{bottom:1225.260000px;}
.h8{height:21.780000px;}
.h1e{height:22.500000px;}
.hc{height:22.680000px;}
.ha{height:25.200000px;}
.h24{height:25.740000px;}
.h1f{height:25.920000px;}
.hf{height:33.683203px;}
.h2{height:34.200000px;}
.h13{height:39.471680px;}
.h14{height:40.605469px;}
.h10{height:41.726953px;}
.h1a{height:43.681992px;}
.h17{height:46.251562px;}
.h20{height:46.445273px;}
.hd{height:46.736719px;}
.h22{height:48.224531px;}
.h1c{height:49.394180px;}
.h9{height:50.273438px;}
.h5{height:50.800781px;}
.h23{height:52.417969px;}
.h16{height:52.628906px;}
.h18{height:53.367187px;}
.h1b{height:54.573750px;}
.h21{height:55.291992px;}
.h12{height:58.007812px;}
.hb{height:59.436914px;}
.h1d{height:59.439023px;}
.h7{height:65.884219px;}
.h4{height:71.613281px;}
.h6{height:73.722656px;}
.h3{height:75.410156px;}
.he{height:77.360625px;}
.h11{height:129.996000px;}
.h19{height:571.935000px;}
.h15{height:701.925000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:66.780000px;}
.w6{width:66.960000px;}
.w9{width:100.830000px;}
.wd{width:119.160000px;}
.wb{width:119.196000px;}
.wc{width:119.340000px;}
.w7{width:180.030000px;}
.w4{width:182.370000px;}
.w5{width:276.375000px;}
.w8{width:483.915000px;}
.w2{width:636.945000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.760000px;}
.x11{left:8.100000px;}
.x2{left:10.800000px;}
.x24{left:19.079987px;}
.x9{left:24.300000px;}
.x3{left:25.739987px;}
.x12{left:91.074000px;}
.x20{left:113.795987px;}
.x1f{left:114.875987px;}
.x5{left:121.535987px;}
.xc{left:123.515987px;}
.xb{left:125.495987px;}
.x26{left:140.795987px;}
.x27{left:141.875987px;}
.x1b{left:147.455987px;}
.x1d{left:153.569987px;}
.x1e{left:164.009987px;}
.x23{left:167.789987px;}
.x28{left:168.869987px;}
.x19{left:174.449987px;}
.x1c{left:175.529987px;}
.x1{left:193.530000px;}
.xf{left:232.229987px;}
.x16{left:240.690000px;}
.x6{left:265.530000px;}
.xe{left:285.194987px;}
.x13{left:306.075000px;}
.x4{left:404.354987px;}
.xd{left:408.674987px;}
.x10{left:449.534987px;}
.xa{left:452.234987px;}
.x7{left:463.575000px;}
.x22{left:699.990000px;}
.x1a{left:706.650000px;}
.x21{left:716.550000px;}
.x25{left:719.250000px;}
.x18{left:728.070000px;}
.x17{left:730.770000px;}
.x8{left:742.290000px;}
.x15{left:792.150000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:29.440000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.152533pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.086933pt;}
.ls8{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.166400pt;}
.ls4{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:34.048000pt;}
.lsf{letter-spacing:37.888000pt;}
.ls12{letter-spacing:52.730027pt;}
.lse{letter-spacing:52.751360pt;}
.ls11{letter-spacing:144.128000pt;}
.wsc{word-spacing:-64.000000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws1{word-spacing:-24.032000pt;}
.ws0{word-spacing:-24.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.512533pt;}
.ws4{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.536000pt;}
.ws9{word-spacing:-13.488000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.896000pt;}
.wsa{word-spacing:0.000000pt;}
._9{margin-left:-8.032000pt;}
._1d{margin-left:-5.248000pt;}
._24{margin-left:-3.648853pt;}
._5{margin-left:-2.496000pt;}
._2{margin-left:-1.132373pt;}
._0{width:0.928000pt;}
._14{width:2.048000pt;}
._c{width:2.944000pt;}
._13{width:4.224000pt;}
._12{width:5.184000pt;}
._21{width:6.306133pt;}
._16{width:7.424000pt;}
._17{width:8.448000pt;}
._15{width:9.472000pt;}
._b{width:10.944000pt;}
._a{width:11.904000pt;}
._1e{width:12.800000pt;}
._18{width:14.592000pt;}
._25{width:16.012800pt;}
._11{width:16.960000pt;}
._1c{width:18.263040pt;}
._6{width:19.712000pt;}
._4{width:20.800000pt;}
._19{width:21.696000pt;}
._d{width:22.976000pt;}
._e{width:23.936000pt;}
._26{width:24.874667pt;}
._23{width:26.024960pt;}
._f{width:27.584000pt;}
._10{width:28.608000pt;}
._1a{width:36.992000pt;}
._1b{width:38.080000pt;}
._8{width:42.304000pt;}
._7{width:43.200000pt;}
._22{width:47.556053pt;}
._1f{width:70.592000pt;}
._20{width:71.552000pt;}
._3{width:915.026773pt;}
._1{width:2474.389333pt;}
.fs9{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:77.440000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:2.560000pt;}
.y5f{bottom:2.720000pt;}
.ye{bottom:2.880000pt;}
.ya{bottom:4.480000pt;}
.yc{bottom:4.960000pt;}
.y2{bottom:7.840000pt;}
.yfe{bottom:8.000000pt;}
.y60{bottom:8.160000pt;}
.y36{bottom:11.520000pt;}
.y1d{bottom:16.320000pt;}
.y125{bottom:19.200000pt;}
.yfc{bottom:20.800000pt;}
.y1c{bottom:30.240000pt;}
.y5e{bottom:31.200000pt;}
.y8a{bottom:32.800000pt;}
.yd{bottom:35.040000pt;}
.y35{bottom:38.080000pt;}
.y8{bottom:40.800000pt;}
.y1b{bottom:44.000000pt;}
.y5d{bottom:57.600000pt;}
.y1a{bottom:57.800000pt;}
.y34{bottom:65.600000pt;}
.y19{bottom:71.560000pt;}
.y18{bottom:85.320000pt;}
.y13d{bottom:90.272000pt;}
.y33{bottom:93.320000pt;}
.y15e{bottom:93.632000pt;}
.y122{bottom:96.192000pt;}
.y174{bottom:97.632000pt;}
.y17{bottom:100.040000pt;}
.y37{bottom:101.320000pt;}
.yd6{bottom:103.552000pt;}
.yb0{bottom:103.872000pt;}
.y5b{bottom:104.032000pt;}
.y86{bottom:110.752000pt;}
.yf8{bottom:113.312000pt;}
.y13c{bottom:115.552000pt;}
.y15d{bottom:119.072000pt;}
.y32{bottom:120.840000pt;}
.y121{bottom:121.472000pt;}
.yee{bottom:122.272000pt;}
.y5a{bottom:122.432000pt;}
.y173{bottom:123.072000pt;}
.yd5{bottom:128.832000pt;}
.yaf{bottom:129.152000pt;}
.y85{bottom:136.026667pt;}
.yf7{bottom:138.586667pt;}
.y59{bottom:140.826667pt;}
.y15c{bottom:145.306667pt;}
.y120{bottom:146.906667pt;}
.yed{bottom:147.706667pt;}
.y31{bottom:148.520000pt;}
.y172{bottom:149.466667pt;}
.yd4{bottom:154.106667pt;}
.yae{bottom:154.426667pt;}
.y58{bottom:159.226667pt;}
.y84{bottom:161.306667pt;}
.y13b{bottom:166.106667pt;}
.y4d{bottom:170.120000pt;}
.y15b{bottom:170.586667pt;}
.yec{bottom:172.986667pt;}
.y171{bottom:175.706667pt;}
.yf6{bottom:176.026667pt;}
.y30{bottom:176.040000pt;}
.y57{bottom:177.626667pt;}
.yd3{bottom:179.386667pt;}
.yad{bottom:179.706667pt;}
.y83{bottom:181.466667pt;}
.y11f{bottom:183.066667pt;}
.y4c{bottom:187.720000pt;}
.y15a{bottom:195.866667pt;}
.y56{bottom:196.026667pt;}
.yeb{bottom:198.266667pt;}
.yf5{bottom:201.306667pt;}
.y2f{bottom:203.720000pt;}
.yd2{bottom:204.666667pt;}
.yac{bottom:205.146667pt;}
.y4b{bottom:205.160000pt;}
.y82{bottom:207.866667pt;}
.y11e{bottom:208.506667pt;}
.y1f{bottom:210.906667pt;}
.y170{bottom:212.986667pt;}
.y159{bottom:221.306667pt;}
.y4a{bottom:222.600000pt;}
.yea{bottom:223.546667pt;}
.yf4{bottom:226.586667pt;}
.yd1{bottom:229.946667pt;}
.y13a{bottom:230.106667pt;}
.y2e{bottom:231.240000pt;}
.yab{bottom:231.386667pt;}
.y81{bottom:233.146667pt;}
.y11d{bottom:233.786667pt;}
.y16f{bottom:238.266667pt;}
.y49{bottom:239.400000pt;}
.y158{bottom:246.586667pt;}
.y55{bottom:248.680000pt;}
.ye9{bottom:250.106667pt;}
.yf3{bottom:251.866667pt;}
.y48{bottom:253.160000pt;}
.yd0{bottom:255.226667pt;}
.y139{bottom:255.386667pt;}
.yaa{bottom:256.666667pt;}
.y80{bottom:258.426667pt;}
.y2d{bottom:258.920000pt;}
.y11c{bottom:259.066667pt;}
.y16e{bottom:263.706667pt;}
.y47{bottom:267.080000pt;}
.y157{bottom:272.826667pt;}
.ye8{bottom:276.826667pt;}
.yf2{bottom:277.146667pt;}
.ycf{bottom:280.506667pt;}
.y138{bottom:280.666667pt;}
.y46{bottom:280.840000pt;}
.y54{bottom:281.320000pt;}
.ya9{bottom:281.946667pt;}
.y7f{bottom:283.706667pt;}
.y11b{bottom:284.346667pt;}
.y2c{bottom:286.440000pt;}
.y16d{bottom:289.946667pt;}
.y45{bottom:295.240000pt;}
.y156{bottom:298.106667pt;}
.ye7{bottom:303.426667pt;}
.yf1{bottom:303.906667pt;}
.yce{bottom:305.986667pt;}
.ya8{bottom:307.426667pt;}
.y7e{bottom:309.026667pt;}
.y11a{bottom:309.666667pt;}
.y44{bottom:312.680000pt;}
.y2b{bottom:314.120000pt;}
.y16c{bottom:315.426667pt;}
.y18e{bottom:317.346667pt;}
.y155{bottom:323.586667pt;}
.ye6{bottom:328.706667pt;}
.y43{bottom:329.506667pt;}
.yf0{bottom:330.466667pt;}
.ycd{bottom:331.266667pt;}
.ya7{bottom:332.706667pt;}
.y7d{bottom:334.306667pt;}
.y2a{bottom:341.666667pt;}
.y16b{bottom:341.826667pt;}
.y42{bottom:343.266667pt;}
.y119{bottom:345.986667pt;}
.y53{bottom:346.786667pt;}
.y154{bottom:348.866667pt;}
.y18d{bottom:352.226667pt;}
.ye5{bottom:353.986667pt;}
.ycc{bottom:356.546667pt;}
.y41{bottom:357.026667pt;}
.ya6{bottom:357.986667pt;}
.y7c{bottom:359.586667pt;}
.y16a{bottom:368.066667pt;}
.y29{bottom:369.346667pt;}
.y40{bottom:371.106667pt;}
.y118{bottom:371.266667pt;}
.y153{bottom:374.146667pt;}
.y18c{bottom:377.666667pt;}
.ye4{bottom:379.266667pt;}
.y52{bottom:379.586667pt;}
.ycb{bottom:381.826667pt;}
.ya5{bottom:383.266667pt;}
.yef{bottom:383.746667pt;}
.y7b{bottom:385.026667pt;}
.y3f{bottom:386.466667pt;}
.y169{bottom:393.346667pt;}
.y137{bottom:395.266667pt;}
.y117{bottom:396.546667pt;}
.y28{bottom:396.866667pt;}
.y152{bottom:399.586667pt;}
.y3e{bottom:401.826667pt;}
.y18b{bottom:404.066667pt;}
.ye3{bottom:404.546667pt;}
.yca{bottom:407.106667pt;}
.ya4{bottom:408.546667pt;}
.y7a{bottom:410.306667pt;}
.y51{bottom:412.226667pt;}
.y3d{bottom:417.186667pt;}
.y136{bottom:420.546667pt;}
.y116{bottom:421.826667pt;}
.y27{bottom:424.546667pt;}
.y151{bottom:425.826667pt;}
.ye2{bottom:429.826667pt;}
.y18a{bottom:430.466667pt;}
.y168{bottom:430.626667pt;}
.yc9{bottom:432.386667pt;}
.y3c{bottom:432.546667pt;}
.ya3{bottom:433.826667pt;}
.y79{bottom:435.586667pt;}
.y50{bottom:445.026667pt;}
.y135{bottom:445.826667pt;}
.y115{bottom:447.106667pt;}
.y3b{bottom:447.746667pt;}
.y150{bottom:451.106667pt;}
.y26{bottom:452.066667pt;}
.ye1{bottom:455.266667pt;}
.y167{bottom:456.066667pt;}
.y189{bottom:456.706667pt;}
.yc8{bottom:457.666667pt;}
.ya2{bottom:459.106667pt;}
.y78{bottom:460.866667pt;}
.y3a{bottom:463.106667pt;}
.y134{bottom:471.106667pt;}
.y114{bottom:472.386667pt;}
.y14f{bottom:476.386667pt;}
.y4f{bottom:477.666667pt;}
.y39{bottom:478.466667pt;}
.y25{bottom:479.746667pt;}
.ye0{bottom:480.546667pt;}
.y166{bottom:482.466667pt;}
.yc7{bottom:482.946667pt;}
.y188{bottom:483.106667pt;}
.ya1{bottom:484.386667pt;}
.y77{bottom:486.146667pt;}
.y38{bottom:494.146667pt;}
.y4e{bottom:494.786667pt;}
.y133{bottom:496.386667pt;}
.y113{bottom:497.826667pt;}
.y14e{bottom:501.666667pt;}
.ydf{bottom:505.826667pt;}
.y24{bottom:507.266667pt;}
.yc6{bottom:508.226667pt;}
.y165{bottom:508.706667pt;}
.ya0{bottom:509.666667pt;}
.y76{bottom:511.426667pt;}
.y187{bottom:520.386667pt;}
.y132{bottom:521.666667pt;}
.y112{bottom:523.106667pt;}
.y14d{bottom:526.946667pt;}
.yde{bottom:531.106667pt;}
.yc5{bottom:533.666667pt;}
.y23{bottom:534.946667pt;}
.y9f{bottom:535.106667pt;}
.y75{bottom:536.733333pt;}
.y186{bottom:545.853333pt;}
.y164{bottom:546.013333pt;}
.y131{bottom:546.973333pt;}
.y14c{bottom:552.253333pt;}
.ydd{bottom:556.413333pt;}
.yc4{bottom:558.973333pt;}
.y111{bottom:559.293333pt;}
.y9e{bottom:560.413333pt;}
.y74{bottom:562.013333pt;}
.y22{bottom:562.466667pt;}
.y185{bottom:572.093333pt;}
.y130{bottom:572.253333pt;}
.y14b{bottom:577.693333pt;}
.ydc{bottom:581.693333pt;}
.y163{bottom:582.333333pt;}
.yc3{bottom:584.253333pt;}
.y110{bottom:584.733333pt;}
.y9d{bottom:585.693333pt;}
.y73{bottom:587.293333pt;}
.y21{bottom:590.026667pt;}
.y12f{bottom:597.533333pt;}
.y184{bottom:598.493333pt;}
.ydb{bottom:606.973333pt;}
.y20{bottom:608.426667pt;}
.yc2{bottom:609.533333pt;}
.y10f{bottom:610.013333pt;}
.y9c{bottom:610.973333pt;}
.y72{bottom:612.733333pt;}
.y14a{bottom:617.213333pt;}
.y162{bottom:620.893333pt;}
.y12e{bottom:622.973333pt;}
.y183{bottom:624.733333pt;}
.yda{bottom:632.413333pt;}
.yc1{bottom:634.813333pt;}
.y10e{bottom:635.293333pt;}
.y9b{bottom:636.253333pt;}
.y71{bottom:638.013333pt;}
.y149{bottom:642.493333pt;}
.y161{bottom:646.333333pt;}
.y12d{bottom:648.253333pt;}
.y182{bottom:650.173333pt;}
.yd9{bottom:658.973333pt;}
.yc0{bottom:660.093333pt;}
.y10d{bottom:660.573333pt;}
.y9a{bottom:661.533333pt;}
.y70{bottom:663.293333pt;}
.y160{bottom:671.613333pt;}
.y12c{bottom:673.533333pt;}
.y148{bottom:681.213333pt;}
.ybf{bottom:685.373333pt;}
.yd8{bottom:685.533333pt;}
.y10c{bottom:685.853333pt;}
.y99{bottom:686.813333pt;}
.y181{bottom:687.453333pt;}
.y6f{bottom:688.573333pt;}
.y15f{bottom:696.893333pt;}
.y12b{bottom:698.813333pt;}
.ybe{bottom:710.653333pt;}
.yd7{bottom:710.813333pt;}
.y98{bottom:712.093333pt;}
.y180{bottom:712.733333pt;}
.y6e{bottom:713.853333pt;}
.y16{bottom:719.293333pt;}
.y147{bottom:719.773333pt;}
.y10b{bottom:722.173333pt;}
.ybd{bottom:735.933333pt;}
.y97{bottom:737.373333pt;}
.y17f{bottom:738.013333pt;}
.y6d{bottom:739.133333pt;}
.y146{bottom:745.053333pt;}
.y10a{bottom:747.453333pt;}
.ybc{bottom:761.373333pt;}
.y96{bottom:762.813333pt;}
.y17e{bottom:764.253333pt;}
.y6c{bottom:764.413333pt;}
.y145{bottom:770.493333pt;}
.y109{bottom:772.733333pt;}
.y12a{bottom:776.133333pt;}
.ybb{bottom:786.693333pt;}
.y95{bottom:788.133333pt;}
.y6b{bottom:789.733333pt;}
.y144{bottom:795.813333pt;}
.y108{bottom:798.053333pt;}
.yba{bottom:811.973333pt;}
.y129{bottom:812.453333pt;}
.y94{bottom:813.413333pt;}
.y6a{bottom:815.013333pt;}
.y17d{bottom:816.133333pt;}
.y143{bottom:821.093333pt;}
.y107{bottom:823.333333pt;}
.yb9{bottom:837.253333pt;}
.y128{bottom:837.733333pt;}
.y93{bottom:838.693333pt;}
.y15{bottom:839.973333pt;}
.y69{bottom:840.453333pt;}
.y17c{bottom:842.373333pt;}
.y142{bottom:846.373333pt;}
.y106{bottom:848.613333pt;}
.yb8{bottom:862.693333pt;}
.y127{bottom:863.013333pt;}
.y92{bottom:863.973333pt;}
.y14{bottom:864.933333pt;}
.y68{bottom:865.733333pt;}
.y17b{bottom:867.813333pt;}
.y105{bottom:874.053333pt;}
.y141{bottom:884.933333pt;}
.yb7{bottom:888.933333pt;}
.y91{bottom:889.253333pt;}
.y13{bottom:890.693333pt;}
.y67{bottom:891.013333pt;}
.y104{bottom:899.333333pt;}
.y17a{bottom:905.093333pt;}
.y140{bottom:910.213333pt;}
.yb6{bottom:914.213333pt;}
.y90{bottom:914.533333pt;}
.y66{bottom:916.293333pt;}
.y12{bottom:922.053333pt;}
.y103{bottom:924.613333pt;}
.y179{bottom:930.373333pt;}
.y13f{bottom:935.653333pt;}
.yb5{bottom:939.493333pt;}
.y8f{bottom:939.813333pt;}
.y65{bottom:941.573333pt;}
.y11{bottom:947.333333pt;}
.y102{bottom:949.893333pt;}
.y178{bottom:956.773333pt;}
.y13e{bottom:960.933333pt;}
.yb4{bottom:964.933333pt;}
.y8e{bottom:965.093333pt;}
.y64{bottom:966.853333pt;}
.y10{bottom:972.613333pt;}
.y177{bottom:983.173333pt;}
.y101{bottom:986.213333pt;}
.yf{bottom:989.893333pt;}
.y8d{bottom:990.533333pt;}
.yb3{bottom:991.173333pt;}
.y63{bottom:992.133333pt;}
.y7{bottom:1008.773333pt;}
.y176{bottom:1009.413333pt;}
.y100{bottom:1011.520000pt;}
.y9{bottom:1015.680000pt;}
.y8c{bottom:1015.840000pt;}
.yb2{bottom:1016.480000pt;}
.yb{bottom:1016.960000pt;}
.y62{bottom:1017.440000pt;}
.y6{bottom:1026.240000pt;}
.y175{bottom:1035.840000pt;}
.yff{bottom:1036.800000pt;}
.y8b{bottom:1041.120000pt;}
.yb1{bottom:1041.760000pt;}
.y1{bottom:1042.400000pt;}
.y61{bottom:1042.720000pt;}
.y5{bottom:1044.640000pt;}
.yfb{bottom:1057.120000pt;}
.y89{bottom:1058.080000pt;}
.y124{bottom:1059.680000pt;}
.y4{bottom:1063.840000pt;}
.yfa{bottom:1071.840000pt;}
.y88{bottom:1072.800000pt;}
.y123{bottom:1076.000000pt;}
.y3{bottom:1083.360000pt;}
.y126{bottom:1083.680000pt;}
.yfd{bottom:1087.680000pt;}
.yf9{bottom:1088.160000pt;}
.y5c{bottom:1088.480000pt;}
.y87{bottom:1089.120000pt;}
.h8{height:19.360000pt;}
.h1e{height:20.000000pt;}
.hc{height:20.160000pt;}
.ha{height:22.400000pt;}
.h24{height:22.880000pt;}
.h1f{height:23.040000pt;}
.hf{height:29.940625pt;}
.h2{height:30.400000pt;}
.h13{height:35.085938pt;}
.h14{height:36.093750pt;}
.h10{height:37.090625pt;}
.h1a{height:38.828437pt;}
.h17{height:41.112500pt;}
.h20{height:41.284687pt;}
.hd{height:41.543750pt;}
.h22{height:42.866250pt;}
.h1c{height:43.905937pt;}
.h9{height:44.687500pt;}
.h5{height:45.156250pt;}
.h23{height:46.593750pt;}
.h16{height:46.781250pt;}
.h18{height:47.437500pt;}
.h1b{height:48.510000pt;}
.h21{height:49.148438pt;}
.h12{height:51.562500pt;}
.hb{height:52.832812pt;}
.h1d{height:52.834688pt;}
.h7{height:58.563750pt;}
.h4{height:63.656250pt;}
.h6{height:65.531250pt;}
.h3{height:67.031250pt;}
.he{height:68.765000pt;}
.h11{height:115.552000pt;}
.h19{height:508.386667pt;}
.h15{height:623.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:59.360000pt;}
.w6{width:59.520000pt;}
.w9{width:89.626667pt;}
.wd{width:105.920000pt;}
.wb{width:105.952000pt;}
.wc{width:106.080000pt;}
.w7{width:160.026667pt;}
.w4{width:162.106667pt;}
.w5{width:245.666667pt;}
.w8{width:430.146667pt;}
.w2{width:566.173333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.120000pt;}
.x11{left:7.200000pt;}
.x2{left:9.600000pt;}
.x24{left:16.959988pt;}
.x9{left:21.600000pt;}
.x3{left:22.879988pt;}
.x12{left:80.954667pt;}
.x20{left:101.151988pt;}
.x1f{left:102.111988pt;}
.x5{left:108.031988pt;}
.xc{left:109.791988pt;}
.xb{left:111.551988pt;}
.x26{left:125.151988pt;}
.x27{left:126.111988pt;}
.x1b{left:131.071988pt;}
.x1d{left:136.506655pt;}
.x1e{left:145.786655pt;}
.x23{left:149.146655pt;}
.x28{left:150.106655pt;}
.x19{left:155.066655pt;}
.x1c{left:156.026655pt;}
.x1{left:172.026667pt;}
.xf{left:206.426655pt;}
.x16{left:213.946667pt;}
.x6{left:236.026667pt;}
.xe{left:253.506655pt;}
.x13{left:272.066667pt;}
.x4{left:359.426655pt;}
.xd{left:363.266655pt;}
.x10{left:399.586655pt;}
.xa{left:401.986655pt;}
.x7{left:412.066667pt;}
.x22{left:622.213333pt;}
.x1a{left:628.133333pt;}
.x21{left:636.933333pt;}
.x25{left:639.333333pt;}
.x18{left:647.173333pt;}
.x17{left:649.573333pt;}
.x8{left:659.813333pt;}
.x15{left:704.133333pt;}
}




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