
    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_193b17603407e8f4f5be1db0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_c7770a7d9fde5cb771572d1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_143d89aad21e131a5e7a766e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.993164;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_50ab3634a4192382d1cff1d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e3848d9d54d044867d496ac3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fe5030ede84f296051afa64e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.v1{vertical-align:29.520000px;}
.v2{vertical-align:56.880792px;}
.ls2e{letter-spacing:-0.303048px;}
.ls23{letter-spacing:-0.186372px;}
.ls2c{letter-spacing:-0.151524px;}
.ls1e{letter-spacing:-0.093600px;}
.ls20{letter-spacing:-0.050400px;}
.ls35{letter-spacing:-0.046116px;}
.ls34{letter-spacing:-0.043200px;}
.ls21{letter-spacing:-0.039528px;}
.ls1c{letter-spacing:-0.036000px;}
.ls18{letter-spacing:-0.032940px;}
.ls22{letter-spacing:-0.030060px;}
.ls1f{letter-spacing:-0.021600px;}
.ls1b{letter-spacing:-0.014400px;}
.ls29{letter-spacing:-0.013176px;}
.ls19{letter-spacing:-0.007200px;}
.ls2f{letter-spacing:-0.006588px;}
.ls17{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.006588px;}
.ls5{letter-spacing:0.007200px;}
.ls32{letter-spacing:0.009576px;}
.ls25{letter-spacing:0.013176px;}
.lsd{letter-spacing:0.019764px;}
.ls4{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.026352px;}
.lsb{letter-spacing:0.028800px;}
.lsf{letter-spacing:0.032940px;}
.ls3{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.039528px;}
.ls7{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.046116px;}
.ls11{letter-spacing:0.047880px;}
.lse{letter-spacing:0.052704px;}
.ls9{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.059292px;}
.lsa{letter-spacing:0.064800px;}
.ls10{letter-spacing:0.065880px;}
.ls8{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.072468px;}
.ls27{letter-spacing:0.079056px;}
.ls14{letter-spacing:0.085644px;}
.ls26{letter-spacing:0.092232px;}
.ls28{letter-spacing:0.098820px;}
.ls1d{letter-spacing:0.100800px;}
.ls16{letter-spacing:0.105408px;}
.ls2b{letter-spacing:0.111996px;}
.ls1a{letter-spacing:0.122400px;}
.ls6{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.204228px;}
.lsc{letter-spacing:0.288000px;}
.ls30{letter-spacing:5.454864px;}
.ls2d{letter-spacing:10.138932px;}
.ls13{letter-spacing:194.095656px;}
.ls37{letter-spacing:2263.725960px;}
.ls31{letter-spacing:2692.125360px;}
.ls24{letter-spacing:2718.765360px;}
.ls36{letter-spacing:4341.644760px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws19{word-spacing:-18.400284px;}
.ws18{word-spacing:-18.393696px;}
.ws17{word-spacing:-18.387108px;}
.ws1a{word-spacing:-18.367344px;}
.ws12{word-spacing:-18.334404px;}
.ws49{word-spacing:-18.268524px;}
.ws14{word-spacing:-16.683300px;}
.ws15{word-spacing:-16.526988px;}
.ws13{word-spacing:-13.358520px;}
.ws8{word-spacing:-0.216000px;}
.ws5{word-spacing:-0.194400px;}
.wsa{word-spacing:-0.172800px;}
.wse{word-spacing:-0.136800px;}
.wsd{word-spacing:-0.129600px;}
.wsb{word-spacing:-0.115200px;}
.ws2{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.100800px;}
.ws3{word-spacing:-0.093600px;}
.ws4{word-spacing:-0.079200px;}
.ws7{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.064800px;}
.ws6{word-spacing:-0.057600px;}
.ws10{word-spacing:-0.050400px;}
.ws9{word-spacing:-0.036000px;}
.ws31{word-spacing:-0.032940px;}
.ws48{word-spacing:-0.028800px;}
.ws20{word-spacing:-0.026352px;}
.ws11{word-spacing:-0.021600px;}
.ws2f{word-spacing:-0.019764px;}
.ws47{word-spacing:-0.013176px;}
.ws30{word-spacing:-0.006588px;}
.ws16{word-spacing:0.000000px;}
.wsc{word-spacing:0.021600px;}
.ws42{word-spacing:0.335988px;}
.ws2e{word-spacing:0.685152px;}
.ws29{word-spacing:0.691740px;}
.ws21{word-spacing:1.396656px;}
.ws25{word-spacing:1.772172px;}
.ws34{word-spacing:2.141100px;}
.ws23{word-spacing:2.846016px;}
.ws43{word-spacing:2.852604px;}
.ws32{word-spacing:3.208356px;}
.ws24{word-spacing:3.564108px;}
.ws33{word-spacing:3.570696px;}
.ws22{word-spacing:3.919860px;}
.ws41{word-spacing:5.006880px;}
.ws35{word-spacing:5.362632px;}
.ws44{word-spacing:5.724972px;}
.ws1e{word-spacing:6.093900px;}
.ws27{word-spacing:7.536672px;}
.ws1d{word-spacing:8.972856px;}
.ws40{word-spacing:9.684360px;}
.ws2b{word-spacing:9.690948px;}
.ws36{word-spacing:10.053288px;}
.ws1c{word-spacing:10.059876px;}
.ws39{word-spacing:11.482884px;}
.ws38{word-spacing:11.851812px;}
.ws3a{word-spacing:12.207564px;}
.ws2c{word-spacing:12.563316px;}
.ws2d{word-spacing:12.583080px;}
.ws3f{word-spacing:12.919068px;}
.ws3e{word-spacing:14.012676px;}
.ws3d{word-spacing:14.724180px;}
.ws1b{word-spacing:15.448860px;}
.ws46{word-spacing:16.891632px;}
.ws3c{word-spacing:17.247384px;}
.ws2a{word-spacing:17.253972px;}
.ws1f{word-spacing:19.783764px;}
.ws45{word-spacing:21.957804px;}
.ws37{word-spacing:25.185924px;}
.ws3b{word-spacing:26.246592px;}
.ws28{word-spacing:26.977860px;}
.ws26{word-spacing:28.058292px;}
._26{margin-left:-15.524820px;}
._19{margin-left:-9.661500px;}
._1e{margin-left:-6.324480px;}
._1d{margin-left:-5.171580px;}
._1{margin-left:-1.044000px;}
._0{width:1.054080px;}
._4{width:2.160864px;}
._f{width:3.564108px;}
._6{width:5.020056px;}
._b{width:6.100488px;}
._a{width:7.207272px;}
._5{width:8.617104px;}
._7{width:9.618480px;}
._d{width:11.173248px;}
._e{width:12.583080px;}
._10{width:14.091732px;}
._8{width:15.119460px;}
._9{width:16.364592px;}
._1a{width:17.379144px;}
._14{width:19.513656px;}
._12{width:21.009132px;}
._11{width:22.010508px;}
._13{width:23.169996px;}
._3{width:24.560064px;}
._2{width:25.699788px;}
._16{width:26.977860px;}
._c{width:28.776384px;}
._17{width:29.962224px;}
._18{width:32.755536px;}
._2d{width:38.506860px;}
._15{width:60.820416px;}
._28{width:85.166172px;}
._25{width:90.881460px;}
._20{width:102.087648px;}
._2b{width:107.588628px;}
._29{width:111.900276px;}
._21{width:135.719388px;}
._1c{width:165.958308px;}
._1b{width:178.561152px;}
._1f{width:194.036364px;}
._23{width:238.749120px;}
._27{width:593.216460px;}
._22{width:719.356896px;}
._2c{width:746.762976px;}
._24{width:1016.633808px;}
._2a{width:1044.128520px;}
._2e{width:1108.556172px;}
._32{width:2047.725360px;}
._31{width:2104.245360px;}
._30{width:2175.525360px;}
._2f{width:2194.892136px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs2{font-size:36.000000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:51.330000px;}
.y1f{bottom:51.690450px;}
.y130{bottom:52.860000px;}
.y60{bottom:91.292943px;}
.y1e{bottom:96.600996px;}
.yd0{bottom:106.229469px;}
.yae{bottom:106.321818px;}
.y8f{bottom:112.351026px;}
.y131{bottom:114.150150px;}
.y5f{bottom:119.642754px;}
.y40{bottom:122.793006px;}
.yf3{bottom:131.787588px;}
.y1d{bottom:134.040600px;}
.ycf{bottom:134.669865px;}
.y124{bottom:139.711341px;}
.y8e{bottom:140.791422px;}
.yad{bottom:143.852007px;}
.y5e{bottom:148.172088px;}
.y3f{bottom:151.233402px;}
.yf2{bottom:160.227984px;}
.y8d{bottom:169.231818px;}
.yac{bottom:172.201818px;}
.yce{bottom:172.290639px;}
.y5d{bottom:176.612484px;}
.y123{bottom:177.150945px;}
.y1c{bottom:178.411449px;}
.y3e{bottom:179.673798px;}
.yf1{bottom:188.668380px;}
.y12a{bottom:188.850000px;}
.y8c{bottom:197.672214px;}
.ycd{bottom:200.640450px;}
.yab{bottom:200.731152px;}
.y5c{bottom:205.052880px;}
.y122{bottom:214.590549px;}
.y1b{bottom:215.851053px;}
.yf0{bottom:217.108776px;}
.y3d{bottom:217.203987px;}
.y8b{bottom:226.112610px;}
.ycc{bottom:229.170945px;}
.yaa{bottom:238.170756px;}
.y5b{bottom:242.583069px;}
.yef{bottom:245.549172px;}
.y121{bottom:252.030153px;}
.y1a{bottom:253.290657px;}
.y8a{bottom:254.641944px;}
.y3c{bottom:254.734176px;}
.ycb{bottom:266.610549px;}
.y129{bottom:269.310000px;}
.y5a{bottom:271.023465px;}
.y12f{bottom:273.630000px;}
.yee{bottom:274.078506px;}
.ya9{bottom:275.610360px;}
.y89{bottom:283.082340px;}
.y3b{bottom:283.083987px;}
.y120{bottom:285.960000px;}
.y19{bottom:290.730261px;}
.yed{bottom:302.518902px;}
.yca{bottom:304.050153px;}
.y10b{bottom:306.935841px;}
.y59{bottom:308.553654px;}
.y88{bottom:311.522736px;}
.y3a{bottom:311.524383px;}
.ya8{bottom:313.140549px;}
.y18{bottom:328.260450px;}
.yc9{bottom:332.399964px;}
.y58{bottom:336.903465px;}
.yec{bottom:340.049091px;}
.ya7{bottom:341.490360px;}
.y10a{bottom:344.375445px;}
.y87{bottom:349.052925px;}
.y39{bottom:349.054572px;}
.yc8{bottom:360.929298px;}
.yeb{bottom:368.398902px;}
.ya6{bottom:370.019694px;}
.y17{bottom:372.630450px;}
.y57{bottom:374.433654px;}
.y86{bottom:377.402736px;}
.y109{bottom:381.815049px;}
.y38{bottom:386.494176px;}
.yc7{bottom:389.369694px;}
.yea{bottom:396.928236px;}
.y85{bottom:405.932070px;}
.ya5{bottom:407.459298px;}
.y56{bottom:411.873258px;}
.y37{bottom:414.934572px;}
.y16{bottom:416.820450px;}
.yc6{bottom:417.810090px;}
.y108{bottom:419.345238px;}
.ye9{bottom:425.368632px;}
.y84{bottom:434.372466px;}
.y11e{bottom:441.120207px;}
.ya4{bottom:444.989487px;}
.yc5{bottom:446.250486px;}
.y55{bottom:449.312862px;}
.y36{bottom:452.464761px;}
.ye8{bottom:453.809028px;}
.y107{bottom:456.784842px;}
.y15{bottom:461.010450px;}
.y83{bottom:462.812862px;}
.ya3{bottom:473.339298px;}
.yc4{bottom:474.779820px;}
.y11d{bottom:478.650396px;}
.y35{bottom:480.814572px;}
.ye7{bottom:482.249424px;}
.y54{bottom:486.752466px;}
.y82{bottom:491.342196px;}
.y106{bottom:494.224446px;}
.ya2{bottom:501.868632px;}
.y14{bottom:505.200600px;}
.y34{bottom:509.343906px;}
.ye6{bottom:510.689820px;}
.yc3{bottom:512.400594px;}
.y11c{bottom:516.090000px;}
.y53{bottom:524.192070px;}
.y81{bottom:528.781800px;}
.y105{bottom:531.664050px;}
.ye5{bottom:539.219154px;}
.ya1{bottom:539.398821px;}
.yc2{bottom:540.750405px;}
.y33{bottom:546.783510px;}
.y11b{bottom:547.770000px;}
.y13{bottom:549.480450px;}
.y11a{bottom:560.820000px;}
.y52{bottom:561.722259px;}
.y80{bottom:566.311989px;}
.ye4{bottom:567.659550px;}
.ya0{bottom:567.748632px;}
.y104{bottom:569.194239px;}
.yc1{bottom:578.280594px;}
.y119{bottom:582.780000px;}
.y32{bottom:584.313699px;}
.y12{bottom:593.670450px;}
.y7f{bottom:594.661800px;}
.y6f{bottom:597.719091px;}
.y51{bottom:599.161863px;}
.y9f{bottom:605.188236px;}
.ye3{bottom:605.189739px;}
.y103{bottom:606.633843px;}
.yc0{bottom:606.720990px;}
.y31{bottom:612.663510px;}
.y118{bottom:618.959955px;}
.y7e{bottom:623.191134px;}
.y6e{bottom:626.159487px;}
.ye2{bottom:633.539550px;}
.y50{bottom:636.692052px;}
.y11{bottom:637.860450px;}
.y9e{bottom:642.718425px;}
.y102{bottom:644.073447px;}
.ybf{bottom:644.160594px;}
.y30{bottom:650.193699px;}
.y6d{bottom:654.599883px;}
.y117{bottom:659.370747px;}
.y7d{bottom:660.630738px;}
.ye1{bottom:662.068884px;}
.y4f{bottom:665.041863px;}
.y12e{bottom:669.360018px;}
.y128{bottom:669.360603px;}
.y9d{bottom:671.158821px;}
.y2f{bottom:678.543510px;}
.y101{bottom:681.513051px;}
.ybe{bottom:681.600198px;}
.y10{bottom:682.050450px;}
.y6c{bottom:683.040279px;}
.y7c{bottom:689.071134px;}
.ye0{bottom:690.509280px;}
.y9c{bottom:699.599217px;}
.y116{bottom:699.870477px;}
.y4e{bottom:702.572052px;}
.y12d{bottom:706.890207px;}
.y127{bottom:706.890792px;}
.y2e{bottom:707.072844px;}
.ybd{bottom:709.950009px;}
.y7b{bottom:717.511530px;}
.ydf{bottom:718.949676px;}
.y100{bottom:718.952655px;}
.y6b{bottom:720.570468px;}
.yf{bottom:726.330450px;}
.y9b{bottom:728.039613px;}
.y4d{bottom:731.012448px;}
.ybc{bottom:738.390405px;}
.y115{bottom:740.370207px;}
.y12c{bottom:744.329811px;}
.y126{bottom:744.330396px;}
.y2d{bottom:744.603033px;}
.ye{bottom:754.680450px;}
.y7a{bottom:754.951134px;}
.yde{bottom:756.479865px;}
.y9a{bottom:756.480009px;}
.yff{bottom:756.482844px;}
.y6a{bottom:758.010072px;}
.ybb{bottom:766.830801px;}
.y4c{bottom:768.542637px;}
.y2c{bottom:772.952844px;}
.y114{bottom:777.809811px;}
.y125{bottom:781.770000px;}
.y12b{bottom:781.860000px;}
.y99{bottom:784.920405px;}
.y69{bottom:786.450468px;}
.y79{bottom:792.481323px;}
.y112{bottom:793.110600px;}
.ydd{bottom:793.919469px;}
.yfe{bottom:793.922448px;}
.yba{bottom:795.360135px;}
.y4b{bottom:796.892448px;}
.yd{bottom:798.870261px;}
.y2b{bottom:801.482178px;}
.y98{bottom:813.449739px;}
.y113{bottom:815.340000px;}
.y78{bottom:820.921719px;}
.yb9{bottom:823.800531px;}
.y68{bottom:823.980657px;}
.yfd{bottom:831.362052px;}
.ydc{bottom:831.540243px;}
.y4a{bottom:834.332052px;}
.yc{bottom:836.400450px;}
.y111{bottom:837.300639px;}
.y2a{bottom:838.921782px;}
.y97{bottom:841.890135px;}
.y77{bottom:849.362115px;}
.y67{bottom:852.330468px;}
.ydb{bottom:859.890054px;}
.yb8{bottom:861.421305px;}
.y110{bottom:865.650450px;}
.yfc{bottom:868.801656px;}
.y96{bottom:870.330531px;}
.y49{bottom:871.862241px;}
.yb{bottom:874.020450px;}
.y29{bottom:876.361386px;}
.y76{bottom:877.802511px;}
.ya{bottom:887.160600px;}
.yda{bottom:888.330450px;}
.yb7{bottom:889.771116px;}
.y66{bottom:889.860657px;}
.y75{bottom:906.242907px;}
.yfb{bottom:906.331845px;}
.y95{bottom:907.860720px;}
.y9{bottom:909.120600px;}
.y48{bottom:909.301845px;}
.y10f{bottom:910.020639px;}
.y28{bottom:913.891575px;}
.yd9{bottom:916.860513px;}
.yb6{bottom:918.300450px;}
.y65{bottom:927.390846px;}
.y8{bottom:931.080600px;}
.y74{bottom:934.772241px;}
.y10e{bottom:938.370450px;}
.y27{bottom:942.241386px;}
.yfa{bottom:943.771449px;}
.y94{bottom:945.390909px;}
.y47{bottom:946.741449px;}
.y7{bottom:953.040600px;}
.yd8{bottom:954.300117px;}
.y64{bottom:955.740657px;}
.yb5{bottom:955.741719px;}
.y26{bottom:970.681782px;}
.y73{bottom:972.211845px;}
.y93{bottom:973.740720px;}
.yf9{bottom:981.301638px;}
.y46{bottom:984.181053px;}
.y10d{bottom:986.790600px;}
.y6{bottom:989.222052px;}
.yd7{bottom:991.739721px;}
.yb4{bottom:993.181323px;}
.y25{bottom:999.211116px;}
.y92{bottom:1002.181116px;}
.y72{bottom:1009.651449px;}
.yf8{bottom:1011.180909px;}
.yd6{bottom:1020.089532px;}
.y45{bottom:1021.711242px;}
.y24{bottom:1027.651512px;}
.y5{bottom:1029.631197px;}
.yb3{bottom:1030.711512px;}
.y10c{bottom:1039.260450px;}
.yf7{bottom:1039.530720px;}
.y91{bottom:1039.711305px;}
.y71{bottom:1047.091053px;}
.yd5{bottom:1048.529928px;}
.y63{bottom:1050.151638px;}
.y23{bottom:1056.091908px;}
.yb2{bottom:1059.061323px;}
.y44{bottom:1059.150846px;}
.yf6{bottom:1067.971116px;}
.y90{bottom:1068.061116px;}
.y4{bottom:1070.130927px;}
.yd4{bottom:1076.970324px;}
.y70{bottom:1084.530657px;}
.y22{bottom:1084.621242px;}
.yb1{bottom:1087.590657px;}
.y62{bottom:1087.591242px;}
.yf5{bottom:1096.500450px;}
.y43{bottom:1096.590450px;}
.yd3{bottom:1105.499658px;}
.y3{bottom:1110.630657px;}
.y21{bottom:1122.060846px;}
.yb0{bottom:1125.030261px;}
.y61{bottom:1125.030846px;}
.yd2{bottom:1133.940054px;}
.yf4{bottom:1134.030639px;}
.y42{bottom:1134.120639px;}
.y2{bottom:1148.070261px;}
.y20{bottom:1159.500450px;}
.yd1{bottom:1162.380450px;}
.y41{bottom:1162.470450px;}
.yaf{bottom:1162.560450px;}
.y1{bottom:1185.600450px;}
.h4{height:23.994141px;}
.h1{height:59.060391px;}
.h3{height:59.378906px;}
.h2{height:59.478574px;}
.h6{height:68.710781px;}
.ha{height:72.083672px;}
.h5{height:72.443672px;}
.h7{height:115.941183px;}
.h9{height:892.500000px;}
.h8{height:892.830000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:42.465750px;}
.x6{left:63.810000px;}
.xb{left:85.035900px;}
.xc{left:86.925750px;}
.x7{left:93.510000px;}
.x1{left:106.380000px;}
.x3{left:132.120000px;}
.x2{left:133.560000px;}
.x4{left:145.800000px;}
.x9{left:159.479280px;}
.xd{left:185.025750px;}
.x8{left:186.570783px;}
.xa{left:216.900288px;}
.x5{left:398.610000px;}
.x13{left:523.515750px;}
.xf{left:607.845750px;}
.x10{left:632.595750px;}
.x11{left:646.725750px;}
.x12{left:664.455750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.240000pt;}
.v2{vertical-align:50.560704pt;}
.ls2e{letter-spacing:-0.269376pt;}
.ls23{letter-spacing:-0.165664pt;}
.ls2c{letter-spacing:-0.134688pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls20{letter-spacing:-0.044800pt;}
.ls35{letter-spacing:-0.040992pt;}
.ls34{letter-spacing:-0.038400pt;}
.ls21{letter-spacing:-0.035136pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls18{letter-spacing:-0.029280pt;}
.ls22{letter-spacing:-0.026720pt;}
.ls1f{letter-spacing:-0.019200pt;}
.ls1b{letter-spacing:-0.012800pt;}
.ls29{letter-spacing:-0.011712pt;}
.ls19{letter-spacing:-0.006400pt;}
.ls2f{letter-spacing:-0.005856pt;}
.ls17{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.005856pt;}
.ls5{letter-spacing:0.006400pt;}
.ls32{letter-spacing:0.008512pt;}
.ls25{letter-spacing:0.011712pt;}
.lsd{letter-spacing:0.017568pt;}
.ls4{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.023424pt;}
.lsb{letter-spacing:0.025600pt;}
.lsf{letter-spacing:0.029280pt;}
.ls3{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.035136pt;}
.ls7{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.040992pt;}
.ls11{letter-spacing:0.042560pt;}
.lse{letter-spacing:0.046848pt;}
.ls9{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.052704pt;}
.lsa{letter-spacing:0.057600pt;}
.ls10{letter-spacing:0.058560pt;}
.ls8{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.064416pt;}
.ls27{letter-spacing:0.070272pt;}
.ls14{letter-spacing:0.076128pt;}
.ls26{letter-spacing:0.081984pt;}
.ls28{letter-spacing:0.087840pt;}
.ls1d{letter-spacing:0.089600pt;}
.ls16{letter-spacing:0.093696pt;}
.ls2b{letter-spacing:0.099552pt;}
.ls1a{letter-spacing:0.108800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.181536pt;}
.lsc{letter-spacing:0.256000pt;}
.ls30{letter-spacing:4.848768pt;}
.ls2d{letter-spacing:9.012384pt;}
.ls13{letter-spacing:172.529472pt;}
.ls37{letter-spacing:2012.200853pt;}
.ls31{letter-spacing:2393.000320pt;}
.ls24{letter-spacing:2416.680320pt;}
.ls36{letter-spacing:3859.239787pt;}
.ws1{word-spacing:-64.000000pt;}
.ws19{word-spacing:-16.355808pt;}
.ws18{word-spacing:-16.349952pt;}
.ws17{word-spacing:-16.344096pt;}
.ws1a{word-spacing:-16.326528pt;}
.ws12{word-spacing:-16.297248pt;}
.ws49{word-spacing:-16.238688pt;}
.ws14{word-spacing:-14.829600pt;}
.ws15{word-spacing:-14.690656pt;}
.ws13{word-spacing:-11.874240pt;}
.ws8{word-spacing:-0.192000pt;}
.ws5{word-spacing:-0.172800pt;}
.wsa{word-spacing:-0.153600pt;}
.wse{word-spacing:-0.121600pt;}
.wsd{word-spacing:-0.115200pt;}
.wsb{word-spacing:-0.102400pt;}
.ws2{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.089600pt;}
.ws3{word-spacing:-0.083200pt;}
.ws4{word-spacing:-0.070400pt;}
.ws7{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.057600pt;}
.ws6{word-spacing:-0.051200pt;}
.ws10{word-spacing:-0.044800pt;}
.ws9{word-spacing:-0.032000pt;}
.ws31{word-spacing:-0.029280pt;}
.ws48{word-spacing:-0.025600pt;}
.ws20{word-spacing:-0.023424pt;}
.ws11{word-spacing:-0.019200pt;}
.ws2f{word-spacing:-0.017568pt;}
.ws47{word-spacing:-0.011712pt;}
.ws30{word-spacing:-0.005856pt;}
.ws16{word-spacing:0.000000pt;}
.wsc{word-spacing:0.019200pt;}
.ws42{word-spacing:0.298656pt;}
.ws2e{word-spacing:0.609024pt;}
.ws29{word-spacing:0.614880pt;}
.ws21{word-spacing:1.241472pt;}
.ws25{word-spacing:1.575264pt;}
.ws34{word-spacing:1.903200pt;}
.ws23{word-spacing:2.529792pt;}
.ws43{word-spacing:2.535648pt;}
.ws32{word-spacing:2.851872pt;}
.ws24{word-spacing:3.168096pt;}
.ws33{word-spacing:3.173952pt;}
.ws22{word-spacing:3.484320pt;}
.ws41{word-spacing:4.450560pt;}
.ws35{word-spacing:4.766784pt;}
.ws44{word-spacing:5.088864pt;}
.ws1e{word-spacing:5.416800pt;}
.ws27{word-spacing:6.699264pt;}
.ws1d{word-spacing:7.975872pt;}
.ws40{word-spacing:8.608320pt;}
.ws2b{word-spacing:8.614176pt;}
.ws36{word-spacing:8.936256pt;}
.ws1c{word-spacing:8.942112pt;}
.ws39{word-spacing:10.207008pt;}
.ws38{word-spacing:10.534944pt;}
.ws3a{word-spacing:10.851168pt;}
.ws2c{word-spacing:11.167392pt;}
.ws2d{word-spacing:11.184960pt;}
.ws3f{word-spacing:11.483616pt;}
.ws3e{word-spacing:12.455712pt;}
.ws3d{word-spacing:13.088160pt;}
.ws1b{word-spacing:13.732320pt;}
.ws46{word-spacing:15.014784pt;}
.ws3c{word-spacing:15.331008pt;}
.ws2a{word-spacing:15.336864pt;}
.ws1f{word-spacing:17.585568pt;}
.ws45{word-spacing:19.518048pt;}
.ws37{word-spacing:22.387488pt;}
.ws3b{word-spacing:23.330304pt;}
.ws28{word-spacing:23.980320pt;}
.ws26{word-spacing:24.940704pt;}
._26{margin-left:-13.799840pt;}
._19{margin-left:-8.588000pt;}
._1e{margin-left:-5.621760pt;}
._1d{margin-left:-4.596960pt;}
._1{margin-left:-0.928000pt;}
._0{width:0.936960pt;}
._4{width:1.920768pt;}
._f{width:3.168096pt;}
._6{width:4.462272pt;}
._b{width:5.422656pt;}
._a{width:6.406464pt;}
._5{width:7.659648pt;}
._7{width:8.549760pt;}
._d{width:9.931776pt;}
._e{width:11.184960pt;}
._10{width:12.525984pt;}
._8{width:13.439520pt;}
._9{width:14.546304pt;}
._1a{width:15.448128pt;}
._14{width:17.345472pt;}
._12{width:18.674784pt;}
._11{width:19.564896pt;}
._13{width:20.595552pt;}
._3{width:21.831168pt;}
._2{width:22.844256pt;}
._16{width:23.980320pt;}
._c{width:25.579008pt;}
._17{width:26.633088pt;}
._18{width:29.116032pt;}
._2d{width:34.228320pt;}
._15{width:54.062592pt;}
._28{width:75.703264pt;}
._25{width:80.783520pt;}
._20{width:90.744576pt;}
._2b{width:95.634336pt;}
._29{width:99.466912pt;}
._21{width:120.639456pt;}
._1c{width:147.518496pt;}
._1b{width:158.721024pt;}
._1f{width:172.476768pt;}
._23{width:212.221440pt;}
._27{width:527.303520pt;}
._22{width:639.428352pt;}
._2c{width:663.789312pt;}
._24{width:903.674496pt;}
._2a{width:928.114240pt;}
._2e{width:985.383264pt;}
._32{width:1820.200320pt;}
._31{width:1870.440320pt;}
._30{width:1933.800320pt;}
._2f{width:1951.015232pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:45.626667pt;}
.y1f{bottom:45.947067pt;}
.y130{bottom:46.986667pt;}
.y60{bottom:81.149283pt;}
.y1e{bottom:85.867552pt;}
.yd0{bottom:94.426195pt;}
.yae{bottom:94.508283pt;}
.y8f{bottom:99.867579pt;}
.y131{bottom:101.466800pt;}
.y5f{bottom:106.349115pt;}
.y40{bottom:109.149339pt;}
.yf3{bottom:117.144523pt;}
.y1d{bottom:119.147200pt;}
.ycf{bottom:119.706547pt;}
.y124{bottom:124.187859pt;}
.y8e{bottom:125.147931pt;}
.yad{bottom:127.868451pt;}
.y5e{bottom:131.708523pt;}
.y3f{bottom:134.429691pt;}
.yf2{bottom:142.424875pt;}
.y8d{bottom:150.428283pt;}
.yac{bottom:153.068283pt;}
.yce{bottom:153.147235pt;}
.y5d{bottom:156.988875pt;}
.y123{bottom:157.467507pt;}
.y1c{bottom:158.587955pt;}
.y3e{bottom:159.710043pt;}
.yf1{bottom:167.705227pt;}
.y12a{bottom:167.866667pt;}
.y8c{bottom:175.708635pt;}
.ycd{bottom:178.347067pt;}
.yab{bottom:178.427691pt;}
.y5c{bottom:182.269227pt;}
.y122{bottom:190.747155pt;}
.y1b{bottom:191.867603pt;}
.yf0{bottom:192.985579pt;}
.y3d{bottom:193.070211pt;}
.y8b{bottom:200.988987pt;}
.ycc{bottom:203.707507pt;}
.yaa{bottom:211.707339pt;}
.y5b{bottom:215.629395pt;}
.yef{bottom:218.265931pt;}
.y121{bottom:224.026803pt;}
.y1a{bottom:225.147251pt;}
.y8a{bottom:226.348395pt;}
.y3c{bottom:226.430379pt;}
.ycb{bottom:236.987155pt;}
.y129{bottom:239.386667pt;}
.y5a{bottom:240.909747pt;}
.y12f{bottom:243.226667pt;}
.yee{bottom:243.625339pt;}
.ya9{bottom:244.986987pt;}
.y89{bottom:251.628747pt;}
.y3b{bottom:251.630211pt;}
.y120{bottom:254.186667pt;}
.y19{bottom:258.426899pt;}
.yed{bottom:268.905691pt;}
.yca{bottom:270.266803pt;}
.y10b{bottom:272.831859pt;}
.y59{bottom:274.269915pt;}
.y88{bottom:276.909099pt;}
.y3a{bottom:276.910563pt;}
.ya8{bottom:278.347155pt;}
.y18{bottom:291.787067pt;}
.yc9{bottom:295.466635pt;}
.y58{bottom:299.469747pt;}
.yec{bottom:302.265859pt;}
.ya7{bottom:303.546987pt;}
.y10a{bottom:306.111507pt;}
.y87{bottom:310.269267pt;}
.y39{bottom:310.270731pt;}
.yc8{bottom:320.826043pt;}
.yeb{bottom:327.465691pt;}
.ya6{bottom:328.906395pt;}
.y17{bottom:331.227067pt;}
.y57{bottom:332.829915pt;}
.y86{bottom:335.469099pt;}
.y109{bottom:339.391155pt;}
.y38{bottom:343.550379pt;}
.yc7{bottom:346.106395pt;}
.yea{bottom:352.825099pt;}
.y85{bottom:360.828507pt;}
.ya5{bottom:362.186043pt;}
.y56{bottom:366.109563pt;}
.y37{bottom:368.830731pt;}
.y16{bottom:370.507067pt;}
.yc6{bottom:371.386747pt;}
.y108{bottom:372.751323pt;}
.ye9{bottom:378.105451pt;}
.y84{bottom:386.108859pt;}
.y11e{bottom:392.106851pt;}
.ya4{bottom:395.546211pt;}
.yc5{bottom:396.667099pt;}
.y55{bottom:399.389211pt;}
.y36{bottom:402.190899pt;}
.ye8{bottom:403.385803pt;}
.y107{bottom:406.030971pt;}
.y15{bottom:409.787067pt;}
.y83{bottom:411.389211pt;}
.ya3{bottom:420.746043pt;}
.yc4{bottom:422.026507pt;}
.y11d{bottom:425.467019pt;}
.y35{bottom:427.390731pt;}
.ye7{bottom:428.666155pt;}
.y54{bottom:432.668859pt;}
.y82{bottom:436.748619pt;}
.y106{bottom:439.310619pt;}
.ya2{bottom:446.105451pt;}
.y14{bottom:449.067200pt;}
.y34{bottom:452.750139pt;}
.ye6{bottom:453.946507pt;}
.yc3{bottom:455.467195pt;}
.y11c{bottom:458.746667pt;}
.y53{bottom:465.948507pt;}
.y81{bottom:470.028267pt;}
.y105{bottom:472.590267pt;}
.ye5{bottom:479.305915pt;}
.ya1{bottom:479.465619pt;}
.yc2{bottom:480.667027pt;}
.y33{bottom:486.029787pt;}
.y11b{bottom:486.906667pt;}
.y13{bottom:488.427067pt;}
.y11a{bottom:498.506667pt;}
.y52{bottom:499.308675pt;}
.y80{bottom:503.388435pt;}
.ye4{bottom:504.586267pt;}
.ya0{bottom:504.665451pt;}
.y104{bottom:505.950435pt;}
.yc1{bottom:514.027195pt;}
.y119{bottom:518.026667pt;}
.y32{bottom:519.389955pt;}
.y12{bottom:527.707067pt;}
.y7f{bottom:528.588267pt;}
.y6f{bottom:531.305859pt;}
.y51{bottom:532.588323pt;}
.y9f{bottom:537.945099pt;}
.ye3{bottom:537.946435pt;}
.y103{bottom:539.230083pt;}
.yc0{bottom:539.307547pt;}
.y31{bottom:544.589787pt;}
.y118{bottom:550.186627pt;}
.y7e{bottom:553.947675pt;}
.y6e{bottom:556.586211pt;}
.ye2{bottom:563.146267pt;}
.y50{bottom:565.948491pt;}
.y11{bottom:566.987067pt;}
.y9e{bottom:571.305267pt;}
.y102{bottom:572.509731pt;}
.ybf{bottom:572.587195pt;}
.y30{bottom:577.949955pt;}
.y6d{bottom:581.866563pt;}
.y117{bottom:586.107331pt;}
.y7d{bottom:587.227323pt;}
.ye1{bottom:588.505675pt;}
.y4f{bottom:591.148323pt;}
.y12e{bottom:594.986683pt;}
.y128{bottom:594.987203pt;}
.y9d{bottom:596.585619pt;}
.y2f{bottom:603.149787pt;}
.y101{bottom:605.789379pt;}
.ybe{bottom:605.866843pt;}
.y10{bottom:606.267067pt;}
.y6c{bottom:607.146915pt;}
.y7c{bottom:612.507675pt;}
.ye0{bottom:613.786027pt;}
.y9c{bottom:621.865971pt;}
.y116{bottom:622.107091pt;}
.y4e{bottom:624.508491pt;}
.y12d{bottom:628.346851pt;}
.y127{bottom:628.347371pt;}
.y2e{bottom:628.509195pt;}
.ybd{bottom:631.066675pt;}
.y7b{bottom:637.788027pt;}
.ydf{bottom:639.066379pt;}
.y100{bottom:639.069027pt;}
.y6b{bottom:640.507083pt;}
.yf{bottom:645.627067pt;}
.y9b{bottom:647.146323pt;}
.y4d{bottom:649.788843pt;}
.ybc{bottom:656.347027pt;}
.y115{bottom:658.106851pt;}
.y12c{bottom:661.626499pt;}
.y126{bottom:661.627019pt;}
.y2d{bottom:661.869363pt;}
.ye{bottom:670.827067pt;}
.y7a{bottom:671.067675pt;}
.yde{bottom:672.426547pt;}
.y9a{bottom:672.426675pt;}
.yff{bottom:672.429195pt;}
.y6a{bottom:673.786731pt;}
.ybb{bottom:681.627379pt;}
.y4c{bottom:683.149011pt;}
.y2c{bottom:687.069195pt;}
.y114{bottom:691.386499pt;}
.y125{bottom:694.906667pt;}
.y12b{bottom:694.986667pt;}
.y99{bottom:697.707027pt;}
.y69{bottom:699.067083pt;}
.y79{bottom:704.427843pt;}
.y112{bottom:704.987200pt;}
.ydd{bottom:705.706195pt;}
.yfe{bottom:705.708843pt;}
.yba{bottom:706.986787pt;}
.y4b{bottom:708.348843pt;}
.yd{bottom:710.106899pt;}
.y2b{bottom:712.428603pt;}
.y98{bottom:723.066435pt;}
.y113{bottom:724.746667pt;}
.y78{bottom:729.708195pt;}
.yb9{bottom:732.267139pt;}
.y68{bottom:732.427251pt;}
.yfd{bottom:738.988491pt;}
.ydc{bottom:739.146883pt;}
.y4a{bottom:741.628491pt;}
.yc{bottom:743.467067pt;}
.y111{bottom:744.267235pt;}
.y2a{bottom:745.708251pt;}
.y97{bottom:748.346787pt;}
.y77{bottom:754.988547pt;}
.y67{bottom:757.627083pt;}
.ydb{bottom:764.346715pt;}
.yb8{bottom:765.707827pt;}
.y110{bottom:769.467067pt;}
.yfc{bottom:772.268139pt;}
.y96{bottom:773.627139pt;}
.y49{bottom:774.988659pt;}
.yb{bottom:776.907067pt;}
.y29{bottom:778.987899pt;}
.y76{bottom:780.268899pt;}
.ya{bottom:788.587200pt;}
.yda{bottom:789.627067pt;}
.yb7{bottom:790.907659pt;}
.y66{bottom:790.987251pt;}
.y75{bottom:805.549251pt;}
.yfb{bottom:805.628307pt;}
.y95{bottom:806.987307pt;}
.y9{bottom:808.107200pt;}
.y48{bottom:808.268307pt;}
.y10f{bottom:808.907235pt;}
.y28{bottom:812.348067pt;}
.yd9{bottom:814.987123pt;}
.yb6{bottom:816.267067pt;}
.y65{bottom:824.347419pt;}
.y8{bottom:827.627200pt;}
.y74{bottom:830.908659pt;}
.y10e{bottom:834.107067pt;}
.y27{bottom:837.547899pt;}
.yfa{bottom:838.907955pt;}
.y94{bottom:840.347475pt;}
.y47{bottom:841.547955pt;}
.y7{bottom:847.147200pt;}
.yd8{bottom:848.266771pt;}
.y64{bottom:849.547251pt;}
.yb5{bottom:849.548195pt;}
.y26{bottom:862.828251pt;}
.y73{bottom:864.188307pt;}
.y93{bottom:865.547307pt;}
.yf9{bottom:872.268123pt;}
.y46{bottom:874.827603pt;}
.y10d{bottom:877.147200pt;}
.y6{bottom:879.308491pt;}
.yd7{bottom:881.546419pt;}
.yb4{bottom:882.827843pt;}
.y25{bottom:888.187659pt;}
.y92{bottom:890.827659pt;}
.y72{bottom:897.467955pt;}
.yf8{bottom:898.827475pt;}
.yd6{bottom:906.746251pt;}
.y45{bottom:908.187771pt;}
.y24{bottom:913.468011pt;}
.y5{bottom:915.227731pt;}
.yb3{bottom:916.188011pt;}
.y10c{bottom:923.787067pt;}
.yf7{bottom:924.027307pt;}
.y91{bottom:924.187827pt;}
.y71{bottom:930.747603pt;}
.yd5{bottom:932.026603pt;}
.y63{bottom:933.468123pt;}
.y23{bottom:938.748363pt;}
.yb2{bottom:941.387843pt;}
.y44{bottom:941.467419pt;}
.yf6{bottom:949.307659pt;}
.y90{bottom:949.387659pt;}
.y4{bottom:951.227491pt;}
.yd4{bottom:957.306955pt;}
.y70{bottom:964.027251pt;}
.y22{bottom:964.107771pt;}
.yb1{bottom:966.747251pt;}
.y62{bottom:966.747771pt;}
.yf5{bottom:974.667067pt;}
.y43{bottom:974.747067pt;}
.yd3{bottom:982.666363pt;}
.y3{bottom:987.227251pt;}
.y21{bottom:997.387419pt;}
.yb0{bottom:1000.026899pt;}
.y61{bottom:1000.027419pt;}
.yd2{bottom:1007.946715pt;}
.yf4{bottom:1008.027235pt;}
.y42{bottom:1008.107235pt;}
.y2{bottom:1020.506899pt;}
.y20{bottom:1030.667067pt;}
.yd1{bottom:1033.227067pt;}
.y41{bottom:1033.307067pt;}
.yaf{bottom:1033.387067pt;}
.y1{bottom:1053.867067pt;}
.h4{height:21.328125pt;}
.h1{height:52.498125pt;}
.h3{height:52.781250pt;}
.h2{height:52.869844pt;}
.h6{height:61.076250pt;}
.ha{height:64.074375pt;}
.h5{height:64.394375pt;}
.h7{height:103.058829pt;}
.h9{height:793.333333pt;}
.h8{height:793.626667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:37.747333pt;}
.x6{left:56.720000pt;}
.xb{left:75.587467pt;}
.xc{left:77.267333pt;}
.x7{left:83.120000pt;}
.x1{left:94.560000pt;}
.x3{left:117.440000pt;}
.x2{left:118.720000pt;}
.x4{left:129.600000pt;}
.x9{left:141.759360pt;}
.xd{left:164.467333pt;}
.x8{left:165.840696pt;}
.xa{left:192.800256pt;}
.x5{left:354.320000pt;}
.x13{left:465.347333pt;}
.xf{left:540.307333pt;}
.x10{left:562.307333pt;}
.x11{left:574.867333pt;}
.x12{left:590.627333pt;}
}




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