
    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_6e939fd0d91d0300be97ef29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_bf57c6683c51e50309adc7f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061035;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_4a3a379e3b185eec5dd00209.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_e6add9499ba1379c3526926a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_330956e08b16d1ba45ecd2ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_24b02f03b53e94f6bb68e15a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.917480;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_7409731a6fc438b39c6cbc55.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_789857146c9a49b8c91e3c43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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;}
.ls8{letter-spacing:-2.671200px;}
.ls2{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.017600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.568800px;}
.ls3{letter-spacing:8.172000px;}
.ls7{letter-spacing:35.474400px;}
.ls5{letter-spacing:124.800000px;}
.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;}
}
.ws3{word-spacing:-18.021600px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.978400px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-2097.906600px;}
._1f{margin-left:-1977.913200px;}
._21{margin-left:-1961.406600px;}
._17{margin-left:-1929.886800px;}
._13{margin-left:-1815.873600px;}
._1b{margin-left:-1551.873600px;}
._15{margin-left:-1503.913200px;}
._19{margin-left:-1437.867000px;}
._11{margin-left:-1335.847200px;}
._1d{margin-left:-1137.926400px;}
._2e{margin-left:-18.000000px;}
._38{margin-left:-11.556000px;}
._4{margin-left:-10.092000px;}
._2{margin-left:-9.007200px;}
._3{margin-left:-7.938000px;}
._37{margin-left:-6.415620px;}
._6{margin-left:-4.999800px;}
._1{margin-left:-3.872400px;}
._c{margin-left:-2.160600px;}
._0{margin-left:-1.125600px;}
._5{width:1.404000px;}
._7{width:2.745600px;}
._d{width:4.048200px;}
._9{width:5.764200px;}
._29{width:7.596000px;}
._28{width:8.596800px;}
._24{width:10.087200px;}
._25{width:11.656800px;}
._2b{width:12.751200px;}
._2f{width:14.047200px;}
._33{width:15.349200px;}
._2a{width:16.733400px;}
._26{width:19.159800px;}
._27{width:20.598600px;}
._30{width:22.118400px;}
._31{width:23.134200px;}
._22{width:25.070400px;}
._23{width:26.539200px;}
._2d{width:27.992400px;}
._8{width:29.078400px;}
._36{width:30.091200px;}
._34{width:31.600800px;}
._32{width:33.595200px;}
._35{width:34.941600px;}
._2c{width:36.650400px;}
._b{width:37.814400px;}
._a{width:39.850200px;}
._1c{width:1054.734600px;}
._10{width:1277.179200px;}
._18{width:1375.935000px;}
._14{width:1442.025600px;}
._1a{width:1454.679600px;}
._12{width:1764.549600px;}
._16{width:1878.637800px;}
._1e{width:1887.349200px;}
._20{width:1891.149000px;}
._e{width:2035.887000px;}
.fc4{color:rgb(226,127,60);}
.fc3{color:rgb(103,175,189);}
.fc2{color:rgb(62,62,103);}
.fc1{color:rgb(83,84,138);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs6{font-size:88.000020px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:8.093100px;}
.ya{bottom:10.127400px;}
.y98{bottom:15.376665px;}
.y139{bottom:15.404580px;}
.yb3{bottom:15.552030px;}
.y14c{bottom:15.579945px;}
.y3c{bottom:15.616935px;}
.y150{bottom:15.755250px;}
.yc0{bottom:16.027785px;}
.yd8{bottom:16.203150px;}
.ye5{bottom:16.378500px;}
.y75{bottom:16.400910px;}
.y106{bottom:16.553865px;}
.y5b{bottom:16.660050px;}
.y125{bottom:16.729215px;}
.y96{bottom:18.423195px;}
.y3a{bottom:19.173195px;}
.y59{bottom:19.725000px;}
.y73{bottom:21.225000px;}
.y123{bottom:24.225000px;}
.y104{bottom:26.775000px;}
.y1c{bottom:33.593100px;}
.yd6{bottom:42.225000px;}
.y95{bottom:48.423195px;}
.y39{bottom:49.173195px;}
.y74{bottom:49.599090px;}
.y58{bottom:49.725000px;}
.y14f{bottom:50.244750px;}
.y3b{bottom:50.383065px;}
.y14b{bottom:50.420055px;}
.yb2{bottom:50.447970px;}
.y138{bottom:50.595420px;}
.y97{bottom:50.623335px;}
.y124{bottom:50.770785px;}
.y5a{bottom:50.839950px;}
.y105{bottom:50.946135px;}
.ye4{bottom:51.121500px;}
.y72{bottom:51.225000px;}
.yd7{bottom:51.296850px;}
.ybf{bottom:51.472215px;}
.y122{bottom:54.225000px;}
.y103{bottom:56.775000px;}
.y1b{bottom:59.093100px;}
.y8{bottom:71.248800px;}
.yd5{bottom:72.225000px;}
.ybe{bottom:73.725000px;}
.y94{bottom:78.423195px;}
.y38{bottom:79.173195px;}
.y57{bottom:79.725000px;}
.y14a{bottom:81.225000px;}
.y121{bottom:84.225000px;}
.y1a{bottom:84.593100px;}
.y102{bottom:86.775000px;}
.y11{bottom:92.775000px;}
.yb{bottom:93.225000px;}
.y76{bottom:95.576805px;}
.y99{bottom:101.576805px;}
.yd4{bottom:102.225000px;}
.y1e{bottom:102.326805px;}
.ybd{bottom:103.725000px;}
.y71{bottom:105.225000px;}
.y1{bottom:106.275000px;}
.y93{bottom:108.423195px;}
.y37{bottom:109.173195px;}
.y19{bottom:110.093100px;}
.y149{bottom:111.225000px;}
.y120{bottom:114.225000px;}
.y10{bottom:115.275000px;}
.y101{bottom:116.775000px;}
.yd3{bottom:132.225000px;}
.y56{bottom:133.725000px;}
.y70{bottom:135.225000px;}
.y18{bottom:135.593100px;}
.yf{bottom:137.775000px;}
.y92{bottom:138.423195px;}
.y148{bottom:141.225000px;}
.y11f{bottom:144.225000px;}
.y36{bottom:155.673195px;}
.ye{bottom:160.275000px;}
.y17{bottom:161.093100px;}
.yd2{bottom:162.225000px;}
.y55{bottom:163.725000px;}
.y91{bottom:168.423195px;}
.y100{bottom:170.775000px;}
.yd{bottom:182.775000px;}
.y35{bottom:185.673195px;}
.y16{bottom:186.593100px;}
.y6f{bottom:189.225000px;}
.yd1{bottom:192.225000px;}
.y54{bottom:193.725000px;}
.y11e{bottom:195.225000px;}
.yb1{bottom:198.423195px;}
.yff{bottom:200.775000px;}
.yc{bottom:205.275000px;}
.y15{bottom:212.093100px;}
.y34{bottom:215.673195px;}
.ybc{bottom:217.725000px;}
.y6e{bottom:219.225000px;}
.y90{bottom:222.423195px;}
.y53{bottom:223.725000px;}
.y11d{bottom:225.225000px;}
.yb0{bottom:228.423195px;}
.yfe{bottom:230.775000px;}
.y137{bottom:233.775000px;}
.y14{bottom:237.593100px;}
.y33{bottom:245.673195px;}
.yd0{bottom:246.225000px;}
.ybb{bottom:247.725000px;}
.y6d{bottom:249.225000px;}
.y8f{bottom:252.423195px;}
.y52{bottom:253.725000px;}
.y11c{bottom:255.225000px;}
.ye3{bottom:258.423195px;}
.yfd{bottom:260.775000px;}
.y136{bottom:263.775000px;}
.y32{bottom:275.673195px;}
.ycf{bottom:276.225000px;}
.yba{bottom:277.725000px;}
.y6c{bottom:279.225000px;}
.y8e{bottom:282.423195px;}
.y51{bottom:283.725000px;}
.y11b{bottom:286.725000px;}
.yaf{bottom:288.423195px;}
.yfc{bottom:290.775000px;}
.y135{bottom:293.775000px;}
.y31{bottom:305.673195px;}
.yce{bottom:306.225000px;}
.y6b{bottom:309.225000px;}
.y8d{bottom:312.423195px;}
.y50{bottom:313.725000px;}
.yae{bottom:318.423195px;}
.yfb{bottom:320.775000px;}
.y134{bottom:323.775000px;}
.yb9{bottom:331.725000px;}
.y30{bottom:335.673195px;}
.y6a{bottom:339.225000px;}
.y8c{bottom:342.423195px;}
.y4f{bottom:343.725000px;}
.yad{bottom:348.423195px;}
.y133{bottom:353.775000px;}
.ycd{bottom:360.225000px;}
.yb8{bottom:361.725000px;}
.y11a{bottom:363.225000px;}
.y2f{bottom:365.673195px;}
.y147{bottom:369.225000px;}
.ye2{bottom:372.423195px;}
.y4e{bottom:373.725000px;}
.yfa{bottom:374.775000px;}
.yac{bottom:378.423195px;}
.y69{bottom:390.225000px;}
.yb7{bottom:391.725000px;}
.y119{bottom:396.225000px;}
.y8b{bottom:396.423195px;}
.ye1{bottom:402.423195px;}
.yf9{bottom:404.775000px;}
.y2e{bottom:416.673195px;}
.ycc{bottom:420.225000px;}
.yb6{bottom:421.725000px;}
.y146{bottom:423.225000px;}
.y4d{bottom:424.725000px;}
.y118{bottom:426.225000px;}
.y8a{bottom:426.423195px;}
.y7{bottom:429.225000px;}
.yf8{bottom:434.775000px;}
.yab{bottom:438.423195px;}
.y2d{bottom:446.673195px;}
.ycb{bottom:450.225000px;}
.y6{bottom:451.725000px;}
.y145{bottom:453.225000px;}
.y117{bottom:456.225000px;}
.y89{bottom:456.423195px;}
.yf7{bottom:464.775000px;}
.yaa{bottom:468.423195px;}
.y2c{bottom:476.673195px;}
.yca{bottom:480.225000px;}
.y68{bottom:481.725000px;}
.y144{bottom:483.225000px;}
.y88{bottom:486.423195px;}
.y4c{bottom:493.725000px;}
.yf6{bottom:494.775000px;}
.ya9{bottom:498.423195px;}
.y2b{bottom:506.673195px;}
.y5{bottom:507.225000px;}
.yc9{bottom:510.225000px;}
.y67{bottom:511.725000px;}
.y143{bottom:513.225000px;}
.y87{bottom:516.423195px;}
.yf5{bottom:524.775000px;}
.ya8{bottom:528.423195px;}
.y116{bottom:537.225000px;}
.yc8{bottom:540.225000px;}
.y66{bottom:541.725000px;}
.y142{bottom:543.225000px;}
.y86{bottom:546.423195px;}
.y132{bottom:554.775000px;}
.y2a{bottom:557.673195px;}
.ya7{bottom:558.423195px;}
.yb5{bottom:565.725000px;}
.y115{bottom:567.225000px;}
.yc7{bottom:570.225000px;}
.y4b{bottom:571.725000px;}
.y85{bottom:576.423195px;}
.yf4{bottom:578.775000px;}
.y29{bottom:587.673195px;}
.yb4{bottom:595.725000px;}
.y114{bottom:597.225000px;}
.ye0{bottom:600.423195px;}
.y4a{bottom:601.725000px;}
.y4{bottom:603.225000px;}
.y131{bottom:605.775000px;}
.y84{bottom:606.423195px;}
.yf3{bottom:608.775000px;}
.y28{bottom:617.673195px;}
.ya6{bottom:618.423195px;}
.yc6{bottom:624.225000px;}
.y65{bottom:625.725000px;}
.y113{bottom:627.225000px;}
.y3{bottom:628.725000px;}
.ydf{bottom:630.423195px;}
.y49{bottom:631.725000px;}
.y130{bottom:635.775000px;}
.yf2{bottom:638.775000px;}
.y27{bottom:647.673195px;}
.ya5{bottom:648.423195px;}
.y141{bottom:651.225000px;}
.yc5{bottom:654.225000px;}
.y64{bottom:655.725000px;}
.y112{bottom:657.225000px;}
.y83{bottom:660.423195px;}
.y48{bottom:661.725000px;}
.y12f{bottom:665.775000px;}
.y26{bottom:677.673195px;}
.ya4{bottom:678.423195px;}
.y140{bottom:681.225000px;}
.yc4{bottom:684.225000px;}
.y63{bottom:685.725000px;}
.y82{bottom:690.423195px;}
.y47{bottom:691.725000px;}
.yf1{bottom:692.775000px;}
.y12e{bottom:695.775000px;}
.y111{bottom:708.225000px;}
.ya3{bottom:708.423195px;}
.y13f{bottom:711.225000px;}
.yc3{bottom:714.225000px;}
.y62{bottom:715.725000px;}
.y81{bottom:720.423195px;}
.yf0{bottom:722.775000px;}
.y12d{bottom:725.775000px;}
.y25{bottom:728.673195px;}
.y110{bottom:738.225000px;}
.y13e{bottom:741.225000px;}
.y46{bottom:742.725000px;}
.yc2{bottom:744.225000px;}
.yde{bottom:744.423195px;}
.y61{bottom:745.725000px;}
.y80{bottom:750.423195px;}
.yef{bottom:752.775000px;}
.y12c{bottom:755.775000px;}
.y24{bottom:758.673195px;}
.y10f{bottom:768.225000px;}
.ya2{bottom:768.423195px;}
.y45{bottom:772.725000px;}
.ydd{bottom:774.423195px;}
.y7f{bottom:780.423195px;}
.yee{bottom:782.775000px;}
.y12b{bottom:785.775000px;}
.y23{bottom:788.673195px;}
.y13d{bottom:795.225000px;}
.y10e{bottom:798.225000px;}
.ya1{bottom:798.423195px;}
.y60{bottom:799.725000px;}
.y44{bottom:802.725000px;}
.ydc{bottom:804.423195px;}
.y7e{bottom:810.423195px;}
.yed{bottom:812.775000px;}
.y12a{bottom:815.775000px;}
.y22{bottom:818.673195px;}
.y13c{bottom:825.225000px;}
.ya0{bottom:828.423195px;}
.y5f{bottom:829.725000px;}
.y43{bottom:832.725000px;}
.ydb{bottom:834.423195px;}
.y7d{bottom:840.423195px;}
.yec{bottom:842.775000px;}
.y129{bottom:845.775000px;}
.y21{bottom:848.673195px;}
.y10d{bottom:849.225000px;}
.y13b{bottom:855.225000px;}
.y9f{bottom:858.423195px;}
.y2{bottom:859.725000px;}
.y42{bottom:862.725000px;}
.yda{bottom:864.423195px;}
.y7c{bottom:870.423195px;}
.y13{bottom:870.906900px;}
.yeb{bottom:872.775000px;}
.y128{bottom:875.775000px;}
.y10c{bottom:879.225000px;}
.y13a{bottom:885.225000px;}
.y9e{bottom:888.423195px;}
.y5e{bottom:889.725000px;}
.y41{bottom:892.725000px;}
.y20{bottom:899.673195px;}
.yea{bottom:902.775000px;}
.y10b{bottom:909.225000px;}
.yd9{bottom:918.423195px;}
.y5d{bottom:919.725000px;}
.y40{bottom:922.725000px;}
.y7b{bottom:924.423195px;}
.y127{bottom:926.775000px;}
.ye9{bottom:932.775000px;}
.y10a{bottom:939.225000px;}
.y9d{bottom:948.423195px;}
.yc1{bottom:949.725000px;}
.y3f{bottom:952.725000px;}
.y7a{bottom:954.423195px;}
.y126{bottom:956.775000px;}
.y1f{bottom:968.673195px;}
.y109{bottom:969.225000px;}
.y5c{bottom:973.725000px;}
.y9c{bottom:978.423195px;}
.y79{bottom:984.423195px;}
.ye8{bottom:986.775000px;}
.y14e{bottom:991.725000px;}
.y108{bottom:999.225000px;}
.y3e{bottom:1003.725000px;}
.y9b{bottom:1008.423195px;}
.y14d{bottom:1012.725000px;}
.y78{bottom:1014.423195px;}
.ye7{bottom:1016.775000px;}
.y107{bottom:1030.725000px;}
.y12{bottom:1032.225000px;}
.y3d{bottom:1033.725000px;}
.y9a{bottom:1038.423195px;}
.y77{bottom:1044.423195px;}
.ye6{bottom:1046.775000px;}
.y9{bottom:1183.872600px;}
.h7{height:31.054680px;}
.h10{height:39.318510px;}
.hd{height:45.858398px;}
.h11{height:50.027344px;}
.h8{height:51.539062px;}
.hb{height:52.558594px;}
.h2{height:56.601562px;}
.hf{height:58.675781px;}
.h18{height:62.992202px;}
.h6{height:63.565430px;}
.h4{height:68.455078px;}
.h3{height:88.013672px;}
.h5{height:97.792969px;}
.hc{height:256.636200px;}
.h1{height:1050.450000px;}
.h12{height:1055.598150px;}
.ha{height:1056.062850px;}
.h17{height:1056.494700px;}
.he{height:1058.898150px;}
.h15{height:1060.296450px;}
.h14{height:1060.335900px;}
.h13{height:1066.296450px;}
.h9{height:1068.527400px;}
.h16{height:1068.648150px;}
.h0{height:1263.000000px;}
.w7{width:40.457775px;}
.w2{width:647.404650px;}
.wb{width:647.646450px;}
.w9{width:647.725500px;}
.w3{width:648.504450px;}
.w4{width:648.575850px;}
.wd{width:649.350000px;}
.w6{width:649.439400px;}
.wc{width:649.639050px;}
.w5{width:655.741200px;}
.w8{width:656.983950px;}
.wa{width:657.124650px;}
.w1{width:662.262450px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:4.952340px;}
.xe{left:5.969670px;}
.x10{left:21.612735px;}
.xb{left:31.493115px;}
.xc{left:47.993115px;}
.x11{left:59.112735px;}
.x2{left:112.005315px;}
.x1{left:118.994685px;}
.xd{left:121.530330px;}
.x9{left:122.547660px;}
.x7{left:145.005315px;}
.x3{left:163.005315px;}
.x6{left:199.005315px;}
.x4{left:224.505315px;}
.x5{left:256.005315px;}
.x8{left:440.142465px;}
.xf{left:806.820450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.374400pt;}
.ls2{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.015644pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.505600pt;}
.ls3{letter-spacing:7.264000pt;}
.ls7{letter-spacing:31.532800pt;}
.ls5{letter-spacing:110.933333pt;}
.ws3{word-spacing:-16.019200pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.980800pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-1864.805867pt;}
._1f{margin-left:-1758.145067pt;}
._21{margin-left:-1743.472533pt;}
._17{margin-left:-1715.454933pt;}
._13{margin-left:-1614.109867pt;}
._1b{margin-left:-1379.443200pt;}
._15{margin-left:-1336.811733pt;}
._19{margin-left:-1278.104000pt;}
._11{margin-left:-1187.419733pt;}
._1d{margin-left:-1011.490133pt;}
._2e{margin-left:-16.000000pt;}
._38{margin-left:-10.272000pt;}
._4{margin-left:-8.970667pt;}
._2{margin-left:-8.006400pt;}
._3{margin-left:-7.056000pt;}
._37{margin-left:-5.702773pt;}
._6{margin-left:-4.444267pt;}
._1{margin-left:-3.442133pt;}
._c{margin-left:-1.920533pt;}
._0{margin-left:-1.000533pt;}
._5{width:1.248000pt;}
._7{width:2.440533pt;}
._d{width:3.598400pt;}
._9{width:5.123733pt;}
._29{width:6.752000pt;}
._28{width:7.641600pt;}
._24{width:8.966400pt;}
._25{width:10.361600pt;}
._2b{width:11.334400pt;}
._2f{width:12.486400pt;}
._33{width:13.643733pt;}
._2a{width:14.874133pt;}
._26{width:17.030933pt;}
._27{width:18.309867pt;}
._30{width:19.660800pt;}
._31{width:20.563733pt;}
._22{width:22.284800pt;}
._23{width:23.590400pt;}
._2d{width:24.882133pt;}
._8{width:25.847467pt;}
._36{width:26.747733pt;}
._34{width:28.089600pt;}
._32{width:29.862400pt;}
._35{width:31.059200pt;}
._2c{width:32.578133pt;}
._b{width:33.612800pt;}
._a{width:35.422400pt;}
._1c{width:937.541867pt;}
._10{width:1135.270400pt;}
._18{width:1223.053333pt;}
._14{width:1281.800533pt;}
._1a{width:1293.048533pt;}
._12{width:1568.488533pt;}
._16{width:1669.900267pt;}
._1e{width:1677.643733pt;}
._20{width:1681.021333pt;}
._e{width:1809.677333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs6{font-size:78.222240pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:7.193867pt;}
.ya{bottom:9.002133pt;}
.y98{bottom:13.668147pt;}
.y139{bottom:13.692960pt;}
.yb3{bottom:13.824027pt;}
.y14c{bottom:13.848840pt;}
.y3c{bottom:13.881720pt;}
.y150{bottom:14.004667pt;}
.yc0{bottom:14.246920pt;}
.yd8{bottom:14.402800pt;}
.ye5{bottom:14.558667pt;}
.y75{bottom:14.578587pt;}
.y106{bottom:14.714547pt;}
.y5b{bottom:14.808933pt;}
.y125{bottom:14.870413pt;}
.y96{bottom:16.376173pt;}
.y3a{bottom:17.042840pt;}
.y59{bottom:17.533333pt;}
.y73{bottom:18.866667pt;}
.y123{bottom:21.533333pt;}
.y104{bottom:23.800000pt;}
.y1c{bottom:29.860533pt;}
.yd6{bottom:37.533333pt;}
.y95{bottom:43.042840pt;}
.y39{bottom:43.709507pt;}
.y74{bottom:44.088080pt;}
.y58{bottom:44.200000pt;}
.y14f{bottom:44.662000pt;}
.y3b{bottom:44.784947pt;}
.y14b{bottom:44.817827pt;}
.yb2{bottom:44.842640pt;}
.y138{bottom:44.973707pt;}
.y97{bottom:44.998520pt;}
.y124{bottom:45.129587pt;}
.y5a{bottom:45.191067pt;}
.y105{bottom:45.285453pt;}
.ye4{bottom:45.441333pt;}
.y72{bottom:45.533333pt;}
.yd7{bottom:45.597200pt;}
.ybf{bottom:45.753080pt;}
.y122{bottom:48.200000pt;}
.y103{bottom:50.466667pt;}
.y1b{bottom:52.527200pt;}
.y8{bottom:63.332267pt;}
.yd5{bottom:64.200000pt;}
.ybe{bottom:65.533333pt;}
.y94{bottom:69.709507pt;}
.y38{bottom:70.376173pt;}
.y57{bottom:70.866667pt;}
.y14a{bottom:72.200000pt;}
.y121{bottom:74.866667pt;}
.y1a{bottom:75.193867pt;}
.y102{bottom:77.133333pt;}
.y11{bottom:82.466667pt;}
.yb{bottom:82.866667pt;}
.y76{bottom:84.957160pt;}
.y99{bottom:90.290493pt;}
.yd4{bottom:90.866667pt;}
.y1e{bottom:90.957160pt;}
.ybd{bottom:92.200000pt;}
.y71{bottom:93.533333pt;}
.y1{bottom:94.466667pt;}
.y93{bottom:96.376173pt;}
.y37{bottom:97.042840pt;}
.y19{bottom:97.860533pt;}
.y149{bottom:98.866667pt;}
.y120{bottom:101.533333pt;}
.y10{bottom:102.466667pt;}
.y101{bottom:103.800000pt;}
.yd3{bottom:117.533333pt;}
.y56{bottom:118.866667pt;}
.y70{bottom:120.200000pt;}
.y18{bottom:120.527200pt;}
.yf{bottom:122.466667pt;}
.y92{bottom:123.042840pt;}
.y148{bottom:125.533333pt;}
.y11f{bottom:128.200000pt;}
.y36{bottom:138.376173pt;}
.ye{bottom:142.466667pt;}
.y17{bottom:143.193867pt;}
.yd2{bottom:144.200000pt;}
.y55{bottom:145.533333pt;}
.y91{bottom:149.709507pt;}
.y100{bottom:151.800000pt;}
.yd{bottom:162.466667pt;}
.y35{bottom:165.042840pt;}
.y16{bottom:165.860533pt;}
.y6f{bottom:168.200000pt;}
.yd1{bottom:170.866667pt;}
.y54{bottom:172.200000pt;}
.y11e{bottom:173.533333pt;}
.yb1{bottom:176.376173pt;}
.yff{bottom:178.466667pt;}
.yc{bottom:182.466667pt;}
.y15{bottom:188.527200pt;}
.y34{bottom:191.709507pt;}
.ybc{bottom:193.533333pt;}
.y6e{bottom:194.866667pt;}
.y90{bottom:197.709507pt;}
.y53{bottom:198.866667pt;}
.y11d{bottom:200.200000pt;}
.yb0{bottom:203.042840pt;}
.yfe{bottom:205.133333pt;}
.y137{bottom:207.800000pt;}
.y14{bottom:211.193867pt;}
.y33{bottom:218.376173pt;}
.yd0{bottom:218.866667pt;}
.ybb{bottom:220.200000pt;}
.y6d{bottom:221.533333pt;}
.y8f{bottom:224.376173pt;}
.y52{bottom:225.533333pt;}
.y11c{bottom:226.866667pt;}
.ye3{bottom:229.709507pt;}
.yfd{bottom:231.800000pt;}
.y136{bottom:234.466667pt;}
.y32{bottom:245.042840pt;}
.ycf{bottom:245.533333pt;}
.yba{bottom:246.866667pt;}
.y6c{bottom:248.200000pt;}
.y8e{bottom:251.042840pt;}
.y51{bottom:252.200000pt;}
.y11b{bottom:254.866667pt;}
.yaf{bottom:256.376173pt;}
.yfc{bottom:258.466667pt;}
.y135{bottom:261.133333pt;}
.y31{bottom:271.709507pt;}
.yce{bottom:272.200000pt;}
.y6b{bottom:274.866667pt;}
.y8d{bottom:277.709507pt;}
.y50{bottom:278.866667pt;}
.yae{bottom:283.042840pt;}
.yfb{bottom:285.133333pt;}
.y134{bottom:287.800000pt;}
.yb9{bottom:294.866667pt;}
.y30{bottom:298.376173pt;}
.y6a{bottom:301.533333pt;}
.y8c{bottom:304.376173pt;}
.y4f{bottom:305.533333pt;}
.yad{bottom:309.709507pt;}
.y133{bottom:314.466667pt;}
.ycd{bottom:320.200000pt;}
.yb8{bottom:321.533333pt;}
.y11a{bottom:322.866667pt;}
.y2f{bottom:325.042840pt;}
.y147{bottom:328.200000pt;}
.ye2{bottom:331.042840pt;}
.y4e{bottom:332.200000pt;}
.yfa{bottom:333.133333pt;}
.yac{bottom:336.376173pt;}
.y69{bottom:346.866667pt;}
.yb7{bottom:348.200000pt;}
.y119{bottom:352.200000pt;}
.y8b{bottom:352.376173pt;}
.ye1{bottom:357.709507pt;}
.yf9{bottom:359.800000pt;}
.y2e{bottom:370.376173pt;}
.ycc{bottom:373.533333pt;}
.yb6{bottom:374.866667pt;}
.y146{bottom:376.200000pt;}
.y4d{bottom:377.533333pt;}
.y118{bottom:378.866667pt;}
.y8a{bottom:379.042840pt;}
.y7{bottom:381.533333pt;}
.yf8{bottom:386.466667pt;}
.yab{bottom:389.709507pt;}
.y2d{bottom:397.042840pt;}
.ycb{bottom:400.200000pt;}
.y6{bottom:401.533333pt;}
.y145{bottom:402.866667pt;}
.y117{bottom:405.533333pt;}
.y89{bottom:405.709507pt;}
.yf7{bottom:413.133333pt;}
.yaa{bottom:416.376173pt;}
.y2c{bottom:423.709507pt;}
.yca{bottom:426.866667pt;}
.y68{bottom:428.200000pt;}
.y144{bottom:429.533333pt;}
.y88{bottom:432.376173pt;}
.y4c{bottom:438.866667pt;}
.yf6{bottom:439.800000pt;}
.ya9{bottom:443.042840pt;}
.y2b{bottom:450.376173pt;}
.y5{bottom:450.866667pt;}
.yc9{bottom:453.533333pt;}
.y67{bottom:454.866667pt;}
.y143{bottom:456.200000pt;}
.y87{bottom:459.042840pt;}
.yf5{bottom:466.466667pt;}
.ya8{bottom:469.709507pt;}
.y116{bottom:477.533333pt;}
.yc8{bottom:480.200000pt;}
.y66{bottom:481.533333pt;}
.y142{bottom:482.866667pt;}
.y86{bottom:485.709507pt;}
.y132{bottom:493.133333pt;}
.y2a{bottom:495.709507pt;}
.ya7{bottom:496.376173pt;}
.yb5{bottom:502.866667pt;}
.y115{bottom:504.200000pt;}
.yc7{bottom:506.866667pt;}
.y4b{bottom:508.200000pt;}
.y85{bottom:512.376173pt;}
.yf4{bottom:514.466667pt;}
.y29{bottom:522.376173pt;}
.yb4{bottom:529.533333pt;}
.y114{bottom:530.866667pt;}
.ye0{bottom:533.709507pt;}
.y4a{bottom:534.866667pt;}
.y4{bottom:536.200000pt;}
.y131{bottom:538.466667pt;}
.y84{bottom:539.042840pt;}
.yf3{bottom:541.133333pt;}
.y28{bottom:549.042840pt;}
.ya6{bottom:549.709507pt;}
.yc6{bottom:554.866667pt;}
.y65{bottom:556.200000pt;}
.y113{bottom:557.533333pt;}
.y3{bottom:558.866667pt;}
.ydf{bottom:560.376173pt;}
.y49{bottom:561.533333pt;}
.y130{bottom:565.133333pt;}
.yf2{bottom:567.800000pt;}
.y27{bottom:575.709507pt;}
.ya5{bottom:576.376173pt;}
.y141{bottom:578.866667pt;}
.yc5{bottom:581.533333pt;}
.y64{bottom:582.866667pt;}
.y112{bottom:584.200000pt;}
.y83{bottom:587.042840pt;}
.y48{bottom:588.200000pt;}
.y12f{bottom:591.800000pt;}
.y26{bottom:602.376173pt;}
.ya4{bottom:603.042840pt;}
.y140{bottom:605.533333pt;}
.yc4{bottom:608.200000pt;}
.y63{bottom:609.533333pt;}
.y82{bottom:613.709507pt;}
.y47{bottom:614.866667pt;}
.yf1{bottom:615.800000pt;}
.y12e{bottom:618.466667pt;}
.y111{bottom:629.533333pt;}
.ya3{bottom:629.709507pt;}
.y13f{bottom:632.200000pt;}
.yc3{bottom:634.866667pt;}
.y62{bottom:636.200000pt;}
.y81{bottom:640.376173pt;}
.yf0{bottom:642.466667pt;}
.y12d{bottom:645.133333pt;}
.y25{bottom:647.709507pt;}
.y110{bottom:656.200000pt;}
.y13e{bottom:658.866667pt;}
.y46{bottom:660.200000pt;}
.yc2{bottom:661.533333pt;}
.yde{bottom:661.709507pt;}
.y61{bottom:662.866667pt;}
.y80{bottom:667.042840pt;}
.yef{bottom:669.133333pt;}
.y12c{bottom:671.800000pt;}
.y24{bottom:674.376173pt;}
.y10f{bottom:682.866667pt;}
.ya2{bottom:683.042840pt;}
.y45{bottom:686.866667pt;}
.ydd{bottom:688.376173pt;}
.y7f{bottom:693.709507pt;}
.yee{bottom:695.800000pt;}
.y12b{bottom:698.466667pt;}
.y23{bottom:701.042840pt;}
.y13d{bottom:706.866667pt;}
.y10e{bottom:709.533333pt;}
.ya1{bottom:709.709507pt;}
.y60{bottom:710.866667pt;}
.y44{bottom:713.533333pt;}
.ydc{bottom:715.042840pt;}
.y7e{bottom:720.376173pt;}
.yed{bottom:722.466667pt;}
.y12a{bottom:725.133333pt;}
.y22{bottom:727.709507pt;}
.y13c{bottom:733.533333pt;}
.ya0{bottom:736.376173pt;}
.y5f{bottom:737.533333pt;}
.y43{bottom:740.200000pt;}
.ydb{bottom:741.709507pt;}
.y7d{bottom:747.042840pt;}
.yec{bottom:749.133333pt;}
.y129{bottom:751.800000pt;}
.y21{bottom:754.376173pt;}
.y10d{bottom:754.866667pt;}
.y13b{bottom:760.200000pt;}
.y9f{bottom:763.042840pt;}
.y2{bottom:764.200000pt;}
.y42{bottom:766.866667pt;}
.yda{bottom:768.376173pt;}
.y7c{bottom:773.709507pt;}
.y13{bottom:774.139467pt;}
.yeb{bottom:775.800000pt;}
.y128{bottom:778.466667pt;}
.y10c{bottom:781.533333pt;}
.y13a{bottom:786.866667pt;}
.y9e{bottom:789.709507pt;}
.y5e{bottom:790.866667pt;}
.y41{bottom:793.533333pt;}
.y20{bottom:799.709507pt;}
.yea{bottom:802.466667pt;}
.y10b{bottom:808.200000pt;}
.yd9{bottom:816.376173pt;}
.y5d{bottom:817.533333pt;}
.y40{bottom:820.200000pt;}
.y7b{bottom:821.709507pt;}
.y127{bottom:823.800000pt;}
.ye9{bottom:829.133333pt;}
.y10a{bottom:834.866667pt;}
.y9d{bottom:843.042840pt;}
.yc1{bottom:844.200000pt;}
.y3f{bottom:846.866667pt;}
.y7a{bottom:848.376173pt;}
.y126{bottom:850.466667pt;}
.y1f{bottom:861.042840pt;}
.y109{bottom:861.533333pt;}
.y5c{bottom:865.533333pt;}
.y9c{bottom:869.709507pt;}
.y79{bottom:875.042840pt;}
.ye8{bottom:877.133333pt;}
.y14e{bottom:881.533333pt;}
.y108{bottom:888.200000pt;}
.y3e{bottom:892.200000pt;}
.y9b{bottom:896.376173pt;}
.y14d{bottom:900.200000pt;}
.y78{bottom:901.709507pt;}
.ye7{bottom:903.800000pt;}
.y107{bottom:916.200000pt;}
.y12{bottom:917.533333pt;}
.y3d{bottom:918.866667pt;}
.y9a{bottom:923.042840pt;}
.y77{bottom:928.376173pt;}
.ye6{bottom:930.466667pt;}
.y9{bottom:1052.331200pt;}
.h7{height:27.604160pt;}
.h10{height:34.949787pt;}
.hd{height:40.763021pt;}
.h11{height:44.468750pt;}
.h8{height:45.812500pt;}
.hb{height:46.718750pt;}
.h2{height:50.312500pt;}
.hf{height:52.156250pt;}
.h18{height:55.993068pt;}
.h6{height:56.502604pt;}
.h4{height:60.848958pt;}
.h3{height:78.234375pt;}
.h5{height:86.927083pt;}
.hc{height:228.121067pt;}
.h1{height:933.733333pt;}
.h12{height:938.309467pt;}
.ha{height:938.722533pt;}
.h17{height:939.106400pt;}
.he{height:941.242800pt;}
.h15{height:942.485733pt;}
.h14{height:942.520800pt;}
.h13{height:947.819067pt;}
.h9{height:949.802133pt;}
.h16{height:949.909467pt;}
.h0{height:1122.666667pt;}
.w7{width:35.962467pt;}
.w2{width:575.470800pt;}
.wb{width:575.685733pt;}
.w9{width:575.756000pt;}
.w3{width:576.448400pt;}
.w4{width:576.511867pt;}
.wd{width:577.200000pt;}
.w6{width:577.279467pt;}
.wc{width:577.456933pt;}
.w5{width:582.881067pt;}
.w8{width:583.985733pt;}
.wa{width:584.110800pt;}
.w1{width:588.677733pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:4.402080pt;}
.xe{left:5.306373pt;}
.x10{left:19.211320pt;}
.xb{left:27.993880pt;}
.xc{left:42.660547pt;}
.x11{left:52.544653pt;}
.x2{left:99.560280pt;}
.x1{left:105.773053pt;}
.xd{left:108.026960pt;}
.x9{left:108.931253pt;}
.x7{left:128.893613pt;}
.x3{left:144.893613pt;}
.x6{left:176.893613pt;}
.x4{left:199.560280pt;}
.x5{left:227.560280pt;}
.x8{left:391.237747pt;}
.xf{left:717.173733pt;}
}




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