
    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_410a07a6ef7d63aabaee1d23.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_5d130ce324d0bda092fb7729.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133301;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_9f32367ad887f2abdf6dfaea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a08d7d0db69ddce7cea906a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_d82cfcc57b603a1275bcaaf4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027832;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_3a4dee598932ed7db08a31da.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_f0a5892bc5a53e49fa50e9ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_c5e123c3390b4cb4f29e788e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_19373ef2aefa09415d650d9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.133301;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;}
.v1{vertical-align:18.000000px;}
.ls18{letter-spacing:-1.500000px;}
.ls7{letter-spacing:-1.068000px;}
.ls26{letter-spacing:-0.906000px;}
.ls28{letter-spacing:-0.714000px;}
.ls2d{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.654000px;}
.ls11{letter-spacing:-0.402600px;}
.ls5{letter-spacing:-0.394800px;}
.ls6{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.345600px;}
.ls21{letter-spacing:-0.345000px;}
.ls32{letter-spacing:-0.224400px;}
.ls25{letter-spacing:-0.213000px;}
.ls30{letter-spacing:-0.187200px;}
.ls27{letter-spacing:-0.183600px;}
.ls2f{letter-spacing:-0.138000px;}
.ls10{letter-spacing:-0.085200px;}
.lse{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.006480px;}
.ls20{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.050400px;}
.ls33{letter-spacing:0.080640px;}
.ls1b{letter-spacing:0.118200px;}
.ls1d{letter-spacing:0.130800px;}
.ls1f{letter-spacing:0.132960px;}
.lsa{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.184200px;}
.ls14{letter-spacing:0.222000px;}
.ls15{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.269280px;}
.ls29{letter-spacing:0.283800px;}
.ls4{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.328320px;}
.ls31{letter-spacing:0.371400px;}
.ls1e{letter-spacing:0.495600px;}
.ls2b{letter-spacing:0.743040px;}
.ls2c{letter-spacing:0.870000px;}
.lsc{letter-spacing:2.429280px;}
.ls1{letter-spacing:5.309280px;}
.ls2e{letter-spacing:9.011520px;}
.ls17{letter-spacing:9.731520px;}
.ls2a{letter-spacing:15.491520px;}
.ls1c{letter-spacing:16.211520px;}
.ls34{letter-spacing:17.651520px;}
.ls1a{letter-spacing:20.332800px;}
.ls23{letter-spacing:23.932800px;}
.ls9{letter-spacing:27.532800px;}
.ls16{letter-spacing:63.665280px;}
.ls22{letter-spacing:67.241280px;}
.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;}
}
.wse{word-spacing:-23.465280px;}
.ws16{word-spacing:-19.218480px;}
.ws8{word-spacing:-18.547200px;}
.ws7{word-spacing:-18.532680px;}
.ws6{word-spacing:-18.489600px;}
.ws4{word-spacing:-18.371520px;}
.ws2{word-spacing:-18.348480px;}
.wsd{word-spacing:-18.334080px;}
.ws18{word-spacing:-18.210480px;}
.ws9{word-spacing:-18.201600px;}
.ws19{word-spacing:-18.161280px;}
.ws12{word-spacing:-18.135480px;}
.ws1a{word-spacing:-17.999880px;}
.ws3{word-spacing:-17.953680px;}
.ws17{word-spacing:-17.652480px;}
.wsc{word-spacing:-16.848480px;}
.ws15{word-spacing:-16.837320px;}
.wsf{word-spacing:-16.732800px;}
.ws13{word-spacing:-16.566480px;}
.ws10{word-spacing:-16.553520px;}
.ws14{word-spacing:-16.369920px;}
.ws11{word-spacing:-16.208520px;}
.ws0{word-spacing:-15.282000px;}
.ws1{word-spacing:-14.958000px;}
.wsa{word-spacing:-13.362480px;}
.wsb{word-spacing:-13.277280px;}
.ws5{word-spacing:0.000000px;}
._3f{margin-left:-2.185920px;}
._0{margin-left:-1.109520px;}
._1{width:1.163520px;}
._8{width:2.549760px;}
._e{width:4.173120px;}
._2{width:5.895360px;}
._3{width:7.806000px;}
._c{width:9.548880px;}
._11{width:11.343600px;}
._9{width:12.519360px;}
._15{width:13.910400px;}
._1c{width:15.102720px;}
._10{width:16.295040px;}
._16{width:17.338320px;}
._27{width:19.391760px;}
._19{width:20.451600px;}
._18{width:22.322880px;}
._f{width:23.412240px;}
._1b{width:24.679200px;}
._d{width:26.297280px;}
._17{width:28.053840px;}
._1a{width:29.820720px;}
._24{width:30.907440px;}
._a{width:31.993920px;}
._b{width:33.302160px;}
._42{width:34.319520px;}
._1f{width:35.392560px;}
._1d{width:36.696960px;}
._1e{width:38.005200px;}
._26{width:39.131280px;}
._5{width:40.174560px;}
._4{width:41.250960px;}
._20{width:42.526080px;}
._21{width:43.714080px;}
._41{width:45.010080px;}
._25{width:46.103040px;}
._22{width:48.073680px;}
._23{width:49.083840px;}
._2d{width:50.986080px;}
._2e{width:52.124400px;}
._3e{width:53.263440px;}
._45{width:55.890000px;}
._7{width:58.506480px;}
._6{width:59.665680px;}
._3d{width:60.722640px;}
._31{width:63.480960px;}
._14{width:65.242080px;}
._12{width:66.372480px;}
._13{width:67.920240px;}
._44{width:72.876960px;}
._35{width:74.014560px;}
._29{width:80.048640px;}
._34{width:82.767600px;}
._33{width:85.309200px;}
._2f{width:87.446160px;}
._30{width:106.611840px;}
._2a{width:109.779120px;}
._40{width:118.265040px;}
._28{width:119.970000px;}
._37{width:135.686160px;}
._3a{width:140.734800px;}
._48{width:149.394960px;}
._2c{width:171.686160px;}
._3c{width:173.846160px;}
._39{width:175.852080px;}
._32{width:181.582560px;}
._38{width:190.873440px;}
._43{width:194.027520px;}
._2b{width:261.720720px;}
._47{width:264.846240px;}
._3b{width:332.863200px;}
._36{width:388.559520px;}
._46{width:731.439840px;}
.fc5{color:rgb(0,128,0);}
.fc4{color:transparent;}
.fc3{color:rgb(36,64,97);}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(0,0,128);}
.fc6{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yca{bottom:3.045000px;}
.ycf{bottom:3.052500px;}
.yb9{bottom:3.060000px;}
.yaa{bottom:3.240000px;}
.y106{bottom:12.225000px;}
.yf0{bottom:12.240000px;}
.y11f{bottom:12.270000px;}
.y104{bottom:12.405000px;}
.yf4{bottom:12.420000px;}
.yc1{bottom:21.420000px;}
.yc9{bottom:21.585000px;}
.yce{bottom:21.592500px;}
.ya9{bottom:21.600000px;}
.yc0{bottom:39.780000px;}
.yc8{bottom:39.945000px;}
.ycd{bottom:39.952500px;}
.yb8{bottom:39.960000px;}
.y26{bottom:55.980000px;}
.y8{bottom:56.160000px;}
.ybf{bottom:58.140000px;}
.yc7{bottom:58.305000px;}
.ycc{bottom:58.306500px;}
.ybd{bottom:58.320000px;}
.yb7{bottom:58.350000px;}
.yc6{bottom:76.665000px;}
.ycb{bottom:76.666500px;}
.ybc{bottom:76.680000px;}
.yb6{bottom:76.710000px;}
.y6{bottom:87.516000px;}
.yc5{bottom:95.025000px;}
.ybb{bottom:95.040000px;}
.yb5{bottom:95.070000px;}
.yd8{bottom:95.085000px;}
.y5{bottom:102.636000px;}
.yab{bottom:107.863500px;}
.y157{bottom:111.096000px;}
.y10b{bottom:111.636000px;}
.yd2{bottom:113.400000px;}
.yc4{bottom:113.430000px;}
.yd7{bottom:113.445000px;}
.y86{bottom:116.496000px;}
.y4{bottom:119.196000px;}
.yd1{bottom:131.760000px;}
.yd6{bottom:131.805000px;}
.yc3{bottom:131.970000px;}
.y3{bottom:135.756000px;}
.y156{bottom:141.336000px;}
.y10a{bottom:141.876000px;}
.y85{bottom:146.916000px;}
.ye4{bottom:150.120000px;}
.yd5{bottom:150.345000px;}
.y114{bottom:155.730000px;}
.y76{bottom:162.570000px;}
.yed{bottom:162.930000px;}
.ya6{bottom:165.270000px;}
.y113{bottom:166.170000px;}
.y129{bottom:166.530000px;}
.ye3{bottom:168.510000px;}
.yd4{bottom:168.705000px;}
.y149{bottom:170.670000px;}
.y155{bottom:171.750000px;}
.y109{bottom:172.290000px;}
.y84{bottom:177.330000px;}
.y128{bottom:186.510000px;}
.ye2{bottom:187.050000px;}
.y56{bottom:187.950000px;}
.y75{bottom:192.990000px;}
.yec{bottom:193.170000px;}
.ya5{bottom:195.690000px;}
.y112{bottom:196.590000px;}
.yc2{bottom:199.845000px;}
.y148{bottom:201.090000px;}
.y154{bottom:202.170000px;}
.y108{bottom:202.530000px;}
.y55{bottom:202.710000px;}
.y127{bottom:204.870000px;}
.ye1{bottom:205.410000px;}
.y54{bottom:205.770000px;}
.y83{bottom:207.570000px;}
.y53{bottom:217.290000px;}
.y52{bottom:220.350000px;}
.y74{bottom:223.230000px;}
.yeb{bottom:223.590000px;}
.ye0{bottom:223.770000px;}
.ya4{bottom:225.930000px;}
.y111{bottom:226.830000px;}
.y126{bottom:230.250000px;}
.y147{bottom:231.510000px;}
.y51{bottom:232.050000px;}
.y153{bottom:232.410000px;}
.y107{bottom:232.950000px;}
.y50{bottom:235.110000px;}
.y82{bottom:237.990000px;}
.ydf{bottom:242.130000px;}
.y110{bottom:246.630000px;}
.y4f{bottom:248.250000px;}
.y105{bottom:250.425000px;}
.y73{bottom:253.650000px;}
.yea{bottom:254.010000px;}
.ya3{bottom:256.350000px;}
.yde{bottom:260.490000px;}
.y146{bottom:261.750000px;}
.y152{bottom:262.830000px;}
.y10f{bottom:265.170000px;}
.y4e{bottom:268.230000px;}
.y103{bottom:277.965000px;}
.ydd{bottom:278.850000px;}
.y10e{bottom:283.530000px;}
.y72{bottom:283.890000px;}
.ye9{bottom:284.250000px;}
.ya2{bottom:286.770000px;}
.y4d{bottom:288.570000px;}
.y145{bottom:292.170000px;}
.y151{bottom:293.070000px;}
.ydc{bottom:297.390000px;}
.y81{bottom:298.650000px;}
.y102{bottom:305.715000px;}
.y4c{bottom:308.775000px;}
.y10d{bottom:309.135000px;}
.y71{bottom:314.355000px;}
.ye8{bottom:314.715000px;}
.ydb{bottom:315.750000px;}
.ya1{bottom:317.055000px;}
.y23{bottom:321.735000px;}
.y144{bottom:322.455000px;}
.y150{bottom:324.615000px;}
.y4b{bottom:329.115000px;}
.y101{bottom:333.255000px;}
.yda{bottom:334.110000px;}
.y132{bottom:339.015000px;}
.y22{bottom:341.895000px;}
.y70{bottom:344.595000px;}
.ye7{bottom:344.955000px;}
.ybe{bottom:347.115000px;}
.ya0{bottom:347.475000px;}
.y4a{bottom:349.275000px;}
.y143{bottom:352.875000px;}
.y14f{bottom:356.655000px;}
.y80{bottom:359.355000px;}
.y100{bottom:360.795000px;}
.y21{bottom:362.055000px;}
.y49{bottom:369.435000px;}
.y6f{bottom:375.015000px;}
.ye6{bottom:375.375000px;}
.y125{bottom:377.355000px;}
.y9f{bottom:377.715000px;}
.y20{bottom:382.395000px;}
.y142{bottom:383.115000px;}
.y14e{bottom:386.895000px;}
.yff{bottom:388.335000px;}
.yb3{bottom:389.371500px;}
.y48{bottom:389.775000px;}
.y131{bottom:399.675000px;}
.y1f{bottom:402.555000px;}
.y124{bottom:404.895000px;}
.y6e{bottom:405.435000px;}
.ye5{bottom:405.615000px;}
.yb2{bottom:407.731500px;}
.y9e{bottom:408.135000px;}
.y47{bottom:409.935000px;}
.y141{bottom:413.535000px;}
.yfe{bottom:416.055000px;}
.y14d{bottom:417.315000px;}
.y7f{bottom:420.015000px;}
.yba{bottom:420.555000px;}
.y1e{bottom:422.715000px;}
.yd9{bottom:423.255000px;}
.yb1{bottom:426.091500px;}
.y130{bottom:430.095000px;}
.y46{bottom:430.275000px;}
.y6d{bottom:435.675000px;}
.y9d{bottom:438.555000px;}
.yfd{bottom:443.595000px;}
.y140{bottom:443.955000px;}
.yb0{bottom:444.631500px;}
.y14c{bottom:447.735000px;}
.y45{bottom:450.435000px;}
.y1d{bottom:453.135000px;}
.y123{bottom:460.155000px;}
.y12f{bottom:460.515000px;}
.yaf{bottom:462.991500px;}
.y6c{bottom:466.095000px;}
.y9c{bottom:468.795000px;}
.y44{bottom:470.595000px;}
.yfc{bottom:471.135000px;}
.y13f{bottom:474.195000px;}
.y14b{bottom:477.975000px;}
.y7e{bottom:480.675000px;}
.yae{bottom:481.381500px;}
.y1c{bottom:483.555000px;}
.y122{bottom:487.695000px;}
.y12e{bottom:490.755000px;}
.y43{bottom:490.935000px;}
.y6b{bottom:496.335000px;}
.yfb{bottom:498.675000px;}
.y9b{bottom:499.215000px;}
.yad{bottom:499.741500px;}
.y13e{bottom:504.615000px;}
.y14a{bottom:509.475000px;}
.y42{bottom:511.095000px;}
.y1b{bottom:513.795000px;}
.y121{bottom:515.235000px;}
.yac{bottom:518.101500px;}
.y12d{bottom:521.175000px;}
.yfa{bottom:526.395000px;}
.y6a{bottom:526.755000px;}
.y99{bottom:527.835000px;}
.y9a{bottom:529.455000px;}
.yb4{bottom:530.895000px;}
.y41{bottom:531.255000px;}
.y1a{bottom:534.135000px;}
.y13d{bottom:534.855000px;}
.y7d{bottom:541.515000px;}
.y120{bottom:542.955000px;}
.y12c{bottom:551.415000px;}
.y40{bottom:551.595000px;}
.yf9{bottom:553.935000px;}
.y19{bottom:554.295000px;}
.y69{bottom:557.175000px;}
.y98{bottom:559.875000px;}
.y13c{bottom:565.275000px;}
.y11e{bottom:570.495000px;}
.y3f{bottom:571.755000px;}
.y18{bottom:574.455000px;}
.y12b{bottom:580.605000px;}
.yf8{bottom:581.505000px;}
.y7{bottom:583.665000px;}
.y25{bottom:583.845000px;}
.y68{bottom:587.445000px;}
.y97{bottom:590.145000px;}
.y3e{bottom:592.125000px;}
.y13b{bottom:595.725000px;}
.y11d{bottom:598.065000px;}
.y7c{bottom:602.205000px;}
.y17{bottom:604.905000px;}
.y12a{bottom:605.985000px;}
.yf7{bottom:609.225000px;}
.y3d{bottom:612.285000px;}
.y67{bottom:617.865000px;}
.y96{bottom:620.565000px;}
.y13a{bottom:625.965000px;}
.y11c{bottom:626.505000px;}
.y3c{bottom:632.445000px;}
.y16{bottom:635.325000px;}
.yf6{bottom:636.765000px;}
.ya8{bottom:641.985000px;}
.y66{bottom:648.105000px;}
.y95{bottom:650.985000px;}
.y3b{bottom:652.785000px;}
.y139{bottom:656.385000px;}
.y7b{bottom:662.865000px;}
.yf5{bottom:664.305000px;}
.y15{bottom:665.565000px;}
.y11b{bottom:667.005000px;}
.y3a{bottom:672.945000px;}
.y65{bottom:678.525000px;}
.y94{bottom:681.225000px;}
.y138{bottom:686.625000px;}
.yf3{bottom:691.845000px;}
.y39{bottom:693.285000px;}
.y14{bottom:695.985000px;}
.y64{bottom:708.765000px;}
.y93{bottom:711.645000px;}
.y38{bottom:713.445000px;}
.y137{bottom:717.045000px;}
.yf2{bottom:719.565000px;}
.y7a{bottom:723.525000px;}
.y13{bottom:726.225000px;}
.y37{bottom:733.605000px;}
.y63{bottom:739.185000px;}
.y92{bottom:741.885000px;}
.yf1{bottom:747.105000px;}
.y136{bottom:747.285000px;}
.y36{bottom:753.945000px;}
.y12{bottom:756.645000px;}
.y62{bottom:769.605000px;}
.y91{bottom:772.305000px;}
.yd3{bottom:773.385000px;}
.y35{bottom:774.105000px;}
.yef{bottom:775.365000px;}
.y135{bottom:778.785000px;}
.y79{bottom:784.185000px;}
.y11{bottom:786.885000px;}
.y11a{bottom:787.065000px;}
.y34{bottom:794.445000px;}
.y61{bottom:799.845000px;}
.y90{bottom:802.725000px;}
.y134{bottom:810.825000px;}
.y33{bottom:814.605000px;}
.yee{bottom:816.045000px;}
.y10{bottom:817.305000px;}
.y60{bottom:830.265000px;}
.y8f{bottom:832.965000px;}
.y32{bottom:834.765000px;}
.y133{bottom:839.805000px;}
.y78{bottom:845.025000px;}
.yf{bottom:847.725000px;}
.y31{bottom:855.150000px;}
.y5f{bottom:860.550000px;}
.y8e{bottom:863.430000px;}
.y30{bottom:875.310000px;}
.ye{bottom:878.010000px;}
.y5e{bottom:890.970000px;}
.y10c{bottom:892.050000px;}
.y8d{bottom:893.670000px;}
.y2f{bottom:905.730000px;}
.yd{bottom:908.430000px;}
.y5d{bottom:921.390000px;}
.y8c{bottom:924.090000px;}
.y2d{bottom:935.970000px;}
.yc{bottom:938.670000px;}
.y119{bottom:938.850000px;}
.y2e{bottom:940.470000px;}
.y5c{bottom:951.630000px;}
.y8b{bottom:954.330000px;}
.yd0{bottom:957.390000px;}
.y2b{bottom:966.390000px;}
.yb{bottom:969.090000px;}
.y2c{bottom:970.890000px;}
.y5b{bottom:982.050000px;}
.y8a{bottom:984.750000px;}
.ya{bottom:996.090000px;}
.y2a{bottom:996.630000px;}
.y118{bottom:999.510000px;}
.y5a{bottom:1012.290000px;}
.ya7{bottom:1013.550000px;}
.y89{bottom:1015.170000px;}
.y29{bottom:1027.050000px;}
.y117{bottom:1029.750000px;}
.y59{bottom:1042.710000px;}
.y88{bottom:1045.410000px;}
.y28{bottom:1057.470000px;}
.y116{bottom:1060.170000px;}
.y58{bottom:1072.950000px;}
.y87{bottom:1075.830000px;}
.y77{bottom:1087.710000px;}
.y27{bottom:1087.890000px;}
.y115{bottom:1089.150000px;}
.y57{bottom:1104.450000px;}
.y9{bottom:1106.070000px;}
.y24{bottom:1117.590000px;}
.y2{bottom:1125.900000px;}
.y1{bottom:1144.260000px;}
.h1a{height:18.345000px;}
.h21{height:27.525000px;}
.h1e{height:27.540000px;}
.h20{height:27.570000px;}
.h22{height:27.705000px;}
.h1f{height:27.720000px;}
.h23{height:27.741000px;}
.he{height:27.980859px;}
.hd{height:34.235859px;}
.h11{height:36.900000px;}
.h2{height:44.636133px;}
.hb{height:48.774375px;}
.h14{height:48.992695px;}
.h4{height:49.583118px;}
.h3{height:49.965820px;}
.h8{height:54.305156px;}
.h24{height:55.245000px;}
.h12{height:55.295508px;}
.hf{height:59.027344px;}
.h7{height:61.291406px;}
.h10{height:68.084282px;}
.h17{height:73.425000px;}
.h9{height:74.004654px;}
.h6{height:77.946680px;}
.h19{height:91.972500px;}
.ha{height:94.680000px;}
.h5{height:94.860000px;}
.h16{height:110.325000px;}
.h15{height:110.370000px;}
.h1b{height:147.045000px;}
.h18{height:147.261000px;}
.h1c{height:183.975000px;}
.h1d{height:349.410000px;}
.h13{height:533.407500px;}
.hc{height:1262.697990px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w14{width:71.670000px;}
.w11{width:71.805000px;}
.wb{width:73.620000px;}
.w13{width:75.225000px;}
.wc{width:76.536000px;}
.w5{width:83.340000px;}
.wd{width:85.125000px;}
.w2{width:87.300000px;}
.w3{width:89.820000px;}
.we{width:95.601000px;}
.w12{width:108.921000px;}
.wf{width:127.650000px;}
.w4{width:145.290000px;}
.wa{width:167.599500px;}
.w8{width:191.370000px;}
.w7{width:191.539500px;}
.w9{width:246.840000px;}
.w10{width:297.424500px;}
.w1{width:892.500000px;}
.w6{width:892.798125px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x25{left:8.089500px;}
.x3d{left:9.165000px;}
.x40{left:14.565000px;}
.x42{left:18.000000px;}
.x29{left:22.140000px;}
.x2c{left:25.725000px;}
.x1d{left:30.960000px;}
.x1c{left:33.300000px;}
.x22{left:35.280000px;}
.x10{left:36.720000px;}
.x7{left:39.060000px;}
.x1f{left:41.743500px;}
.x2f{left:43.545000px;}
.x41{left:52.005000px;}
.x20{left:53.623500px;}
.x30{left:55.440000px;}
.x31{left:59.580000px;}
.xe{left:72.750000px;}
.x43{left:81.030000px;}
.x24{left:86.610000px;}
.x39{left:117.036000px;}
.x1{left:127.656000px;}
.x11{left:132.336000px;}
.x27{left:133.426500px;}
.x36{left:143.136000px;}
.xa{left:145.116000px;}
.x47{left:148.536000px;}
.x45{left:152.850000px;}
.x1b{left:154.650000px;}
.x33{left:158.430000px;}
.x35{left:170.130000px;}
.x26{left:177.510000px;}
.x1a{left:180.750000px;}
.x38{left:197.310000px;}
.x3a{left:221.250000px;}
.xb{left:246.270000px;}
.x28{left:301.035000px;}
.x21{left:323.175000px;}
.x1e{left:338.655000px;}
.x19{left:343.695000px;}
.x12{left:359.353125px;}
.x13{left:365.115000px;}
.x2a{left:374.655000px;}
.x34{left:376.455000px;}
.x16{left:403.455000px;}
.x3b{left:431.400000px;}
.x9{left:446.505000px;}
.x2b{left:451.200000px;}
.x4{left:457.485000px;}
.x3{left:458.925000px;}
.x5{left:474.945000px;}
.x17{left:483.943125px;}
.x18{left:489.705000px;}
.x3c{left:503.220000px;}
.x23{left:514.560000px;}
.x2d{left:536.340000px;}
.x14{left:573.763125px;}
.x15{left:579.525000px;}
.x3e{left:612.150000px;}
.x44{left:616.830000px;}
.x2e{left:631.950000px;}
.x46{left:653.190000px;}
.x37{left:665.970000px;}
.x3f{left:687.390000px;}
.x32{left:694.050000px;}
.xd{left:728.790000px;}
.x2{left:765.720000px;}
.xc{left:784.260000px;}
.x8{left:790.380000px;}
.x6{left:805.500000px;}
.xf{left:809.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls18{letter-spacing:-1.333333pt;}
.ls7{letter-spacing:-0.949333pt;}
.ls26{letter-spacing:-0.805333pt;}
.ls28{letter-spacing:-0.634667pt;}
.ls2d{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.581333pt;}
.ls11{letter-spacing:-0.357867pt;}
.ls5{letter-spacing:-0.350933pt;}
.ls6{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.307200pt;}
.ls21{letter-spacing:-0.306667pt;}
.ls32{letter-spacing:-0.199467pt;}
.ls25{letter-spacing:-0.189333pt;}
.ls30{letter-spacing:-0.166400pt;}
.ls27{letter-spacing:-0.163200pt;}
.ls2f{letter-spacing:-0.122667pt;}
.ls10{letter-spacing:-0.075733pt;}
.lse{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.005760pt;}
.ls20{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.044800pt;}
.ls33{letter-spacing:0.071680pt;}
.ls1b{letter-spacing:0.105067pt;}
.ls1d{letter-spacing:0.116267pt;}
.ls1f{letter-spacing:0.118187pt;}
.lsa{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.163733pt;}
.ls14{letter-spacing:0.197333pt;}
.ls15{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.239360pt;}
.ls29{letter-spacing:0.252267pt;}
.ls4{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.291840pt;}
.ls31{letter-spacing:0.330133pt;}
.ls1e{letter-spacing:0.440533pt;}
.ls2b{letter-spacing:0.660480pt;}
.ls2c{letter-spacing:0.773333pt;}
.lsc{letter-spacing:2.159360pt;}
.ls1{letter-spacing:4.719360pt;}
.ls2e{letter-spacing:8.010240pt;}
.ls17{letter-spacing:8.650240pt;}
.ls2a{letter-spacing:13.770240pt;}
.ls1c{letter-spacing:14.410240pt;}
.ls34{letter-spacing:15.690240pt;}
.ls1a{letter-spacing:18.073600pt;}
.ls23{letter-spacing:21.273600pt;}
.ls9{letter-spacing:24.473600pt;}
.ls16{letter-spacing:56.591360pt;}
.ls22{letter-spacing:59.770027pt;}
.wse{word-spacing:-20.858027pt;}
.ws16{word-spacing:-17.083093pt;}
.ws8{word-spacing:-16.486400pt;}
.ws7{word-spacing:-16.473493pt;}
.ws6{word-spacing:-16.435200pt;}
.ws4{word-spacing:-16.330240pt;}
.ws2{word-spacing:-16.309760pt;}
.wsd{word-spacing:-16.296960pt;}
.ws18{word-spacing:-16.187093pt;}
.ws9{word-spacing:-16.179200pt;}
.ws19{word-spacing:-16.143360pt;}
.ws12{word-spacing:-16.120427pt;}
.ws1a{word-spacing:-15.999893pt;}
.ws3{word-spacing:-15.958827pt;}
.ws17{word-spacing:-15.691093pt;}
.wsc{word-spacing:-14.976427pt;}
.ws15{word-spacing:-14.966507pt;}
.wsf{word-spacing:-14.873600pt;}
.ws13{word-spacing:-14.725760pt;}
.ws10{word-spacing:-14.714240pt;}
.ws14{word-spacing:-14.551040pt;}
.ws11{word-spacing:-14.407573pt;}
.ws0{word-spacing:-13.584000pt;}
.ws1{word-spacing:-13.296000pt;}
.wsa{word-spacing:-11.877760pt;}
.wsb{word-spacing:-11.802027pt;}
.ws5{word-spacing:0.000000pt;}
._3f{margin-left:-1.943040pt;}
._0{margin-left:-0.986240pt;}
._1{width:1.034240pt;}
._8{width:2.266453pt;}
._e{width:3.709440pt;}
._2{width:5.240320pt;}
._3{width:6.938667pt;}
._c{width:8.487893pt;}
._11{width:10.083200pt;}
._9{width:11.128320pt;}
._15{width:12.364800pt;}
._1c{width:13.424640pt;}
._10{width:14.484480pt;}
._16{width:15.411840pt;}
._27{width:17.237120pt;}
._19{width:18.179200pt;}
._18{width:19.842560pt;}
._f{width:20.810880pt;}
._1b{width:21.937067pt;}
._d{width:23.375360pt;}
._17{width:24.936747pt;}
._1a{width:26.507307pt;}
._24{width:27.473280pt;}
._a{width:28.439040pt;}
._b{width:29.601920pt;}
._42{width:30.506240pt;}
._1f{width:31.460053pt;}
._1d{width:32.619520pt;}
._1e{width:33.782400pt;}
._26{width:34.783360pt;}
._5{width:35.710720pt;}
._4{width:36.667520pt;}
._20{width:37.800960pt;}
._21{width:38.856960pt;}
._41{width:40.008960pt;}
._25{width:40.980480pt;}
._22{width:42.732160pt;}
._23{width:43.630080pt;}
._2d{width:45.320960pt;}
._2e{width:46.332800pt;}
._3e{width:47.345280pt;}
._45{width:49.680000pt;}
._7{width:52.005760pt;}
._6{width:53.036160pt;}
._3d{width:53.975680pt;}
._31{width:56.427520pt;}
._14{width:57.992960pt;}
._12{width:58.997760pt;}
._13{width:60.373547pt;}
._44{width:64.779520pt;}
._35{width:65.790720pt;}
._29{width:71.154347pt;}
._34{width:73.571200pt;}
._33{width:75.830400pt;}
._2f{width:77.729920pt;}
._30{width:94.766080pt;}
._2a{width:97.581440pt;}
._40{width:105.124480pt;}
._28{width:106.640000pt;}
._37{width:120.609920pt;}
._3a{width:125.097600pt;}
._48{width:132.795520pt;}
._2c{width:152.609920pt;}
._3c{width:154.529920pt;}
._39{width:156.312960pt;}
._32{width:161.406720pt;}
._38{width:169.665280pt;}
._43{width:172.468907pt;}
._2b{width:232.640640pt;}
._47{width:235.418880pt;}
._3b{width:295.878400pt;}
._36{width:345.386240pt;}
._46{width:650.168747pt;}
.fs8{font-size:2.560000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:2.706667pt;}
.ycf{bottom:2.713333pt;}
.yb9{bottom:2.720000pt;}
.yaa{bottom:2.880000pt;}
.y106{bottom:10.866667pt;}
.yf0{bottom:10.880000pt;}
.y11f{bottom:10.906667pt;}
.y104{bottom:11.026667pt;}
.yf4{bottom:11.040000pt;}
.yc1{bottom:19.040000pt;}
.yc9{bottom:19.186667pt;}
.yce{bottom:19.193333pt;}
.ya9{bottom:19.200000pt;}
.yc0{bottom:35.360000pt;}
.yc8{bottom:35.506667pt;}
.ycd{bottom:35.513333pt;}
.yb8{bottom:35.520000pt;}
.y26{bottom:49.760000pt;}
.y8{bottom:49.920000pt;}
.ybf{bottom:51.680000pt;}
.yc7{bottom:51.826667pt;}
.ycc{bottom:51.828000pt;}
.ybd{bottom:51.840000pt;}
.yb7{bottom:51.866667pt;}
.yc6{bottom:68.146667pt;}
.ycb{bottom:68.148000pt;}
.ybc{bottom:68.160000pt;}
.yb6{bottom:68.186667pt;}
.y6{bottom:77.792000pt;}
.yc5{bottom:84.466667pt;}
.ybb{bottom:84.480000pt;}
.yb5{bottom:84.506667pt;}
.yd8{bottom:84.520000pt;}
.y5{bottom:91.232000pt;}
.yab{bottom:95.878667pt;}
.y157{bottom:98.752000pt;}
.y10b{bottom:99.232000pt;}
.yd2{bottom:100.800000pt;}
.yc4{bottom:100.826667pt;}
.yd7{bottom:100.840000pt;}
.y86{bottom:103.552000pt;}
.y4{bottom:105.952000pt;}
.yd1{bottom:117.120000pt;}
.yd6{bottom:117.160000pt;}
.yc3{bottom:117.306667pt;}
.y3{bottom:120.672000pt;}
.y156{bottom:125.632000pt;}
.y10a{bottom:126.112000pt;}
.y85{bottom:130.592000pt;}
.ye4{bottom:133.440000pt;}
.yd5{bottom:133.640000pt;}
.y114{bottom:138.426667pt;}
.y76{bottom:144.506667pt;}
.yed{bottom:144.826667pt;}
.ya6{bottom:146.906667pt;}
.y113{bottom:147.706667pt;}
.y129{bottom:148.026667pt;}
.ye3{bottom:149.786667pt;}
.yd4{bottom:149.960000pt;}
.y149{bottom:151.706667pt;}
.y155{bottom:152.666667pt;}
.y109{bottom:153.146667pt;}
.y84{bottom:157.626667pt;}
.y128{bottom:165.786667pt;}
.ye2{bottom:166.266667pt;}
.y56{bottom:167.066667pt;}
.y75{bottom:171.546667pt;}
.yec{bottom:171.706667pt;}
.ya5{bottom:173.946667pt;}
.y112{bottom:174.746667pt;}
.yc2{bottom:177.640000pt;}
.y148{bottom:178.746667pt;}
.y154{bottom:179.706667pt;}
.y108{bottom:180.026667pt;}
.y55{bottom:180.186667pt;}
.y127{bottom:182.106667pt;}
.ye1{bottom:182.586667pt;}
.y54{bottom:182.906667pt;}
.y83{bottom:184.506667pt;}
.y53{bottom:193.146667pt;}
.y52{bottom:195.866667pt;}
.y74{bottom:198.426667pt;}
.yeb{bottom:198.746667pt;}
.ye0{bottom:198.906667pt;}
.ya4{bottom:200.826667pt;}
.y111{bottom:201.626667pt;}
.y126{bottom:204.666667pt;}
.y147{bottom:205.786667pt;}
.y51{bottom:206.266667pt;}
.y153{bottom:206.586667pt;}
.y107{bottom:207.066667pt;}
.y50{bottom:208.986667pt;}
.y82{bottom:211.546667pt;}
.ydf{bottom:215.226667pt;}
.y110{bottom:219.226667pt;}
.y4f{bottom:220.666667pt;}
.y105{bottom:222.600000pt;}
.y73{bottom:225.466667pt;}
.yea{bottom:225.786667pt;}
.ya3{bottom:227.866667pt;}
.yde{bottom:231.546667pt;}
.y146{bottom:232.666667pt;}
.y152{bottom:233.626667pt;}
.y10f{bottom:235.706667pt;}
.y4e{bottom:238.426667pt;}
.y103{bottom:247.080000pt;}
.ydd{bottom:247.866667pt;}
.y10e{bottom:252.026667pt;}
.y72{bottom:252.346667pt;}
.ye9{bottom:252.666667pt;}
.ya2{bottom:254.906667pt;}
.y4d{bottom:256.506667pt;}
.y145{bottom:259.706667pt;}
.y151{bottom:260.506667pt;}
.ydc{bottom:264.346667pt;}
.y81{bottom:265.466667pt;}
.y102{bottom:271.746667pt;}
.y4c{bottom:274.466667pt;}
.y10d{bottom:274.786667pt;}
.y71{bottom:279.426667pt;}
.ye8{bottom:279.746667pt;}
.ydb{bottom:280.666667pt;}
.ya1{bottom:281.826667pt;}
.y23{bottom:285.986667pt;}
.y144{bottom:286.626667pt;}
.y150{bottom:288.546667pt;}
.y4b{bottom:292.546667pt;}
.y101{bottom:296.226667pt;}
.yda{bottom:296.986667pt;}
.y132{bottom:301.346667pt;}
.y22{bottom:303.906667pt;}
.y70{bottom:306.306667pt;}
.ye7{bottom:306.626667pt;}
.ybe{bottom:308.546667pt;}
.ya0{bottom:308.866667pt;}
.y4a{bottom:310.466667pt;}
.y143{bottom:313.666667pt;}
.y14f{bottom:317.026667pt;}
.y80{bottom:319.426667pt;}
.y100{bottom:320.706667pt;}
.y21{bottom:321.826667pt;}
.y49{bottom:328.386667pt;}
.y6f{bottom:333.346667pt;}
.ye6{bottom:333.666667pt;}
.y125{bottom:335.426667pt;}
.y9f{bottom:335.746667pt;}
.y20{bottom:339.906667pt;}
.y142{bottom:340.546667pt;}
.y14e{bottom:343.906667pt;}
.yff{bottom:345.186667pt;}
.yb3{bottom:346.108000pt;}
.y48{bottom:346.466667pt;}
.y131{bottom:355.266667pt;}
.y1f{bottom:357.826667pt;}
.y124{bottom:359.906667pt;}
.y6e{bottom:360.386667pt;}
.ye5{bottom:360.546667pt;}
.yb2{bottom:362.428000pt;}
.y9e{bottom:362.786667pt;}
.y47{bottom:364.386667pt;}
.y141{bottom:367.586667pt;}
.yfe{bottom:369.826667pt;}
.y14d{bottom:370.946667pt;}
.y7f{bottom:373.346667pt;}
.yba{bottom:373.826667pt;}
.y1e{bottom:375.746667pt;}
.yd9{bottom:376.226667pt;}
.yb1{bottom:378.748000pt;}
.y130{bottom:382.306667pt;}
.y46{bottom:382.466667pt;}
.y6d{bottom:387.266667pt;}
.y9d{bottom:389.826667pt;}
.yfd{bottom:394.306667pt;}
.y140{bottom:394.626667pt;}
.yb0{bottom:395.228000pt;}
.y14c{bottom:397.986667pt;}
.y45{bottom:400.386667pt;}
.y1d{bottom:402.786667pt;}
.y123{bottom:409.026667pt;}
.y12f{bottom:409.346667pt;}
.yaf{bottom:411.548000pt;}
.y6c{bottom:414.306667pt;}
.y9c{bottom:416.706667pt;}
.y44{bottom:418.306667pt;}
.yfc{bottom:418.786667pt;}
.y13f{bottom:421.506667pt;}
.y14b{bottom:424.866667pt;}
.y7e{bottom:427.266667pt;}
.yae{bottom:427.894667pt;}
.y1c{bottom:429.826667pt;}
.y122{bottom:433.506667pt;}
.y12e{bottom:436.226667pt;}
.y43{bottom:436.386667pt;}
.y6b{bottom:441.186667pt;}
.yfb{bottom:443.266667pt;}
.y9b{bottom:443.746667pt;}
.yad{bottom:444.214667pt;}
.y13e{bottom:448.546667pt;}
.y14a{bottom:452.866667pt;}
.y42{bottom:454.306667pt;}
.y1b{bottom:456.706667pt;}
.y121{bottom:457.986667pt;}
.yac{bottom:460.534667pt;}
.y12d{bottom:463.266667pt;}
.yfa{bottom:467.906667pt;}
.y6a{bottom:468.226667pt;}
.y99{bottom:469.186667pt;}
.y9a{bottom:470.626667pt;}
.yb4{bottom:471.906667pt;}
.y41{bottom:472.226667pt;}
.y1a{bottom:474.786667pt;}
.y13d{bottom:475.426667pt;}
.y7d{bottom:481.346667pt;}
.y120{bottom:482.626667pt;}
.y12c{bottom:490.146667pt;}
.y40{bottom:490.306667pt;}
.yf9{bottom:492.386667pt;}
.y19{bottom:492.706667pt;}
.y69{bottom:495.266667pt;}
.y98{bottom:497.666667pt;}
.y13c{bottom:502.466667pt;}
.y11e{bottom:507.106667pt;}
.y3f{bottom:508.226667pt;}
.y18{bottom:510.626667pt;}
.y12b{bottom:516.093333pt;}
.yf8{bottom:516.893333pt;}
.y7{bottom:518.813333pt;}
.y25{bottom:518.973333pt;}
.y68{bottom:522.173333pt;}
.y97{bottom:524.573333pt;}
.y3e{bottom:526.333333pt;}
.y13b{bottom:529.533333pt;}
.y11d{bottom:531.613333pt;}
.y7c{bottom:535.293333pt;}
.y17{bottom:537.693333pt;}
.y12a{bottom:538.653333pt;}
.yf7{bottom:541.533333pt;}
.y3d{bottom:544.253333pt;}
.y67{bottom:549.213333pt;}
.y96{bottom:551.613333pt;}
.y13a{bottom:556.413333pt;}
.y11c{bottom:556.893333pt;}
.y3c{bottom:562.173333pt;}
.y16{bottom:564.733333pt;}
.yf6{bottom:566.013333pt;}
.ya8{bottom:570.653333pt;}
.y66{bottom:576.093333pt;}
.y95{bottom:578.653333pt;}
.y3b{bottom:580.253333pt;}
.y139{bottom:583.453333pt;}
.y7b{bottom:589.213333pt;}
.yf5{bottom:590.493333pt;}
.y15{bottom:591.613333pt;}
.y11b{bottom:592.893333pt;}
.y3a{bottom:598.173333pt;}
.y65{bottom:603.133333pt;}
.y94{bottom:605.533333pt;}
.y138{bottom:610.333333pt;}
.yf3{bottom:614.973333pt;}
.y39{bottom:616.253333pt;}
.y14{bottom:618.653333pt;}
.y64{bottom:630.013333pt;}
.y93{bottom:632.573333pt;}
.y38{bottom:634.173333pt;}
.y137{bottom:637.373333pt;}
.yf2{bottom:639.613333pt;}
.y7a{bottom:643.133333pt;}
.y13{bottom:645.533333pt;}
.y37{bottom:652.093333pt;}
.y63{bottom:657.053333pt;}
.y92{bottom:659.453333pt;}
.yf1{bottom:664.093333pt;}
.y136{bottom:664.253333pt;}
.y36{bottom:670.173333pt;}
.y12{bottom:672.573333pt;}
.y62{bottom:684.093333pt;}
.y91{bottom:686.493333pt;}
.yd3{bottom:687.453333pt;}
.y35{bottom:688.093333pt;}
.yef{bottom:689.213333pt;}
.y135{bottom:692.253333pt;}
.y79{bottom:697.053333pt;}
.y11{bottom:699.453333pt;}
.y11a{bottom:699.613333pt;}
.y34{bottom:706.173333pt;}
.y61{bottom:710.973333pt;}
.y90{bottom:713.533333pt;}
.y134{bottom:720.733333pt;}
.y33{bottom:724.093333pt;}
.yee{bottom:725.373333pt;}
.y10{bottom:726.493333pt;}
.y60{bottom:738.013333pt;}
.y8f{bottom:740.413333pt;}
.y32{bottom:742.013333pt;}
.y133{bottom:746.493333pt;}
.y78{bottom:751.133333pt;}
.yf{bottom:753.533333pt;}
.y31{bottom:760.133333pt;}
.y5f{bottom:764.933333pt;}
.y8e{bottom:767.493333pt;}
.y30{bottom:778.053333pt;}
.ye{bottom:780.453333pt;}
.y5e{bottom:791.973333pt;}
.y10c{bottom:792.933333pt;}
.y8d{bottom:794.373333pt;}
.y2f{bottom:805.093333pt;}
.yd{bottom:807.493333pt;}
.y5d{bottom:819.013333pt;}
.y8c{bottom:821.413333pt;}
.y2d{bottom:831.973333pt;}
.yc{bottom:834.373333pt;}
.y119{bottom:834.533333pt;}
.y2e{bottom:835.973333pt;}
.y5c{bottom:845.893333pt;}
.y8b{bottom:848.293333pt;}
.yd0{bottom:851.013333pt;}
.y2b{bottom:859.013333pt;}
.yb{bottom:861.413333pt;}
.y2c{bottom:863.013333pt;}
.y5b{bottom:872.933333pt;}
.y8a{bottom:875.333333pt;}
.ya{bottom:885.413333pt;}
.y2a{bottom:885.893333pt;}
.y118{bottom:888.453333pt;}
.y5a{bottom:899.813333pt;}
.ya7{bottom:900.933333pt;}
.y89{bottom:902.373333pt;}
.y29{bottom:912.933333pt;}
.y117{bottom:915.333333pt;}
.y59{bottom:926.853333pt;}
.y88{bottom:929.253333pt;}
.y28{bottom:939.973333pt;}
.y116{bottom:942.373333pt;}
.y58{bottom:953.733333pt;}
.y87{bottom:956.293333pt;}
.y77{bottom:966.853333pt;}
.y27{bottom:967.013333pt;}
.y115{bottom:968.133333pt;}
.y57{bottom:981.733333pt;}
.y9{bottom:983.173333pt;}
.y24{bottom:993.413333pt;}
.y2{bottom:1000.800000pt;}
.y1{bottom:1017.120000pt;}
.h1a{height:16.306667pt;}
.h21{height:24.466667pt;}
.h1e{height:24.480000pt;}
.h20{height:24.506667pt;}
.h22{height:24.626667pt;}
.h1f{height:24.640000pt;}
.h23{height:24.658667pt;}
.he{height:24.871875pt;}
.hd{height:30.431875pt;}
.h11{height:32.800000pt;}
.h2{height:39.676562pt;}
.hb{height:43.355000pt;}
.h14{height:43.549062pt;}
.h4{height:44.073883pt;}
.h3{height:44.414062pt;}
.h8{height:48.271250pt;}
.h24{height:49.106667pt;}
.h12{height:49.151563pt;}
.hf{height:52.468750pt;}
.h7{height:54.481250pt;}
.h10{height:60.519362pt;}
.h17{height:65.266667pt;}
.h9{height:65.781915pt;}
.h6{height:69.285937pt;}
.h19{height:81.753333pt;}
.ha{height:84.160000pt;}
.h5{height:84.320000pt;}
.h16{height:98.066667pt;}
.h15{height:98.106667pt;}
.h1b{height:130.706667pt;}
.h18{height:130.898667pt;}
.h1c{height:163.533333pt;}
.h1d{height:310.586667pt;}
.h13{height:474.140000pt;}
.hc{height:1122.398213pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w14{width:63.706667pt;}
.w11{width:63.826667pt;}
.wb{width:65.440000pt;}
.w13{width:66.866667pt;}
.wc{width:68.032000pt;}
.w5{width:74.080000pt;}
.wd{width:75.666667pt;}
.w2{width:77.600000pt;}
.w3{width:79.840000pt;}
.we{width:84.978667pt;}
.w12{width:96.818667pt;}
.wf{width:113.466667pt;}
.w4{width:129.146667pt;}
.wa{width:148.977333pt;}
.w8{width:170.106667pt;}
.w7{width:170.257333pt;}
.w9{width:219.413333pt;}
.w10{width:264.377333pt;}
.w1{width:793.333333pt;}
.w6{width:793.598333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x25{left:7.190667pt;}
.x3d{left:8.146667pt;}
.x40{left:12.946667pt;}
.x42{left:16.000000pt;}
.x29{left:19.680000pt;}
.x2c{left:22.866667pt;}
.x1d{left:27.520000pt;}
.x1c{left:29.600000pt;}
.x22{left:31.360000pt;}
.x10{left:32.640000pt;}
.x7{left:34.720000pt;}
.x1f{left:37.105333pt;}
.x2f{left:38.706667pt;}
.x41{left:46.226667pt;}
.x20{left:47.665333pt;}
.x30{left:49.280000pt;}
.x31{left:52.960000pt;}
.xe{left:64.666667pt;}
.x43{left:72.026667pt;}
.x24{left:76.986667pt;}
.x39{left:104.032000pt;}
.x1{left:113.472000pt;}
.x11{left:117.632000pt;}
.x27{left:118.601333pt;}
.x36{left:127.232000pt;}
.xa{left:128.992000pt;}
.x47{left:132.032000pt;}
.x45{left:135.866667pt;}
.x1b{left:137.466667pt;}
.x33{left:140.826667pt;}
.x35{left:151.226667pt;}
.x26{left:157.786667pt;}
.x1a{left:160.666667pt;}
.x38{left:175.386667pt;}
.x3a{left:196.666667pt;}
.xb{left:218.906667pt;}
.x28{left:267.586667pt;}
.x21{left:287.266667pt;}
.x1e{left:301.026667pt;}
.x19{left:305.506667pt;}
.x12{left:319.425000pt;}
.x13{left:324.546667pt;}
.x2a{left:333.026667pt;}
.x34{left:334.626667pt;}
.x16{left:358.626667pt;}
.x3b{left:383.466667pt;}
.x9{left:396.893333pt;}
.x2b{left:401.066667pt;}
.x4{left:406.653333pt;}
.x3{left:407.933333pt;}
.x5{left:422.173333pt;}
.x17{left:430.171667pt;}
.x18{left:435.293333pt;}
.x3c{left:447.306667pt;}
.x23{left:457.386667pt;}
.x2d{left:476.746667pt;}
.x14{left:510.011667pt;}
.x15{left:515.133333pt;}
.x3e{left:544.133333pt;}
.x44{left:548.293333pt;}
.x2e{left:561.733333pt;}
.x46{left:580.613333pt;}
.x37{left:591.973333pt;}
.x3f{left:611.013333pt;}
.x32{left:616.933333pt;}
.xd{left:647.813333pt;}
.x2{left:680.640000pt;}
.xc{left:697.120000pt;}
.x8{left:702.560000pt;}
.x6{left:716.000000pt;}
.xf{left:719.520000pt;}
}




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