
    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_0f46237d912a5ec9538026fa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.074219;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_baee4f11b611c1296f2fb6c1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_87406f615c5d2892d64815db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f5803b6d0690972576849c00.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_d3e2ad06baea2011d989baef.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_0e3f31fe03a297165d508202.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d78a2232d5fb262b101493be.woff')format("woff");}.ff7{font-family:ff7;line-height:0.891602;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_1b3caeb0f5fab3b1e680c4cf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_f35576f26cbcda1ff1561d44.woff')format("woff");}.ff9{font-family:ff9;line-height:0.856445;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.v3{vertical-align:40.200000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.228000px;}
.ls1{letter-spacing:0.300000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws5{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.wse{word-spacing:-14.916000px;}
.ws7{word-spacing:-13.560000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-9.600000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:51.000000px;}
.wsa{word-spacing:52.200000px;}
.wsf{word-spacing:62.670000px;}
.wsb{word-spacing:90.780000px;}
.wsc{word-spacing:183.780000px;}
.ws9{word-spacing:191.400000px;}
.wsd{word-spacing:573.180000px;}
.ws11{word-spacing:767.208000px;}
.ws10{word-spacing:776.208000px;}
._7{margin-left:-10.800000px;}
._4d{margin-left:-9.672000px;}
._4{margin-left:-8.358000px;}
._5{margin-left:-6.414000px;}
._2{margin-left:-4.500000px;}
._6{margin-left:-3.468000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._8{width:2.640000px;}
._9{width:3.696000px;}
._a{width:4.950000px;}
._10{width:6.510000px;}
._c{width:7.554000px;}
._b{width:8.964000px;}
._d{width:10.098000px;}
._e{width:11.628000px;}
._19{width:12.744000px;}
._18{width:13.752000px;}
._1c{width:14.832000px;}
._1a{width:16.560000px;}
._f{width:17.586000px;}
._17{width:19.338000px;}
._16{width:21.012000px;}
._14{width:22.164000px;}
._13{width:23.862000px;}
._1b{width:24.954000px;}
._3e{width:27.090000px;}
._1f{width:28.464000px;}
._2d{width:29.940000px;}
._2e{width:31.020000px;}
._12{width:32.814000px;}
._11{width:34.290000px;}
._48{width:35.376000px;}
._49{width:36.768000px;}
._45{width:38.112000px;}
._15{width:39.708000px;}
._1e{width:40.968000px;}
._1d{width:42.216000px;}
._30{width:47.100000px;}
._2f{width:49.080000px;}
._23{width:50.376000px;}
._20{width:51.474000px;}
._3b{width:53.490000px;}
._28{width:54.840000px;}
._4c{width:55.848000px;}
._29{width:56.880000px;}
._3f{width:59.466000px;}
._42{width:61.314000px;}
._4a{width:64.440000px;}
._25{width:66.300000px;}
._3c{width:67.434000px;}
._2a{width:68.760000px;}
._47{width:71.496000px;}
._26{width:72.708000px;}
._3a{width:74.838000px;}
._2b{width:76.800000px;}
._2c{width:78.480000px;}
._31{width:79.980000px;}
._44{width:83.598000px;}
._40{width:92.868000px;}
._41{width:93.984000px;}
._24{width:98.760000px;}
._27{width:107.220000px;}
._3d{width:117.150000px;}
._4b{width:129.576000px;}
._46{width:147.096000px;}
._36{width:149.580000px;}
._34{width:155.988000px;}
._37{width:168.300000px;}
._35{width:192.480000px;}
._39{width:277.020000px;}
._21{width:298.728000px;}
._32{width:304.128000px;}
._43{width:327.900000px;}
._22{width:571.440000px;}
._33{width:573.240000px;}
._38{width:613.890000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs8{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y38{bottom:87.541500px;}
.y49{bottom:89.641500px;}
.y127{bottom:132.091500px;}
.yc1{bottom:134.641500px;}
.yf5{bottom:137.041500px;}
.y78{bottom:140.941500px;}
.y14f{bottom:144.241500px;}
.yc0{bottom:152.791500px;}
.y126{bottom:155.941500px;}
.y68{bottom:156.391500px;}
.yf2{bottom:157.741500px;}
.y74{bottom:157.891500px;}
.y77{bottom:158.941500px;}
.y115{bottom:162.391500px;}
.yf4{bottom:167.191500px;}
.y14e{bottom:167.941500px;}
.ybf{bottom:171.091500px;}
.y73{bottom:175.891500px;}
.y76{bottom:176.791500px;}
.y125{bottom:179.641500px;}
.y67{bottom:187.441500px;}
.yf1{bottom:188.791500px;}
.ybe{bottom:189.391500px;}
.y14d{bottom:191.791500px;}
.y72{bottom:193.741500px;}
.y75{bottom:194.791500px;}
.yf3{bottom:197.491500px;}
.y124{bottom:203.491500px;}
.ybd{bottom:207.691500px;}
.y71{bottom:211.741500px;}
.y14c{bottom:215.491500px;}
.y66{bottom:218.491500px;}
.yf0{bottom:219.841500px;}
.y114{bottom:224.491500px;}
.ybc{bottom:225.991500px;}
.y123{bottom:227.191500px;}
.y70{bottom:228.841500px;}
.y14b{bottom:239.341500px;}
.ybb{bottom:246.241500px;}
.y6f{bottom:247.141500px;}
.y65{bottom:249.541500px;}
.yef{bottom:250.891500px;}
.y122{bottom:251.041500px;}
.y113{bottom:255.541500px;}
.y14a{bottom:263.041500px;}
.y6e{bottom:265.441500px;}
.y121{bottom:274.741500px;}
.y64{bottom:280.591500px;}
.yba{bottom:281.041500px;}
.yee{bottom:281.941500px;}
.y6d{bottom:283.741500px;}
.y112{bottom:286.591500px;}
.y149{bottom:286.891500px;}
.y120{bottom:298.591500px;}
.y6c{bottom:302.041500px;}
.y148{bottom:310.591500px;}
.y63{bottom:311.641500px;}
.yed{bottom:312.991500px;}
.y111{bottom:317.641500px;}
.y6b{bottom:320.341500px;}
.y11f{bottom:322.291500px;}
.y147{bottom:334.441500px;}
.y6a{bottom:340.591500px;}
.yb9{bottom:341.341500px;}
.y62{bottom:342.691500px;}
.yec{bottom:344.041500px;}
.y11e{bottom:346.141500px;}
.y110{bottom:348.691500px;}
.yb4{bottom:358.141500px;}
.yb8{bottom:359.641500px;}
.y11d{bottom:369.841500px;}
.y61{bottom:373.741500px;}
.yeb{bottom:375.091500px;}
.y69{bottom:375.241500px;}
.yb3{bottom:376.441500px;}
.yb7{bottom:377.941500px;}
.y10f{bottom:379.741500px;}
.y146{bottom:381.991500px;}
.y11c{bottom:393.691500px;}
.yb2{bottom:394.741500px;}
.yb6{bottom:396.241500px;}
.y60{bottom:404.791500px;}
.y145{bottom:405.691500px;}
.yea{bottom:406.141500px;}
.y10e{bottom:410.791500px;}
.yb1{bottom:413.041500px;}
.yb5{bottom:414.091500px;}
.y11b{bottom:417.391500px;}
.y1e{bottom:426.691500px;}
.y144{bottom:429.541500px;}
.yb0{bottom:431.041500px;}
.y5f{bottom:435.841500px;}
.ye9{bottom:437.191500px;}
.y11a{bottom:441.241500px;}
.y10d{bottom:441.841500px;}
.y37{bottom:443.791500px;}
.y1d{bottom:443.941500px;}
.yac{bottom:449.791500px;}
.y143{bottom:453.241500px;}
.y1c{bottom:461.341500px;}
.y119{bottom:464.941500px;}
.y36{bottom:465.541500px;}
.y5e{bottom:466.891500px;}
.yab{bottom:468.091500px;}
.ye8{bottom:468.241500px;}
.y10c{bottom:472.891500px;}
.y142{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.yaa{bottom:486.391500px;}
.y118{bottom:488.791500px;}
.y1a{bottom:495.991500px;}
.y5d{bottom:497.941500px;}
.ye7{bottom:499.291500px;}
.y141{bottom:500.791500px;}
.y10b{bottom:503.941500px;}
.ya9{bottom:504.691500px;}
.y117{bottom:512.491500px;}
.y19{bottom:513.241500px;}
.ya8{bottom:522.991500px;}
.yaf{bottom:524.341500px;}
.y140{bottom:524.641500px;}
.y5c{bottom:528.991500px;}
.y35{bottom:530.191500px;}
.ye6{bottom:530.341500px;}
.y18{bottom:530.641500px;}
.y10a{bottom:534.991500px;}
.y116{bottom:536.341500px;}
.ya7{bottom:541.291500px;}
.yae{bottom:542.641500px;}
.y17{bottom:547.891500px;}
.y13f{bottom:548.341500px;}
.y34{bottom:551.941500px;}
.ya6{bottom:559.591500px;}
.y5b{bottom:560.041500px;}
.yad{bottom:560.641500px;}
.y16{bottom:565.291500px;}
.y109{bottom:566.041500px;}
.y13e{bottom:572.191500px;}
.y33{bottom:573.691500px;}
.ye5{bottom:574.591500px;}
.ya5{bottom:577.441500px;}
.y15{bottom:582.541500px;}
.y5a{bottom:591.091500px;}
.ye4{bottom:594.391500px;}
.y9f{bottom:594.691500px;}
.y32{bottom:595.441500px;}
.y13d{bottom:595.891500px;}
.y14{bottom:599.941500px;}
.y9e{bottom:612.841500px;}
.ye3{bottom:615.691500px;}
.y13{bottom:617.191500px;}
.y13c{bottom:619.741500px;}
.y48{bottom:621.691500px;}
.y59{bottom:622.141500px;}
.y108{bottom:629.491500px;}
.y9d{bottom:631.141500px;}
.ye2{bottom:632.941500px;}
.y12{bottom:634.591500px;}
.y31{bottom:638.941500px;}
.y13b{bottom:643.441500px;}
.y107{bottom:648.391500px;}
.y9c{bottom:649.441500px;}
.ya4{bottom:650.791500px;}
.y11{bottom:651.841500px;}
.y58{bottom:653.191500px;}
.y30{bottom:660.691500px;}
.y13a{bottom:667.291500px;}
.y9b{bottom:667.741500px;}
.ye1{bottom:668.041500px;}
.ya3{bottom:669.091500px;}
.y10{bottom:669.241500px;}
.y106{bottom:678.541500px;}
.y2f{bottom:682.441500px;}
.y47{bottom:684.091500px;}
.y57{bottom:684.241500px;}
.y9a{bottom:686.041500px;}
.ye0{bottom:686.341500px;}
.yf{bottom:686.491500px;}
.ya2{bottom:687.391500px;}
.y139{bottom:690.991500px;}
.y2e{bottom:704.191500px;}
.y99{bottom:704.341500px;}
.ydf{bottom:704.641500px;}
.ya1{bottom:705.691500px;}
.y105{bottom:708.841500px;}
.y138{bottom:714.841500px;}
.y46{bottom:715.141500px;}
.y56{bottom:715.291500px;}
.y98{bottom:722.641500px;}
.ya0{bottom:723.691500px;}
.ye{bottom:724.291500px;}
.y2d{bottom:725.941500px;}
.y137{bottom:738.541500px;}
.y104{bottom:738.991500px;}
.yde{bottom:739.891500px;}
.y97{bottom:740.641500px;}
.yd{bottom:741.691500px;}
.y45{bottom:746.191500px;}
.y55{bottom:746.341500px;}
.y2c{bottom:747.691500px;}
.ydd{bottom:757.741500px;}
.y93{bottom:759.391500px;}
.y136{bottom:762.391500px;}
.y103{bottom:769.291500px;}
.y2b{bottom:769.441500px;}
.ydc{bottom:776.041500px;}
.yc{bottom:776.341500px;}
.y44{bottom:777.241500px;}
.y54{bottom:777.391500px;}
.y92{bottom:777.691500px;}
.y96{bottom:779.041500px;}
.y135{bottom:786.091500px;}
.y2a{bottom:791.191500px;}
.ydb{bottom:794.341500px;}
.y91{bottom:795.991500px;}
.y95{bottom:797.341500px;}
.y102{bottom:799.441500px;}
.y43{bottom:808.291500px;}
.y53{bottom:808.441500px;}
.y134{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.yda{bottom:812.641500px;}
.y29{bottom:812.941500px;}
.y90{bottom:814.291500px;}
.y94{bottom:815.341500px;}
.ya{bottom:828.241500px;}
.y101{bottom:829.741500px;}
.yd9{bottom:830.941500px;}
.y8f{bottom:832.141500px;}
.y133{bottom:833.641500px;}
.y28{bottom:834.691500px;}
.y42{bottom:839.341500px;}
.y52{bottom:839.491500px;}
.yd8{bottom:848.941500px;}
.y8b{bottom:850.891500px;}
.y100{bottom:853.441500px;}
.y27{bottom:856.441500px;}
.y132{bottom:857.491500px;}
.y9{bottom:862.741500px;}
.yd4{bottom:867.541500px;}
.y8a{bottom:869.191500px;}
.y41{bottom:870.391500px;}
.y51{bottom:870.541500px;}
.y26{bottom:878.191500px;}
.y8{bottom:879.991500px;}
.y131{bottom:881.191500px;}
.yfe{bottom:883.591500px;}
.yd3{bottom:885.841500px;}
.yd7{bottom:887.191500px;}
.y89{bottom:887.491500px;}
.y8e{bottom:888.841500px;}
.y7{bottom:897.391500px;}
.y25{bottom:899.941500px;}
.y40{bottom:901.441500px;}
.y50{bottom:901.591500px;}
.yd2{bottom:904.141500px;}
.y130{bottom:905.041500px;}
.yd6{bottom:905.491500px;}
.y88{bottom:905.791500px;}
.y8d{bottom:907.141500px;}
.yfd{bottom:913.891500px;}
.y24{bottom:921.691500px;}
.yd1{bottom:922.441500px;}
.yd5{bottom:923.641500px;}
.y87{bottom:924.091500px;}
.y8c{bottom:925.141500px;}
.y12f{bottom:928.741500px;}
.y6{bottom:931.891500px;}
.y3f{bottom:932.491500px;}
.y4f{bottom:932.641500px;}
.yd0{bottom:940.591500px;}
.y86{bottom:942.091500px;}
.yfc{bottom:944.041500px;}
.y5{bottom:949.291500px;}
.y23{bottom:951.241500px;}
.y12e{bottom:952.591500px;}
.ycf{bottom:957.841500px;}
.y85{bottom:959.191500px;}
.y3e{bottom:963.541500px;}
.y4e{bottom:963.691500px;}
.yff{bottom:974.341500px;}
.yfb{bottom:974.641500px;}
.yce{bottom:975.691500px;}
.ycd{bottom:976.141500px;}
.y12d{bottom:976.291500px;}
.y84{bottom:977.491500px;}
.ycc{bottom:993.991500px;}
.y3d{bottom:994.591500px;}
.y4d{bottom:994.741500px;}
.y83{bottom:995.791500px;}
.y12c{bottom:1000.141500px;}
.y22{bottom:1004.191500px;}
.yfa{bottom:1004.491500px;}
.ycb{bottom:1012.291500px;}
.y82{bottom:1014.091500px;}
.y12b{bottom:1023.841500px;}
.y3c{bottom:1025.641500px;}
.y4c{bottom:1025.791500px;}
.y21{bottom:1027.741500px;}
.yca{bottom:1030.291500px;}
.y81{bottom:1032.391500px;}
.yf9{bottom:1034.791500px;}
.y12a{bottom:1047.691500px;}
.yc6{bottom:1049.341500px;}
.yc9{bottom:1050.241500px;}
.y80{bottom:1050.691500px;}
.y3b{bottom:1056.691500px;}
.y4b{bottom:1056.841500px;}
.yf8{bottom:1058.491500px;}
.y20{bottom:1064.191500px;}
.yc5{bottom:1067.191500px;}
.y7c{bottom:1067.641500px;}
.yc8{bottom:1068.541500px;}
.y7f{bottom:1068.991500px;}
.y129{bottom:1071.391500px;}
.yc4{bottom:1085.491500px;}
.y7b{bottom:1085.941500px;}
.yc7{bottom:1086.541500px;}
.y7e{bottom:1087.291500px;}
.y3a{bottom:1087.741500px;}
.y4a{bottom:1087.891500px;}
.yf7{bottom:1088.791500px;}
.y1f{bottom:1089.991500px;}
.y128{bottom:1095.241500px;}
.yc3{bottom:1103.341500px;}
.y7a{bottom:1104.241500px;}
.y7d{bottom:1105.291500px;}
.yf6{bottom:1108.891500px;}
.y39{bottom:1118.941500px;}
.yc2{bottom:1120.591500px;}
.y79{bottom:1122.241500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.h5{height:34.968750px;}
.hb{height:39.484863px;}
.h4{height:41.203125px;}
.h10{height:42.802734px;}
.h7{height:43.710938px;}
.h12{height:44.762695px;}
.h11{height:47.373047px;}
.hf{height:49.992188px;}
.h8{height:52.646484px;}
.h6{height:53.291016px;}
.hd{height:56.654297px;}
.ha{height:59.493750px;}
.h3{height:61.804688px;}
.he{height:63.175781px;}
.hc{height:63.949219px;}
.h9{height:69.278320px;}
.h13{height:87.573047px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x5{left:87.300000px;}
.x18{left:93.900000px;}
.x7{left:95.100000px;}
.x6{left:140.550000px;}
.xd{left:148.350000px;}
.xe{left:154.350000px;}
.x2b{left:170.250000px;}
.x1c{left:213.150000px;}
.x1d{left:226.350000px;}
.x9{left:231.750000px;}
.x1e{left:239.400000px;}
.x1f{left:252.600000px;}
.x20{left:274.650000px;}
.x1a{left:286.200000px;}
.x21{left:287.850000px;}
.x17{left:327.750000px;}
.x22{left:328.800000px;}
.xb{left:340.500000px;}
.x23{left:342.000000px;}
.x4{left:347.400000px;}
.x2{left:374.700000px;}
.x3{left:387.150000px;}
.x8{left:421.950000px;}
.x19{left:427.200000px;}
.x24{left:446.100000px;}
.x25{left:459.150000px;}
.x26{left:472.200000px;}
.x27{left:485.400000px;}
.x1b{left:487.500000px;}
.xa{left:508.350000px;}
.x28{left:520.500000px;}
.xf{left:558.000000px;}
.x29{left:567.000000px;}
.x2a{left:580.200000px;}
.x10{left:584.850000px;}
.x11{left:635.550000px;}
.xc{left:643.200000px;}
.x12{left:662.700000px;}
.x13{left:714.450000px;}
.x14{left:741.600000px;}
.x15{left:767.550000px;}
.x16{left:794.550000px;}
@media print{
.v2{vertical-align:-27.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.v3{vertical-align:35.733333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls1{letter-spacing:0.266667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.wse{word-spacing:-13.258667pt;}
.ws7{word-spacing:-12.053333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-8.533333pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:45.333333pt;}
.wsa{word-spacing:46.400000pt;}
.wsf{word-spacing:55.706667pt;}
.wsb{word-spacing:80.693333pt;}
.wsc{word-spacing:163.360000pt;}
.ws9{word-spacing:170.133333pt;}
.wsd{word-spacing:509.493333pt;}
.ws11{word-spacing:681.962667pt;}
.ws10{word-spacing:689.962667pt;}
._7{margin-left:-9.600000pt;}
._4d{margin-left:-8.597333pt;}
._4{margin-left:-7.429333pt;}
._5{margin-left:-5.701333pt;}
._2{margin-left:-4.000000pt;}
._6{margin-left:-3.082667pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._8{width:2.346667pt;}
._9{width:3.285333pt;}
._a{width:4.400000pt;}
._10{width:5.786667pt;}
._c{width:6.714667pt;}
._b{width:7.968000pt;}
._d{width:8.976000pt;}
._e{width:10.336000pt;}
._19{width:11.328000pt;}
._18{width:12.224000pt;}
._1c{width:13.184000pt;}
._1a{width:14.720000pt;}
._f{width:15.632000pt;}
._17{width:17.189333pt;}
._16{width:18.677333pt;}
._14{width:19.701333pt;}
._13{width:21.210667pt;}
._1b{width:22.181333pt;}
._3e{width:24.080000pt;}
._1f{width:25.301333pt;}
._2d{width:26.613333pt;}
._2e{width:27.573333pt;}
._12{width:29.168000pt;}
._11{width:30.480000pt;}
._48{width:31.445333pt;}
._49{width:32.682667pt;}
._45{width:33.877333pt;}
._15{width:35.296000pt;}
._1e{width:36.416000pt;}
._1d{width:37.525333pt;}
._30{width:41.866667pt;}
._2f{width:43.626667pt;}
._23{width:44.778667pt;}
._20{width:45.754667pt;}
._3b{width:47.546667pt;}
._28{width:48.746667pt;}
._4c{width:49.642667pt;}
._29{width:50.560000pt;}
._3f{width:52.858667pt;}
._42{width:54.501333pt;}
._4a{width:57.280000pt;}
._25{width:58.933333pt;}
._3c{width:59.941333pt;}
._2a{width:61.120000pt;}
._47{width:63.552000pt;}
._26{width:64.629333pt;}
._3a{width:66.522667pt;}
._2b{width:68.266667pt;}
._2c{width:69.760000pt;}
._31{width:71.093333pt;}
._44{width:74.309333pt;}
._40{width:82.549333pt;}
._41{width:83.541333pt;}
._24{width:87.786667pt;}
._27{width:95.306667pt;}
._3d{width:104.133333pt;}
._4b{width:115.178667pt;}
._46{width:130.752000pt;}
._36{width:132.960000pt;}
._34{width:138.656000pt;}
._37{width:149.600000pt;}
._35{width:171.093333pt;}
._39{width:246.240000pt;}
._21{width:265.536000pt;}
._32{width:270.336000pt;}
._43{width:291.466667pt;}
._22{width:507.946667pt;}
._33{width:509.546667pt;}
._38{width:545.680000pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs8{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y38{bottom:77.814667pt;}
.y49{bottom:79.681333pt;}
.y127{bottom:117.414667pt;}
.yc1{bottom:119.681333pt;}
.yf5{bottom:121.814667pt;}
.y78{bottom:125.281333pt;}
.y14f{bottom:128.214667pt;}
.yc0{bottom:135.814667pt;}
.y126{bottom:138.614667pt;}
.y68{bottom:139.014667pt;}
.yf2{bottom:140.214667pt;}
.y74{bottom:140.348000pt;}
.y77{bottom:141.281333pt;}
.y115{bottom:144.348000pt;}
.yf4{bottom:148.614667pt;}
.y14e{bottom:149.281333pt;}
.ybf{bottom:152.081333pt;}
.y73{bottom:156.348000pt;}
.y76{bottom:157.148000pt;}
.y125{bottom:159.681333pt;}
.y67{bottom:166.614667pt;}
.yf1{bottom:167.814667pt;}
.ybe{bottom:168.348000pt;}
.y14d{bottom:170.481333pt;}
.y72{bottom:172.214667pt;}
.y75{bottom:173.148000pt;}
.yf3{bottom:175.548000pt;}
.y124{bottom:180.881333pt;}
.ybd{bottom:184.614667pt;}
.y71{bottom:188.214667pt;}
.y14c{bottom:191.548000pt;}
.y66{bottom:194.214667pt;}
.yf0{bottom:195.414667pt;}
.y114{bottom:199.548000pt;}
.ybc{bottom:200.881333pt;}
.y123{bottom:201.948000pt;}
.y70{bottom:203.414667pt;}
.y14b{bottom:212.748000pt;}
.ybb{bottom:218.881333pt;}
.y6f{bottom:219.681333pt;}
.y65{bottom:221.814667pt;}
.yef{bottom:223.014667pt;}
.y122{bottom:223.148000pt;}
.y113{bottom:227.148000pt;}
.y14a{bottom:233.814667pt;}
.y6e{bottom:235.948000pt;}
.y121{bottom:244.214667pt;}
.y64{bottom:249.414667pt;}
.yba{bottom:249.814667pt;}
.yee{bottom:250.614667pt;}
.y6d{bottom:252.214667pt;}
.y112{bottom:254.748000pt;}
.y149{bottom:255.014667pt;}
.y120{bottom:265.414667pt;}
.y6c{bottom:268.481333pt;}
.y148{bottom:276.081333pt;}
.y63{bottom:277.014667pt;}
.yed{bottom:278.214667pt;}
.y111{bottom:282.348000pt;}
.y6b{bottom:284.748000pt;}
.y11f{bottom:286.481333pt;}
.y147{bottom:297.281333pt;}
.y6a{bottom:302.748000pt;}
.yb9{bottom:303.414667pt;}
.y62{bottom:304.614667pt;}
.yec{bottom:305.814667pt;}
.y11e{bottom:307.681333pt;}
.y110{bottom:309.948000pt;}
.yb4{bottom:318.348000pt;}
.yb8{bottom:319.681333pt;}
.y11d{bottom:328.748000pt;}
.y61{bottom:332.214667pt;}
.yeb{bottom:333.414667pt;}
.y69{bottom:333.548000pt;}
.yb3{bottom:334.614667pt;}
.yb7{bottom:335.948000pt;}
.y10f{bottom:337.548000pt;}
.y146{bottom:339.548000pt;}
.y11c{bottom:349.948000pt;}
.yb2{bottom:350.881333pt;}
.yb6{bottom:352.214667pt;}
.y60{bottom:359.814667pt;}
.y145{bottom:360.614667pt;}
.yea{bottom:361.014667pt;}
.y10e{bottom:365.148000pt;}
.yb1{bottom:367.148000pt;}
.yb5{bottom:368.081333pt;}
.y11b{bottom:371.014667pt;}
.y1e{bottom:379.281333pt;}
.y144{bottom:381.814667pt;}
.yb0{bottom:383.148000pt;}
.y5f{bottom:387.414667pt;}
.ye9{bottom:388.614667pt;}
.y11a{bottom:392.214667pt;}
.y10d{bottom:392.748000pt;}
.y37{bottom:394.481333pt;}
.y1d{bottom:394.614667pt;}
.yac{bottom:399.814667pt;}
.y143{bottom:402.881333pt;}
.y1c{bottom:410.081333pt;}
.y119{bottom:413.281333pt;}
.y36{bottom:413.814667pt;}
.y5e{bottom:415.014667pt;}
.yab{bottom:416.081333pt;}
.ye8{bottom:416.214667pt;}
.y10c{bottom:420.348000pt;}
.y142{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.yaa{bottom:432.348000pt;}
.y118{bottom:434.481333pt;}
.y1a{bottom:440.881333pt;}
.y5d{bottom:442.614667pt;}
.ye7{bottom:443.814667pt;}
.y141{bottom:445.148000pt;}
.y10b{bottom:447.948000pt;}
.ya9{bottom:448.614667pt;}
.y117{bottom:455.548000pt;}
.y19{bottom:456.214667pt;}
.ya8{bottom:464.881333pt;}
.yaf{bottom:466.081333pt;}
.y140{bottom:466.348000pt;}
.y5c{bottom:470.214667pt;}
.y35{bottom:471.281333pt;}
.ye6{bottom:471.414667pt;}
.y18{bottom:471.681333pt;}
.y10a{bottom:475.548000pt;}
.y116{bottom:476.748000pt;}
.ya7{bottom:481.148000pt;}
.yae{bottom:482.348000pt;}
.y17{bottom:487.014667pt;}
.y13f{bottom:487.414667pt;}
.y34{bottom:490.614667pt;}
.ya6{bottom:497.414667pt;}
.y5b{bottom:497.814667pt;}
.yad{bottom:498.348000pt;}
.y16{bottom:502.481333pt;}
.y109{bottom:503.148000pt;}
.y13e{bottom:508.614667pt;}
.y33{bottom:509.948000pt;}
.ye5{bottom:510.748000pt;}
.ya5{bottom:513.281333pt;}
.y15{bottom:517.814667pt;}
.y5a{bottom:525.414667pt;}
.ye4{bottom:528.348000pt;}
.y9f{bottom:528.614667pt;}
.y32{bottom:529.281333pt;}
.y13d{bottom:529.681333pt;}
.y14{bottom:533.281333pt;}
.y9e{bottom:544.748000pt;}
.ye3{bottom:547.281333pt;}
.y13{bottom:548.614667pt;}
.y13c{bottom:550.881333pt;}
.y48{bottom:552.614667pt;}
.y59{bottom:553.014667pt;}
.y108{bottom:559.548000pt;}
.y9d{bottom:561.014667pt;}
.ye2{bottom:562.614667pt;}
.y12{bottom:564.081333pt;}
.y31{bottom:567.948000pt;}
.y13b{bottom:571.948000pt;}
.y107{bottom:576.348000pt;}
.y9c{bottom:577.281333pt;}
.ya4{bottom:578.481333pt;}
.y11{bottom:579.414667pt;}
.y58{bottom:580.614667pt;}
.y30{bottom:587.281333pt;}
.y13a{bottom:593.148000pt;}
.y9b{bottom:593.548000pt;}
.ye1{bottom:593.814667pt;}
.ya3{bottom:594.748000pt;}
.y10{bottom:594.881333pt;}
.y106{bottom:603.148000pt;}
.y2f{bottom:606.614667pt;}
.y47{bottom:608.081333pt;}
.y57{bottom:608.214667pt;}
.y9a{bottom:609.814667pt;}
.ye0{bottom:610.081333pt;}
.yf{bottom:610.214667pt;}
.ya2{bottom:611.014667pt;}
.y139{bottom:614.214667pt;}
.y2e{bottom:625.948000pt;}
.y99{bottom:626.081333pt;}
.ydf{bottom:626.348000pt;}
.ya1{bottom:627.281333pt;}
.y105{bottom:630.081333pt;}
.y138{bottom:635.414667pt;}
.y46{bottom:635.681333pt;}
.y56{bottom:635.814667pt;}
.y98{bottom:642.348000pt;}
.ya0{bottom:643.281333pt;}
.ye{bottom:643.814667pt;}
.y2d{bottom:645.281333pt;}
.y137{bottom:656.481333pt;}
.y104{bottom:656.881333pt;}
.yde{bottom:657.681333pt;}
.y97{bottom:658.348000pt;}
.yd{bottom:659.281333pt;}
.y45{bottom:663.281333pt;}
.y55{bottom:663.414667pt;}
.y2c{bottom:664.614667pt;}
.ydd{bottom:673.548000pt;}
.y93{bottom:675.014667pt;}
.y136{bottom:677.681333pt;}
.y103{bottom:683.814667pt;}
.y2b{bottom:683.948000pt;}
.ydc{bottom:689.814667pt;}
.yc{bottom:690.081333pt;}
.y44{bottom:690.881333pt;}
.y54{bottom:691.014667pt;}
.y92{bottom:691.281333pt;}
.y96{bottom:692.481333pt;}
.y135{bottom:698.748000pt;}
.y2a{bottom:703.281333pt;}
.ydb{bottom:706.081333pt;}
.y91{bottom:707.548000pt;}
.y95{bottom:708.748000pt;}
.y102{bottom:710.614667pt;}
.y43{bottom:718.481333pt;}
.y53{bottom:718.614667pt;}
.y134{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.yda{bottom:722.348000pt;}
.y29{bottom:722.614667pt;}
.y90{bottom:723.814667pt;}
.y94{bottom:724.748000pt;}
.ya{bottom:736.214667pt;}
.y101{bottom:737.548000pt;}
.yd9{bottom:738.614667pt;}
.y8f{bottom:739.681333pt;}
.y133{bottom:741.014667pt;}
.y28{bottom:741.948000pt;}
.y42{bottom:746.081333pt;}
.y52{bottom:746.214667pt;}
.yd8{bottom:754.614667pt;}
.y8b{bottom:756.348000pt;}
.y100{bottom:758.614667pt;}
.y27{bottom:761.281333pt;}
.y132{bottom:762.214667pt;}
.y9{bottom:766.881333pt;}
.yd4{bottom:771.148000pt;}
.y8a{bottom:772.614667pt;}
.y41{bottom:773.681333pt;}
.y51{bottom:773.814667pt;}
.y26{bottom:780.614667pt;}
.y8{bottom:782.214667pt;}
.y131{bottom:783.281333pt;}
.yfe{bottom:785.414667pt;}
.yd3{bottom:787.414667pt;}
.yd7{bottom:788.614667pt;}
.y89{bottom:788.881333pt;}
.y8e{bottom:790.081333pt;}
.y7{bottom:797.681333pt;}
.y25{bottom:799.948000pt;}
.y40{bottom:801.281333pt;}
.y50{bottom:801.414667pt;}
.yd2{bottom:803.681333pt;}
.y130{bottom:804.481333pt;}
.yd6{bottom:804.881333pt;}
.y88{bottom:805.148000pt;}
.y8d{bottom:806.348000pt;}
.yfd{bottom:812.348000pt;}
.y24{bottom:819.281333pt;}
.yd1{bottom:819.948000pt;}
.yd5{bottom:821.014667pt;}
.y87{bottom:821.414667pt;}
.y8c{bottom:822.348000pt;}
.y12f{bottom:825.548000pt;}
.y6{bottom:828.348000pt;}
.y3f{bottom:828.881333pt;}
.y4f{bottom:829.014667pt;}
.yd0{bottom:836.081333pt;}
.y86{bottom:837.414667pt;}
.yfc{bottom:839.148000pt;}
.y5{bottom:843.814667pt;}
.y23{bottom:845.548000pt;}
.y12e{bottom:846.748000pt;}
.ycf{bottom:851.414667pt;}
.y85{bottom:852.614667pt;}
.y3e{bottom:856.481333pt;}
.y4e{bottom:856.614667pt;}
.yff{bottom:866.081333pt;}
.yfb{bottom:866.348000pt;}
.yce{bottom:867.281333pt;}
.ycd{bottom:867.681333pt;}
.y12d{bottom:867.814667pt;}
.y84{bottom:868.881333pt;}
.ycc{bottom:883.548000pt;}
.y3d{bottom:884.081333pt;}
.y4d{bottom:884.214667pt;}
.y83{bottom:885.148000pt;}
.y12c{bottom:889.014667pt;}
.y22{bottom:892.614667pt;}
.yfa{bottom:892.881333pt;}
.ycb{bottom:899.814667pt;}
.y82{bottom:901.414667pt;}
.y12b{bottom:910.081333pt;}
.y3c{bottom:911.681333pt;}
.y4c{bottom:911.814667pt;}
.y21{bottom:913.548000pt;}
.yca{bottom:915.814667pt;}
.y81{bottom:917.681333pt;}
.yf9{bottom:919.814667pt;}
.y12a{bottom:931.281333pt;}
.yc6{bottom:932.748000pt;}
.yc9{bottom:933.548000pt;}
.y80{bottom:933.948000pt;}
.y3b{bottom:939.281333pt;}
.y4b{bottom:939.414667pt;}
.yf8{bottom:940.881333pt;}
.y20{bottom:945.948000pt;}
.yc5{bottom:948.614667pt;}
.y7c{bottom:949.014667pt;}
.yc8{bottom:949.814667pt;}
.y7f{bottom:950.214667pt;}
.y129{bottom:952.348000pt;}
.yc4{bottom:964.881333pt;}
.y7b{bottom:965.281333pt;}
.yc7{bottom:965.814667pt;}
.y7e{bottom:966.481333pt;}
.y3a{bottom:966.881333pt;}
.y4a{bottom:967.014667pt;}
.yf7{bottom:967.814667pt;}
.y1f{bottom:968.881333pt;}
.y128{bottom:973.548000pt;}
.yc3{bottom:980.748000pt;}
.y7a{bottom:981.548000pt;}
.y7d{bottom:982.481333pt;}
.yf6{bottom:985.681333pt;}
.y39{bottom:994.614667pt;}
.yc2{bottom:996.081333pt;}
.y79{bottom:997.548000pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.h5{height:31.083333pt;}
.hb{height:35.097656pt;}
.h4{height:36.625000pt;}
.h10{height:38.046875pt;}
.h7{height:38.854167pt;}
.h12{height:39.789062pt;}
.h11{height:42.109375pt;}
.hf{height:44.437500pt;}
.h8{height:46.796875pt;}
.h6{height:47.369792pt;}
.hd{height:50.359375pt;}
.ha{height:52.883333pt;}
.h3{height:54.937500pt;}
.he{height:56.156250pt;}
.hc{height:56.843750pt;}
.h9{height:61.580729pt;}
.h13{height:77.842708pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x5{left:77.600000pt;}
.x18{left:83.466667pt;}
.x7{left:84.533333pt;}
.x6{left:124.933333pt;}
.xd{left:131.866667pt;}
.xe{left:137.200000pt;}
.x2b{left:151.333333pt;}
.x1c{left:189.466667pt;}
.x1d{left:201.200000pt;}
.x9{left:206.000000pt;}
.x1e{left:212.800000pt;}
.x1f{left:224.533333pt;}
.x20{left:244.133333pt;}
.x1a{left:254.400000pt;}
.x21{left:255.866667pt;}
.x17{left:291.333333pt;}
.x22{left:292.266667pt;}
.xb{left:302.666667pt;}
.x23{left:304.000000pt;}
.x4{left:308.800000pt;}
.x2{left:333.066667pt;}
.x3{left:344.133333pt;}
.x8{left:375.066667pt;}
.x19{left:379.733333pt;}
.x24{left:396.533333pt;}
.x25{left:408.133333pt;}
.x26{left:419.733333pt;}
.x27{left:431.466667pt;}
.x1b{left:433.333333pt;}
.xa{left:451.866667pt;}
.x28{left:462.666667pt;}
.xf{left:496.000000pt;}
.x29{left:504.000000pt;}
.x2a{left:515.733333pt;}
.x10{left:519.866667pt;}
.x11{left:564.933333pt;}
.xc{left:571.733333pt;}
.x12{left:589.066667pt;}
.x13{left:635.066667pt;}
.x14{left:659.200000pt;}
.x15{left:682.266667pt;}
.x16{left:706.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; }
  