
    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_7d3a15280cff7fcecff68a4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_49a314b9dce0799987373f1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.856445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d31e686edb031d3bf1da92a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_a8f5764e578245177acc580f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_90c0b37d1d49704abc44d71f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1aa570fe90e00f48a397220e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d753ccdf5eefe3944937d8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-42.480009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.480009px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.155768px;}
.ls2{letter-spacing:0.436500px;}
.ls3{letter-spacing:0.517212px;}
.ls8{letter-spacing:0.536112px;}
.ls7{letter-spacing:0.568332px;}
.ls1{letter-spacing:0.875651px;}
.lsa{letter-spacing:0.904829px;}
.lsf{letter-spacing:2.463075px;}
.ls9{letter-spacing:3.189122px;}
.lsd{letter-spacing:15.185141px;}
.lse{letter-spacing:20.469109px;}
.lsc{letter-spacing:35.662923px;}
.lsb{letter-spacing:40.385101px;}
.ls5{letter-spacing:48.248116px;}
.ls6{letter-spacing:48.968134px;}
.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;}
}
.ws5{word-spacing:-72.955800px;}
.ws6{word-spacing:-59.445450px;}
.ws1{word-spacing:-28.202851px;}
.ws2{word-spacing:-22.460963px;}
.ws0{word-spacing:-21.785514px;}
.wsa{word-spacing:-19.758936px;}
.wsb{word-spacing:-19.757361px;}
.ws8{word-spacing:-16.887938px;}
.ws3{word-spacing:-15.536925px;}
.ws4{word-spacing:-14.861363px;}
.ws9{word-spacing:-14.017050px;}
.wsc{word-spacing:-14.015925px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-2.232014px;}
._1{margin-left:-1.121364px;}
._0{width:1.345637px;}
._8{width:2.373262px;}
._7{width:3.420160px;}
._6{width:5.177986px;}
._3{width:6.269345px;}
._2{width:8.251881px;}
._a{width:9.689250px;}
._d{width:11.000143px;}
._9{width:12.708208px;}
._b{width:14.141064px;}
._5{width:16.035505px;}
._12{width:17.875843px;}
._4{width:19.278043px;}
._11{width:23.181092px;}
._10{width:24.299830px;}
._14{width:26.982541px;}
._13{width:28.331618px;}
._e{width:29.883576px;}
._f{width:30.887407px;}
._17{width:34.580572px;}
._16{width:35.826786px;}
._15{width:47.317763px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:53.361900px;}
.fsa{font-size:56.063700px;}
.fs0{font-size:56.068200px;}
.fs7{font-size:59.445450px;}
.fsb{font-size:62.142750px;}
.fs5{font-size:62.147700px;}
.fs4{font-size:67.551750px;}
.fs6{font-size:70.254000px;}
.fs8{font-size:72.955800px;}
.fsc{font-size:79.029445px;}
.fs9{font-size:79.035746px;}
.fs2{font-size:87.142055px;}
.fs3{font-size:89.843850px;}
.fs1{font-size:112.811405px;}
.y0{bottom:0.000000px;}
.y33{bottom:64.980011px;}
.y6a{bottom:66.059967px;}
.y32{bottom:82.799973px;}
.y16a{bottom:83.700027px;}
.y69{bottom:83.879998px;}
.y2{bottom:108.179970px;}
.y168{bottom:110.159981px;}
.yd2{bottom:110.519989px;}
.y106{bottom:113.220017px;}
.y13d{bottom:120.419975px;}
.ya1{bottom:128.340019px;}
.y105{bottom:129.059967px;}
.y31{bottom:130.139992px;}
.y167{bottom:133.919975px;}
.y13c{bottom:136.620002px;}
.ya0{bottom:144.539977px;}
.yd1{bottom:146.159981px;}
.y104{bottom:147.960022px;}
.y30{bottom:148.860008px;}
.y13b{bottom:152.820030px;}
.y67{bottom:157.500000px;}
.y166{bottom:160.379998px;}
.y9f{bottom:162.539977px;}
.yd0{bottom:163.980011px;}
.y103{bottom:166.679970px;}
.y2f{bottom:167.759994px;}
.y13a{bottom:169.019989px;}
.y66{bottom:175.500000px;}
.y9e{bottom:180.179970px;}
.y102{bottom:185.399986px;}
.y2e{bottom:186.659981px;}
.y139{bottom:186.840019px;}
.y165{bottom:187.200027px;}
.y65{bottom:193.320030px;}
.y9d{bottom:198.000000px;}
.y101{bottom:202.139992px;}
.y138{bottom:203.039977px;}
.y2d{bottom:203.220017px;}
.y64{bottom:211.139992px;}
.y164{bottom:213.659981px;}
.ycf{bottom:214.200027px;}
.y9c{bottom:214.379998px;}
.y2c{bottom:217.799973px;}
.y100{bottom:218.159981px;}
.y137{bottom:221.039977px;}
.y63{bottom:228.960022px;}
.yce{bottom:232.200027px;}
.y9b{bottom:233.639992px;}
.y2b{bottom:235.799973px;}
.yff{bottom:237.419975px;}
.y136{bottom:238.860008px;}
.y163{bottom:240.480011px;}
.y62{bottom:246.779983px;}
.y9a{bottom:250.019989px;}
.y2a{bottom:253.440033px;}
.y135{bottom:255.059967px;}
.yfe{bottom:256.860008px;}
.y61{bottom:263.159981px;}
.ycd{bottom:266.220017px;}
.y162{bottom:267.120002px;}
.y99{bottom:267.840019px;}
.y29{bottom:271.980011px;}
.yfd{bottom:272.700027px;}
.y134{bottom:272.879998px;}
.y60{bottom:282.419975px;}
.yfc{bottom:283.320030px;}
.ycc{bottom:284.039977px;}
.y98{bottom:285.659981px;}
.y133{bottom:289.080025px;}
.y28{bottom:291.419975px;}
.y161{bottom:293.759994px;}
.y5f{bottom:298.620002px;}
.yfb{bottom:301.679970px;}
.ycb{bottom:301.860008px;}
.y97{bottom:303.480011px;}
.y132{bottom:306.899986px;}
.y27{bottom:314.100013px;}
.y5e{bottom:316.440033px;}
.yfa{bottom:317.700027px;}
.y160{bottom:319.500000px;}
.y96{bottom:319.679970px;}
.y131{bottom:324.720017px;}
.y26{bottom:332.820030px;}
.y5d{bottom:334.259994px;}
.yca{bottom:335.879998px;}
.yf9{bottom:336.059967px;}
.y95{bottom:337.679970px;}
.y15f{bottom:337.860008px;}
.y130{bottom:342.539977px;}
.y5c{bottom:350.639992px;}
.y25{bottom:350.820030px;}
.yc9{bottom:353.700027px;}
.yf8{bottom:354.600013px;}
.y94{bottom:355.320030px;}
.y15e{bottom:356.580025px;}
.y12f{bottom:358.740006px;}
.y5b{bottom:368.460022px;}
.y24{bottom:368.639992px;}
.yc8{bottom:371.519989px;}
.yf7{bottom:372.960022px;}
.y93{bottom:373.139992px;}
.y15d{bottom:374.940033px;}
.y12e{bottom:376.740006px;}
.y5a{bottom:386.279983px;}
.y23{bottom:386.460022px;}
.yc7{bottom:387.899986px;}
.y92{bottom:389.340019px;}
.yf6{bottom:391.320030px;}
.y15c{bottom:393.480011px;}
.y12d{bottom:394.379998px;}
.y59{bottom:403.919975px;}
.y22{bottom:404.279983px;}
.yc6{bottom:405.539977px;}
.y91{bottom:407.340019px;}
.y15b{bottom:408.419975px;}
.yf5{bottom:409.860008px;}
.y12c{bottom:412.379998px;}
.y15a{bottom:416.700027px;}
.y58{bottom:420.299973px;}
.y21{bottom:422.279983px;}
.yc5{bottom:423.360008px;}
.y90{bottom:425.159981px;}
.yf4{bottom:426.240006px;}
.y12b{bottom:430.019989px;}
.y57{bottom:438.120002px;}
.yc4{bottom:439.740006px;}
.y20{bottom:439.919975px;}
.y159{bottom:440.460022px;}
.yf3{bottom:442.259994px;}
.y8f{bottom:442.799973px;}
.y12a{bottom:446.399986px;}
.y56{bottom:456.120002px;}
.y1f{bottom:458.460022px;}
.yc3{bottom:459.000000px;}
.y8e{bottom:460.799973px;}
.yf2{bottom:461.700027px;}
.y129{bottom:464.220017px;}
.y158{bottom:467.460022px;}
.y55{bottom:473.580025px;}
.yc2{bottom:475.379998px;}
.y1e{bottom:477.899986px;}
.y8d{bottom:478.620002px;}
.yf1{bottom:480.960022px;}
.y128{bottom:482.039977px;}
.y157{bottom:487.080025px;}
.y54{bottom:489.960022px;}
.yc1{bottom:493.200027px;}
.y8c{bottom:496.259994px;}
.yf0{bottom:497.700027px;}
.y127{bottom:499.500000px;}
.y1d{bottom:500.580025px;}
.y156{bottom:506.340019px;}
.y53{bottom:507.779983px;}
.yc0{bottom:511.019989px;}
.y8b{bottom:512.639992px;}
.yef{bottom:513.539977px;}
.y126{bottom:517.679970px;}
.y1c{bottom:519.299973px;}
.y155{bottom:522.179970px;}
.y52{bottom:525.779983px;}
.ybf{bottom:528.840019px;}
.y8a{bottom:532.080025px;}
.yee{bottom:532.799973px;}
.y154{bottom:533.700027px;}
.y125{bottom:533.879998px;}
.y1b{bottom:536.220017px;}
.y51{bottom:543.419975px;}
.ybe{bottom:546.480011px;}
.y89{bottom:548.279983px;}
.y124{bottom:551.879998px;}
.yed{bottom:552.059967px;}
.y153{bottom:554.940033px;}
.y1a{bottom:555.120002px;}
.y50{bottom:559.799973px;}
.ybd{bottom:563.039977px;}
.y88{bottom:566.100013px;}
.yec{bottom:568.080025px;}
.y123{bottom:569.519989px;}
.y152{bottom:571.679970px;}
.y19{bottom:576.720017px;}
.yeb{bottom:578.700027px;}
.y4f{bottom:579.059967px;}
.ybc{bottom:582.299973px;}
.y87{bottom:583.919975px;}
.y122{bottom:587.340019px;}
.y151{bottom:591.120002px;}
.y18{bottom:595.440033px;}
.yea{bottom:597.059967px;}
.ybb{bottom:598.500000px;}
.y86{bottom:601.740006px;}
.y121{bottom:605.340019px;}
.y150{bottom:610.379998px;}
.y17{bottom:611.639992px;}
.ye9{bottom:612.899986px;}
.y4e{bottom:613.259994px;}
.yba{bottom:616.500000px;}
.y85{bottom:617.939999px;}
.y120{bottom:622.620002px;}
.y14f{bottom:627.120002px;}
.y16{bottom:628.019989px;}
.y4d{bottom:630.899986px;}
.ye8{bottom:632.160015px;}
.yb9{bottom:634.139992px;}
.y84{bottom:635.939999px;}
.y11f{bottom:640.800007px;}
.y14e{bottom:642.959988px;}
.y15{bottom:644.220017px;}
.y4c{bottom:647.279983px;}
.ye7{bottom:651.420010px;}
.yb8{bottom:651.959988px;}
.y83{bottom:653.579990px;}
.y11e{bottom:657.180004px;}
.y14{bottom:660.420010px;}
.y14d{bottom:662.399986px;}
.y4b{bottom:665.100013px;}
.ye6{bottom:665.639992px;}
.yb7{bottom:668.339985px;}
.ye5{bottom:669.779983px;}
.y82{bottom:671.399986px;}
.y11d{bottom:675.000000px;}
.y13{bottom:676.439999px;}
.y183{bottom:678.240006px;}
.y14c{bottom:681.839985px;}
.y4a{bottom:682.920010px;}
.ye4{bottom:687.420010px;}
.y81{bottom:687.600013px;}
.y12{bottom:692.819995px;}
.y182{bottom:693.720017px;}
.y14b{bottom:698.579990px;}
.y49{bottom:700.920010px;}
.yb6{bottom:703.980011px;}
.ye3{bottom:705.240006px;}
.y80{bottom:705.600013px;}
.y11{bottom:709.019989px;}
.y181{bottom:709.379998px;}
.y11c{bottom:710.639992px;}
.y14a{bottom:714.420010px;}
.y48{bottom:718.379998px;}
.yb5{bottom:721.800007px;}
.ye2{bottom:723.060001px;}
.y7f{bottom:723.420010px;}
.y180{bottom:724.860008px;}
.y10{bottom:725.939999px;}
.y11b{bottom:728.459988px;}
.y149{bottom:733.319995px;}
.y47{bottom:734.939999px;}
.y17f{bottom:738.540012px;}
.yb4{bottom:739.620002px;}
.ye1{bottom:740.879998px;}
.y7e{bottom:741.240006px;}
.yf{bottom:745.019989px;}
.y11a{bottom:746.459988px;}
.y148{bottom:752.220017px;}
.y46{bottom:752.579990px;}
.yb3{bottom:757.620002px;}
.ye0{bottom:757.800007px;}
.y7d{bottom:759.060001px;}
.y119{bottom:763.740006px;}
.ye{bottom:766.439999px;}
.y17e{bottom:766.980011px;}
.y45{bottom:770.579990px;}
.y147{bottom:771.300007px;}
.ydf{bottom:773.639992px;}
.yb2{bottom:775.259994px;}
.y7c{bottom:776.879998px;}
.y118{bottom:781.920010px;}
.y17d{bottom:783.180004px;}
.yd{bottom:786.060001px;}
.y146{bottom:787.860008px;}
.y44{bottom:788.399986px;}
.yde{bottom:792.000000px;}
.yb1{bottom:793.079990px;}
.y7b{bottom:794.699993px;}
.y117{bottom:798.120002px;}
.y17c{bottom:799.379998px;}
.y145{bottom:803.339985px;}
.y43{bottom:806.040012px;}
.ydd{bottom:810.540012px;}
.yb0{bottom:811.079990px;}
.y7a{bottom:812.519989px;}
.y17b{bottom:815.399986px;}
.y116{bottom:816.120002px;}
.yc{bottom:817.019989px;}
.y144{bottom:822.779983px;}
.y42{bottom:824.040012px;}
.yaf{bottom:828.720017px;}
.ydc{bottom:829.079990px;}
.y79{bottom:830.339985px;}
.y17a{bottom:831.779983px;}
.y115{bottom:833.939999px;}
.y41{bottom:841.860008px;}
.y143{bottom:842.040012px;}
.yb{bottom:842.939999px;}
.yae{bottom:846.360008px;}
.y78{bottom:846.720017px;}
.ydb{bottom:847.620002px;}
.y179{bottom:847.980011px;}
.y114{bottom:851.579990px;}
.y40{bottom:858.240006px;}
.y142{bottom:861.480011px;}
.y178{bottom:864.180004px;}
.yad{bottom:864.360008px;}
.y77{bottom:865.980011px;}
.yda{bottom:866.160015px;}
.ya{bottom:869.040012px;}
.y113{bottom:869.579990px;}
.y3f{bottom:877.319996px;}
.y177{bottom:880.379998px;}
.yac{bottom:880.740006px;}
.y76{bottom:882.180004px;}
.y9{bottom:883.259994px;}
.yd9{bottom:884.160015px;}
.y112{bottom:887.399987px;}
.y3e{bottom:893.699993px;}
.y176{bottom:896.759994px;}
.y141{bottom:898.199993px;}
.yab{bottom:898.560001px;}
.y75{bottom:900.180004px;}
.yd8{bottom:903.240006px;}
.y8{bottom:904.139992px;}
.y111{bottom:905.039995px;}
.y3d{bottom:911.520006px;}
.y175{bottom:912.780001px;}
.yaa{bottom:916.199993px;}
.y140{bottom:916.379998px;}
.y74{bottom:918.000000px;}
.yd7{bottom:919.620002px;}
.y110{bottom:921.060001px;}
.y174{bottom:928.979994px;}
.y3c{bottom:929.340002px;}
.y7{bottom:930.060001px;}
.ya9{bottom:932.759994px;}
.y13f{bottom:934.199993px;}
.y73{bottom:935.639992px;}
.yd6{bottom:937.439999px;}
.y10f{bottom:939.060001px;}
.y173{bottom:945.180004px;}
.y3b{bottom:945.719999px;}
.ya8{bottom:952.020006px;}
.y72{bottom:952.199993px;}
.y6{bottom:952.560001px;}
.yd5{bottom:953.639992px;}
.y10e{bottom:955.439999px;}
.y172{bottom:961.560001px;}
.y3a{bottom:964.979994px;}
.ya7{bottom:968.400003px;}
.y13e{bottom:969.840002px;}
.y71{bottom:971.460004px;}
.y10d{bottom:973.259994px;}
.y171{bottom:977.759994px;}
.y39{bottom:981.180004px;}
.y5{bottom:984.240006px;}
.y70{bottom:987.659998px;}
.y10c{bottom:989.099997px;}
.yd4{bottom:989.280001px;}
.y170{bottom:993.960004px;}
.y38{bottom:999.180004px;}
.ya6{bottom:1003.860008px;}
.y6f{bottom:1005.659998px;}
.yd3{bottom:1007.099997px;}
.y10b{bottom:1007.280001px;}
.y16f{bottom:1009.979994px;}
.y4{bottom:1016.099997px;}
.y37{bottom:1017.000000px;}
.ya5{bottom:1021.680004px;}
.y6e{bottom:1023.300007px;}
.y16e{bottom:1023.659998px;}
.y10a{bottom:1026.360008px;}
.y16d{bottom:1031.219999px;}
.y36{bottom:1034.819996px;}
.ya4{bottom:1039.680004px;}
.y6d{bottom:1041.120002px;}
.y109{bottom:1047.239997px;}
.y3{bottom:1047.780001px;}
.y16c{bottom:1048.319996px;}
.y35{bottom:1052.640000px;}
.ya3{bottom:1057.319996px;}
.y6c{bottom:1059.120002px;}
.y108{bottom:1063.079999px;}
.y34{bottom:1069.920001px;}
.y16b{bottom:1071.000000px;}
.y107{bottom:1073.700002px;}
.ya2{bottom:1075.319996px;}
.y6b{bottom:1076.760003px;}
.y1{bottom:1086.659998px;}
.y169{bottom:1092.780001px;}
.y68{bottom:1092.959997px;}
.h12{height:37.650364px;}
.he{height:39.146041px;}
.h1{height:39.149183px;}
.h11{height:39.556663px;}
.h7{height:40.983445px;}
.h5{height:41.507321px;}
.hf{height:43.390690px;}
.h9{height:43.394146px;}
.hd{height:43.849329px;}
.hb{height:45.245225px;}
.h3{height:47.167482px;}
.hc{height:47.662245px;}
.ha{height:49.179521px;}
.h6{height:54.966211px;}
.h10{height:55.760522px;}
.h8{height:55.764967px;}
.h2{height:76.401083px;}
.h4{height:85.874155px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.939999px;}
.x3{left:172.080008px;}
.xe{left:178.740006px;}
.x4{left:181.259994px;}
.x1{left:183.780001px;}
.xa{left:185.580008px;}
.x5{left:187.020006px;}
.xc{left:189.000000px;}
.xf{left:190.620002px;}
.x8{left:212.580008px;}
.x9{left:257.580008px;}
.x7{left:260.460005px;}
.x6{left:347.579990px;}
.xb{left:738.360008px;}
.xd{left:747.539978px;}
@media print{
.v2{vertical-align:-37.760008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.760008pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.138461pt;}
.ls2{letter-spacing:0.388000pt;}
.ls3{letter-spacing:0.459744pt;}
.ls8{letter-spacing:0.476544pt;}
.ls7{letter-spacing:0.505184pt;}
.ls1{letter-spacing:0.778357pt;}
.lsa{letter-spacing:0.804293pt;}
.lsf{letter-spacing:2.189400pt;}
.ls9{letter-spacing:2.834775pt;}
.lsd{letter-spacing:13.497903pt;}
.lse{letter-spacing:18.194763pt;}
.lsc{letter-spacing:31.700376pt;}
.lsb{letter-spacing:35.897867pt;}
.ls5{letter-spacing:42.887214pt;}
.ls6{letter-spacing:43.527230pt;}
.ws5{word-spacing:-64.849600pt;}
.ws6{word-spacing:-52.840400pt;}
.ws1{word-spacing:-25.069201pt;}
.ws2{word-spacing:-19.965300pt;}
.ws0{word-spacing:-19.364901pt;}
.wsa{word-spacing:-17.563499pt;}
.wsb{word-spacing:-17.562099pt;}
.ws8{word-spacing:-15.011500pt;}
.ws3{word-spacing:-13.810600pt;}
.ws4{word-spacing:-13.210100pt;}
.ws9{word-spacing:-12.459600pt;}
.wsc{word-spacing:-12.458600pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-1.984013pt;}
._1{margin-left:-0.996768pt;}
._0{width:1.196122pt;}
._8{width:2.109566pt;}
._7{width:3.040142pt;}
._6{width:4.602654pt;}
._3{width:5.572751pt;}
._2{width:7.335005pt;}
._a{width:8.612667pt;}
._d{width:9.777905pt;}
._9{width:11.296185pt;}
._b{width:12.569835pt;}
._5{width:14.253782pt;}
._12{width:15.889638pt;}
._4{width:17.136038pt;}
._11{width:20.605415pt;}
._10{width:21.599849pt;}
._14{width:23.984481pt;}
._13{width:25.183660pt;}
._e{width:26.563179pt;}
._f{width:27.455473pt;}
._17{width:30.738286pt;}
._16{width:31.846032pt;}
._15{width:42.060234pt;}
.fsd{font-size:47.432800pt;}
.fsa{font-size:49.834400pt;}
.fs0{font-size:49.838400pt;}
.fs7{font-size:52.840400pt;}
.fsb{font-size:55.238000pt;}
.fs5{font-size:55.242400pt;}
.fs4{font-size:60.046000pt;}
.fs6{font-size:62.448000pt;}
.fs8{font-size:64.849600pt;}
.fsc{font-size:70.248396pt;}
.fs9{font-size:70.253996pt;}
.fs2{font-size:77.459604pt;}
.fs3{font-size:79.861200pt;}
.fs1{font-size:100.276804pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:57.760010pt;}
.y6a{bottom:58.719971pt;}
.y32{bottom:73.599976pt;}
.y16a{bottom:74.400024pt;}
.y69{bottom:74.559998pt;}
.y2{bottom:96.159973pt;}
.y168{bottom:97.919983pt;}
.yd2{bottom:98.239990pt;}
.y106{bottom:100.640015pt;}
.y13d{bottom:107.039978pt;}
.ya1{bottom:114.080017pt;}
.y105{bottom:114.719971pt;}
.y31{bottom:115.679993pt;}
.y167{bottom:119.039978pt;}
.y13c{bottom:121.440002pt;}
.ya0{bottom:128.479980pt;}
.yd1{bottom:129.919983pt;}
.y104{bottom:131.520020pt;}
.y30{bottom:132.320007pt;}
.y13b{bottom:135.840027pt;}
.y67{bottom:140.000000pt;}
.y166{bottom:142.559998pt;}
.y9f{bottom:144.479980pt;}
.yd0{bottom:145.760010pt;}
.y103{bottom:148.159973pt;}
.y2f{bottom:149.119995pt;}
.y13a{bottom:150.239990pt;}
.y66{bottom:156.000000pt;}
.y9e{bottom:160.159973pt;}
.y102{bottom:164.799988pt;}
.y2e{bottom:165.919983pt;}
.y139{bottom:166.080017pt;}
.y165{bottom:166.400024pt;}
.y65{bottom:171.840027pt;}
.y9d{bottom:176.000000pt;}
.y101{bottom:179.679993pt;}
.y138{bottom:180.479980pt;}
.y2d{bottom:180.640015pt;}
.y64{bottom:187.679993pt;}
.y164{bottom:189.919983pt;}
.ycf{bottom:190.400024pt;}
.y9c{bottom:190.559998pt;}
.y2c{bottom:193.599976pt;}
.y100{bottom:193.919983pt;}
.y137{bottom:196.479980pt;}
.y63{bottom:203.520020pt;}
.yce{bottom:206.400024pt;}
.y9b{bottom:207.679993pt;}
.y2b{bottom:209.599976pt;}
.yff{bottom:211.039978pt;}
.y136{bottom:212.320007pt;}
.y163{bottom:213.760010pt;}
.y62{bottom:219.359985pt;}
.y9a{bottom:222.239990pt;}
.y2a{bottom:225.280029pt;}
.y135{bottom:226.719971pt;}
.yfe{bottom:228.320007pt;}
.y61{bottom:233.919983pt;}
.ycd{bottom:236.640015pt;}
.y162{bottom:237.440002pt;}
.y99{bottom:238.080017pt;}
.y29{bottom:241.760010pt;}
.yfd{bottom:242.400024pt;}
.y134{bottom:242.559998pt;}
.y60{bottom:251.039978pt;}
.yfc{bottom:251.840027pt;}
.ycc{bottom:252.479980pt;}
.y98{bottom:253.919983pt;}
.y133{bottom:256.960022pt;}
.y28{bottom:259.039978pt;}
.y161{bottom:261.119995pt;}
.y5f{bottom:265.440002pt;}
.yfb{bottom:268.159973pt;}
.ycb{bottom:268.320007pt;}
.y97{bottom:269.760010pt;}
.y132{bottom:272.799988pt;}
.y27{bottom:279.200012pt;}
.y5e{bottom:281.280029pt;}
.yfa{bottom:282.400024pt;}
.y160{bottom:284.000000pt;}
.y96{bottom:284.159973pt;}
.y131{bottom:288.640015pt;}
.y26{bottom:295.840027pt;}
.y5d{bottom:297.119995pt;}
.yca{bottom:298.559998pt;}
.yf9{bottom:298.719971pt;}
.y95{bottom:300.159973pt;}
.y15f{bottom:300.320007pt;}
.y130{bottom:304.479980pt;}
.y5c{bottom:311.679993pt;}
.y25{bottom:311.840027pt;}
.yc9{bottom:314.400024pt;}
.yf8{bottom:315.200012pt;}
.y94{bottom:315.840027pt;}
.y15e{bottom:316.960022pt;}
.y12f{bottom:318.880005pt;}
.y5b{bottom:327.520020pt;}
.y24{bottom:327.679993pt;}
.yc8{bottom:330.239990pt;}
.yf7{bottom:331.520020pt;}
.y93{bottom:331.679993pt;}
.y15d{bottom:333.280029pt;}
.y12e{bottom:334.880005pt;}
.y5a{bottom:343.359985pt;}
.y23{bottom:343.520020pt;}
.yc7{bottom:344.799988pt;}
.y92{bottom:346.080017pt;}
.yf6{bottom:347.840027pt;}
.y15c{bottom:349.760010pt;}
.y12d{bottom:350.559998pt;}
.y59{bottom:359.039978pt;}
.y22{bottom:359.359985pt;}
.yc6{bottom:360.479980pt;}
.y91{bottom:362.080017pt;}
.y15b{bottom:363.039978pt;}
.yf5{bottom:364.320007pt;}
.y12c{bottom:366.559998pt;}
.y15a{bottom:370.400024pt;}
.y58{bottom:373.599976pt;}
.y21{bottom:375.359985pt;}
.yc5{bottom:376.320007pt;}
.y90{bottom:377.919983pt;}
.yf4{bottom:378.880005pt;}
.y12b{bottom:382.239990pt;}
.y57{bottom:389.440002pt;}
.yc4{bottom:390.880005pt;}
.y20{bottom:391.039978pt;}
.y159{bottom:391.520020pt;}
.yf3{bottom:393.119995pt;}
.y8f{bottom:393.599976pt;}
.y12a{bottom:396.799988pt;}
.y56{bottom:405.440002pt;}
.y1f{bottom:407.520020pt;}
.yc3{bottom:408.000000pt;}
.y8e{bottom:409.599976pt;}
.yf2{bottom:410.400024pt;}
.y129{bottom:412.640015pt;}
.y158{bottom:415.520020pt;}
.y55{bottom:420.960022pt;}
.yc2{bottom:422.559998pt;}
.y1e{bottom:424.799988pt;}
.y8d{bottom:425.440002pt;}
.yf1{bottom:427.520020pt;}
.y128{bottom:428.479980pt;}
.y157{bottom:432.960022pt;}
.y54{bottom:435.520020pt;}
.yc1{bottom:438.400024pt;}
.y8c{bottom:441.119995pt;}
.yf0{bottom:442.400024pt;}
.y127{bottom:444.000000pt;}
.y1d{bottom:444.960022pt;}
.y156{bottom:450.080017pt;}
.y53{bottom:451.359985pt;}
.yc0{bottom:454.239990pt;}
.y8b{bottom:455.679993pt;}
.yef{bottom:456.479980pt;}
.y126{bottom:460.159973pt;}
.y1c{bottom:461.599976pt;}
.y155{bottom:464.159973pt;}
.y52{bottom:467.359985pt;}
.ybf{bottom:470.080017pt;}
.y8a{bottom:472.960022pt;}
.yee{bottom:473.599976pt;}
.y154{bottom:474.400024pt;}
.y125{bottom:474.559998pt;}
.y1b{bottom:476.640015pt;}
.y51{bottom:483.039978pt;}
.ybe{bottom:485.760010pt;}
.y89{bottom:487.359985pt;}
.y124{bottom:490.559998pt;}
.yed{bottom:490.719971pt;}
.y153{bottom:493.280029pt;}
.y1a{bottom:493.440002pt;}
.y50{bottom:497.599976pt;}
.ybd{bottom:500.479980pt;}
.y88{bottom:503.200012pt;}
.yec{bottom:504.960022pt;}
.y123{bottom:506.239990pt;}
.y152{bottom:508.159973pt;}
.y19{bottom:512.640015pt;}
.yeb{bottom:514.400024pt;}
.y4f{bottom:514.719971pt;}
.ybc{bottom:517.599976pt;}
.y87{bottom:519.039978pt;}
.y122{bottom:522.080017pt;}
.y151{bottom:525.440002pt;}
.y18{bottom:529.280029pt;}
.yea{bottom:530.719971pt;}
.ybb{bottom:532.000000pt;}
.y86{bottom:534.880005pt;}
.y121{bottom:538.080017pt;}
.y150{bottom:542.559998pt;}
.y17{bottom:543.679993pt;}
.ye9{bottom:544.799988pt;}
.y4e{bottom:545.119995pt;}
.yba{bottom:548.000000pt;}
.y85{bottom:549.279999pt;}
.y120{bottom:553.440002pt;}
.y14f{bottom:557.440002pt;}
.y16{bottom:558.239990pt;}
.y4d{bottom:560.799988pt;}
.ye8{bottom:561.920013pt;}
.yb9{bottom:563.679993pt;}
.y84{bottom:565.279999pt;}
.y11f{bottom:569.600006pt;}
.y14e{bottom:571.519989pt;}
.y15{bottom:572.640015pt;}
.y4c{bottom:575.359985pt;}
.ye7{bottom:579.040009pt;}
.yb8{bottom:579.519989pt;}
.y83{bottom:580.959991pt;}
.y11e{bottom:584.160004pt;}
.y14{bottom:587.040009pt;}
.y14d{bottom:588.799988pt;}
.y4b{bottom:591.200012pt;}
.ye6{bottom:591.679993pt;}
.yb7{bottom:594.079987pt;}
.ye5{bottom:595.359985pt;}
.y82{bottom:596.799988pt;}
.y11d{bottom:600.000000pt;}
.y13{bottom:601.279999pt;}
.y183{bottom:602.880005pt;}
.y14c{bottom:606.079987pt;}
.y4a{bottom:607.040009pt;}
.ye4{bottom:611.040009pt;}
.y81{bottom:611.200012pt;}
.y12{bottom:615.839996pt;}
.y182{bottom:616.640015pt;}
.y14b{bottom:620.959991pt;}
.y49{bottom:623.040009pt;}
.yb6{bottom:625.760010pt;}
.ye3{bottom:626.880005pt;}
.y80{bottom:627.200012pt;}
.y11{bottom:630.239990pt;}
.y181{bottom:630.559998pt;}
.y11c{bottom:631.679993pt;}
.y14a{bottom:635.040009pt;}
.y48{bottom:638.559998pt;}
.yb5{bottom:641.600006pt;}
.ye2{bottom:642.720001pt;}
.y7f{bottom:643.040009pt;}
.y180{bottom:644.320007pt;}
.y10{bottom:645.279999pt;}
.y11b{bottom:647.519989pt;}
.y149{bottom:651.839996pt;}
.y47{bottom:653.279999pt;}
.y17f{bottom:656.480011pt;}
.yb4{bottom:657.440002pt;}
.ye1{bottom:658.559998pt;}
.y7e{bottom:658.880005pt;}
.yf{bottom:662.239990pt;}
.y11a{bottom:663.519989pt;}
.y148{bottom:668.640015pt;}
.y46{bottom:668.959991pt;}
.yb3{bottom:673.440002pt;}
.ye0{bottom:673.600006pt;}
.y7d{bottom:674.720001pt;}
.y119{bottom:678.880005pt;}
.ye{bottom:681.279999pt;}
.y17e{bottom:681.760010pt;}
.y45{bottom:684.959991pt;}
.y147{bottom:685.600006pt;}
.ydf{bottom:687.679993pt;}
.yb2{bottom:689.119995pt;}
.y7c{bottom:690.559998pt;}
.y118{bottom:695.040009pt;}
.y17d{bottom:696.160004pt;}
.yd{bottom:698.720001pt;}
.y146{bottom:700.320007pt;}
.y44{bottom:700.799988pt;}
.yde{bottom:704.000000pt;}
.yb1{bottom:704.959991pt;}
.y7b{bottom:706.399994pt;}
.y117{bottom:709.440002pt;}
.y17c{bottom:710.559998pt;}
.y145{bottom:714.079987pt;}
.y43{bottom:716.480011pt;}
.ydd{bottom:720.480011pt;}
.yb0{bottom:720.959991pt;}
.y7a{bottom:722.239990pt;}
.y17b{bottom:724.799988pt;}
.y116{bottom:725.440002pt;}
.yc{bottom:726.239990pt;}
.y144{bottom:731.359985pt;}
.y42{bottom:732.480011pt;}
.yaf{bottom:736.640015pt;}
.ydc{bottom:736.959991pt;}
.y79{bottom:738.079987pt;}
.y17a{bottom:739.359985pt;}
.y115{bottom:741.279999pt;}
.y41{bottom:748.320007pt;}
.y143{bottom:748.480011pt;}
.yb{bottom:749.279999pt;}
.yae{bottom:752.320007pt;}
.y78{bottom:752.640015pt;}
.ydb{bottom:753.440002pt;}
.y179{bottom:753.760010pt;}
.y114{bottom:756.959991pt;}
.y40{bottom:762.880005pt;}
.y142{bottom:765.760010pt;}
.y178{bottom:768.160004pt;}
.yad{bottom:768.320007pt;}
.y77{bottom:769.760010pt;}
.yda{bottom:769.920013pt;}
.ya{bottom:772.480011pt;}
.y113{bottom:772.959991pt;}
.y3f{bottom:779.839996pt;}
.y177{bottom:782.559998pt;}
.yac{bottom:782.880005pt;}
.y76{bottom:784.160004pt;}
.y9{bottom:785.119995pt;}
.yd9{bottom:785.920013pt;}
.y112{bottom:788.799988pt;}
.y3e{bottom:794.399994pt;}
.y176{bottom:797.119995pt;}
.y141{bottom:798.399994pt;}
.yab{bottom:798.720001pt;}
.y75{bottom:800.160004pt;}
.yd8{bottom:802.880005pt;}
.y8{bottom:803.679993pt;}
.y111{bottom:804.479996pt;}
.y3d{bottom:810.240005pt;}
.y175{bottom:811.360001pt;}
.yaa{bottom:814.399994pt;}
.y140{bottom:814.559998pt;}
.y74{bottom:816.000000pt;}
.yd7{bottom:817.440002pt;}
.y110{bottom:818.720001pt;}
.y174{bottom:825.759995pt;}
.y3c{bottom:826.080002pt;}
.y7{bottom:826.720001pt;}
.ya9{bottom:829.119995pt;}
.y13f{bottom:830.399994pt;}
.y73{bottom:831.679993pt;}
.yd6{bottom:833.279999pt;}
.y10f{bottom:834.720001pt;}
.y173{bottom:840.160004pt;}
.y3b{bottom:840.639999pt;}
.ya8{bottom:846.240005pt;}
.y72{bottom:846.399994pt;}
.y6{bottom:846.720001pt;}
.yd5{bottom:847.679993pt;}
.y10e{bottom:849.279999pt;}
.y172{bottom:854.720001pt;}
.y3a{bottom:857.759995pt;}
.ya7{bottom:860.800003pt;}
.y13e{bottom:862.080002pt;}
.y71{bottom:863.520004pt;}
.y10d{bottom:865.119995pt;}
.y171{bottom:869.119995pt;}
.y39{bottom:872.160004pt;}
.y5{bottom:874.880005pt;}
.y70{bottom:877.919998pt;}
.y10c{bottom:879.199997pt;}
.yd4{bottom:879.360001pt;}
.y170{bottom:883.520004pt;}
.y38{bottom:888.160004pt;}
.ya6{bottom:892.320007pt;}
.y6f{bottom:893.919998pt;}
.yd3{bottom:895.199997pt;}
.y10b{bottom:895.360001pt;}
.y16f{bottom:897.759995pt;}
.y4{bottom:903.199997pt;}
.y37{bottom:904.000000pt;}
.ya5{bottom:908.160004pt;}
.y6e{bottom:909.600006pt;}
.y16e{bottom:909.919998pt;}
.y10a{bottom:912.320007pt;}
.y16d{bottom:916.639999pt;}
.y36{bottom:919.839996pt;}
.ya4{bottom:924.160004pt;}
.y6d{bottom:925.440002pt;}
.y109{bottom:930.879997pt;}
.y3{bottom:931.360001pt;}
.y16c{bottom:931.839996pt;}
.y35{bottom:935.680000pt;}
.ya3{bottom:939.839996pt;}
.y6c{bottom:941.440002pt;}
.y108{bottom:944.959999pt;}
.y34{bottom:951.040001pt;}
.y16b{bottom:952.000000pt;}
.y107{bottom:954.400002pt;}
.ya2{bottom:955.839996pt;}
.y6b{bottom:957.120003pt;}
.y1{bottom:965.919998pt;}
.y169{bottom:971.360001pt;}
.y68{bottom:971.519997pt;}
.h12{height:33.466990pt;}
.he{height:34.796480pt;}
.h1{height:34.799273pt;}
.h11{height:35.161479pt;}
.h7{height:36.429729pt;}
.h5{height:36.895396pt;}
.hf{height:38.569502pt;}
.h9{height:38.572574pt;}
.hd{height:38.977182pt;}
.hb{height:40.217978pt;}
.h3{height:41.926650pt;}
.hc{height:42.366440pt;}
.ha{height:43.715130pt;}
.h6{height:48.858854pt;}
.h10{height:49.564908pt;}
.h8{height:49.568859pt;}
.h2{height:67.912074pt;}
.h4{height:76.332582pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.279999pt;}
.x3{left:152.960007pt;}
.xe{left:158.880005pt;}
.x4{left:161.119995pt;}
.x1{left:163.360001pt;}
.xa{left:164.960007pt;}
.x5{left:166.240005pt;}
.xc{left:168.000000pt;}
.xf{left:169.440002pt;}
.x8{left:188.960007pt;}
.x9{left:228.960007pt;}
.x7{left:231.520004pt;}
.x6{left:308.959991pt;}
.xb{left:656.320007pt;}
.xd{left:664.479980pt;}
}




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