
    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_2a228fb726ba1e2724ecb8e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_dc111caa9ee448e69b0f6108.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_316d14fc670e4b46ecf616a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975586;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_89f5667ca052e9e2f3d36007.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_14821273f3470486989931ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_7aee0acc664960ac91a2ae68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995605;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_deaaa2225eaf5d33ad6a8999.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_a5fb5bfcd865c0693435468c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967773;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_ac96ba39cfedd6aa97ba1e6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;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_da4ca6be322222431d9293cb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2761e31b7455f78f9573521d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_2bb04bb38ae2f21cca0e9e6a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_a141e58234b7ca582eaafa9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.793457;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_e0cb0b074eccd58ebeb38380.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.881836;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_6e57874f91d443f421742337.woff2')format("woff");}.fff{font-family:fff;line-height:0.881836;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_418fac6327aca41d2e4d458a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.881836;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_b362b76a7c458a04b4ab7b48.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.881836;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_74db34d77a6bd318981013e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.936523;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_f894f14e112e5d95bbd6b7f1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.918945;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls16{letter-spacing:-0.580608px;}
.ls12{letter-spacing:-0.562464px;}
.ls13{letter-spacing:-0.553392px;}
.ls26{letter-spacing:-0.480816px;}
.ls33{letter-spacing:-0.443232px;}
.ls17{letter-spacing:-0.335664px;}
.ls18{letter-spacing:-0.281232px;}
.ls15{letter-spacing:-0.178848px;}
.lse{letter-spacing:-0.158976px;}
.ls23{letter-spacing:-0.139104px;}
.lsf{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.014400px;}
.lsa{letter-spacing:-0.010800px;}
.ls11{letter-spacing:-0.007200px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.005760px;}
.ls14{letter-spacing:0.006912px;}
.ls20{letter-spacing:0.007056px;}
.lsc{letter-spacing:0.007200px;}
.ls21{letter-spacing:0.009360px;}
.ls1c{letter-spacing:0.010368px;}
.ls1e{letter-spacing:0.010512px;}
.lsd{letter-spacing:0.014400px;}
.ls35{letter-spacing:0.062208px;}
.ls29{letter-spacing:0.066240px;}
.ls28{letter-spacing:0.066384px;}
.lsb{letter-spacing:0.069984px;}
.ls7{letter-spacing:0.073440px;}
.ls2e{letter-spacing:0.074016px;}
.ls2f{letter-spacing:0.074160px;}
.ls8{letter-spacing:0.074880px;}
.ls1b{letter-spacing:0.075024px;}
.ls1a{letter-spacing:0.075312px;}
.ls2b{letter-spacing:0.093312px;}
.ls2c{letter-spacing:0.101088px;}
.ls4{letter-spacing:0.108864px;}
.ls30{letter-spacing:0.116640px;}
.ls2d{letter-spacing:0.119952px;}
.ls27{letter-spacing:0.130896px;}
.ls2a{letter-spacing:0.132192px;}
.ls2{letter-spacing:0.139968px;}
.ls31{letter-spacing:0.147744px;}
.ls1{letter-spacing:0.155520px;}
.ls6{letter-spacing:0.171072px;}
.ls5{letter-spacing:0.171360px;}
.ls0{letter-spacing:0.179712px;}
.ls32{letter-spacing:0.186624px;}
.ls34{letter-spacing:0.241056px;}
.ls1d{letter-spacing:0.392976px;}
.ls1f{letter-spacing:0.393120px;}
.ls25{letter-spacing:839.272320px;}
.ls3{letter-spacing:1015.882560px;}
.ls24{letter-spacing:1996.751520px;}
.ls22{letter-spacing:1996.752384px;}
.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:-52.296192px;}
.wse{word-spacing:-43.207200px;}
.ws1{word-spacing:-37.573200px;}
.wsc{word-spacing:-31.289328px;}
.wsb{word-spacing:-31.234896px;}
.ws16{word-spacing:-31.089744px;}
.ws17{word-spacing:-27.231552px;}
.ws1b{word-spacing:-27.177120px;}
.wsd{word-spacing:-25.070400px;}
.ws13{word-spacing:-25.063200px;}
.ws14{word-spacing:-25.048800px;}
.wsf{word-spacing:-25.041600px;}
.ws3{word-spacing:-24.898752px;}
.ws19{word-spacing:-24.875424px;}
.ws18{word-spacing:-24.859872px;}
.ws2{word-spacing:-24.797664px;}
.ws10{word-spacing:-22.910400px;}
.ws7{word-spacing:-22.903200px;}
.ws8{word-spacing:-22.896000px;}
.ws9{word-spacing:-22.888800px;}
.ws6{word-spacing:-22.881600px;}
.ws5{word-spacing:-20.931840px;}
.ws15{word-spacing:-20.925216px;}
.wsa{word-spacing:-20.905344px;}
.ws1a{word-spacing:-17.400960px;}
.ws12{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._2{width:1.139616px;}
._6{width:18.852912px;}
._5{width:19.946736px;}
._8{width:21.131568px;}
._9{width:23.833440px;}
._3{width:30.191904px;}
._4{width:31.295232px;}
._b{width:42.633504px;}
._a{width:47.299104px;}
._7{width:79.725024px;}
._1{width:2038.606272px;}
.fc8{color:transparent;}
.fc7{color:rgb(112,48,160);}
.fc6{color:rgb(255,192,0);}
.fc5{color:rgb(112,173,71);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(68,114,196);}
.fc9{color:rgb(153,51,0);}
.fc1{color:rgb(131,60,11);}
.fc3{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:54.720000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs8{font-size:83.520000px;}
.fs5{font-size:90.720000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:144.000000px;}
.fs0{font-size:149.760000px;}
.fs6{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:4.500000px;}
.ya1{bottom:4.620000px;}
.ycc{bottom:4.680000px;}
.yaa{bottom:4.860000px;}
.ya5{bottom:4.920000px;}
.ycf{bottom:4.980000px;}
.yb2{bottom:5.100000px;}
.yae{bottom:5.160000px;}
.y9f{bottom:5.220000px;}
.y9b{bottom:5.280000px;}
.yd7{bottom:5.340000px;}
.yf5{bottom:5.400000px;}
.yed{bottom:5.460000px;}
.ya3{bottom:5.520000px;}
.yce{bottom:5.580000px;}
.yc6{bottom:5.640000px;}
.yc0{bottom:5.700000px;}
.yac{bottom:5.760000px;}
.yb8{bottom:5.820000px;}
.ydc{bottom:5.880000px;}
.yb0{bottom:6.060000px;}
.y9d{bottom:6.180000px;}
.yea{bottom:6.240000px;}
.yf6{bottom:8.280000px;}
.yeb{bottom:9.120000px;}
.yda{bottom:30.600000px;}
.yca{bottom:30.900000px;}
.ybc{bottom:31.080000px;}
.yf3{bottom:32.400000px;}
.ye7{bottom:33.240000px;}
.yd8{bottom:61.500000px;}
.yc8{bottom:61.800000px;}
.yba{bottom:61.980000px;}
.yf1{bottom:64.740000px;}
.ye5{bottom:65.940000px;}
.y16b{bottom:94.320000px;}
.y140{bottom:102.960000px;}
.y16a{bottom:115.200000px;}
.y13f{bottom:124.200000px;}
.y1a1{bottom:129.600000px;}
.y169{bottom:136.080000px;}
.yef{bottom:141.480000px;}
.y13e{bottom:145.080000px;}
.y11b{bottom:147.240000px;}
.y1a0{bottom:152.280000px;}
.y168{bottom:158.040000px;}
.yee{bottom:162.360000px;}
.yb6{bottom:164.160000px;}
.y13d{bottom:165.960000px;}
.y11a{bottom:168.480000px;}
.y28{bottom:171.000000px;}
.y19f{bottom:174.960000px;}
.ye4{bottom:178.500000px;}
.y167{bottom:178.560000px;}
.yb5{bottom:185.400000px;}
.y13c{bottom:186.840000px;}
.y119{bottom:189.360000px;}
.y27{bottom:193.680000px;}
.y19e{bottom:197.640000px;}
.y166{bottom:198.720000px;}
.yec{bottom:201.000000px;}
.yb3{bottom:202.500000px;}
.y57{bottom:202.680000px;}
.y13b{bottom:207.720000px;}
.y118{bottom:210.600000px;}
.y26{bottom:216.360000px;}
.y165{bottom:219.240000px;}
.y19d{bottom:220.320000px;}
.ye6{bottom:222.000000px;}
.yb1{bottom:223.500000px;}
.y56{bottom:223.560000px;}
.y13a{bottom:228.960000px;}
.y117{bottom:234.000000px;}
.y25{bottom:239.040000px;}
.y164{bottom:239.760000px;}
.y19c{bottom:243.000000px;}
.y55{bottom:244.440000px;}
.yaf{bottom:244.500000px;}
.ye9{bottom:247.500000px;}
.y139{bottom:249.840000px;}
.y116{bottom:254.160000px;}
.y163{bottom:259.920000px;}
.y24{bottom:261.720000px;}
.y54{bottom:265.320000px;}
.y19b{bottom:265.680000px;}
.yad{bottom:267.000000px;}
.ye8{bottom:268.500000px;}
.y138{bottom:270.720000px;}
.y115{bottom:274.680000px;}
.y162{bottom:280.440000px;}
.y23{bottom:284.400000px;}
.y53{bottom:286.560000px;}
.yab{bottom:288.000000px;}
.y19a{bottom:288.360000px;}
.ye3{bottom:291.000000px;}
.y137{bottom:291.600000px;}
.y114{bottom:295.200000px;}
.y161{bottom:300.960000px;}
.y22{bottom:307.080000px;}
.y52{bottom:307.440000px;}
.ya9{bottom:310.500000px;}
.y199{bottom:311.040000px;}
.y136{bottom:312.480000px;}
.y113{bottom:315.360000px;}
.ye2{bottom:317.880000px;}
.y160{bottom:321.120000px;}
.y51{bottom:328.320000px;}
.y21{bottom:329.760000px;}
.y135{bottom:333.720000px;}
.y112{bottom:335.880000px;}
.ya8{bottom:337.320000px;}
.ye1{bottom:338.760000px;}
.y15f{bottom:341.640000px;}
.y50{bottom:349.200000px;}
.y20{bottom:352.800000px;}
.y134{bottom:354.600000px;}
.y111{bottom:356.400000px;}
.y7d{bottom:357.120000px;}
.ya7{bottom:358.200000px;}
.ye0{bottom:359.640000px;}
.y15e{bottom:362.160000px;}
.y4f{bottom:370.080000px;}
.y1f{bottom:375.480000px;}
.y110{bottom:376.560000px;}
.y7c{bottom:378.000000px;}
.ya6{bottom:379.080000px;}
.y198{bottom:379.440000px;}
.ydf{bottom:380.520000px;}
.y15d{bottom:382.320000px;}
.y4e{bottom:391.320000px;}
.y133{bottom:396.360000px;}
.y10f{bottom:397.080000px;}
.y1e{bottom:398.160000px;}
.y7b{bottom:399.960000px;}
.yde{bottom:401.760000px;}
.y197{bottom:402.120000px;}
.y15c{bottom:402.840000px;}
.y4d{bottom:412.200000px;}
.ya4{bottom:417.000000px;}
.y132{bottom:417.240000px;}
.y10e{bottom:417.600000px;}
.y7a{bottom:420.480000px;}
.y1d{bottom:420.840000px;}
.ydd{bottom:422.640000px;}
.y15b{bottom:423.000000px;}
.y196{bottom:430.920000px;}
.y4c{bottom:433.080000px;}
.y10d{bottom:437.760000px;}
.ya2{bottom:438.000000px;}
.y131{bottom:438.480000px;}
.y79{bottom:440.640000px;}
.y1c{bottom:443.520000px;}
.y195{bottom:447.480000px;}
.y4b{bottom:453.960000px;}
.y10c{bottom:458.280000px;}
.y130{bottom:459.360000px;}
.ya0{bottom:460.500000px;}
.y78{bottom:461.160000px;}
.y15a{bottom:464.040000px;}
.y1b{bottom:466.200000px;}
.y4a{bottom:474.840000px;}
.y194{bottom:476.280000px;}
.y10b{bottom:478.800000px;}
.y12f{bottom:480.240000px;}
.y9e{bottom:481.500000px;}
.y77{bottom:481.680000px;}
.y159{bottom:484.200000px;}
.y1a{bottom:488.880000px;}
.y193{bottom:492.840000px;}
.y49{bottom:496.080000px;}
.y10a{bottom:498.960000px;}
.y12e{bottom:501.120000px;}
.y76{bottom:501.840000px;}
.y9c{bottom:502.500000px;}
.yd9{bottom:504.000000px;}
.y158{bottom:504.720000px;}
.y19{bottom:511.560000px;}
.y192{bottom:515.520000px;}
.y48{bottom:516.960000px;}
.y109{bottom:519.480000px;}
.y12d{bottom:522.000000px;}
.y75{bottom:522.360000px;}
.y9a{bottom:525.000000px;}
.y157{bottom:525.240000px;}
.y18{bottom:534.240000px;}
.y47{bottom:537.840000px;}
.y108{bottom:539.640000px;}
.y74{bottom:542.880000px;}
.y12c{bottom:543.240000px;}
.y191{bottom:544.320000px;}
.y156{bottom:545.400000px;}
.ydb{bottom:546.000000px;}
.y99{bottom:551.880000px;}
.y17{bottom:556.920000px;}
.y46{bottom:558.720000px;}
.y107{bottom:560.160000px;}
.y190{bottom:560.880000px;}
.y73{bottom:563.040000px;}
.y12b{bottom:564.120000px;}
.y155{bottom:565.920000px;}
.yd6{bottom:568.500000px;}
.y98{bottom:572.760000px;}
.y16{bottom:579.600000px;}
.y106{bottom:580.680000px;}
.y72{bottom:582.480000px;}
.y12a{bottom:585.000000px;}
.y154{bottom:586.440000px;}
.y18f{bottom:589.680000px;}
.y97{bottom:594.000000px;}
.yd5{bottom:595.440000px;}
.y45{bottom:600.840000px;}
.y15{bottom:602.280000px;}
.y71{bottom:603.360000px;}
.y129{bottom:605.880000px;}
.y18e{bottom:606.240000px;}
.y153{bottom:606.600000px;}
.y96{bottom:614.880000px;}
.yd4{bottom:616.320000px;}
.y105{bottom:621.360000px;}
.y44{bottom:621.720000px;}
.y70{bottom:624.600000px;}
.y14{bottom:624.960000px;}
.y128{bottom:626.760000px;}
.y152{bottom:627.120000px;}
.y18d{bottom:628.920000px;}
.y95{bottom:636.120000px;}
.yd3{bottom:637.200000px;}
.y104{bottom:641.880000px;}
.y43{bottom:642.600000px;}
.y6f{bottom:645.480000px;}
.y151{bottom:647.280000px;}
.y13{bottom:647.640000px;}
.y127{bottom:648.000000px;}
.y18c{bottom:657.720000px;}
.yd2{bottom:658.440000px;}
.y94{bottom:659.520000px;}
.y103{bottom:662.040000px;}
.y42{bottom:663.480000px;}
.y6e{bottom:666.360000px;}
.y150{bottom:667.800000px;}
.y126{bottom:668.880000px;}
.y12{bottom:670.320000px;}
.y18b{bottom:674.280000px;}
.yd1{bottom:679.320000px;}
.y93{bottom:680.040000px;}
.y102{bottom:682.560000px;}
.y41{bottom:684.360000px;}
.y6d{bottom:687.240000px;}
.y14f{bottom:688.320000px;}
.y125{bottom:689.760000px;}
.y11{bottom:693.000000px;}
.yc7{bottom:696.000000px;}
.y18a{bottom:696.960000px;}
.y92{bottom:700.200000px;}
.y101{bottom:703.080000px;}
.y40{bottom:705.600000px;}
.y6c{bottom:708.120000px;}
.y14e{bottom:708.480000px;}
.y124{bottom:710.640000px;}
.y10{bottom:715.680000px;}
.yd0{bottom:717.000000px;}
.y189{bottom:719.640000px;}
.y91{bottom:720.720000px;}
.y100{bottom:723.240000px;}
.y3f{bottom:726.480000px;}
.y14d{bottom:729.000000px;}
.y6b{bottom:729.360000px;}
.y123{bottom:731.520000px;}
.yf{bottom:738.360000px;}
.yc9{bottom:739.500000px;}
.y90{bottom:740.880000px;}
.y188{bottom:742.320000px;}
.yff{bottom:743.760000px;}
.y3e{bottom:747.360000px;}
.y14c{bottom:749.520000px;}
.y6a{bottom:750.240000px;}
.y122{bottom:752.760000px;}
.ycd{bottom:760.500000px;}
.ye{bottom:761.040000px;}
.y8f{bottom:761.400000px;}
.yfe{bottom:763.560000px;}
.y187{bottom:765.000000px;}
.y3d{bottom:768.240000px;}
.y14b{bottom:769.680000px;}
.y69{bottom:771.120000px;}
.y121{bottom:773.640000px;}
.y8e{bottom:781.920000px;}
.ycb{bottom:783.000000px;}
.yd{bottom:784.080000px;}
.yfd{bottom:785.880000px;}
.y186{bottom:787.680000px;}
.y3c{bottom:789.120000px;}
.y14a{bottom:790.200000px;}
.y68{bottom:793.080000px;}
.y120{bottom:794.520000px;}
.y8d{bottom:802.080000px;}
.yc5{bottom:804.000000px;}
.yc{bottom:806.760000px;}
.y3b{bottom:810.360000px;}
.y149{bottom:810.720000px;}
.y67{bottom:813.600000px;}
.y11f{bottom:815.400000px;}
.y8c{bottom:822.600000px;}
.yfc{bottom:827.640000px;}
.y148{bottom:830.880000px;}
.y3a{bottom:831.240000px;}
.yb{bottom:833.400000px;}
.y66{bottom:833.760000px;}
.y11e{bottom:836.280000px;}
.y8b{bottom:843.120000px;}
.y178{bottom:843.840000px;}
.yfb{bottom:848.520000px;}
.y147{bottom:851.400000px;}
.y39{bottom:852.120000px;}
.y65{bottom:854.280000px;}
.y185{bottom:856.080000px;}
.y11d{bottom:857.520000px;}
.y8a{bottom:863.280000px;}
.ya{bottom:864.720000px;}
.y177{bottom:866.160000px;}
.yfa{bottom:869.760000px;}
.y146{bottom:871.200000px;}
.yc4{bottom:873.000000px;}
.y38{bottom:874.080000px;}
.y64{bottom:874.440000px;}
.y11c{bottom:878.400000px;}
.y184{bottom:878.760000px;}
.y89{bottom:883.800000px;}
.y176{bottom:887.040000px;}
.yf9{bottom:890.640000px;}
.y145{bottom:893.520000px;}
.yc3{bottom:893.880000px;}
.y9{bottom:894.600000px;}
.y63{bottom:894.960000px;}
.y37{bottom:899.280000px;}
.y183{bottom:901.440000px;}
.y88{bottom:904.320000px;}
.y175{bottom:907.920000px;}
.yf8{bottom:911.520000px;}
.y144{bottom:914.400000px;}
.yc2{bottom:915.120000px;}
.y62{bottom:915.480000px;}
.y8{bottom:917.280000px;}
.y36{bottom:920.160000px;}
.y182{bottom:924.120000px;}
.y87{bottom:924.480000px;}
.yf0{bottom:928.500000px;}
.y174{bottom:929.160000px;}
.y143{bottom:935.280000px;}
.y61{bottom:935.640000px;}
.yc1{bottom:936.000000px;}
.y7{bottom:939.960000px;}
.y35{bottom:941.040000px;}
.y86{bottom:945.000000px;}
.y181{bottom:946.800000px;}
.yf7{bottom:949.500000px;}
.y173{bottom:950.040000px;}
.yb9{bottom:952.500000px;}
.y60{bottom:955.080000px;}
.y142{bottom:957.240000px;}
.y34{bottom:962.280000px;}
.y6{bottom:962.640000px;}
.y85{bottom:965.520000px;}
.y180{bottom:969.480000px;}
.y172{bottom:970.920000px;}
.yf2{bottom:972.000000px;}
.ybf{bottom:973.500000px;}
.y5f{bottom:975.960000px;}
.y141{bottom:977.760000px;}
.y33{bottom:983.160000px;}
.y5{bottom:985.320000px;}
.y84{bottom:985.680000px;}
.y171{bottom:991.800000px;}
.y17f{bottom:992.160000px;}
.ybb{bottom:996.000000px;}
.y5e{bottom:997.200000px;}
.y32{bottom:1004.040000px;}
.y83{bottom:1006.200000px;}
.y4{bottom:1011.960000px;}
.y170{bottom:1012.680000px;}
.y17e{bottom:1014.840000px;}
.ybe{bottom:1017.000000px;}
.y5d{bottom:1018.080000px;}
.yf4{bottom:1018.500000px;}
.y31{bottom:1024.920000px;}
.y82{bottom:1026.360000px;}
.y16f{bottom:1033.920000px;}
.y17d{bottom:1037.520000px;}
.y5c{bottom:1038.960000px;}
.ybd{bottom:1039.500000px;}
.y30{bottom:1045.800000px;}
.y81{bottom:1046.880000px;}
.y16e{bottom:1054.800000px;}
.y3{bottom:1055.520000px;}
.y5b{bottom:1059.840000px;}
.y17c{bottom:1060.200000px;}
.yb7{bottom:1060.500000px;}
.y2f{bottom:1067.040000px;}
.y80{bottom:1067.400000px;}
.y16d{bottom:1076.040000px;}
.y5a{bottom:1080.720000px;}
.y17b{bottom:1082.880000px;}
.y7f{bottom:1087.560000px;}
.y2e{bottom:1087.920000px;}
.y2{bottom:1099.080000px;}
.y16c{bottom:1099.440000px;}
.y59{bottom:1102.320000px;}
.y17a{bottom:1105.560000px;}
.y7e{bottom:1107.360000px;}
.y2d{bottom:1108.800000px;}
.y58{bottom:1125.720000px;}
.y179{bottom:1128.240000px;}
.y2c{bottom:1129.680000px;}
.y1{bottom:1143.000000px;}
.y2b{bottom:1150.560000px;}
.y2a{bottom:1171.800000px;}
.y29{bottom:1194.480000px;}
.hc{height:21.000000px;}
.ha{height:22.500000px;}
.hb{height:24.000000px;}
.h17{height:25.500000px;}
.h13{height:27.000000px;}
.h19{height:40.612500px;}
.h9{height:47.988281px;}
.h6{height:50.326875px;}
.h7{height:54.703125px;}
.h14{height:58.888125px;}
.h3{height:59.079375px;}
.h18{height:65.092500px;}
.h8{height:68.925938px;}
.h5{height:76.148438px;}
.h4{height:82.054688px;}
.hf{height:87.000000px;}
.h16{height:90.000000px;}
.h12{height:91.500000px;}
.h10{height:101.531250px;}
.h2{height:109.175625px;}
.hd{height:130.500000px;}
.h15{height:133.500000px;}
.h11{height:135.000000px;}
.he{height:208.265625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:28.500000px;}
.wc{width:30.000000px;}
.w13{width:33.000000px;}
.w18{width:34.500000px;}
.w5{width:36.000000px;}
.w2{width:42.000000px;}
.w15{width:43.500000px;}
.w16{width:45.000000px;}
.w8{width:55.500000px;}
.we{width:57.000000px;}
.wf{width:85.500000px;}
.w7{width:91.500000px;}
.wa{width:142.500000px;}
.w11{width:144.000000px;}
.w17{width:150.300000px;}
.w19{width:151.800000px;}
.w3{width:159.000000px;}
.w14{width:160.500000px;}
.w6{width:163.500000px;}
.w12{width:181.500000px;}
.wb{width:267.300000px;}
.wd{width:268.800000px;}
.w10{width:271.800000px;}
.w4{width:484.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.400144px;}
.x16{left:9.479880px;}
.x24{left:10.986840px;}
.x14{left:12.548160px;}
.x1a{left:14.444112px;}
.xf{left:15.780036px;}
.xa{left:20.774028px;}
.x6{left:22.109988px;}
.xd{left:23.151864px;}
.x2d{left:24.795012px;}
.x1b{left:26.775156px;}
.xb{left:33.105108px;}
.x23{left:42.682440px;}
.x18{left:89.838840px;}
.x5{left:105.000000px;}
.x1{left:106.200072px;}
.x11{left:109.773540px;}
.xe{left:114.000000px;}
.x1d{left:134.249880px;}
.x7{left:145.500000px;}
.x10{left:148.500000px;}
.xc{left:150.015036px;}
.x2e{left:151.410120px;}
.x1c{left:154.184688px;}
.x25{left:172.950096px;}
.x26{left:294.000000px;}
.x8{left:303.000000px;}
.x12{left:310.500000px;}
.x27{left:327.000000px;}
.x1f{left:366.000000px;}
.x13{left:400.500000px;}
.x20{left:450.000000px;}
.x15{left:454.500000px;}
.x21{left:478.500000px;}
.x17{left:483.000000px;}
.x28{left:486.000000px;}
.x29{left:528.000000px;}
.x2{left:551.993040px;}
.x2a{left:571.500000px;}
.x2b{left:600.000000px;}
.x22{left:621.000000px;}
.x1e{left:624.000000px;}
.x19{left:625.500000px;}
.x3{left:673.125480px;}
.x2f{left:741.000000px;}
.x2c{left:742.500000px;}
.x4{left:786.449880px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls16{letter-spacing:-0.516096pt;}
.ls12{letter-spacing:-0.499968pt;}
.ls13{letter-spacing:-0.491904pt;}
.ls26{letter-spacing:-0.427392pt;}
.ls33{letter-spacing:-0.393984pt;}
.ls17{letter-spacing:-0.298368pt;}
.ls18{letter-spacing:-0.249984pt;}
.ls15{letter-spacing:-0.158976pt;}
.lse{letter-spacing:-0.141312pt;}
.ls23{letter-spacing:-0.123648pt;}
.lsf{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls11{letter-spacing:-0.006400pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005120pt;}
.ls14{letter-spacing:0.006144pt;}
.ls20{letter-spacing:0.006272pt;}
.lsc{letter-spacing:0.006400pt;}
.ls21{letter-spacing:0.008320pt;}
.ls1c{letter-spacing:0.009216pt;}
.ls1e{letter-spacing:0.009344pt;}
.lsd{letter-spacing:0.012800pt;}
.ls35{letter-spacing:0.055296pt;}
.ls29{letter-spacing:0.058880pt;}
.ls28{letter-spacing:0.059008pt;}
.lsb{letter-spacing:0.062208pt;}
.ls7{letter-spacing:0.065280pt;}
.ls2e{letter-spacing:0.065792pt;}
.ls2f{letter-spacing:0.065920pt;}
.ls8{letter-spacing:0.066560pt;}
.ls1b{letter-spacing:0.066688pt;}
.ls1a{letter-spacing:0.066944pt;}
.ls2b{letter-spacing:0.082944pt;}
.ls2c{letter-spacing:0.089856pt;}
.ls4{letter-spacing:0.096768pt;}
.ls30{letter-spacing:0.103680pt;}
.ls2d{letter-spacing:0.106624pt;}
.ls27{letter-spacing:0.116352pt;}
.ls2a{letter-spacing:0.117504pt;}
.ls2{letter-spacing:0.124416pt;}
.ls31{letter-spacing:0.131328pt;}
.ls1{letter-spacing:0.138240pt;}
.ls6{letter-spacing:0.152064pt;}
.ls5{letter-spacing:0.152320pt;}
.ls0{letter-spacing:0.159744pt;}
.ls32{letter-spacing:0.165888pt;}
.ls34{letter-spacing:0.214272pt;}
.ls1d{letter-spacing:0.349312pt;}
.ls1f{letter-spacing:0.349440pt;}
.ls25{letter-spacing:746.019840pt;}
.ls3{letter-spacing:903.006720pt;}
.ls24{letter-spacing:1774.890240pt;}
.ls22{letter-spacing:1774.891008pt;}
.ws0{word-spacing:-46.485504pt;}
.wse{word-spacing:-38.406400pt;}
.ws1{word-spacing:-33.398400pt;}
.wsc{word-spacing:-27.812736pt;}
.wsb{word-spacing:-27.764352pt;}
.ws16{word-spacing:-27.635328pt;}
.ws17{word-spacing:-24.205824pt;}
.ws1b{word-spacing:-24.157440pt;}
.wsd{word-spacing:-22.284800pt;}
.ws13{word-spacing:-22.278400pt;}
.ws14{word-spacing:-22.265600pt;}
.wsf{word-spacing:-22.259200pt;}
.ws3{word-spacing:-22.132224pt;}
.ws19{word-spacing:-22.111488pt;}
.ws18{word-spacing:-22.097664pt;}
.ws2{word-spacing:-22.042368pt;}
.ws10{word-spacing:-20.364800pt;}
.ws7{word-spacing:-20.358400pt;}
.ws8{word-spacing:-20.352000pt;}
.ws9{word-spacing:-20.345600pt;}
.ws6{word-spacing:-20.339200pt;}
.ws5{word-spacing:-18.606080pt;}
.ws15{word-spacing:-18.600192pt;}
.wsa{word-spacing:-18.582528pt;}
.ws1a{word-spacing:-15.467520pt;}
.ws12{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.012992pt;}
._6{width:16.758144pt;}
._5{width:17.730432pt;}
._8{width:18.783616pt;}
._9{width:21.185280pt;}
._3{width:26.837248pt;}
._4{width:27.817984pt;}
._b{width:37.896448pt;}
._a{width:42.043648pt;}
._7{width:70.866688pt;}
._1{width:1812.094464pt;}
.fs9{font-size:48.640000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs8{font-size:74.240000pt;}
.fs5{font-size:80.640000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:128.000000pt;}
.fs0{font-size:133.120000pt;}
.fs6{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:4.000000pt;}
.ya1{bottom:4.106667pt;}
.ycc{bottom:4.160000pt;}
.yaa{bottom:4.320000pt;}
.ya5{bottom:4.373333pt;}
.ycf{bottom:4.426667pt;}
.yb2{bottom:4.533333pt;}
.yae{bottom:4.586667pt;}
.y9f{bottom:4.640000pt;}
.y9b{bottom:4.693333pt;}
.yd7{bottom:4.746667pt;}
.yf5{bottom:4.800000pt;}
.yed{bottom:4.853333pt;}
.ya3{bottom:4.906667pt;}
.yce{bottom:4.960000pt;}
.yc6{bottom:5.013333pt;}
.yc0{bottom:5.066667pt;}
.yac{bottom:5.120000pt;}
.yb8{bottom:5.173333pt;}
.ydc{bottom:5.226667pt;}
.yb0{bottom:5.386667pt;}
.y9d{bottom:5.493333pt;}
.yea{bottom:5.546667pt;}
.yf6{bottom:7.360000pt;}
.yeb{bottom:8.106667pt;}
.yda{bottom:27.200000pt;}
.yca{bottom:27.466667pt;}
.ybc{bottom:27.626667pt;}
.yf3{bottom:28.800000pt;}
.ye7{bottom:29.546667pt;}
.yd8{bottom:54.666667pt;}
.yc8{bottom:54.933333pt;}
.yba{bottom:55.093333pt;}
.yf1{bottom:57.546667pt;}
.ye5{bottom:58.613333pt;}
.y16b{bottom:83.840000pt;}
.y140{bottom:91.520000pt;}
.y16a{bottom:102.400000pt;}
.y13f{bottom:110.400000pt;}
.y1a1{bottom:115.200000pt;}
.y169{bottom:120.960000pt;}
.yef{bottom:125.760000pt;}
.y13e{bottom:128.960000pt;}
.y11b{bottom:130.880000pt;}
.y1a0{bottom:135.360000pt;}
.y168{bottom:140.480000pt;}
.yee{bottom:144.320000pt;}
.yb6{bottom:145.920000pt;}
.y13d{bottom:147.520000pt;}
.y11a{bottom:149.760000pt;}
.y28{bottom:152.000000pt;}
.y19f{bottom:155.520000pt;}
.ye4{bottom:158.666667pt;}
.y167{bottom:158.720000pt;}
.yb5{bottom:164.800000pt;}
.y13c{bottom:166.080000pt;}
.y119{bottom:168.320000pt;}
.y27{bottom:172.160000pt;}
.y19e{bottom:175.680000pt;}
.y166{bottom:176.640000pt;}
.yec{bottom:178.666667pt;}
.yb3{bottom:180.000000pt;}
.y57{bottom:180.160000pt;}
.y13b{bottom:184.640000pt;}
.y118{bottom:187.200000pt;}
.y26{bottom:192.320000pt;}
.y165{bottom:194.880000pt;}
.y19d{bottom:195.840000pt;}
.ye6{bottom:197.333333pt;}
.yb1{bottom:198.666667pt;}
.y56{bottom:198.720000pt;}
.y13a{bottom:203.520000pt;}
.y117{bottom:208.000000pt;}
.y25{bottom:212.480000pt;}
.y164{bottom:213.120000pt;}
.y19c{bottom:216.000000pt;}
.y55{bottom:217.280000pt;}
.yaf{bottom:217.333333pt;}
.ye9{bottom:220.000000pt;}
.y139{bottom:222.080000pt;}
.y116{bottom:225.920000pt;}
.y163{bottom:231.040000pt;}
.y24{bottom:232.640000pt;}
.y54{bottom:235.840000pt;}
.y19b{bottom:236.160000pt;}
.yad{bottom:237.333333pt;}
.ye8{bottom:238.666667pt;}
.y138{bottom:240.640000pt;}
.y115{bottom:244.160000pt;}
.y162{bottom:249.280000pt;}
.y23{bottom:252.800000pt;}
.y53{bottom:254.720000pt;}
.yab{bottom:256.000000pt;}
.y19a{bottom:256.320000pt;}
.ye3{bottom:258.666667pt;}
.y137{bottom:259.200000pt;}
.y114{bottom:262.400000pt;}
.y161{bottom:267.520000pt;}
.y22{bottom:272.960000pt;}
.y52{bottom:273.280000pt;}
.ya9{bottom:276.000000pt;}
.y199{bottom:276.480000pt;}
.y136{bottom:277.760000pt;}
.y113{bottom:280.320000pt;}
.ye2{bottom:282.560000pt;}
.y160{bottom:285.440000pt;}
.y51{bottom:291.840000pt;}
.y21{bottom:293.120000pt;}
.y135{bottom:296.640000pt;}
.y112{bottom:298.560000pt;}
.ya8{bottom:299.840000pt;}
.ye1{bottom:301.120000pt;}
.y15f{bottom:303.680000pt;}
.y50{bottom:310.400000pt;}
.y20{bottom:313.600000pt;}
.y134{bottom:315.200000pt;}
.y111{bottom:316.800000pt;}
.y7d{bottom:317.440000pt;}
.ya7{bottom:318.400000pt;}
.ye0{bottom:319.680000pt;}
.y15e{bottom:321.920000pt;}
.y4f{bottom:328.960000pt;}
.y1f{bottom:333.760000pt;}
.y110{bottom:334.720000pt;}
.y7c{bottom:336.000000pt;}
.ya6{bottom:336.960000pt;}
.y198{bottom:337.280000pt;}
.ydf{bottom:338.240000pt;}
.y15d{bottom:339.840000pt;}
.y4e{bottom:347.840000pt;}
.y133{bottom:352.320000pt;}
.y10f{bottom:352.960000pt;}
.y1e{bottom:353.920000pt;}
.y7b{bottom:355.520000pt;}
.yde{bottom:357.120000pt;}
.y197{bottom:357.440000pt;}
.y15c{bottom:358.080000pt;}
.y4d{bottom:366.400000pt;}
.ya4{bottom:370.666667pt;}
.y132{bottom:370.880000pt;}
.y10e{bottom:371.200000pt;}
.y7a{bottom:373.760000pt;}
.y1d{bottom:374.080000pt;}
.ydd{bottom:375.680000pt;}
.y15b{bottom:376.000000pt;}
.y196{bottom:383.040000pt;}
.y4c{bottom:384.960000pt;}
.y10d{bottom:389.120000pt;}
.ya2{bottom:389.333333pt;}
.y131{bottom:389.760000pt;}
.y79{bottom:391.680000pt;}
.y1c{bottom:394.240000pt;}
.y195{bottom:397.760000pt;}
.y4b{bottom:403.520000pt;}
.y10c{bottom:407.360000pt;}
.y130{bottom:408.320000pt;}
.ya0{bottom:409.333333pt;}
.y78{bottom:409.920000pt;}
.y15a{bottom:412.480000pt;}
.y1b{bottom:414.400000pt;}
.y4a{bottom:422.080000pt;}
.y194{bottom:423.360000pt;}
.y10b{bottom:425.600000pt;}
.y12f{bottom:426.880000pt;}
.y9e{bottom:428.000000pt;}
.y77{bottom:428.160000pt;}
.y159{bottom:430.400000pt;}
.y1a{bottom:434.560000pt;}
.y193{bottom:438.080000pt;}
.y49{bottom:440.960000pt;}
.y10a{bottom:443.520000pt;}
.y12e{bottom:445.440000pt;}
.y76{bottom:446.080000pt;}
.y9c{bottom:446.666667pt;}
.yd9{bottom:448.000000pt;}
.y158{bottom:448.640000pt;}
.y19{bottom:454.720000pt;}
.y192{bottom:458.240000pt;}
.y48{bottom:459.520000pt;}
.y109{bottom:461.760000pt;}
.y12d{bottom:464.000000pt;}
.y75{bottom:464.320000pt;}
.y9a{bottom:466.666667pt;}
.y157{bottom:466.880000pt;}
.y18{bottom:474.880000pt;}
.y47{bottom:478.080000pt;}
.y108{bottom:479.680000pt;}
.y74{bottom:482.560000pt;}
.y12c{bottom:482.880000pt;}
.y191{bottom:483.840000pt;}
.y156{bottom:484.800000pt;}
.ydb{bottom:485.333333pt;}
.y99{bottom:490.560000pt;}
.y17{bottom:495.040000pt;}
.y46{bottom:496.640000pt;}
.y107{bottom:497.920000pt;}
.y190{bottom:498.560000pt;}
.y73{bottom:500.480000pt;}
.y12b{bottom:501.440000pt;}
.y155{bottom:503.040000pt;}
.yd6{bottom:505.333333pt;}
.y98{bottom:509.120000pt;}
.y16{bottom:515.200000pt;}
.y106{bottom:516.160000pt;}
.y72{bottom:517.760000pt;}
.y12a{bottom:520.000000pt;}
.y154{bottom:521.280000pt;}
.y18f{bottom:524.160000pt;}
.y97{bottom:528.000000pt;}
.yd5{bottom:529.280000pt;}
.y45{bottom:534.080000pt;}
.y15{bottom:535.360000pt;}
.y71{bottom:536.320000pt;}
.y129{bottom:538.560000pt;}
.y18e{bottom:538.880000pt;}
.y153{bottom:539.200000pt;}
.y96{bottom:546.560000pt;}
.yd4{bottom:547.840000pt;}
.y105{bottom:552.320000pt;}
.y44{bottom:552.640000pt;}
.y70{bottom:555.200000pt;}
.y14{bottom:555.520000pt;}
.y128{bottom:557.120000pt;}
.y152{bottom:557.440000pt;}
.y18d{bottom:559.040000pt;}
.y95{bottom:565.440000pt;}
.yd3{bottom:566.400000pt;}
.y104{bottom:570.560000pt;}
.y43{bottom:571.200000pt;}
.y6f{bottom:573.760000pt;}
.y151{bottom:575.360000pt;}
.y13{bottom:575.680000pt;}
.y127{bottom:576.000000pt;}
.y18c{bottom:584.640000pt;}
.yd2{bottom:585.280000pt;}
.y94{bottom:586.240000pt;}
.y103{bottom:588.480000pt;}
.y42{bottom:589.760000pt;}
.y6e{bottom:592.320000pt;}
.y150{bottom:593.600000pt;}
.y126{bottom:594.560000pt;}
.y12{bottom:595.840000pt;}
.y18b{bottom:599.360000pt;}
.yd1{bottom:603.840000pt;}
.y93{bottom:604.480000pt;}
.y102{bottom:606.720000pt;}
.y41{bottom:608.320000pt;}
.y6d{bottom:610.880000pt;}
.y14f{bottom:611.840000pt;}
.y125{bottom:613.120000pt;}
.y11{bottom:616.000000pt;}
.yc7{bottom:618.666667pt;}
.y18a{bottom:619.520000pt;}
.y92{bottom:622.400000pt;}
.y101{bottom:624.960000pt;}
.y40{bottom:627.200000pt;}
.y6c{bottom:629.440000pt;}
.y14e{bottom:629.760000pt;}
.y124{bottom:631.680000pt;}
.y10{bottom:636.160000pt;}
.yd0{bottom:637.333333pt;}
.y189{bottom:639.680000pt;}
.y91{bottom:640.640000pt;}
.y100{bottom:642.880000pt;}
.y3f{bottom:645.760000pt;}
.y14d{bottom:648.000000pt;}
.y6b{bottom:648.320000pt;}
.y123{bottom:650.240000pt;}
.yf{bottom:656.320000pt;}
.yc9{bottom:657.333333pt;}
.y90{bottom:658.560000pt;}
.y188{bottom:659.840000pt;}
.yff{bottom:661.120000pt;}
.y3e{bottom:664.320000pt;}
.y14c{bottom:666.240000pt;}
.y6a{bottom:666.880000pt;}
.y122{bottom:669.120000pt;}
.ycd{bottom:676.000000pt;}
.ye{bottom:676.480000pt;}
.y8f{bottom:676.800000pt;}
.yfe{bottom:678.720000pt;}
.y187{bottom:680.000000pt;}
.y3d{bottom:682.880000pt;}
.y14b{bottom:684.160000pt;}
.y69{bottom:685.440000pt;}
.y121{bottom:687.680000pt;}
.y8e{bottom:695.040000pt;}
.ycb{bottom:696.000000pt;}
.yd{bottom:696.960000pt;}
.yfd{bottom:698.560000pt;}
.y186{bottom:700.160000pt;}
.y3c{bottom:701.440000pt;}
.y14a{bottom:702.400000pt;}
.y68{bottom:704.960000pt;}
.y120{bottom:706.240000pt;}
.y8d{bottom:712.960000pt;}
.yc5{bottom:714.666667pt;}
.yc{bottom:717.120000pt;}
.y3b{bottom:720.320000pt;}
.y149{bottom:720.640000pt;}
.y67{bottom:723.200000pt;}
.y11f{bottom:724.800000pt;}
.y8c{bottom:731.200000pt;}
.yfc{bottom:735.680000pt;}
.y148{bottom:738.560000pt;}
.y3a{bottom:738.880000pt;}
.yb{bottom:740.800000pt;}
.y66{bottom:741.120000pt;}
.y11e{bottom:743.360000pt;}
.y8b{bottom:749.440000pt;}
.y178{bottom:750.080000pt;}
.yfb{bottom:754.240000pt;}
.y147{bottom:756.800000pt;}
.y39{bottom:757.440000pt;}
.y65{bottom:759.360000pt;}
.y185{bottom:760.960000pt;}
.y11d{bottom:762.240000pt;}
.y8a{bottom:767.360000pt;}
.ya{bottom:768.640000pt;}
.y177{bottom:769.920000pt;}
.yfa{bottom:773.120000pt;}
.y146{bottom:774.400000pt;}
.yc4{bottom:776.000000pt;}
.y38{bottom:776.960000pt;}
.y64{bottom:777.280000pt;}
.y11c{bottom:780.800000pt;}
.y184{bottom:781.120000pt;}
.y89{bottom:785.600000pt;}
.y176{bottom:788.480000pt;}
.yf9{bottom:791.680000pt;}
.y145{bottom:794.240000pt;}
.yc3{bottom:794.560000pt;}
.y9{bottom:795.200000pt;}
.y63{bottom:795.520000pt;}
.y37{bottom:799.360000pt;}
.y183{bottom:801.280000pt;}
.y88{bottom:803.840000pt;}
.y175{bottom:807.040000pt;}
.yf8{bottom:810.240000pt;}
.y144{bottom:812.800000pt;}
.yc2{bottom:813.440000pt;}
.y62{bottom:813.760000pt;}
.y8{bottom:815.360000pt;}
.y36{bottom:817.920000pt;}
.y182{bottom:821.440000pt;}
.y87{bottom:821.760000pt;}
.yf0{bottom:825.333333pt;}
.y174{bottom:825.920000pt;}
.y143{bottom:831.360000pt;}
.y61{bottom:831.680000pt;}
.yc1{bottom:832.000000pt;}
.y7{bottom:835.520000pt;}
.y35{bottom:836.480000pt;}
.y86{bottom:840.000000pt;}
.y181{bottom:841.600000pt;}
.yf7{bottom:844.000000pt;}
.y173{bottom:844.480000pt;}
.yb9{bottom:846.666667pt;}
.y60{bottom:848.960000pt;}
.y142{bottom:850.880000pt;}
.y34{bottom:855.360000pt;}
.y6{bottom:855.680000pt;}
.y85{bottom:858.240000pt;}
.y180{bottom:861.760000pt;}
.y172{bottom:863.040000pt;}
.yf2{bottom:864.000000pt;}
.ybf{bottom:865.333333pt;}
.y5f{bottom:867.520000pt;}
.y141{bottom:869.120000pt;}
.y33{bottom:873.920000pt;}
.y5{bottom:875.840000pt;}
.y84{bottom:876.160000pt;}
.y171{bottom:881.600000pt;}
.y17f{bottom:881.920000pt;}
.ybb{bottom:885.333333pt;}
.y5e{bottom:886.400000pt;}
.y32{bottom:892.480000pt;}
.y83{bottom:894.400000pt;}
.y4{bottom:899.520000pt;}
.y170{bottom:900.160000pt;}
.y17e{bottom:902.080000pt;}
.ybe{bottom:904.000000pt;}
.y5d{bottom:904.960000pt;}
.yf4{bottom:905.333333pt;}
.y31{bottom:911.040000pt;}
.y82{bottom:912.320000pt;}
.y16f{bottom:919.040000pt;}
.y17d{bottom:922.240000pt;}
.y5c{bottom:923.520000pt;}
.ybd{bottom:924.000000pt;}
.y30{bottom:929.600000pt;}
.y81{bottom:930.560000pt;}
.y16e{bottom:937.600000pt;}
.y3{bottom:938.240000pt;}
.y5b{bottom:942.080000pt;}
.y17c{bottom:942.400000pt;}
.yb7{bottom:942.666667pt;}
.y2f{bottom:948.480000pt;}
.y80{bottom:948.800000pt;}
.y16d{bottom:956.480000pt;}
.y5a{bottom:960.640000pt;}
.y17b{bottom:962.560000pt;}
.y7f{bottom:966.720000pt;}
.y2e{bottom:967.040000pt;}
.y2{bottom:976.960000pt;}
.y16c{bottom:977.280000pt;}
.y59{bottom:979.840000pt;}
.y17a{bottom:982.720000pt;}
.y7e{bottom:984.320000pt;}
.y2d{bottom:985.600000pt;}
.y58{bottom:1000.640000pt;}
.y179{bottom:1002.880000pt;}
.y2c{bottom:1004.160000pt;}
.y1{bottom:1016.000000pt;}
.y2b{bottom:1022.720000pt;}
.y2a{bottom:1041.600000pt;}
.y29{bottom:1061.760000pt;}
.hc{height:18.666667pt;}
.ha{height:20.000000pt;}
.hb{height:21.333333pt;}
.h17{height:22.666667pt;}
.h13{height:24.000000pt;}
.h19{height:36.100000pt;}
.h9{height:42.656250pt;}
.h6{height:44.735000pt;}
.h7{height:48.625000pt;}
.h14{height:52.345000pt;}
.h3{height:52.515000pt;}
.h18{height:57.860000pt;}
.h8{height:61.267500pt;}
.h5{height:67.687500pt;}
.h4{height:72.937500pt;}
.hf{height:77.333333pt;}
.h16{height:80.000000pt;}
.h12{height:81.333333pt;}
.h10{height:90.250000pt;}
.h2{height:97.045000pt;}
.hd{height:116.000000pt;}
.h15{height:118.666667pt;}
.h11{height:120.000000pt;}
.he{height:185.125000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:25.333333pt;}
.wc{width:26.666667pt;}
.w13{width:29.333333pt;}
.w18{width:30.666667pt;}
.w5{width:32.000000pt;}
.w2{width:37.333333pt;}
.w15{width:38.666667pt;}
.w16{width:40.000000pt;}
.w8{width:49.333333pt;}
.we{width:50.666667pt;}
.wf{width:76.000000pt;}
.w7{width:81.333333pt;}
.wa{width:126.666667pt;}
.w11{width:128.000000pt;}
.w17{width:133.600000pt;}
.w19{width:134.933333pt;}
.w3{width:141.333333pt;}
.w14{width:142.666667pt;}
.w6{width:145.333333pt;}
.w12{width:161.333333pt;}
.wb{width:237.600000pt;}
.wd{width:238.933333pt;}
.w10{width:241.600000pt;}
.w4{width:430.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.466795pt;}
.x16{left:8.426560pt;}
.x24{left:9.766080pt;}
.x14{left:11.153920pt;}
.x1a{left:12.839211pt;}
.xf{left:14.026699pt;}
.xa{left:18.465803pt;}
.x6{left:19.653323pt;}
.xd{left:20.579435pt;}
.x2d{left:22.040011pt;}
.x1b{left:23.800139pt;}
.xb{left:29.426763pt;}
.x23{left:37.939947pt;}
.x18{left:79.856747pt;}
.x5{left:93.333333pt;}
.x1{left:94.400064pt;}
.x11{left:97.576480pt;}
.xe{left:101.333333pt;}
.x1d{left:119.333227pt;}
.x7{left:129.333333pt;}
.x10{left:132.000000pt;}
.xc{left:133.346699pt;}
.x2e{left:134.586773pt;}
.x1c{left:137.053056pt;}
.x25{left:153.733419pt;}
.x26{left:261.333333pt;}
.x8{left:269.333333pt;}
.x12{left:276.000000pt;}
.x27{left:290.666667pt;}
.x1f{left:325.333333pt;}
.x13{left:356.000000pt;}
.x20{left:400.000000pt;}
.x15{left:404.000000pt;}
.x21{left:425.333333pt;}
.x17{left:429.333333pt;}
.x28{left:432.000000pt;}
.x29{left:469.333333pt;}
.x2{left:490.660480pt;}
.x2a{left:508.000000pt;}
.x2b{left:533.333333pt;}
.x22{left:552.000000pt;}
.x1e{left:554.666667pt;}
.x19{left:556.000000pt;}
.x3{left:598.333760pt;}
.x2f{left:658.666667pt;}
.x2c{left:660.000000pt;}
.x4{left:699.066560pt;}
}




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