
    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_f0e9b3c0d54364d56104a522.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_1a1df479b9c42ad4d5a9e4fa.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_03803ab8025bb648c000859e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_0d3a110cd5e52f31688d9203.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_79340102a0037323c2742a76.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_2cec33624a493d93cf511295.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_f8db44a86a80529f1bb54d6c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_db8e6afdcff972b4363f07d2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_7f4a0a304bd82fd2a604a66d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_2cb6c2f7b199ca4c23e50341.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_72b54a1d37e192482d06ca49.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_da163dba4e2734c9c59f44d2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_544908d0cbc3e24bfa032816.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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:ffe;src:url('chunks/assets/font_35e2bcc430822e6b2543752d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_5c6c275e66b3e034d61a5374.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_103c73cc1fe15f29814137cd.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_ece842fb6fa47cb80efdeda2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_23c3acf9fadbabb8afeb8451.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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:ff13;src:url('chunks/assets/font_48243ce8f066f81a1dd718de.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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:ff14;src:url('chunks/assets/font_b35d6a94c5482aa6c44f6014.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_7631197bdbed961f97e5b791.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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:ff16;src:url('chunks/assets/font_52c63b3af0d7d9eb96e2c2d5.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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:ff17;src:url('chunks/assets/font_343417b1c6981d8e7669a62a.woff')format("woff");}.ff17{font-family:ff17;line-height:1.400000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002001px;}
.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;}
}
.ws0{word-spacing:-33.402585px;}
.ws7{word-spacing:-24.325364px;}
.ws2{word-spacing:-24.282689px;}
.ws6{word-spacing:-23.059713px;}
.ws5{word-spacing:-22.479311px;}
.ws3{word-spacing:-22.260437px;}
.ws4{word-spacing:-19.908391px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-7.293315px;}
._4{margin-left:-6.135406px;}
._5{margin-left:-4.558633px;}
._1{margin-left:-3.473446px;}
._2{margin-left:-2.180610px;}
._0{margin-left:-1.000691px;}
._3{width:1.227261px;}
.fc6{color:rgb(0,191,99);}
.fc5{color:rgb(49,237,174);}
.fc4{color:rgb(0,151,178);}
.fc3{color:rgb(69,84,107);}
.fc2{color:rgb(10,186,240);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:28.455358px;}
.fs7{font-size:50.798489px;}
.fsd{font-size:65.994864px;}
.fs4{font-size:84.001650px;}
.fs6{font-size:86.792706px;}
.fsa{font-size:87.017786px;}
.fs8{font-size:90.033923px;}
.fs3{font-size:96.021179px;}
.fs5{font-size:102.458604px;}
.fs9{font-size:102.638667px;}
.fsc{font-size:108.445860px;}
.fs2{font-size:126.047492px;}
.fs1{font-size:138.022003px;}
.fs0{font-size:175.476115px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y83{bottom:2.387921px;}
.y45{bottom:4.251171px;}
.y44{bottom:52.695018px;}
.y46{bottom:57.546988px;}
.y133{bottom:130.648927px;}
.y132{bottom:148.655712px;}
.y131{bottom:166.662496px;}
.y130{bottom:184.669281px;}
.y11{bottom:190.163264px;}
.y12f{bottom:202.676065px;}
.yf9{bottom:205.643285px;}
.y2b{bottom:211.457084px;}
.y81{bottom:216.809945px;}
.y12e{bottom:220.682850px;}
.yd6{bottom:225.962171px;}
.y2a{bottom:233.965565px;}
.y10{bottom:235.180226px;}
.y43{bottom:235.603060px;}
.y12d{bottom:238.689634px;}
.yd5{bottom:248.470651px;}
.yf8{bottom:252.911095px;}
.y6e{bottom:256.376541px;}
.y29{bottom:256.474046px;}
.y12c{bottom:256.696419px;}
.y80{bottom:264.077754px;}
.yd4{bottom:270.979132px;}
.y12b{bottom:274.703204px;}
.yf7{bottom:276.544999px;}
.y6d{bottom:278.885022px;}
.y28{bottom:278.982526px;}
.yf{bottom:280.197187px;}
.y42{bottom:282.870869px;}
.y7f{bottom:287.711659px;}
.yd3{bottom:293.487612px;}
.y137{bottom:298.832350px;}
.yf6{bottom:300.178904px;}
.y6c{bottom:301.393502px;}
.y27{bottom:301.491007px;}
.y41{bottom:306.504774px;}
.y7e{bottom:311.345564px;}
.yd2{bottom:315.996093px;}
.yf5{bottom:323.812809px;}
.y6b{bottom:323.901983px;}
.y26{bottom:323.999488px;}
.ye{bottom:325.214148px;}
.y40{bottom:330.138679px;}
.y7d{bottom:334.979468px;}
.yd1{bottom:338.504574px;}
.y12a{bottom:345.274152px;}
.y6a{bottom:346.410464px;}
.y25{bottom:346.507968px;}
.yf4{bottom:347.446714px;}
.y3f{bottom:353.772584px;}
.y7c{bottom:358.613373px;}
.yd0{bottom:361.013054px;}
.y129{bottom:363.280936px;}
.y69{bottom:368.918944px;}
.y24{bottom:369.016449px;}
.yd{bottom:370.231110px;}
.yf3{bottom:371.080618px;}
.y3e{bottom:377.406488px;}
.y128{bottom:381.287721px;}
.y7b{bottom:382.247278px;}
.ycf{bottom:383.521535px;}
.y68{bottom:391.427425px;}
.y23{bottom:391.524930px;}
.yc{bottom:392.739590px;}
.yf2{bottom:394.714523px;}
.y127{bottom:399.294505px;}
.y3d{bottom:401.040393px;}
.y7a{bottom:405.881182px;}
.yce{bottom:406.030016px;}
.y126{bottom:417.301290px;}
.yf1{bottom:418.348428px;}
.y3c{bottom:424.674298px;}
.ycd{bottom:428.538496px;}
.y79{bottom:429.515087px;}
.y125{bottom:435.308074px;}
.y67{bottom:436.444386px;}
.y22{bottom:436.541891px;}
.yf0{bottom:441.982332px;}
.y3b{bottom:448.308202px;}
.ycc{bottom:451.046977px;}
.y78{bottom:453.148992px;}
.y124{bottom:453.314859px;}
.y66{bottom:458.952867px;}
.y21{bottom:459.050372px;}
.y123{bottom:471.321643px;}
.y3a{bottom:471.942107px;}
.yb1{bottom:473.157111px;}
.ycb{bottom:473.555458px;}
.y65{bottom:481.461348px;}
.y20{bottom:481.558852px;}
.y122{bottom:489.328428px;}
.yca{bottom:496.063938px;}
.y64{bottom:503.969828px;}
.y1f{bottom:504.067333px;}
.y121{bottom:507.335213px;}
.yc9{bottom:518.572419px;}
.yb0{bottom:520.424921px;}
.yb{bottom:522.193339px;}
.y9b{bottom:522.590190px;}
.y120{bottom:525.341997px;}
.y63{bottom:526.478309px;}
.y1e{bottom:526.575813px;}
.yef{bottom:539.786174px;}
.yc8{bottom:541.080900px;}
.yaf{bottom:544.058825px;}
.y9a{bottom:545.098670px;}
.ya{bottom:548.078092px;}
.y62{bottom:548.986790px;}
.y1d{bottom:549.084294px;}
.y136{bottom:549.471072px;}
.yee{bottom:562.294655px;}
.y99{bottom:567.607151px;}
.yae{bottom:567.692730px;}
.y39{bottom:570.214403px;}
.y61{bottom:571.495270px;}
.y1c{bottom:571.592775px;}
.y9{bottom:573.962845px;}
.yed{bottom:584.803136px;}
.yc7{bottom:586.097861px;}
.y98{bottom:590.115632px;}
.yad{bottom:591.326635px;}
.y38{bottom:592.722883px;}
.y60{bottom:594.003751px;}
.y1b{bottom:594.101255px;}
.y11f{bottom:596.108653px;}
.y82{bottom:597.374996px;}
.y8{bottom:599.847598px;}
.yec{bottom:607.311616px;}
.yc6{bottom:608.606342px;}
.y97{bottom:612.624112px;}
.y11e{bottom:614.115437px;}
.yac{bottom:614.960539px;}
.y37{bottom:615.231364px;}
.y5f{bottom:616.512232px;}
.yeb{bottom:629.820097px;}
.yc5{bottom:631.114822px;}
.y11d{bottom:632.122222px;}
.y96{bottom:635.132593px;}
.y36{bottom:637.739845px;}
.yab{bottom:638.594444px;}
.y1a{bottom:639.118217px;}
.y11c{bottom:650.129006px;}
.yea{bottom:652.328578px;}
.yc4{bottom:653.623303px;}
.y95{bottom:657.641074px;}
.y35{bottom:660.248325px;}
.y5e{bottom:661.529193px;}
.y19{bottom:661.626697px;}
.yaa{bottom:662.228349px;}
.y11b{bottom:668.135791px;}
.ye9{bottom:674.837058px;}
.yc3{bottom:676.131784px;}
.y94{bottom:680.149554px;}
.y34{bottom:682.756806px;}
.y5d{bottom:684.037674px;}
.y18{bottom:684.135178px;}
.ya9{bottom:685.862254px;}
.y11a{bottom:686.142575px;}
.ye8{bottom:697.345539px;}
.yc2{bottom:698.640264px;}
.y7{bottom:699.035008px;}
.y93{bottom:702.658035px;}
.y119{bottom:704.149360px;}
.y33{bottom:705.265287px;}
.y5c{bottom:706.546154px;}
.y17{bottom:706.643659px;}
.ya8{bottom:709.496158px;}
.ye7{bottom:719.854020px;}
.yc1{bottom:721.148745px;}
.y118{bottom:722.156145px;}
.y32{bottom:727.773767px;}
.y5b{bottom:729.054635px;}
.y16{bottom:729.152139px;}
.ya7{bottom:733.130063px;}
.y117{bottom:740.162929px;}
.ye6{bottom:742.362500px;}
.yc0{bottom:743.657226px;}
.y6{bottom:745.177393px;}
.y92{bottom:747.674996px;}
.y31{bottom:750.282248px;}
.y5a{bottom:751.563116px;}
.y15{bottom:751.660620px;}
.y116{bottom:758.169714px;}
.ye5{bottom:764.870981px;}
.ybf{bottom:766.165706px;}
.y91{bottom:770.183477px;}
.y106{bottom:771.248882px;}
.y30{bottom:772.790729px;}
.y59{bottom:774.071596px;}
.y14{bottom:774.169101px;}
.y115{bottom:776.176498px;}
.y5{bottom:780.065538px;}
.ybe{bottom:788.674187px;}
.y90{bottom:792.691958px;}
.y114{bottom:794.183283px;}
.y2f{bottom:795.299209px;}
.y105{bottom:796.008210px;}
.ye4{bottom:809.887942px;}
.ybd{bottom:811.182668px;}
.y8f{bottom:815.200438px;}
.y135{bottom:817.651782px;}
.y58{bottom:819.088558px;}
.y104{bottom:820.767539px;}
.ye3{bottom:832.396423px;}
.ybc{bottom:833.691148px;}
.y8e{bottom:837.708919px;}
.y2e{bottom:840.316171px;}
.y57{bottom:841.597038px;}
.y13{bottom:848.447087px;}
.ye2{bottom:854.904903px;}
.ybb{bottom:856.199629px;}
.y8d{bottom:860.217400px;}
.y113{bottom:862.600114px;}
.y2d{bottom:862.824651px;}
.y56{bottom:864.105519px;}
.y103{bottom:870.286197px;}
.y12{bottom:876.582688px;}
.ye1{bottom:877.413384px;}
.ya6{bottom:877.539438px;}
.yba{bottom:878.708110px;}
.y112{bottom:880.606899px;}
.y8c{bottom:882.725880px;}
.y2c{bottom:885.333132px;}
.y55{bottom:886.614000px;}
.y4{bottom:890.439799px;}
.y102{bottom:895.045525px;}
.y111{bottom:898.613683px;}
.ye0{bottom:899.921865px;}
.ya5{bottom:900.047919px;}
.yb9{bottom:901.216590px;}
.y8b{bottom:905.234361px;}
.y54{bottom:909.122480px;}
.y110{bottom:916.620468px;}
.y101{bottom:919.804854px;}
.ydf{bottom:922.430345px;}
.ya4{bottom:922.556399px;}
.yb8{bottom:923.725071px;}
.y8a{bottom:927.742842px;}
.y53{bottom:931.630961px;}
.y10f{bottom:934.627252px;}
.y100{bottom:944.564183px;}
.yde{bottom:944.938826px;}
.ya3{bottom:945.064880px;}
.yb7{bottom:946.233552px;}
.y77{bottom:947.247438px;}
.y3{bottom:950.087272px;}
.y89{bottom:950.251322px;}
.y10e{bottom:952.634037px;}
.y52{bottom:954.139442px;}
.ydd{bottom:967.447307px;}
.ya2{bottom:967.573361px;}
.yb6{bottom:968.742032px;}
.yff{bottom:969.323512px;}
.y76{bottom:969.755918px;}
.y10d{bottom:970.640821px;}
.y88{bottom:972.759803px;}
.y51{bottom:976.647922px;}
.y10c{bottom:988.647606px;}
.ydc{bottom:989.955787px;}
.yb5{bottom:991.250513px;}
.y75{bottom:992.264399px;}
.yfe{bottom:994.082840px;}
.y87{bottom:995.268283px;}
.y2{bottom:998.480506px;}
.y50{bottom:999.156403px;}
.y10b{bottom:1006.654390px;}
.ydb{bottom:1012.464268px;}
.ya1{bottom:1012.590322px;}
.yb4{bottom:1013.758994px;}
.y74{bottom:1014.772880px;}
.y86{bottom:1017.776764px;}
.yfd{bottom:1018.842169px;}
.y4f{bottom:1021.664884px;}
.y10a{bottom:1024.661175px;}
.y4c{bottom:1030.220757px;}
.yda{bottom:1034.972749px;}
.ya0{bottom:1035.098803px;}
.y73{bottom:1037.281360px;}
.y109{bottom:1042.667959px;}
.yfc{bottom:1043.601498px;}
.y4e{bottom:1044.173364px;}
.y4b{bottom:1054.980086px;}
.yd9{bottom:1057.481229px;}
.y9f{bottom:1057.607283px;}
.y72{bottom:1059.789841px;}
.y108{bottom:1060.674744px;}
.yfb{bottom:1068.360826px;}
.y4a{bottom:1079.739414px;}
.yd8{bottom:1079.989710px;}
.y9e{bottom:1080.115764px;}
.y71{bottom:1082.298322px;}
.yb3{bottom:1083.535284px;}
.y134{bottom:1087.422725px;}
.y85{bottom:1096.556446px;}
.yd7{bottom:1102.498191px;}
.y9d{bottom:1102.624245px;}
.y49{bottom:1104.498743px;}
.y70{bottom:1104.806802px;}
.yb2{bottom:1111.670885px;}
.yfa{bottom:1122.381180px;}
.y4d{bottom:1122.953046px;}
.y84{bottom:1124.692047px;}
.y9c{bottom:1125.132725px;}
.y6f{bottom:1127.315283px;}
.y48{bottom:1129.258072px;}
.y107{bottom:1145.779296px;}
.y47{bottom:1154.017401px;}
.hf{height:8.640000px;}
.ha{height:15.119999px;}
.h10{height:29.878126px;}
.hb{height:53.338414px;}
.h12{height:69.294608px;}
.h7{height:88.201732px;}
.h9{height:91.132341px;}
.he{height:91.368676px;}
.hc{height:94.535619px;}
.h6{height:100.822237px;}
.h8{height:107.581534px;}
.hd{height:107.770601px;}
.h11{height:113.868153px;}
.h5{height:132.349866px;}
.h4{height:144.923104px;}
.h3{height:184.249921px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:105.119996px;}
.w2{width:505.079979px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:45.890360px;}
.x33{left:57.250110px;}
.x34{left:59.163330px;}
.x10{left:89.324996px;}
.xa{left:91.952940px;}
.x8{left:94.213557px;}
.x7{left:102.003601px;}
.x2d{left:110.902780px;}
.x1f{left:129.164893px;}
.x6{left:144.066325px;}
.x20{left:152.271255px;}
.x9{left:159.875015px;}
.x1e{left:164.158546px;}
.x3{left:166.398958px;}
.x1d{left:176.643719px;}
.xe{left:187.578813px;}
.xc{left:192.098094px;}
.x1b{left:194.039992px;}
.xd{left:235.338995px;}
.x1{left:239.850461px;}
.x21{left:280.886120px;}
.x2{left:285.060860px;}
.xf{left:319.077583px;}
.xb{left:346.122929px;}
.x5{left:366.073800px;}
.x4{left:371.085459px;}
.x22{left:484.908377px;}
.x11{left:486.455826px;}
.x2c{left:548.779732px;}
.x2b{left:552.331852px;}
.x13{left:555.303366px;}
.x17{left:558.697223px;}
.x12{left:561.792139px;}
.x23{left:567.472282px;}
.x1a{left:569.177734px;}
.x19{left:571.868201px;}
.x16{left:573.697015px;}
.x27{left:575.438174px;}
.x31{left:577.690777px;}
.x2a{left:578.744147px;}
.x15{left:580.519898px;}
.x2f{left:585.480822px;}
.x24{left:587.694745px;}
.x26{left:589.558729px;}
.x14{left:592.653376px;}
.x32{left:597.754978px;}
.x28{left:601.674622px;}
.x25{left:603.890300px;}
.x2e{left:617.274051px;}
.x30{left:621.652654px;}
.x18{left:624.305927px;}
.x29{left:725.399970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001779pt;}
.ws0{word-spacing:-29.691187pt;}
.ws7{word-spacing:-21.622546pt;}
.ws2{word-spacing:-21.584613pt;}
.ws6{word-spacing:-20.497523pt;}
.ws5{word-spacing:-19.981610pt;}
.ws3{word-spacing:-19.787055pt;}
.ws4{word-spacing:-17.696348pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-6.482947pt;}
._4{margin-left:-5.453694pt;}
._5{margin-left:-4.052118pt;}
._1{margin-left:-3.087508pt;}
._2{margin-left:-1.938320pt;}
._0{margin-left:-0.889504pt;}
._3{width:1.090899pt;}
.fsb{font-size:25.293652pt;}
.fs7{font-size:45.154213pt;}
.fsd{font-size:58.662102pt;}
.fs4{font-size:74.668133pt;}
.fs6{font-size:77.149072pt;}
.fsa{font-size:77.349143pt;}
.fs8{font-size:80.030153pt;}
.fs3{font-size:85.352159pt;}
.fs5{font-size:91.074315pt;}
.fs9{font-size:91.234371pt;}
.fsc{font-size:96.396320pt;}
.fs2{font-size:112.042215pt;}
.fs1{font-size:122.686225pt;}
.fs0{font-size:155.978769pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y83{bottom:2.122596pt;}
.y45{bottom:3.778819pt;}
.y44{bottom:46.840016pt;}
.y46{bottom:51.152879pt;}
.y133{bottom:116.132380pt;}
.y132{bottom:132.138410pt;}
.y131{bottom:148.144441pt;}
.y130{bottom:164.150472pt;}
.y11{bottom:169.034013pt;}
.y12f{bottom:180.156503pt;}
.yf9{bottom:182.794031pt;}
.y2b{bottom:187.961853pt;}
.y81{bottom:192.719951pt;}
.y12e{bottom:196.162533pt;}
.yd6{bottom:200.855263pt;}
.y2a{bottom:207.969391pt;}
.y10{bottom:209.049090pt;}
.y43{bottom:209.424942pt;}
.y12d{bottom:212.168564pt;}
.yd5{bottom:220.862801pt;}
.yf8{bottom:224.809862pt;}
.y6e{bottom:227.890259pt;}
.y29{bottom:227.976929pt;}
.y12c{bottom:228.174595pt;}
.y80{bottom:234.735782pt;}
.yd4{bottom:240.870339pt;}
.y12b{bottom:244.180625pt;}
.yf7{bottom:245.817777pt;}
.y6d{bottom:247.897797pt;}
.y28{bottom:247.984468pt;}
.yf{bottom:249.064166pt;}
.y42{bottom:251.440773pt;}
.y7f{bottom:255.743697pt;}
.yd3{bottom:260.877878pt;}
.y137{bottom:265.628756pt;}
.yf6{bottom:266.825693pt;}
.y6c{bottom:267.905335pt;}
.y27{bottom:267.992006pt;}
.y41{bottom:272.448688pt;}
.y7e{bottom:276.751612pt;}
.yd2{bottom:280.885416pt;}
.yf5{bottom:287.833608pt;}
.y6b{bottom:287.912874pt;}
.y26{bottom:287.999544pt;}
.ye{bottom:289.079243pt;}
.y40{bottom:293.456603pt;}
.y7d{bottom:297.759527pt;}
.yd1{bottom:300.892955pt;}
.y12a{bottom:306.910357pt;}
.y6a{bottom:307.920412pt;}
.y25{bottom:308.007083pt;}
.yf4{bottom:308.841523pt;}
.y3f{bottom:314.464519pt;}
.y7c{bottom:318.767443pt;}
.yd0{bottom:320.900493pt;}
.y129{bottom:322.916388pt;}
.y69{bottom:327.927950pt;}
.y24{bottom:328.014621pt;}
.yd{bottom:329.094320pt;}
.yf3{bottom:329.849438pt;}
.y3e{bottom:335.472434pt;}
.y128{bottom:338.922419pt;}
.y7b{bottom:339.775358pt;}
.ycf{bottom:340.908031pt;}
.y68{bottom:347.935489pt;}
.y23{bottom:348.022160pt;}
.yc{bottom:349.101858pt;}
.yf2{bottom:350.857354pt;}
.y127{bottom:354.928449pt;}
.y3d{bottom:356.480349pt;}
.y7a{bottom:360.783273pt;}
.yce{bottom:360.915570pt;}
.y126{bottom:370.934480pt;}
.yf1{bottom:371.865269pt;}
.y3c{bottom:377.488265pt;}
.ycd{bottom:380.923108pt;}
.y79{bottom:381.791189pt;}
.y125{bottom:386.940511pt;}
.y67{bottom:387.950566pt;}
.y22{bottom:388.037236pt;}
.yf0{bottom:392.873184pt;}
.y3b{bottom:398.496180pt;}
.ycc{bottom:400.930646pt;}
.y78{bottom:402.799104pt;}
.y124{bottom:402.946541pt;}
.y66{bottom:407.958104pt;}
.y21{bottom:408.044775pt;}
.y123{bottom:418.952572pt;}
.y3a{bottom:419.504095pt;}
.yb1{bottom:420.584099pt;}
.ycb{bottom:420.938185pt;}
.y65{bottom:427.965642pt;}
.y20{bottom:428.052313pt;}
.y122{bottom:434.958603pt;}
.yca{bottom:440.945723pt;}
.y64{bottom:447.973181pt;}
.y1f{bottom:448.059851pt;}
.y121{bottom:450.964633pt;}
.yc9{bottom:460.953261pt;}
.yb0{bottom:462.599930pt;}
.yb{bottom:464.171857pt;}
.y9b{bottom:464.524613pt;}
.y120{bottom:466.970664pt;}
.y63{bottom:467.980719pt;}
.y1e{bottom:468.067390pt;}
.yef{bottom:479.809933pt;}
.yc8{bottom:480.960800pt;}
.yaf{bottom:483.607845pt;}
.y9a{bottom:484.532151pt;}
.ya{bottom:487.180526pt;}
.y62{bottom:487.988257pt;}
.y1d{bottom:488.074928pt;}
.y136{bottom:488.418730pt;}
.yee{bottom:499.817471pt;}
.y99{bottom:504.539690pt;}
.yae{bottom:504.615760pt;}
.y39{bottom:506.857247pt;}
.y61{bottom:507.995796pt;}
.y1c{bottom:508.082467pt;}
.y9{bottom:510.189195pt;}
.yed{bottom:519.825009pt;}
.yc7{bottom:520.975877pt;}
.y98{bottom:524.547228pt;}
.yad{bottom:525.623675pt;}
.y38{bottom:526.864785pt;}
.y60{bottom:528.003334pt;}
.y1b{bottom:528.090005pt;}
.y11f{bottom:529.874358pt;}
.y82{bottom:530.999996pt;}
.y8{bottom:533.197865pt;}
.yec{bottom:539.832548pt;}
.yc6{bottom:540.983415pt;}
.y97{bottom:544.554766pt;}
.y11e{bottom:545.880389pt;}
.yac{bottom:546.631591pt;}
.y37{bottom:546.872323pt;}
.y5f{bottom:548.010873pt;}
.yeb{bottom:559.840086pt;}
.yc5{bottom:560.990953pt;}
.y11d{bottom:561.886419pt;}
.y96{bottom:564.562305pt;}
.y36{bottom:566.879862pt;}
.yab{bottom:567.639506pt;}
.y1a{bottom:568.105082pt;}
.y11c{bottom:577.892450pt;}
.yea{bottom:579.847624pt;}
.yc4{bottom:580.998492pt;}
.y95{bottom:584.569843pt;}
.y35{bottom:586.887400pt;}
.y5e{bottom:588.025949pt;}
.y19{bottom:588.112620pt;}
.yaa{bottom:588.647421pt;}
.y11b{bottom:593.898481pt;}
.ye9{bottom:599.855163pt;}
.yc3{bottom:601.006030pt;}
.y94{bottom:604.577382pt;}
.y34{bottom:606.894939pt;}
.y5d{bottom:608.033488pt;}
.y18{bottom:608.120158pt;}
.ya9{bottom:609.655337pt;}
.y11a{bottom:609.904512pt;}
.ye8{bottom:619.862701pt;}
.yc2{bottom:621.013568pt;}
.y7{bottom:621.364452pt;}
.y93{bottom:624.584920pt;}
.y119{bottom:625.910542pt;}
.y33{bottom:626.902477pt;}
.y5c{bottom:628.041026pt;}
.y17{bottom:628.127697pt;}
.ya8{bottom:630.663252pt;}
.ye7{bottom:639.870240pt;}
.yc1{bottom:641.021107pt;}
.y118{bottom:641.916573pt;}
.y32{bottom:646.910015pt;}
.y5b{bottom:648.048564pt;}
.y16{bottom:648.135235pt;}
.ya7{bottom:651.671167pt;}
.y117{bottom:657.922604pt;}
.ye6{bottom:659.877778pt;}
.yc0{bottom:661.028645pt;}
.y6{bottom:662.379905pt;}
.y92{bottom:664.599997pt;}
.y31{bottom:666.917554pt;}
.y5a{bottom:668.056103pt;}
.y15{bottom:668.142773pt;}
.y116{bottom:673.928634pt;}
.ye5{bottom:679.885316pt;}
.ybf{bottom:681.036183pt;}
.y91{bottom:684.607535pt;}
.y106{bottom:685.554562pt;}
.y30{bottom:686.925092pt;}
.y59{bottom:688.063641pt;}
.y14{bottom:688.150312pt;}
.y115{bottom:689.934665pt;}
.y5{bottom:693.391590pt;}
.ybe{bottom:701.043722pt;}
.y90{bottom:704.615073pt;}
.y114{bottom:705.940696pt;}
.y2f{bottom:706.932630pt;}
.y105{bottom:707.562854pt;}
.ye4{bottom:719.900393pt;}
.ybd{bottom:721.051260pt;}
.y8f{bottom:724.622612pt;}
.y135{bottom:726.801584pt;}
.y58{bottom:728.078718pt;}
.y104{bottom:729.571146pt;}
.ye3{bottom:739.907931pt;}
.ybc{bottom:741.058799pt;}
.y8e{bottom:744.630150pt;}
.y2e{bottom:746.947707pt;}
.y57{bottom:748.086256pt;}
.y13{bottom:754.175188pt;}
.ye2{bottom:759.915470pt;}
.ybb{bottom:761.066337pt;}
.y8d{bottom:764.637688pt;}
.y113{bottom:766.755657pt;}
.y2d{bottom:766.955245pt;}
.y56{bottom:768.093795pt;}
.y103{bottom:773.587730pt;}
.y12{bottom:779.184611pt;}
.ye1{bottom:779.923008pt;}
.ya6{bottom:780.035056pt;}
.yba{bottom:781.073875pt;}
.y112{bottom:782.761688pt;}
.y8c{bottom:784.645227pt;}
.y2c{bottom:786.962784pt;}
.y55{bottom:788.101333pt;}
.y4{bottom:791.502043pt;}
.y102{bottom:795.596023pt;}
.y111{bottom:798.767718pt;}
.ye0{bottom:799.930547pt;}
.ya5{bottom:800.042595pt;}
.yb9{bottom:801.081414pt;}
.y8b{bottom:804.652765pt;}
.y54{bottom:808.108871pt;}
.y110{bottom:814.773749pt;}
.y101{bottom:817.604315pt;}
.ydf{bottom:819.938085pt;}
.ya4{bottom:820.050133pt;}
.yb8{bottom:821.088952pt;}
.y8a{bottom:824.660304pt;}
.y53{bottom:828.116410pt;}
.y10f{bottom:830.779780pt;}
.y100{bottom:839.612607pt;}
.yde{bottom:839.945623pt;}
.ya3{bottom:840.057671pt;}
.yb7{bottom:841.096490pt;}
.y77{bottom:841.997722pt;}
.y3{bottom:844.522020pt;}
.y89{bottom:844.667842pt;}
.y10e{bottom:846.785810pt;}
.y52{bottom:848.123948pt;}
.ydd{bottom:859.953162pt;}
.ya2{bottom:860.065210pt;}
.yb6{bottom:861.104029pt;}
.yff{bottom:861.620899pt;}
.y76{bottom:862.005261pt;}
.y10d{bottom:862.791841pt;}
.y88{bottom:864.675380pt;}
.y51{bottom:868.131486pt;}
.y10c{bottom:878.797872pt;}
.ydc{bottom:879.960700pt;}
.yb5{bottom:881.111567pt;}
.y75{bottom:882.012799pt;}
.yfe{bottom:883.629191pt;}
.y87{bottom:884.682919pt;}
.y2{bottom:887.538227pt;}
.y50{bottom:888.139025pt;}
.y10b{bottom:894.803903pt;}
.ydb{bottom:899.968238pt;}
.ya1{bottom:900.080286pt;}
.yb4{bottom:901.119105pt;}
.y74{bottom:902.020337pt;}
.y86{bottom:904.690457pt;}
.yfd{bottom:905.637484pt;}
.y4f{bottom:908.146563pt;}
.y10a{bottom:910.809933pt;}
.y4c{bottom:915.751784pt;}
.yda{bottom:919.975777pt;}
.ya0{bottom:920.087825pt;}
.y73{bottom:922.027876pt;}
.y109{bottom:926.815964pt;}
.yfc{bottom:927.645776pt;}
.y4e{bottom:928.154101pt;}
.y4b{bottom:937.760076pt;}
.yd9{bottom:939.983315pt;}
.y9f{bottom:940.095363pt;}
.y72{bottom:942.035414pt;}
.y108{bottom:942.821995pt;}
.yfb{bottom:949.654068pt;}
.y4a{bottom:959.768368pt;}
.yd8{bottom:959.990853pt;}
.y9e{bottom:960.102901pt;}
.y71{bottom:962.042953pt;}
.yb3{bottom:963.142474pt;}
.y134{bottom:966.597978pt;}
.y85{bottom:974.716841pt;}
.yd7{bottom:979.998392pt;}
.y9d{bottom:980.110440pt;}
.y49{bottom:981.776661pt;}
.y70{bottom:982.050491pt;}
.yb2{bottom:988.151897pt;}
.yfa{bottom:997.672160pt;}
.y4d{bottom:998.180486pt;}
.y84{bottom:999.726264pt;}
.y9c{bottom:1000.117978pt;}
.y6f{bottom:1002.058029pt;}
.y48{bottom:1003.784953pt;}
.y107{bottom:1018.470485pt;}
.y47{bottom:1025.793245pt;}
.hf{height:7.680000pt;}
.ha{height:13.439999pt;}
.h10{height:26.558335pt;}
.hb{height:47.411923pt;}
.h12{height:61.595207pt;}
.h7{height:78.401540pt;}
.h9{height:81.006526pt;}
.he{height:81.216600pt;}
.hc{height:84.031661pt;}
.h6{height:89.619767pt;}
.h8{height:95.628030pt;}
.hd{height:95.796089pt;}
.h11{height:101.216136pt;}
.h5{height:117.644326pt;}
.h4{height:128.820537pt;}
.h3{height:163.777708pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:93.439996pt;}
.w2{width:448.959981pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:40.791431pt;}
.x33{left:50.888987pt;}
.x34{left:52.589627pt;}
.x10{left:79.399997pt;}
.xa{left:81.735946pt;}
.x8{left:83.745384pt;}
.x7{left:90.669868pt;}
.x2d{left:98.580249pt;}
.x1f{left:114.813238pt;}
.x6{left:128.058955pt;}
.x20{left:135.352227pt;}
.x9{left:142.111125pt;}
.x1e{left:145.918708pt;}
.x3{left:147.910185pt;}
.x1d{left:157.016639pt;}
.xe{left:166.736723pt;}
.xc{left:170.753861pt;}
.x1b{left:172.479993pt;}
.xd{left:209.190218pt;}
.x1{left:213.200410pt;}
.x21{left:249.676551pt;}
.x2{left:253.387431pt;}
.xf{left:283.624518pt;}
.xb{left:307.664826pt;}
.x5{left:325.398933pt;}
.x4{left:329.853742pt;}
.x22{left:431.029668pt;}
.x11{left:432.405179pt;}
.x2c{left:487.804206pt;}
.x2b{left:490.961646pt;}
.x13{left:493.602992pt;}
.x17{left:496.619753pt;}
.x12{left:499.370790pt;}
.x23{left:504.419806pt;}
.x1a{left:505.935764pt;}
.x19{left:508.327290pt;}
.x16{left:509.952902pt;}
.x27{left:511.500599pt;}
.x31{left:513.502913pt;}
.x2a{left:514.439242pt;}
.x15{left:516.017687pt;}
.x2f{left:520.427397pt;}
.x24{left:522.395329pt;}
.x26{left:524.052203pt;}
.x14{left:526.803001pt;}
.x32{left:531.337758pt;}
.x28{left:534.821886pt;}
.x25{left:536.791378pt;}
.x2e{left:548.688045pt;}
.x30{left:552.580137pt;}
.x18{left:554.938602pt;}
.x29{left:644.799973pt;}
}




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