
    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_90f9982346bd46df88b4e6dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_9a86f0f795dd924c33513631.woff2')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_55b26527ce8107dbdca3c270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_6ed27748b01ecc9845deb66d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_87443e6c5a8de0e15e1930ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_0ece43a17f93ca20bcac8891.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_736f0e54e93e377baba5646d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.857910;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_9d9609f4b0cbe0f3e009e185.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_8aff55fcd6979e92a0d19d49.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_0a4bd1e08d798e674dc91413.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_319ad8e829502ba965f074e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_b8f06ad37e7597e3aa96de39.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.071500;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_d91465eca3030ebcca50e9ad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.830000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.867554px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:66.379817px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007029px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,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(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-43.200001px;}
.ws8{word-spacing:-40.512003px;}
.ws7{word-spacing:-30.384001px;}
.ws4{word-spacing:-28.254000px;}
.wse{word-spacing:-23.268000px;}
.wsa{word-spacing:-21.696001px;}
.ws5{word-spacing:-21.606002px;}
.ws3{word-spacing:-18.282001px;}
.wsc{word-spacing:-16.620000px;}
.wsf{word-spacing:-14.958000px;}
.ws1{word-spacing:-13.296001px;}
.ws9{word-spacing:-0.090000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:34.056280px;}
.ws11{word-spacing:37.366114px;}
.ws2{word-spacing:84.704021px;}
.wsb{word-spacing:146.309315px;}
.ws10{word-spacing:655.745341px;}
._9{margin-left:-12.948000px;}
._e{margin-left:-10.002000px;}
._6{margin-left:-8.580001px;}
._4{margin-left:-7.548000px;}
._b{margin-left:-6.216000px;}
._2{margin-left:-4.884000px;}
._3{margin-left:-3.774000px;}
._0{margin-left:-2.640000px;}
._5{margin-left:-1.512000px;}
._a{width:2.072700px;}
._7{width:54.000281px;}
._1{width:107.972021px;}
._8{width:458.337795px;}
._c{width:682.977358px;}
._d{width:830.690463px;}
.fce{color:rgb(102,102,102);}
.fcd{color:rgb(103,78,167);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(221,244,196);}
.fc3{color:rgb(0,0,0);}
.fc10{color:rgb(45,80,118);}
.fc8{color:rgb(239,239,239);}
.fcf{color:transparent;}
.fca{color:rgb(8,8,8);}
.fcc{color:rgb(51,51,51);}
.fc9{color:rgb(89,89,89);}
.fc1{color:rgb(238,255,65);}
.fc4{color:rgb(0,151,167);}
.fc5{color:rgb(0,51,179);}
.fcb{color:rgb(70,134,145);}
.fc6{color:rgb(255,0,0);}
.fc7{color:rgb(0,111,183);}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000003px;}
.fs13{font-size:54.000002px;}
.fs10{font-size:60.000000px;}
.fs9{font-size:66.000004px;}
.fs5{font-size:72.000002px;}
.fsf{font-size:78.000005px;}
.fs4{font-size:84.000000px;}
.fsd{font-size:90.000003px;}
.fs0{font-size:96.000006px;}
.fsc{font-size:102.000000px;}
.fsb{font-size:108.000003px;}
.fs3{font-size:114.000007px;}
.fs2{font-size:132.000007px;}
.fs12{font-size:167.999999px;}
.fs11{font-size:180.000006px;}
.fs1{font-size:192.000012px;}
.fse{font-size:204.000001px;}
.fsa{font-size:222.000001px;}
.fs6{font-size:234.000007px;}
.ye7{bottom:-10.040814px;}
.y0{bottom:0.000000px;}
.yb2{bottom:6.921836px;}
.y12c{bottom:8.409862px;}
.yc6{bottom:10.931673px;}
.y1a{bottom:11.750401px;}
.y4b{bottom:12.510611px;}
.y12a{bottom:14.156081px;}
.y118{bottom:14.262394px;}
.ybd{bottom:15.544275px;}
.y34{bottom:15.845989px;}
.y4d{bottom:17.092897px;}
.yf9{bottom:17.823401px;}
.yf8{bottom:18.143254px;}
.y130{bottom:20.374597px;}
.yeb{bottom:21.178691px;}
.ye6{bottom:23.231828px;}
.y5f{bottom:23.292375px;}
.y85{bottom:27.753934px;}
.ycf{bottom:28.316546px;}
.y42{bottom:28.667683px;}
.y12b{bottom:29.563686px;}
.y116{bottom:30.349824px;}
.y56{bottom:33.031973px;}
.yd7{bottom:35.713084px;}
.y117{bottom:38.364777px;}
.y12f{bottom:38.374598px;}
.yf7{bottom:38.393255px;}
.ybc{bottom:40.294278px;}
.y4a{bottom:42.885609px;}
.y10{bottom:43.535918px;}
.y4c{bottom:44.092896px;}
.yce{bottom:44.876547px;}
.y115{bottom:46.549827px;}
.y5e{bottom:46.692376px;}
.ye5{bottom:47.981828px;}
.yb{bottom:48.310139px;}
.y8e{bottom:48.422158px;}
.yb1{bottom:50.023638px;}
.yab{bottom:52.600959px;}
.yc5{bottom:53.186337px;}
.yf3{bottom:53.275032px;}
.y2d{bottom:54.633537px;}
.yd6{bottom:57.088085px;}
.yf{bottom:57.935912px;}
.y100{bottom:59.060120px;}
.y124{bottom:59.576218px;}
.y8a{bottom:60.372624px;}
.ya{bottom:60.910138px;}
.ycd{bottom:62.876548px;}
.yaa{bottom:67.000960px;}
.y120{bottom:67.705140px;}
.y105{bottom:69.015324px;}
.y142{bottom:70.718068px;}
.ye{bottom:72.335908px;}
.ye4{bottom:72.731829px;}
.y49{bottom:73.260610px;}
.yc4{bottom:74.786338px;}
.y2c{bottom:74.883538px;}
.y65{bottom:75.506563px;}
.yf2{bottom:78.025033px;}
.y48{bottom:78.416151px;}
.yd5{bottom:78.463086px;}
.y83{bottom:80.294441px;}
.ycc{bottom:80.876548px;}
.ya9{bottom:81.400938px;}
.y123{bottom:84.326219px;}
.yd{bottom:86.735908px;}
.y104{bottom:87.015325px;}
.y8c{bottom:88.136962px;}
.y33{bottom:89.165661px;}
.y77{bottom:94.776925px;}
.y2b{bottom:95.133539px;}
.y141{bottom:95.468069px;}
.ya8{bottom:95.800927px;}
.yc3{bottom:96.386327px;}
.ye3{bottom:97.481830px;}
.ycb{bottom:98.876549px;}
.y64{bottom:98.906564px;}
.yd4{bottom:99.838086px;}
.y106{bottom:100.343860px;}
.yb0{bottom:100.651587px;}
.yf1{bottom:102.775034px;}
.y7c{bottom:104.029953px;}
.y36{bottom:105.324979px;}
.y122{bottom:109.076220px;}
.y3b{bottom:109.231189px;}
.y32{bottom:109.415662px;}
.ya7{bottom:110.200916px;}
.y6a{bottom:111.052582px;}
.y2a{bottom:115.383539px;}
.yca{bottom:116.876549px;}
.yc2{bottom:117.986321px;}
.y140{bottom:120.218072px;}
.yd3{bottom:121.213087px;}
.ye2{bottom:122.231831px;}
.y63{bottom:122.306564px;}
.y3f{bottom:123.982672px;}
.ya6{bottom:124.600905px;}
.yf0{bottom:127.525032px;}
.y31{bottom:129.665662px;}
.yff{bottom:132.344580px;}
.y73{bottom:133.160047px;}
.y121{bottom:133.826221px;}
.yc9{bottom:134.876550px;}
.y29{bottom:135.633540px;}
.y69{bottom:135.802580px;}
.y11f{bottom:137.918721px;}
.ya5{bottom:139.000883px;}
.yc1{bottom:139.586318px;}
.y78{bottom:140.259878px;}
.y41{bottom:140.851764px;}
.y3a{bottom:141.631186px;}
.yd2{bottom:142.588088px;}
.ye1{bottom:146.981834px;}
.y7b{bottom:149.187264px;}
.y30{bottom:149.915663px;}
.y3e{bottom:150.982670px;}
.ya4{bottom:153.400872px;}
.y28{bottom:155.883541px;}
.y84{bottom:157.858264px;}
.yc0{bottom:161.186316px;}
.y8d{bottom:161.594986px;}
.y5d{bottom:161.653621px;}
.yd1{bottom:163.963088px;}
.y80{bottom:164.147386px;}
.y90{bottom:166.264186px;}
.yda{bottom:167.786468px;}
.ya3{bottom:167.800850px;}
.y2f{bottom:170.165664px;}
.y8b{bottom:175.937566px;}
.y27{bottom:176.133541px;}
.y79{bottom:177.556059px;}
.ya2{bottom:182.200851px;}
.ybf{bottom:182.786319px;}
.y7{bottom:184.129355px;}
.yd0{bottom:185.338089px;}
.y5c{bottom:186.403622px;}
.y8f{bottom:187.639187px;}
.y59{bottom:188.490392px;}
.y54{bottom:189.501787px;}
.y2e{bottom:190.415664px;}
.y81{bottom:192.192320px;}
.yd9{bottom:192.986462px;}
.ya1{bottom:196.600851px;}
.y12e{bottom:200.075694px;}
.y10a{bottom:200.358160px;}
.ybe{bottom:204.386320px;}
.y68{bottom:207.101178px;}
.yf6{bottom:207.544690px;}
.y11e{bottom:208.132302px;}
.ya0{bottom:211.000852px;}
.y6{bottom:211.129356px;}
.y5b{bottom:211.153622px;}
.y58{bottom:213.240393px;}
.y129{bottom:214.389217px;}
.yfe{bottom:214.397245px;}
.y67{bottom:215.256227px;}
.yaf{bottom:215.998043px;}
.yd8{bottom:218.186461px;}
.y7a{bottom:218.314938px;}
.yee{bottom:219.424938px;}
.y138{bottom:220.595894px;}
.y109{bottom:225.108161px;}
.y9f{bottom:225.400852px;}
.y76{bottom:226.951188px;}
.y12d{bottom:228.487567px;}
.yc8{bottom:230.472890px;}
.yfd{bottom:232.397245px;}
.y47{bottom:232.932397px;}
.y5a{bottom:235.903625px;}
.y66{bottom:236.631228px;}
.y128{bottom:239.139218px;}
.y38{bottom:239.220650px;}
.yed{bottom:239.224938px;}
.y9e{bottom:239.800864px;}
.y5{bottom:245.329357px;}
.y103{bottom:248.643304px;}
.y10e{bottom:249.430021px;}
.y137{bottom:249.845895px;}
.y53{bottom:253.743424px;}
.y9d{bottom:254.200864px;}
.y13f{bottom:256.595895px;}
.y8{bottom:259.951298px;}
.y46{bottom:263.307398px;}
.y127{bottom:263.889219px;}
.y102{bottom:266.643304px;}
.y9c{bottom:268.600876px;}
.y108{bottom:269.415214px;}
.yac{bottom:272.144714px;}
.y3d{bottom:273.528349px;}
.y11d{bottom:273.848864px;}
.y88{bottom:276.605607px;}
.y136{bottom:279.095896px;}
.y4f{bottom:281.515153px;}
.y7e{bottom:281.841481px;}
.y9b{bottom:283.000877px;}
.y110{bottom:283.182969px;}
.y21{bottom:285.287345px;}
.y107{bottom:287.415215px;}
.y10d{bottom:288.112074px;}
.ybb{bottom:289.557316px;}
.y82{bottom:291.543627px;}
.y45{bottom:293.682399px;}
.yfc{bottom:295.474006px;}
.yec{bottom:298.690494px;}
.y20{bottom:305.537345px;}
.y10c{bottom:306.112074px;}
.y26{bottom:306.243137px;}
.y13e{bottom:309.470897px;}
.y135{bottom:310.460897px;}
.yba{bottom:311.157317px;}
.y9a{bottom:311.800889px;}
.y72{bottom:312.970576px;}
.yfb{bottom:313.474007px;}
.y40{bottom:313.555514px;}
.y7d{bottom:315.422901px;}
.y4{bottom:316.609359px;}
.y70{bottom:319.059812px;}
.y87{bottom:319.290932px;}
.yef{bottom:321.453171px;}
.y114{bottom:323.124914px;}
.y44{bottom:324.057401px;}
.y10b{bottom:324.112075px;}
.y1f{bottom:325.787346px;}
.y99{bottom:326.200889px;}
.y25{bottom:326.493137px;}
.yb9{bottom:332.757306px;}
.y51{bottom:336.646476px;}
.y86{bottom:337.290933px;}
.y14{bottom:337.291315px;}
.y71{bottom:337.720577px;}
.y11c{bottom:339.565381px;}
.y6f{bottom:340.434813px;}
.y98{bottom:340.600890px;}
.y35{bottom:344.574979px;}
.y134{bottom:345.470898px;}
.y1e{bottom:346.037347px;}
.y24{bottom:346.743138px;}
.ydf{bottom:347.995049px;}
.yb8{bottom:354.357300px;}
.yf5{bottom:354.716265px;}
.y97{bottom:355.000890px;}
.yad{bottom:355.128947px;}
.y10f{bottom:357.865023px;}
.y17{bottom:360.666881px;}
.y126{bottom:360.822270px;}
.y113{bottom:361.806956px;}
.y13{bottom:362.041316px;}
.y13d{bottom:362.345898px;}
.y1d{bottom:366.287347px;}
.y23{bottom:366.993139px;}
.y1{bottom:368.132246px;}
.y96{bottom:369.400879px;}
.yde{bottom:372.745050px;}
.y133{bottom:374.720899px;}
.yb7{bottom:375.957296px;}
.y112{bottom:379.806956px;}
.yf4{bottom:379.916264px;}
.y16{bottom:385.416882px;}
.y125{bottom:385.572271px;}
.y1c{bottom:386.537348px;}
.y12{bottom:386.791317px;}
.y22{bottom:387.243139px;}
.y3{bottom:389.936333px;}
.y13c{bottom:391.595899px;}
.y7f{bottom:395.665092px;}
.ydd{bottom:397.495051px;}
.y75{bottom:397.518293px;}
.yb6{bottom:397.557295px;}
.y111{bottom:397.806957px;}
.y95{bottom:398.200869px;}
.y89{bottom:398.339341px;}
.y11b{bottom:400.663807px;}
.y132{bottom:403.970900px;}
.y15{bottom:410.166885px;}
.y11{bottom:411.541320px;}
.y94{bottom:412.600870px;}
.y50{bottom:414.531317px;}
.y6e{bottom:414.779052px;}
.yea{bottom:418.400713px;}
.yb5{bottom:419.157298px;}
.y13b{bottom:420.845900px;}
.y6c{bottom:420.867635px;}
.ydc{bottom:422.245052px;}
.y43{bottom:425.063797px;}
.yfa{bottom:425.922339px;}
.y93{bottom:427.000863px;}
.y131{bottom:435.335901px;}
.y6d{bottom:439.529053px;}
.yb4{bottom:440.757298px;}
.y92{bottom:441.400859px;}
.y6b{bottom:442.242636px;}
.yae{bottom:442.371079px;}
.ye9{bottom:443.150716px;}
.ydb{bottom:446.995055px;}
.y4e{bottom:447.324621px;}
.y2{bottom:447.536327px;}
.y13a{bottom:450.095903px;}
.y37{bottom:453.883048px;}
.y91{bottom:455.800860px;}
.ye0{bottom:457.026016px;}
.y101{bottom:462.786014px;}
.y62{bottom:465.719167px;}
.y52{bottom:466.632693px;}
.y19{bottom:478.117555px;}
.y61{bottom:489.119168px;}
.y11a{bottom:499.738817px;}
.y139{bottom:501.612990px;}
.y60{bottom:512.519169px;}
.yc{bottom:517.832125px;}
.y55{bottom:522.141379px;}
.y57{bottom:525.021376px;}
.y9{bottom:526.832126px;}
.ye8{bottom:527.413818px;}
.y74{bottom:527.638818px;}
.yb3{bottom:527.901378px;}
.y39{bottom:528.718818px;}
.y1b{bottom:530.724626px;}
.yc7{bottom:530.781381px;}
.y3c{bottom:542.858974px;}
.y18{bottom:548.317557px;}
.y119{bottom:560.938814px;}
.h22{height:29.400000px;}
.h8{height:30.597656px;}
.h1c{height:33.890627px;}
.hd{height:34.945315px;}
.h9{height:34.968752px;}
.h23{height:39.240002px;}
.h21{height:39.339845px;}
.h20{height:43.681641px;}
.h16{height:43.710938px;}
.hb{height:48.049807px;}
.hc{height:48.082034px;}
.h19{height:48.937502px;}
.h1e{height:50.835939px;}
.h18{height:51.912002px;}
.h17{height:52.417970px;}
.h6{height:52.453127px;}
.h13{height:56.824223px;}
.ha{height:61.154297px;}
.h5{height:61.195312px;}
.h1b{height:64.890002px;}
.h1a{height:65.250004px;}
.h15{height:65.296879px;}
.h11{height:65.522463px;}
.h1{height:67.200004px;}
.h24{height:73.710002px;}
.h10{height:74.308594px;}
.hf{height:75.600002px;}
.h25{height:78.679690px;}
.h4{height:83.050786px;}
.h3{height:96.099615px;}
.h1f{height:122.390625px;}
.h14{height:127.534114px;}
.h1d{height:131.132817px;}
.h2{height:139.875009px;}
.h12{height:148.617188px;}
.he{height:161.730470px;}
.h7{height:170.472662px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x86{left:5.347441px;}
.x1{left:10.125000px;}
.x59{left:14.937993px;}
.x31{left:18.856300px;}
.x2f{left:20.149607px;}
.x61{left:21.248032px;}
.x51{left:26.766733px;}
.x6f{left:30.903544px;}
.x63{left:32.932088px;}
.x6e{left:35.994096px;}
.x4c{left:37.086616px;}
.x6d{left:38.539370px;}
.x9{left:46.939963px;}
.x5c{left:48.106757px;}
.x2a{left:50.848775px;}
.x16{left:56.084335px;}
.x8b{left:57.631857px;}
.x56{left:59.170279px;}
.x4b{left:61.002084px;}
.x5d{left:62.429753px;}
.x1a{left:66.399374px;}
.xe{left:68.202758px;}
.x17{left:74.766613px;}
.x7f{left:80.769689px;}
.x62{left:98.176183px;}
.x26{left:99.242609px;}
.x2{left:102.575520px;}
.x74{left:104.355787px;}
.x49{left:109.817425px;}
.x8c{left:115.262959px;}
.x73{left:117.155768px;}
.x30{left:128.149609px;}
.x6{left:140.303108px;}
.x22{left:154.095874px;}
.x3a{left:156.366122px;}
.x1b{left:158.824321px;}
.x55{left:160.482290px;}
.x84{left:163.538134px;}
.x83{left:169.922754px;}
.x72{left:172.941779px;}
.x10{left:182.554735px;}
.x82{left:184.019086px;}
.x81{left:190.055706px;}
.x4d{left:197.535798px;}
.x11{left:199.595749px;}
.x66{left:206.065607px;}
.x64{left:210.150161px;}
.x4a{left:211.310286px;}
.x85{left:214.830298px;}
.x32{left:220.201002px;}
.x4e{left:221.675205px;}
.x25{left:226.783481px;}
.x67{left:228.806329px;}
.x12{left:236.554736px;}
.x5{left:247.970089px;}
.x65{left:255.636076px;}
.x5a{left:290.388778px;}
.x38{left:297.013890px;}
.x1f{left:300.561501px;}
.x5b{left:306.516709px;}
.x7c{left:325.426207px;}
.x27{left:336.910218px;}
.x35{left:351.543279px;}
.x75{left:353.765355px;}
.x77{left:365.026563px;}
.x76{left:376.321883px;}
.x34{left:385.961806px;}
.x4{left:388.365481px;}
.x29{left:393.809638px;}
.x80{left:397.012648px;}
.x3{left:398.624390px;}
.x3f{left:412.405102px;}
.x36{left:416.504081px;}
.x5f{left:423.782485px;}
.x3d{left:424.838939px;}
.x33{left:429.815638px;}
.x57{left:431.241584px;}
.x4f{left:437.720977px;}
.x7{left:443.753092px;}
.x23{left:450.468037px;}
.xf{left:465.831796px;}
.x19{left:470.105340px;}
.x28{left:478.181873px;}
.x1c{left:494.114247px;}
.x40{left:498.383669px;}
.x3b{left:508.798400px;}
.x39{left:522.489503px;}
.x3c{left:533.699005px;}
.x42{left:541.680137px;}
.x7d{left:575.701781px;}
.x3e{left:596.461969px;}
.x78{left:606.645304px;}
.x79{left:609.144281px;}
.x41{left:613.829755px;}
.x1e{left:621.419195px;}
.x52{left:623.087559px;}
.xb{left:636.900602px;}
.x53{left:643.964670px;}
.x37{left:648.263425px;}
.x88{left:650.918473px;}
.xc{left:661.337292px;}
.xd{left:662.711660px;}
.x24{left:675.020272px;}
.x15{left:678.319456px;}
.x70{left:682.901572px;}
.x6b{left:686.441874px;}
.x2c{left:689.840910px;}
.xa{left:694.857330px;}
.x13{left:699.068464px;}
.x5e{left:701.317935px;}
.x6a{left:713.275704px;}
.x14{left:716.109478px;}
.x58{left:725.444911px;}
.x46{left:733.537790px;}
.x47{left:743.799970px;}
.x6c{left:747.379295px;}
.x43{left:749.384879px;}
.x48{left:751.815924px;}
.x54{left:755.967737px;}
.x1d{left:760.854512px;}
.x2e{left:804.888780px;}
.x7e{left:810.262826px;}
.x60{left:816.729664px;}
.x21{left:821.735014px;}
.x18{left:842.837233px;}
.x7a{left:845.892312px;}
.x2d{left:847.140667px;}
.x7b{left:861.216958px;}
.x20{left:894.866091px;}
.x45{left:918.383879px;}
.x44{left:919.836367px;}
.x71{left:928.166362px;}
.x8{left:930.642031px;}
.x2b{left:937.011151px;}
.x69{left:966.126021px;}
.x68{left:967.284065px;}
.x50{left:1006.082807px;}
.x89{left:1042.314637px;}
.x87{left:1043.722047px;}
.x8a{left:1069.314638px;}
@media print{
.v2{vertical-align:-18.548937pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:59.004282pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006248pt;}
.wsd{word-spacing:-38.400001pt;}
.ws8{word-spacing:-36.010669pt;}
.ws7{word-spacing:-27.008001pt;}
.ws4{word-spacing:-25.114667pt;}
.wse{word-spacing:-20.682667pt;}
.wsa{word-spacing:-19.285335pt;}
.ws5{word-spacing:-19.205335pt;}
.ws3{word-spacing:-16.250668pt;}
.wsc{word-spacing:-14.773333pt;}
.wsf{word-spacing:-13.296000pt;}
.ws1{word-spacing:-11.818667pt;}
.ws9{word-spacing:-0.080000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:30.272249pt;}
.ws11{word-spacing:33.214324pt;}
.ws2{word-spacing:75.292463pt;}
.wsb{word-spacing:130.052724pt;}
.ws10{word-spacing:582.884748pt;}
._9{margin-left:-11.509333pt;}
._e{margin-left:-8.890666pt;}
._6{margin-left:-7.626667pt;}
._4{margin-left:-6.709333pt;}
._b{margin-left:-5.525333pt;}
._2{margin-left:-4.341334pt;}
._3{margin-left:-3.354667pt;}
._0{margin-left:-2.346667pt;}
._5{margin-left:-1.344000pt;}
._a{width:1.842400pt;}
._7{width:48.000250pt;}
._1{width:95.975130pt;}
._8{width:407.411373pt;}
._c{width:607.090985pt;}
._d{width:738.391523pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666669pt;}
.fs13{font-size:48.000002pt;}
.fs10{font-size:53.333334pt;}
.fs9{font-size:58.666670pt;}
.fs5{font-size:64.000002pt;}
.fsf{font-size:69.333338pt;}
.fs4{font-size:74.666666pt;}
.fsd{font-size:80.000003pt;}
.fs0{font-size:85.333339pt;}
.fsc{font-size:90.666667pt;}
.fsb{font-size:96.000003pt;}
.fs3{font-size:101.333339pt;}
.fs2{font-size:117.333340pt;}
.fs12{font-size:149.333333pt;}
.fs11{font-size:160.000005pt;}
.fs1{font-size:170.666677pt;}
.fse{font-size:181.333334pt;}
.fsa{font-size:197.333334pt;}
.fs6{font-size:208.000007pt;}
.ye7{bottom:-8.925168pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:6.152743pt;}
.y12c{bottom:7.475433pt;}
.yc6{bottom:9.717043pt;}
.y1a{bottom:10.444801pt;}
.y4b{bottom:11.120543pt;}
.y12a{bottom:12.583183pt;}
.y118{bottom:12.677683pt;}
.ybd{bottom:13.817133pt;}
.y34{bottom:14.085323pt;}
.y4d{bottom:15.193686pt;}
.yf9{bottom:15.843023pt;}
.yf8{bottom:16.127337pt;}
.y130{bottom:18.110753pt;}
.yeb{bottom:18.825503pt;}
.ye6{bottom:20.650513pt;}
.y5f{bottom:20.704333pt;}
.y85{bottom:24.670164pt;}
.ycf{bottom:25.170264pt;}
.y42{bottom:25.482385pt;}
.y12b{bottom:26.278832pt;}
.y116{bottom:26.977622pt;}
.y56{bottom:29.361754pt;}
.yd7{bottom:31.744964pt;}
.y117{bottom:34.102024pt;}
.y12f{bottom:34.110754pt;}
.yf7{bottom:34.127338pt;}
.ybc{bottom:35.817136pt;}
.y4a{bottom:38.120541pt;}
.y10{bottom:38.698594pt;}
.y4c{bottom:39.193685pt;}
.yce{bottom:39.890264pt;}
.y115{bottom:41.377624pt;}
.y5e{bottom:41.504334pt;}
.ye5{bottom:42.650514pt;}
.yb{bottom:42.942346pt;}
.y8e{bottom:43.041918pt;}
.yb1{bottom:44.465456pt;}
.yab{bottom:46.756408pt;}
.yc5{bottom:47.276744pt;}
.yf3{bottom:47.355584pt;}
.y2d{bottom:48.563144pt;}
.yd6{bottom:50.744964pt;}
.yf{bottom:51.498588pt;}
.y100{bottom:52.497884pt;}
.y124{bottom:52.956638pt;}
.y8a{bottom:53.664554pt;}
.ya{bottom:54.142344pt;}
.ycd{bottom:55.890265pt;}
.yaa{bottom:59.556409pt;}
.y120{bottom:60.182347pt;}
.y105{bottom:61.346955pt;}
.y142{bottom:62.860505pt;}
.ye{bottom:64.298585pt;}
.ye4{bottom:64.650515pt;}
.y49{bottom:65.120542pt;}
.yc4{bottom:66.476745pt;}
.y2c{bottom:66.563145pt;}
.y65{bottom:67.116945pt;}
.yf2{bottom:69.355585pt;}
.y48{bottom:69.703245pt;}
.yd5{bottom:69.744965pt;}
.y83{bottom:71.372836pt;}
.ycc{bottom:71.890265pt;}
.ya9{bottom:72.356389pt;}
.y123{bottom:74.956639pt;}
.yd{bottom:77.098585pt;}
.y104{bottom:77.346955pt;}
.y8c{bottom:78.343966pt;}
.y33{bottom:79.258365pt;}
.y77{bottom:84.246155pt;}
.y2b{bottom:84.563145pt;}
.y141{bottom:84.860505pt;}
.ya8{bottom:85.156379pt;}
.yc3{bottom:85.676735pt;}
.ye3{bottom:86.650515pt;}
.ycb{bottom:87.890266pt;}
.y64{bottom:87.916946pt;}
.yd4{bottom:88.744966pt;}
.y106{bottom:89.194543pt;}
.yb0{bottom:89.468078pt;}
.yf1{bottom:91.355586pt;}
.y7c{bottom:92.471070pt;}
.y36{bottom:93.622204pt;}
.y122{bottom:96.956640pt;}
.y3b{bottom:97.094390pt;}
.y32{bottom:97.258366pt;}
.ya7{bottom:97.956370pt;}
.y6a{bottom:98.713406pt;}
.y2a{bottom:102.563146pt;}
.yca{bottom:103.890266pt;}
.yc2{bottom:104.876730pt;}
.y140{bottom:106.860508pt;}
.yd3{bottom:107.744966pt;}
.ye2{bottom:108.650516pt;}
.y63{bottom:108.716946pt;}
.y3f{bottom:110.206819pt;}
.ya6{bottom:110.756360pt;}
.yf0{bottom:113.355584pt;}
.y31{bottom:115.258366pt;}
.yff{bottom:117.639626pt;}
.y73{bottom:118.364487pt;}
.y121{bottom:118.956641pt;}
.yc9{bottom:119.890267pt;}
.y29{bottom:120.563147pt;}
.y69{bottom:120.713405pt;}
.y11f{bottom:122.594419pt;}
.ya5{bottom:123.556341pt;}
.yc1{bottom:124.076727pt;}
.y78{bottom:124.675447pt;}
.y41{bottom:125.201568pt;}
.y3a{bottom:125.894388pt;}
.yd2{bottom:126.744967pt;}
.ye1{bottom:130.650519pt;}
.y7b{bottom:132.610901pt;}
.y30{bottom:133.258367pt;}
.y3e{bottom:134.206818pt;}
.ya4{bottom:136.356331pt;}
.y28{bottom:138.563147pt;}
.y84{bottom:140.318457pt;}
.yc0{bottom:143.276725pt;}
.y8d{bottom:143.639987pt;}
.y5d{bottom:143.692107pt;}
.yd1{bottom:145.744967pt;}
.y80{bottom:145.908787pt;}
.y90{bottom:147.790387pt;}
.yda{bottom:149.143527pt;}
.ya3{bottom:149.156311pt;}
.y2f{bottom:151.258368pt;}
.y8b{bottom:156.388948pt;}
.y27{bottom:156.563148pt;}
.y79{bottom:157.827608pt;}
.ya2{bottom:161.956312pt;}
.ybf{bottom:162.476728pt;}
.y7{bottom:163.670538pt;}
.yd0{bottom:164.744968pt;}
.y5c{bottom:165.692108pt;}
.y8f{bottom:166.790388pt;}
.y59{bottom:167.547015pt;}
.y54{bottom:168.446033pt;}
.y2e{bottom:169.258368pt;}
.y81{bottom:170.837618pt;}
.yd9{bottom:171.543522pt;}
.ya1{bottom:174.756312pt;}
.y12e{bottom:177.845061pt;}
.y10a{bottom:178.096142pt;}
.ybe{bottom:181.676729pt;}
.y68{bottom:184.089936pt;}
.yf6{bottom:184.484169pt;}
.y11e{bottom:185.006491pt;}
.ya0{bottom:187.556313pt;}
.y6{bottom:187.670539pt;}
.y5b{bottom:187.692109pt;}
.y58{bottom:189.547016pt;}
.y129{bottom:190.568193pt;}
.yfe{bottom:190.575329pt;}
.y67{bottom:191.338869pt;}
.yaf{bottom:191.998261pt;}
.yd8{bottom:193.943521pt;}
.y7a{bottom:194.057723pt;}
.yee{bottom:195.044389pt;}
.y138{bottom:196.085239pt;}
.y109{bottom:200.096143pt;}
.y9f{bottom:200.356313pt;}
.y76{bottom:201.734389pt;}
.y12d{bottom:203.100059pt;}
.yc8{bottom:204.864791pt;}
.yfd{bottom:206.575329pt;}
.y47{bottom:207.051019pt;}
.y5a{bottom:209.692111pt;}
.y66{bottom:210.338869pt;}
.y128{bottom:212.568194pt;}
.y38{bottom:212.640578pt;}
.yed{bottom:212.644390pt;}
.y9e{bottom:213.156324pt;}
.y5{bottom:218.070540pt;}
.y103{bottom:221.016270pt;}
.y10e{bottom:221.715574pt;}
.y137{bottom:222.085240pt;}
.y53{bottom:225.549710pt;}
.y9d{bottom:225.956324pt;}
.y13f{bottom:228.085240pt;}
.y8{bottom:231.067820pt;}
.y46{bottom:234.051020pt;}
.y127{bottom:234.568194pt;}
.y102{bottom:237.016270pt;}
.y9c{bottom:238.756334pt;}
.y108{bottom:239.480190pt;}
.yac{bottom:241.906412pt;}
.y3d{bottom:243.136311pt;}
.y11d{bottom:243.421213pt;}
.y88{bottom:245.871651pt;}
.y136{bottom:248.085241pt;}
.y4f{bottom:250.235692pt;}
.y7e{bottom:250.525761pt;}
.y9b{bottom:251.556335pt;}
.y110{bottom:251.718195pt;}
.y21{bottom:253.588751pt;}
.y107{bottom:255.480191pt;}
.y10d{bottom:256.099621pt;}
.ybb{bottom:257.384281pt;}
.y82{bottom:259.149891pt;}
.y45{bottom:261.051021pt;}
.yfc{bottom:262.643561pt;}
.yec{bottom:265.502661pt;}
.y20{bottom:271.588751pt;}
.y10c{bottom:272.099621pt;}
.y26{bottom:272.216121pt;}
.y13e{bottom:275.085242pt;}
.y135{bottom:275.965242pt;}
.yba{bottom:276.584282pt;}
.y9a{bottom:277.156346pt;}
.y72{bottom:278.196068pt;}
.yfb{bottom:278.643562pt;}
.y40{bottom:278.716013pt;}
.y7d{bottom:280.375912pt;}
.y4{bottom:281.430542pt;}
.y70{bottom:283.608722pt;}
.y87{bottom:283.814162pt;}
.yef{bottom:285.736152pt;}
.y114{bottom:287.222146pt;}
.y44{bottom:288.051023pt;}
.y10b{bottom:288.099622pt;}
.y1f{bottom:289.588752pt;}
.y99{bottom:289.956346pt;}
.y25{bottom:290.216122pt;}
.yb9{bottom:295.784272pt;}
.y51{bottom:299.241312pt;}
.y86{bottom:299.814162pt;}
.y14{bottom:299.814502pt;}
.y71{bottom:300.196068pt;}
.y11c{bottom:301.835894pt;}
.y6f{bottom:302.608722pt;}
.y98{bottom:302.756346pt;}
.y35{bottom:306.288871pt;}
.y134{bottom:307.085243pt;}
.y1e{bottom:307.588753pt;}
.y24{bottom:308.216123pt;}
.ydf{bottom:309.328933pt;}
.yb8{bottom:314.984267pt;}
.yf5{bottom:315.303347pt;}
.y97{bottom:315.556347pt;}
.yad{bottom:315.670175pt;}
.y10f{bottom:318.102243pt;}
.y17{bottom:320.592783pt;}
.y126{bottom:320.730907pt;}
.y113{bottom:321.606183pt;}
.y13{bottom:321.814503pt;}
.y13d{bottom:322.085243pt;}
.y1d{bottom:325.588753pt;}
.y23{bottom:326.216123pt;}
.y1{bottom:327.228663pt;}
.y96{bottom:328.356337pt;}
.yde{bottom:331.328933pt;}
.y133{bottom:333.085243pt;}
.yb7{bottom:334.184263pt;}
.y112{bottom:337.606184pt;}
.yf4{bottom:337.703346pt;}
.y16{bottom:342.592784pt;}
.y125{bottom:342.730908pt;}
.y1c{bottom:343.588754pt;}
.y12{bottom:343.814504pt;}
.y22{bottom:344.216124pt;}
.y3{bottom:346.610074pt;}
.y13c{bottom:348.085244pt;}
.y7f{bottom:351.702304pt;}
.ydd{bottom:353.328934pt;}
.y75{bottom:353.349594pt;}
.yb6{bottom:353.384262pt;}
.y111{bottom:353.606184pt;}
.y95{bottom:353.956328pt;}
.y89{bottom:354.079414pt;}
.y11b{bottom:356.145606pt;}
.y132{bottom:359.085244pt;}
.y15{bottom:364.592786pt;}
.y11{bottom:365.814506pt;}
.y94{bottom:366.756328pt;}
.y50{bottom:368.472282pt;}
.y6e{bottom:368.692491pt;}
.yea{bottom:371.911745pt;}
.yb5{bottom:372.584265pt;}
.y13b{bottom:374.085245pt;}
.y6c{bottom:374.104565pt;}
.ydc{bottom:375.328935pt;}
.y43{bottom:377.834486pt;}
.yfa{bottom:378.597635pt;}
.y93{bottom:379.556323pt;}
.y131{bottom:386.965245pt;}
.y6d{bottom:390.692491pt;}
.yb4{bottom:391.784265pt;}
.y92{bottom:392.356319pt;}
.y6b{bottom:393.104565pt;}
.yae{bottom:393.218737pt;}
.ye9{bottom:393.911747pt;}
.ydb{bottom:397.328937pt;}
.y4e{bottom:397.621885pt;}
.y2{bottom:397.810068pt;}
.y13a{bottom:400.085248pt;}
.y37{bottom:403.451599pt;}
.y91{bottom:405.156320pt;}
.ye0{bottom:406.245348pt;}
.y101{bottom:411.365346pt;}
.y62{bottom:413.972593pt;}
.y52{bottom:414.784616pt;}
.y19{bottom:424.993382pt;}
.y61{bottom:434.772594pt;}
.y11a{bottom:444.212282pt;}
.y139{bottom:445.878213pt;}
.y60{bottom:455.572594pt;}
.yc{bottom:460.295222pt;}
.y55{bottom:464.125671pt;}
.y57{bottom:466.685668pt;}
.y9{bottom:468.295223pt;}
.ye8{bottom:468.812283pt;}
.y74{bottom:469.012283pt;}
.yb3{bottom:469.245670pt;}
.y39{bottom:469.972283pt;}
.y1b{bottom:471.755223pt;}
.yc7{bottom:471.805672pt;}
.y3c{bottom:482.541310pt;}
.y18{bottom:487.393384pt;}
.y119{bottom:498.612279pt;}
.h22{height:26.133333pt;}
.h8{height:27.197917pt;}
.h1c{height:30.125002pt;}
.hd{height:31.062502pt;}
.h9{height:31.083335pt;}
.h23{height:34.880002pt;}
.h21{height:34.968751pt;}
.h20{height:38.828125pt;}
.h16{height:38.854167pt;}
.hb{height:42.710940pt;}
.hc{height:42.739586pt;}
.h19{height:43.500001pt;}
.h1e{height:45.187501pt;}
.h18{height:46.144001pt;}
.h17{height:46.593751pt;}
.h6{height:46.625001pt;}
.h13{height:50.510420pt;}
.ha{height:54.359375pt;}
.h5{height:54.395833pt;}
.h1b{height:57.680002pt;}
.h1a{height:58.000004pt;}
.h15{height:58.041670pt;}
.h11{height:58.242189pt;}
.h1{height:59.733337pt;}
.h24{height:65.520002pt;}
.h10{height:66.052084pt;}
.hf{height:67.200002pt;}
.h25{height:69.937502pt;}
.h4{height:73.822921pt;}
.h3{height:85.421880pt;}
.h1f{height:108.791666pt;}
.h14{height:113.363657pt;}
.h1d{height:116.562504pt;}
.h2{height:124.333341pt;}
.h12{height:132.104167pt;}
.he{height:143.760417pt;}
.h7{height:151.531255pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x86{left:4.753281pt;}
.x1{left:9.000000pt;}
.x59{left:13.278216pt;}
.x31{left:16.761155pt;}
.x2f{left:17.910762pt;}
.x61{left:18.887140pt;}
.x51{left:23.792652pt;}
.x6f{left:27.469817pt;}
.x63{left:29.272967pt;}
.x6e{left:31.994752pt;}
.x4c{left:32.965881pt;}
.x6d{left:34.257218pt;}
.x9{left:41.724411pt;}
.x5c{left:42.761561pt;}
.x2a{left:45.198911pt;}
.x16{left:49.852743pt;}
.x8b{left:51.228318pt;}
.x56{left:52.595804pt;}
.x4b{left:54.224075pt;}
.x5d{left:55.493114pt;}
.x1a{left:59.021666pt;}
.xe{left:60.624674pt;}
.x17{left:66.459211pt;}
.x7f{left:71.795279pt;}
.x62{left:87.267718pt;}
.x26{left:88.215653pt;}
.x2{left:91.178240pt;}
.x74{left:92.760700pt;}
.x49{left:97.615489pt;}
.x8c{left:102.455963pt;}
.x73{left:104.138460pt;}
.x30{left:113.910764pt;}
.x6{left:124.713874pt;}
.x22{left:136.974110pt;}
.x3a{left:138.992108pt;}
.x1b{left:141.177175pt;}
.x55{left:142.650925pt;}
.x84{left:145.367231pt;}
.x83{left:151.042448pt;}
.x72{left:153.726026pt;}
.x10{left:162.270875pt;}
.x82{left:163.572521pt;}
.x81{left:168.938405pt;}
.x4d{left:175.587376pt;}
.x11{left:177.418444pt;}
.x66{left:183.169429pt;}
.x64{left:186.800143pt;}
.x4a{left:187.831365pt;}
.x85{left:190.960265pt;}
.x32{left:195.734224pt;}
.x4e{left:197.044626pt;}
.x25{left:201.585316pt;}
.x67{left:203.383404pt;}
.x12{left:210.270877pt;}
.x5{left:220.417857pt;}
.x65{left:227.232067pt;}
.x5a{left:258.123358pt;}
.x38{left:264.012346pt;}
.x1f{left:267.165779pt;}
.x5b{left:272.459297pt;}
.x7c{left:289.267739pt;}
.x27{left:299.475750pt;}
.x35{left:312.482915pt;}
.x75{left:314.458093pt;}
.x77{left:324.468056pt;}
.x76{left:334.508341pt;}
.x34{left:343.077161pt;}
.x4{left:345.213761pt;}
.x29{left:350.053011pt;}
.x80{left:352.900131pt;}
.x3{left:354.332791pt;}
.x3f{left:366.582313pt;}
.x36{left:370.225850pt;}
.x5f{left:376.695542pt;}
.x3d{left:377.634612pt;}
.x33{left:382.058345pt;}
.x57{left:383.325852pt;}
.x4f{left:389.085312pt;}
.x7{left:394.447193pt;}
.x23{left:400.416033pt;}
.xf{left:414.072707pt;}
.x19{left:417.871413pt;}
.x28{left:425.050554pt;}
.x1c{left:439.212664pt;}
.x40{left:443.007706pt;}
.x3b{left:452.265244pt;}
.x39{left:464.435114pt;}
.x3c{left:474.399115pt;}
.x42{left:481.493455pt;}
.x7d{left:511.734916pt;}
.x3e{left:530.188417pt;}
.x78{left:539.240270pt;}
.x79{left:541.461583pt;}
.x41{left:545.626448pt;}
.x1e{left:552.372618pt;}
.x52{left:553.855608pt;}
.xb{left:566.133868pt;}
.x53{left:572.413040pt;}
.x37{left:576.234155pt;}
.x88{left:578.594199pt;}
.xc{left:587.855371pt;}
.xd{left:589.077031pt;}
.x24{left:600.018019pt;}
.x15{left:602.950627pt;}
.x70{left:607.023619pt;}
.x6b{left:610.170555pt;}
.x2c{left:613.191920pt;}
.xa{left:617.650960pt;}
.x13{left:621.394190pt;}
.x5e{left:623.393720pt;}
.x6a{left:634.022848pt;}
.x14{left:636.541758pt;}
.x58{left:644.839921pt;}
.x46{left:652.033591pt;}
.x47{left:661.155529pt;}
.x6c{left:664.337151pt;}
.x43{left:666.119892pt;}
.x48{left:668.280821pt;}
.x54{left:671.971322pt;}
.x1d{left:676.315122pt;}
.x2e{left:715.456693pt;}
.x7e{left:720.233623pt;}
.x60{left:725.981923pt;}
.x21{left:730.431123pt;}
.x18{left:749.188652pt;}
.x7a{left:751.904277pt;}
.x2d{left:753.013926pt;}
.x7b{left:765.526184pt;}
.x20{left:795.436525pt;}
.x45{left:816.341226pt;}
.x44{left:817.632326pt;}
.x71{left:825.036766pt;}
.x8{left:827.237360pt;}
.x2b{left:832.898801pt;}
.x69{left:858.778685pt;}
.x68{left:859.808058pt;}
.x50{left:894.295829pt;}
.x89{left:926.501900pt;}
.x87{left:927.752931pt;}
.x8a{left:950.501900pt;}
}




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