
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ef2c596d88a0e600cc7d8008.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_2e6bac858edcd61cd75123ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_05e4a5991c7861023ca68503.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f88a2bbaa1416a13293d4fa3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_a2e6610ffc160fdf6b794b76.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_71fe3bbc652b3920b30ece81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_2a449d815c6dd33ea396bf63.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_de61d328dc32247c47ede3e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b0552591d92832611a2f9389.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_32398910b52d0a2ee6916567.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-69.840000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.247200px;}
.ls12{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls16{letter-spacing:0.097800px;}
.ls8{letter-spacing:0.100800px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.211680px;}
.ls11{letter-spacing:0.211800px;}
.lsf{letter-spacing:0.237600px;}
.ls18{letter-spacing:0.317400px;}
.ls17{letter-spacing:0.319680px;}
.ls14{letter-spacing:0.323400px;}
.ls15{letter-spacing:0.338400px;}
.ls1b{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351360px;}
.ls1a{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.385800px;}
.lsd{letter-spacing:0.666720px;}
.ls1e{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls1d{letter-spacing:47.466720px;}
.ls19{letter-spacing:81.306720px;}
.lse{letter-spacing:1169.040000px;}
.ls10{letter-spacing:1328.160000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.ws11{word-spacing:-13.504200px;}
.ws12{word-spacing:-13.490400px;}
.wse{word-spacing:-13.470600px;}
.wsf{word-spacing:-13.464600px;}
.wsb{word-spacing:-13.359000px;}
.ws10{word-spacing:-13.245000px;}
.ws5{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.111200px;}
.wsc{word-spacing:-13.093920px;}
.wsd{word-spacing:-12.900000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._2{margin-left:-2.876508px;}
._0{margin-left:-1.159200px;}
._1{width:1.179613px;}
._d{width:2.198122px;}
._5{width:3.198871px;}
._4{width:4.274513px;}
._8{width:5.756628px;}
._6{width:7.589400px;}
._7{width:8.802442px;}
._3{width:9.892800px;}
._c{width:11.832480px;}
._e{width:14.163120px;}
._f{width:15.179040px;}
._11{width:16.265721px;}
._9{width:17.270401px;}
._b{width:18.361907px;}
._10{width:19.422000px;}
._a{width:21.265138px;}
._15{width:22.969187px;}
._12{width:24.340307px;}
._13{width:25.593802px;}
._16{width:35.279747px;}
._17{width:36.592105px;}
._14{width:169.794227px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:7.740000px;}
.y8f{bottom:7.785000px;}
.y91{bottom:7.920000px;}
.y94{bottom:62.454000px;}
.y2{bottom:73.296000px;}
.y29{bottom:74.196000px;}
.y8d{bottom:89.865000px;}
.y1{bottom:101.376000px;}
.y97{bottom:109.836000px;}
.yf5{bottom:112.176000px;}
.y136{bottom:116.136000px;}
.y45{bottom:116.496000px;}
.yf4{bottom:129.636000px;}
.y135{bottom:133.776000px;}
.y6c{bottom:135.216000px;}
.y93{bottom:137.196000px;}
.yf3{bottom:147.276000px;}
.y44{bottom:151.950000px;}
.y111{bottom:153.750000px;}
.y134{bottom:160.230000px;}
.y96{bottom:164.370000px;}
.yf2{bottom:164.910000px;}
.yca{bottom:169.950000px;}
.y110{bottom:171.390000px;}
.y27{bottom:174.990000px;}
.y133{bottom:177.870000px;}
.yc9{bottom:182.010000px;}
.yf1{bottom:182.370000px;}
.y43{bottom:184.170000px;}
.y6b{bottom:188.310000px;}
.yb4{bottom:188.490000px;}
.y95{bottom:191.730000px;}
.y26{bottom:192.630000px;}
.y10f{bottom:198.030000px;}
.y132{bottom:204.330000px;}
.yc8{bottom:209.370000px;}
.y25{bottom:210.090000px;}
.y10e{bottom:215.670000px;}
.yf0{bottom:218.010000px;}
.y8c{bottom:219.090000px;}
.y131{bottom:221.970000px;}
.y6a{bottom:223.590000px;}
.yb3{bottom:224.130000px;}
.y24{bottom:227.730000px;}
.y10d{bottom:233.130000px;}
.yef{bottom:235.650000px;}
.yc7{bottom:236.730000px;}
.y69{bottom:241.230000px;}
.yb2{bottom:241.770000px;}
.y23{bottom:245.370000px;}
.y92{bottom:246.450000px;}
.y130{bottom:248.610000px;}
.yee{bottom:253.110000px;}
.y10c{bottom:259.770000px;}
.y22{bottom:263.010000px;}
.yc6{bottom:264.090000px;}
.y12f{bottom:266.250000px;}
.yed{bottom:270.750000px;}
.y90{bottom:273.810000px;}
.yb1{bottom:273.990000px;}
.y68{bottom:276.870000px;}
.y10b{bottom:277.410000px;}
.y21{bottom:280.470000px;}
.y12e{bottom:283.710000px;}
.yc5{bottom:291.270000px;}
.y67{bottom:294.510000px;}
.y20{bottom:298.110000px;}
.y8e{bottom:301.170000px;}
.y10a{bottom:303.870000px;}
.yec{bottom:306.390000px;}
.y12d{bottom:310.395000px;}
.y109{bottom:321.555000px;}
.yeb{bottom:324.075000px;}
.y1f{bottom:324.975000px;}
.y12c{bottom:328.035000px;}
.y8a{bottom:328.575000px;}
.yc4{bottom:340.095000px;}
.yea{bottom:341.535000px;}
.y66{bottom:347.475000px;}
.y108{bottom:348.015000px;}
.y12b{bottom:354.495000px;}
.y107{bottom:365.655000px;}
.y12a{bottom:372.135000px;}
.y1e{bottom:373.575000px;}
.yc3{bottom:375.735000px;}
.y89{bottom:377.175000px;}
.y65{bottom:382.935000px;}
.y106{bottom:383.295000px;}
.y129{bottom:389.775000px;}
.yc2{bottom:393.375000px;}
.ye9{bottom:394.815000px;}
.y64{bottom:400.575000px;}
.y105{bottom:410.115000px;}
.y1d{bottom:410.655000px;}
.yc1{bottom:410.835000px;}
.ye8{bottom:412.275000px;}
.y88{bottom:412.815000px;}
.y128{bottom:416.235000px;}
.y63{bottom:418.035000px;}
.y1c{bottom:428.295000px;}
.yc0{bottom:428.475000px;}
.ye7{bottom:429.915000px;}
.y87{bottom:430.455000px;}
.y127{bottom:433.875000px;}
.y62{bottom:444.675000px;}
.y1b{bottom:445.755000px;}
.ye6{bottom:447.555000px;}
.y126{bottom:451.515000px;}
.ybf{bottom:454.935000px;}
.y104{bottom:458.355000px;}
.y1a{bottom:463.395000px;}
.ye5{bottom:465.015000px;}
.y86{bottom:465.915000px;}
.y125{bottom:477.975000px;}
.y61{bottom:480.135000px;}
.y19{bottom:481.035000px;}
.ye4{bottom:482.655000px;}
.y85{bottom:483.555000px;}
.y103{bottom:485.355000px;}
.ybe{bottom:490.575000px;}
.y124{bottom:495.615000px;}
.y60{bottom:497.775000px;}
.y18{bottom:498.675000px;}
.y17{bottom:516.135000px;}
.ye3{bottom:518.295000px;}
.y84{bottom:519.195000px;}
.y123{bottom:522.255000px;}
.y102{bottom:522.615000px;}
.ybd{bottom:522.795000px;}
.yb0{bottom:524.775000px;}
.y5f{bottom:533.415000px;}
.y16{bottom:533.775000px;}
.ye2{bottom:535.935000px;}
.y83{bottom:536.835000px;}
.y122{bottom:539.895000px;}
.yaf{bottom:542.415000px;}
.y15{bottom:551.415000px;}
.ye1{bottom:553.395000px;}
.y82{bottom:554.295000px;}
.yae{bottom:560.055000px;}
.y121{bottom:566.355000px;}
.y14{bottom:568.875000px;}
.y5e{bottom:569.055000px;}
.ye0{bottom:571.035000px;}
.yad{bottom:577.695000px;}
.y120{bottom:584.025000px;}
.y13{bottom:586.545000px;}
.y5d{bottom:586.725000px;}
.ydf{bottom:588.705000px;}
.y81{bottom:589.965000px;}
.yac{bottom:595.185000px;}
.y12{bottom:604.185000px;}
.y101{bottom:606.165000px;}
.y80{bottom:607.605000px;}
.y11f{bottom:610.665000px;}
.y42{bottom:615.165000px;}
.y11{bottom:621.645000px;}
.y100{bottom:623.805000px;}
.yde{bottom:624.165000px;}
.y7f{bottom:625.065000px;}
.y11e{bottom:628.305000px;}
.y5c{bottom:630.825000px;}
.y41{bottom:632.805000px;}
.y10{bottom:639.285000px;}
.ydd{bottom:641.805000px;}
.y11d{bottom:645.765000px;}
.yab{bottom:648.465000px;}
.y40{bottom:650.445000px;}
.yf{bottom:656.925000px;}
.yff{bottom:659.265000px;}
.ydc{bottom:659.445000px;}
.y7e{bottom:660.705000px;}
.y5b{bottom:663.405000px;}
.yaa{bottom:665.925000px;}
.y11c{bottom:672.405000px;}
.y3f{bottom:676.905000px;}
.y7d{bottom:678.345000px;}
.ya9{bottom:683.565000px;}
.ye{bottom:683.745000px;}
.y11b{bottom:690.045000px;}
.yfe{bottom:694.545000px;}
.y5a{bottom:698.865000px;}
.ya8{bottom:701.205000px;}
.yfd{bottom:712.185000px;}
.y3e{bottom:712.545000px;}
.y7c{bottom:713.805000px;}
.y59{bottom:716.505000px;}
.ya7{bottom:727.845000px;}
.y3d{bottom:730.185000px;}
.y7b{bottom:731.445000px;}
.yd{bottom:731.985000px;}
.y58{bottom:734.145000px;}
.y3c{bottom:747.645000px;}
.y7a{bottom:749.085000px;}
.y57{bottom:751.785000px;}
.ya6{bottom:757.725000px;}
.y11a{bottom:760.605000px;}
.y3b{bottom:765.285000px;}
.yc{bottom:767.805000px;}
.ybc{bottom:769.245000px;}
.y119{bottom:778.245000px;}
.y3a{bottom:782.925000px;}
.y79{bottom:784.545000px;}
.ya5{bottom:785.085000px;}
.ybb{bottom:786.885000px;}
.y56{bottom:787.245000px;}
.y39{bottom:800.565000px;}
.ydb{bottom:800.925000px;}
.y78{bottom:802.185000px;}
.yb{bottom:803.805000px;}
.yba{bottom:804.525000px;}
.y55{bottom:804.885000px;}
.ya4{bottom:812.265000px;}
.y38{bottom:818.025000px;}
.yfc{bottom:818.385000px;}
.yda{bottom:818.565000px;}
.yb9{bottom:821.985000px;}
.y54{bottom:822.525000px;}
.yd9{bottom:836.025000px;}
.y77{bottom:837.825000px;}
.ya3{bottom:839.625000px;}
.ya{bottom:839.805000px;}
.y37{bottom:844.665000px;}
.yb8{bottom:848.625000px;}
.y118{bottom:848.985000px;}
.yd8{bottom:853.665000px;}
.y53{bottom:857.985000px;}
.y9{bottom:861.630000px;}
.y76{bottom:864.330000px;}
.y117{bottom:866.670000px;}
.ya2{bottom:867.030000px;}
.yd7{bottom:871.350000px;}
.y52{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y36{bottom:880.530000px;}
.yb7{bottom:884.130000px;}
.y116{bottom:884.310000px;}
.y51{bottom:893.310000px;}
.ya1{bottom:894.390000px;}
.y7{bottom:897.630000px;}
.y75{bottom:900.150000px;}
.yb6{bottom:901.770000px;}
.yd6{bottom:906.810000px;}
.y115{bottom:910.770000px;}
.y50{bottom:910.950000px;}
.yd5{bottom:924.450000px;}
.y4f{bottom:928.410000px;}
.y35{bottom:928.770000px;}
.y6{bottom:930.030000px;}
.yb5{bottom:933.990000px;}
.yd4{bottom:942.090000px;}
.ya0{bottom:943.170000px;}
.y4e{bottom:946.050000px;}
.y34{bottom:946.410000px;}
.y74{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y138{bottom:955.050000px;}
.yd3{bottom:959.550000px;}
.y33{bottom:964.050000px;}
.y73{bottom:966.210000px;}
.y4d{bottom:972.510000px;}
.y137{bottom:972.690000px;}
.yd2{bottom:977.190000px;}
.y9f{bottom:978.630000px;}
.yfb{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.y114{bottom:990.150000px;}
.y72{bottom:992.670000px;}
.yd1{bottom:994.830000px;}
.y9e{bottom:996.270000px;}
.yfa{bottom:999.150000px;}
.y32{bottom:999.510000px;}
.y4c{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y9d{bottom:1013.910000px;}
.yf9{bottom:1016.790000px;}
.y31{bottom:1017.150000px;}
.y4b{bottom:1025.790000px;}
.y71{bottom:1028.310000px;}
.yd0{bottom:1030.290000px;}
.y9c{bottom:1031.550000px;}
.yf8{bottom:1034.430000px;}
.y30{bottom:1034.790000px;}
.y4a{bottom:1043.430000px;}
.y70{bottom:1045.950000px;}
.ycf{bottom:1047.930000px;}
.y9b{bottom:1049.010000px;}
.yf7{bottom:1052.070000px;}
.y2f{bottom:1052.430000px;}
.y113{bottom:1060.890000px;}
.y49{bottom:1061.070000px;}
.y6f{bottom:1063.590000px;}
.yce{bottom:1065.570000px;}
.yf6{bottom:1069.530000px;}
.y2e{bottom:1070.070000px;}
.y9a{bottom:1075.650000px;}
.y48{bottom:1078.530000px;}
.y6e{bottom:1081.230000px;}
.ycd{bottom:1083.210000px;}
.y2d{bottom:1087.530000px;}
.y47{bottom:1096.170000px;}
.ycc{bottom:1100.670000px;}
.y2c{bottom:1105.170000px;}
.y6d{bottom:1107.690000px;}
.y99{bottom:1108.230000px;}
.y46{bottom:1113.810000px;}
.y112{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.ycb{bottom:1127.490000px;}
.y2a{bottom:1140.300000px;}
.y98{bottom:1143.180000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.460000px;}
.h12{height:26.496000px;}
.h13{height:26.640000px;}
.h16{height:26.676000px;}
.h2{height:29.717578px;}
.h8{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h15{height:41.974453px;}
.h10{height:50.597578px;}
.h7{height:51.998203px;}
.h9{height:56.084062px;}
.h5{height:57.636562px;}
.hd{height:59.614102px;}
.ha{height:60.960938px;}
.he{height:61.423863px;}
.hc{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.h14{height:81.180000px;}
.h11{height:108.576000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:51.840000px;}
.w7{width:55.116000px;}
.w4{width:67.896000px;}
.w5{width:83.520000px;}
.w6{width:85.500000px;}
.w11{width:86.220000px;}
.w12{width:88.956000px;}
.w14{width:91.836000px;}
.w9{width:92.016000px;}
.wd{width:92.340000px;}
.wa{width:93.240000px;}
.wf{width:93.960000px;}
.w3{width:100.440000px;}
.we{width:106.596000px;}
.w8{width:110.160000px;}
.w10{width:110.916000px;}
.wc{width:133.236000px;}
.wb{width:156.990000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:79.019987px;}
.x10{left:83.699987px;}
.x18{left:87.335987px;}
.x7{left:100.116000px;}
.x23{left:111.275987px;}
.x1a{left:130.895987px;}
.x1b{left:139.356000px;}
.x5{left:167.609987px;}
.x9{left:201.270000px;}
.x2{left:202.709987px;}
.x22{left:228.089987px;}
.x1c{left:234.030000px;}
.xa{left:270.075000px;}
.x1d{left:345.675000px;}
.xb{left:354.315000px;}
.x11{left:358.635000px;}
.x6{left:419.294987px;}
.x16{left:424.694987px;}
.x1e{left:432.795000px;}
.xc{left:440.535000px;}
.x12{left:492.585000px;}
.xd{left:496.365000px;}
.x1f{left:522.465000px;}
.x20{left:575.025000px;}
.x13{left:585.825000px;}
.x4{left:602.924987px;}
.xe{left:607.245000px;}
.x14{left:645.809987px;}
.x21{left:667.770000px;}
.xf{left:699.990000px;}
.x19{left:754.889987px;}
.x17{left:768.389987px;}
.x3{left:791.969987px;}
@media print{
.v4{vertical-align:-62.080000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.219733pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls16{letter-spacing:0.086933pt;}
.ls8{letter-spacing:0.089600pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.188160pt;}
.ls11{letter-spacing:0.188267pt;}
.lsf{letter-spacing:0.211200pt;}
.ls18{letter-spacing:0.282133pt;}
.ls17{letter-spacing:0.284160pt;}
.ls14{letter-spacing:0.287467pt;}
.ls15{letter-spacing:0.300800pt;}
.ls1b{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312320pt;}
.ls1a{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.342933pt;}
.lsd{letter-spacing:0.592640pt;}
.ls1e{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:42.192640pt;}
.ls19{letter-spacing:72.272640pt;}
.lse{letter-spacing:1039.146667pt;}
.ls10{letter-spacing:1180.586667pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.003733pt;}
.ws12{word-spacing:-11.991467pt;}
.wse{word-spacing:-11.973867pt;}
.wsf{word-spacing:-11.968533pt;}
.wsb{word-spacing:-11.874667pt;}
.ws10{word-spacing:-11.773333pt;}
.ws5{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.654400pt;}
.wsc{word-spacing:-11.639040pt;}
.wsd{word-spacing:-11.466667pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._2{margin-left:-2.556896pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.048545pt;}
._d{width:1.953886pt;}
._5{width:2.843441pt;}
._4{width:3.799567pt;}
._8{width:5.117003pt;}
._6{width:6.746134pt;}
._7{width:7.824393pt;}
._3{width:8.793600pt;}
._c{width:10.517760pt;}
._e{width:12.589440pt;}
._f{width:13.492480pt;}
._11{width:14.458419pt;}
._9{width:15.351468pt;}
._b{width:16.321695pt;}
._10{width:17.264000pt;}
._a{width:18.902345pt;}
._15{width:20.417055pt;}
._12{width:21.635829pt;}
._13{width:22.750046pt;}
._16{width:31.359775pt;}
._17{width:32.526316pt;}
._14{width:150.928202pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:6.880000pt;}
.y8f{bottom:6.920000pt;}
.y91{bottom:7.040000pt;}
.y94{bottom:55.514667pt;}
.y2{bottom:65.152000pt;}
.y29{bottom:65.952000pt;}
.y8d{bottom:79.880000pt;}
.y1{bottom:90.112000pt;}
.y97{bottom:97.632000pt;}
.yf5{bottom:99.712000pt;}
.y136{bottom:103.232000pt;}
.y45{bottom:103.552000pt;}
.yf4{bottom:115.232000pt;}
.y135{bottom:118.912000pt;}
.y6c{bottom:120.192000pt;}
.y93{bottom:121.952000pt;}
.yf3{bottom:130.912000pt;}
.y44{bottom:135.066667pt;}
.y111{bottom:136.666667pt;}
.y134{bottom:142.426667pt;}
.y96{bottom:146.106667pt;}
.yf2{bottom:146.586667pt;}
.yca{bottom:151.066667pt;}
.y110{bottom:152.346667pt;}
.y27{bottom:155.546667pt;}
.y133{bottom:158.106667pt;}
.yc9{bottom:161.786667pt;}
.yf1{bottom:162.106667pt;}
.y43{bottom:163.706667pt;}
.y6b{bottom:167.386667pt;}
.yb4{bottom:167.546667pt;}
.y95{bottom:170.426667pt;}
.y26{bottom:171.226667pt;}
.y10f{bottom:176.026667pt;}
.y132{bottom:181.626667pt;}
.yc8{bottom:186.106667pt;}
.y25{bottom:186.746667pt;}
.y10e{bottom:191.706667pt;}
.yf0{bottom:193.786667pt;}
.y8c{bottom:194.746667pt;}
.y131{bottom:197.306667pt;}
.y6a{bottom:198.746667pt;}
.yb3{bottom:199.226667pt;}
.y24{bottom:202.426667pt;}
.y10d{bottom:207.226667pt;}
.yef{bottom:209.466667pt;}
.yc7{bottom:210.426667pt;}
.y69{bottom:214.426667pt;}
.yb2{bottom:214.906667pt;}
.y23{bottom:218.106667pt;}
.y92{bottom:219.066667pt;}
.y130{bottom:220.986667pt;}
.yee{bottom:224.986667pt;}
.y10c{bottom:230.906667pt;}
.y22{bottom:233.786667pt;}
.yc6{bottom:234.746667pt;}
.y12f{bottom:236.666667pt;}
.yed{bottom:240.666667pt;}
.y90{bottom:243.386667pt;}
.yb1{bottom:243.546667pt;}
.y68{bottom:246.106667pt;}
.y10b{bottom:246.586667pt;}
.y21{bottom:249.306667pt;}
.y12e{bottom:252.186667pt;}
.yc5{bottom:258.906667pt;}
.y67{bottom:261.786667pt;}
.y20{bottom:264.986667pt;}
.y8e{bottom:267.706667pt;}
.y10a{bottom:270.106667pt;}
.yec{bottom:272.346667pt;}
.y12d{bottom:275.906667pt;}
.y109{bottom:285.826667pt;}
.yeb{bottom:288.066667pt;}
.y1f{bottom:288.866667pt;}
.y12c{bottom:291.586667pt;}
.y8a{bottom:292.066667pt;}
.yc4{bottom:302.306667pt;}
.yea{bottom:303.586667pt;}
.y66{bottom:308.866667pt;}
.y108{bottom:309.346667pt;}
.y12b{bottom:315.106667pt;}
.y107{bottom:325.026667pt;}
.y12a{bottom:330.786667pt;}
.y1e{bottom:332.066667pt;}
.yc3{bottom:333.986667pt;}
.y89{bottom:335.266667pt;}
.y65{bottom:340.386667pt;}
.y106{bottom:340.706667pt;}
.y129{bottom:346.466667pt;}
.yc2{bottom:349.666667pt;}
.ye9{bottom:350.946667pt;}
.y64{bottom:356.066667pt;}
.y105{bottom:364.546667pt;}
.y1d{bottom:365.026667pt;}
.yc1{bottom:365.186667pt;}
.ye8{bottom:366.466667pt;}
.y88{bottom:366.946667pt;}
.y128{bottom:369.986667pt;}
.y63{bottom:371.586667pt;}
.y1c{bottom:380.706667pt;}
.yc0{bottom:380.866667pt;}
.ye7{bottom:382.146667pt;}
.y87{bottom:382.626667pt;}
.y127{bottom:385.666667pt;}
.y62{bottom:395.266667pt;}
.y1b{bottom:396.226667pt;}
.ye6{bottom:397.826667pt;}
.y126{bottom:401.346667pt;}
.ybf{bottom:404.386667pt;}
.y104{bottom:407.426667pt;}
.y1a{bottom:411.906667pt;}
.ye5{bottom:413.346667pt;}
.y86{bottom:414.146667pt;}
.y125{bottom:424.866667pt;}
.y61{bottom:426.786667pt;}
.y19{bottom:427.586667pt;}
.ye4{bottom:429.026667pt;}
.y85{bottom:429.826667pt;}
.y103{bottom:431.426667pt;}
.ybe{bottom:436.066667pt;}
.y124{bottom:440.546667pt;}
.y60{bottom:442.466667pt;}
.y18{bottom:443.266667pt;}
.y17{bottom:458.786667pt;}
.ye3{bottom:460.706667pt;}
.y84{bottom:461.506667pt;}
.y123{bottom:464.226667pt;}
.y102{bottom:464.546667pt;}
.ybd{bottom:464.706667pt;}
.yb0{bottom:466.466667pt;}
.y5f{bottom:474.146667pt;}
.y16{bottom:474.466667pt;}
.ye2{bottom:476.386667pt;}
.y83{bottom:477.186667pt;}
.y122{bottom:479.906667pt;}
.yaf{bottom:482.146667pt;}
.y15{bottom:490.146667pt;}
.ye1{bottom:491.906667pt;}
.y82{bottom:492.706667pt;}
.yae{bottom:497.826667pt;}
.y121{bottom:503.426667pt;}
.y14{bottom:505.666667pt;}
.y5e{bottom:505.826667pt;}
.ye0{bottom:507.586667pt;}
.yad{bottom:513.506667pt;}
.y120{bottom:519.133333pt;}
.y13{bottom:521.373333pt;}
.y5d{bottom:521.533333pt;}
.ydf{bottom:523.293333pt;}
.y81{bottom:524.413333pt;}
.yac{bottom:529.053333pt;}
.y12{bottom:537.053333pt;}
.y101{bottom:538.813333pt;}
.y80{bottom:540.093333pt;}
.y11f{bottom:542.813333pt;}
.y42{bottom:546.813333pt;}
.y11{bottom:552.573333pt;}
.y100{bottom:554.493333pt;}
.yde{bottom:554.813333pt;}
.y7f{bottom:555.613333pt;}
.y11e{bottom:558.493333pt;}
.y5c{bottom:560.733333pt;}
.y41{bottom:562.493333pt;}
.y10{bottom:568.253333pt;}
.ydd{bottom:570.493333pt;}
.y11d{bottom:574.013333pt;}
.yab{bottom:576.413333pt;}
.y40{bottom:578.173333pt;}
.yf{bottom:583.933333pt;}
.yff{bottom:586.013333pt;}
.ydc{bottom:586.173333pt;}
.y7e{bottom:587.293333pt;}
.y5b{bottom:589.693333pt;}
.yaa{bottom:591.933333pt;}
.y11c{bottom:597.693333pt;}
.y3f{bottom:601.693333pt;}
.y7d{bottom:602.973333pt;}
.ya9{bottom:607.613333pt;}
.ye{bottom:607.773333pt;}
.y11b{bottom:613.373333pt;}
.yfe{bottom:617.373333pt;}
.y5a{bottom:621.213333pt;}
.ya8{bottom:623.293333pt;}
.yfd{bottom:633.053333pt;}
.y3e{bottom:633.373333pt;}
.y7c{bottom:634.493333pt;}
.y59{bottom:636.893333pt;}
.ya7{bottom:646.973333pt;}
.y3d{bottom:649.053333pt;}
.y7b{bottom:650.173333pt;}
.yd{bottom:650.653333pt;}
.y58{bottom:652.573333pt;}
.y3c{bottom:664.573333pt;}
.y7a{bottom:665.853333pt;}
.y57{bottom:668.253333pt;}
.ya6{bottom:673.533333pt;}
.y11a{bottom:676.093333pt;}
.y3b{bottom:680.253333pt;}
.yc{bottom:682.493333pt;}
.ybc{bottom:683.773333pt;}
.y119{bottom:691.773333pt;}
.y3a{bottom:695.933333pt;}
.y79{bottom:697.373333pt;}
.ya5{bottom:697.853333pt;}
.ybb{bottom:699.453333pt;}
.y56{bottom:699.773333pt;}
.y39{bottom:711.613333pt;}
.ydb{bottom:711.933333pt;}
.y78{bottom:713.053333pt;}
.yb{bottom:714.493333pt;}
.yba{bottom:715.133333pt;}
.y55{bottom:715.453333pt;}
.ya4{bottom:722.013333pt;}
.y38{bottom:727.133333pt;}
.yfc{bottom:727.453333pt;}
.yda{bottom:727.613333pt;}
.yb9{bottom:730.653333pt;}
.y54{bottom:731.133333pt;}
.yd9{bottom:743.133333pt;}
.y77{bottom:744.733333pt;}
.ya3{bottom:746.333333pt;}
.ya{bottom:746.493333pt;}
.y37{bottom:750.813333pt;}
.yb8{bottom:754.333333pt;}
.y118{bottom:754.653333pt;}
.yd8{bottom:758.813333pt;}
.y53{bottom:762.653333pt;}
.y9{bottom:765.893333pt;}
.y76{bottom:768.293333pt;}
.y117{bottom:770.373333pt;}
.ya2{bottom:770.693333pt;}
.yd7{bottom:774.533333pt;}
.y52{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y36{bottom:782.693333pt;}
.yb7{bottom:785.893333pt;}
.y116{bottom:786.053333pt;}
.y51{bottom:794.053333pt;}
.ya1{bottom:795.013333pt;}
.y7{bottom:797.893333pt;}
.y75{bottom:800.133333pt;}
.yb6{bottom:801.573333pt;}
.yd6{bottom:806.053333pt;}
.y115{bottom:809.573333pt;}
.y50{bottom:809.733333pt;}
.yd5{bottom:821.733333pt;}
.y4f{bottom:825.253333pt;}
.y35{bottom:825.573333pt;}
.y6{bottom:826.693333pt;}
.yb5{bottom:830.213333pt;}
.yd4{bottom:837.413333pt;}
.ya0{bottom:838.373333pt;}
.y4e{bottom:840.933333pt;}
.y34{bottom:841.253333pt;}
.y74{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y138{bottom:848.933333pt;}
.yd3{bottom:852.933333pt;}
.y33{bottom:856.933333pt;}
.y73{bottom:858.853333pt;}
.y4d{bottom:864.453333pt;}
.y137{bottom:864.613333pt;}
.yd2{bottom:868.613333pt;}
.y9f{bottom:869.893333pt;}
.yfb{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.y114{bottom:880.133333pt;}
.y72{bottom:882.373333pt;}
.yd1{bottom:884.293333pt;}
.y9e{bottom:885.573333pt;}
.yfa{bottom:888.133333pt;}
.y32{bottom:888.453333pt;}
.y4c{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y9d{bottom:901.253333pt;}
.yf9{bottom:903.813333pt;}
.y31{bottom:904.133333pt;}
.y4b{bottom:911.813333pt;}
.y71{bottom:914.053333pt;}
.yd0{bottom:915.813333pt;}
.y9c{bottom:916.933333pt;}
.yf8{bottom:919.493333pt;}
.y30{bottom:919.813333pt;}
.y4a{bottom:927.493333pt;}
.y70{bottom:929.733333pt;}
.ycf{bottom:931.493333pt;}
.y9b{bottom:932.453333pt;}
.yf7{bottom:935.173333pt;}
.y2f{bottom:935.493333pt;}
.y113{bottom:943.013333pt;}
.y49{bottom:943.173333pt;}
.y6f{bottom:945.413333pt;}
.yce{bottom:947.173333pt;}
.yf6{bottom:950.693333pt;}
.y2e{bottom:951.173333pt;}
.y9a{bottom:956.133333pt;}
.y48{bottom:958.693333pt;}
.y6e{bottom:961.093333pt;}
.ycd{bottom:962.853333pt;}
.y2d{bottom:966.693333pt;}
.y47{bottom:974.373333pt;}
.ycc{bottom:978.373333pt;}
.y2c{bottom:982.373333pt;}
.y6d{bottom:984.613333pt;}
.y99{bottom:985.093333pt;}
.y46{bottom:990.053333pt;}
.y112{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.ycb{bottom:1002.213333pt;}
.y2a{bottom:1013.600000pt;}
.y98{bottom:1016.160000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.520000pt;}
.h12{height:23.552000pt;}
.h13{height:23.680000pt;}
.h16{height:23.712000pt;}
.h2{height:26.415625pt;}
.h8{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h15{height:37.310625pt;}
.h10{height:44.975625pt;}
.h7{height:46.220625pt;}
.h9{height:49.852500pt;}
.h5{height:51.232500pt;}
.hd{height:52.990313pt;}
.ha{height:54.187500pt;}
.he{height:54.598989pt;}
.hc{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.h14{height:72.160000pt;}
.h11{height:96.512000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:46.080000pt;}
.w7{width:48.992000pt;}
.w4{width:60.352000pt;}
.w5{width:74.240000pt;}
.w6{width:76.000000pt;}
.w11{width:76.640000pt;}
.w12{width:79.072000pt;}
.w14{width:81.632000pt;}
.w9{width:81.792000pt;}
.wd{width:82.080000pt;}
.wa{width:82.880000pt;}
.wf{width:83.520000pt;}
.w3{width:89.280000pt;}
.we{width:94.752000pt;}
.w8{width:97.920000pt;}
.w10{width:98.592000pt;}
.wc{width:118.432000pt;}
.wb{width:139.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:70.239988pt;}
.x10{left:74.399988pt;}
.x18{left:77.631988pt;}
.x7{left:88.992000pt;}
.x23{left:98.911988pt;}
.x1a{left:116.351988pt;}
.x1b{left:123.872000pt;}
.x5{left:148.986655pt;}
.x9{left:178.906667pt;}
.x2{left:180.186655pt;}
.x22{left:202.746655pt;}
.x1c{left:208.026667pt;}
.xa{left:240.066667pt;}
.x1d{left:307.266667pt;}
.xb{left:314.946667pt;}
.x11{left:318.786667pt;}
.x6{left:372.706655pt;}
.x16{left:377.506655pt;}
.x1e{left:384.706667pt;}
.xc{left:391.586667pt;}
.x12{left:437.853333pt;}
.xd{left:441.213333pt;}
.x1f{left:464.413333pt;}
.x20{left:511.133333pt;}
.x13{left:520.733333pt;}
.x4{left:535.933322pt;}
.xe{left:539.773333pt;}
.x14{left:574.053322pt;}
.x21{left:593.573333pt;}
.xf{left:622.213333pt;}
.x19{left:671.013322pt;}
.x17{left:683.013322pt;}
.x3{left:703.973322pt;}
}




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