
    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_d89a1c915b9dd64255c91f26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8f89a8fbcb61f87c3a0f17e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4d99631cc25154764ea8f28a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_81b7759d4c6cc78ec18993d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_4887b8951971c5b8ea1da11a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43b0192c579bde55b77463fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_93b9cb4062dcac7980ca6313.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_a50c2d9dc4a8059c7b0a6628.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_f17e0e72312c4a433dd1805c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_f0a6636d18cd9dc366843524.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_7deb5df01847b4ac89547132.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_c034fcb63703827c70bb3087.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_864337657eb4778e3960763b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_865c6ead7b5e197aa0a5ea63.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.112305;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_276208aa32c234582c08980e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_677df4fc0f3e7781fa0f95e1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-4.680000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.298200px;}
.lsb{letter-spacing:-0.272400px;}
.lsa{letter-spacing:-0.127200px;}
.ls16{letter-spacing:-0.091200px;}
.ls13{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls15{letter-spacing:0.135360px;}
.ls14{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls7{letter-spacing:0.894240px;}
.ls18{letter-spacing:0.900000px;}
.ls1a{letter-spacing:16.506720px;}
.ls19{letter-spacing:46.026720px;}
.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:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.075600px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws10{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws11{word-spacing:-12.145344px;}
.ws9{word-spacing:-10.260000px;}
.ws4{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.514480px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-6.840960px;}
._8{margin-left:-5.445840px;}
._4{margin-left:-4.326000px;}
._3{margin-left:-3.059760px;}
._0{margin-left:-1.068000px;}
._2{width:1.170000px;}
._1{width:2.214000px;}
._9{width:3.702240px;}
._5{width:5.001840px;}
._d{width:6.118560px;}
._e{width:7.490160px;}
._f{width:8.570880px;}
._10{width:9.640080px;}
._b{width:10.652160px;}
._a{width:12.354720px;}
._6{width:13.905120px;}
._7{width:16.664880px;}
._c{width:18.029280px;}
._13{width:19.059600px;}
._16{width:20.139120px;}
._15{width:71.336640px;}
._14{width:72.608400px;}
._12{width:108.546000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.ye9{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y48{bottom:3.960000px;}
.y9d{bottom:4.140000px;}
.y19{bottom:4.500000px;}
.yae{bottom:4.680000px;}
.ya6{bottom:4.860000px;}
.yb1{bottom:5.220000px;}
.y9f{bottom:5.400000px;}
.ya1{bottom:6.300000px;}
.yb3{bottom:6.480000px;}
.yb5{bottom:7.020000px;}
.ya3{bottom:7.560000px;}
.yac{bottom:8.640000px;}
.y46{bottom:10.620000px;}
.yf{bottom:10.800000px;}
.yd{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.yaa{bottom:17.820000px;}
.y2{bottom:20.160000px;}
.ye7{bottom:20.514000px;}
.y42{bottom:20.520000px;}
.y47{bottom:22.320000px;}
.y45{bottom:25.380000px;}
.y18{bottom:27.540000px;}
.yc{bottom:30.240000px;}
.y41{bottom:37.620000px;}
.ye6{bottom:37.794000px;}
.y17{bottom:44.100000px;}
.yb{bottom:46.620000px;}
.y40{bottom:54.900000px;}
.y5{bottom:58.320000px;}
.y16{bottom:59.985000px;}
.y15{bottom:70.425000px;}
.y3f{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y1{bottom:79.416000px;}
.y14{bottom:88.605000px;}
.y3e{bottom:89.460000px;}
.y9{bottom:93.060000px;}
.y3d{bottom:106.740000px;}
.y13{bottom:107.685000px;}
.y8{bottom:111.420000px;}
.y3c{bottom:124.020000px;}
.ydd{bottom:125.316000px;}
.ya8{bottom:130.290000px;}
.y12{bottom:133.425000px;}
.y52{bottom:133.956000px;}
.ye5{bottom:136.296000px;}
.y8c{bottom:136.476000px;}
.y122{bottom:137.376000px;}
.y3b{bottom:141.120000px;}
.ydc{bottom:142.596000px;}
.y51{bottom:151.230000px;}
.ya5{bottom:151.950000px;}
.y8b{bottom:153.750000px;}
.y121{bottom:154.470000px;}
.y11{bottom:157.725000px;}
.y3a{bottom:158.400000px;}
.ydb{bottom:159.690000px;}
.y50{bottom:168.510000px;}
.y8a{bottom:171.030000px;}
.y120{bottom:171.750000px;}
.ya4{bottom:173.010000px;}
.y39{bottom:175.680000px;}
.yda{bottom:176.970000px;}
.y4f{bottom:185.790000px;}
.y89{bottom:188.310000px;}
.y11f{bottom:189.030000px;}
.ye4{bottom:192.090000px;}
.y38{bottom:192.960000px;}
.yd9{bottom:194.250000px;}
.y29{bottom:199.440000px;}
.ya2{bottom:199.650000px;}
.y4e{bottom:202.890000px;}
.y88{bottom:205.590000px;}
.y11e{bottom:206.310000px;}
.ye3{bottom:209.370000px;}
.y37{bottom:210.240000px;}
.yd8{bottom:211.530000px;}
.y28{bottom:214.740000px;}
.y4d{bottom:220.170000px;}
.ya9{bottom:221.430000px;}
.y87{bottom:222.870000px;}
.y11d{bottom:223.590000px;}
.ya0{bottom:226.290000px;}
.ye2{bottom:226.470000px;}
.y36{bottom:227.340000px;}
.yd7{bottom:228.810000px;}
.y27{bottom:232.380000px;}
.y4c{bottom:237.450000px;}
.y86{bottom:237.630000px;}
.y11c{bottom:240.870000px;}
.ye1{bottom:243.750000px;}
.y35{bottom:244.620000px;}
.yd6{bottom:246.090000px;}
.y26{bottom:249.660000px;}
.y9e{bottom:250.590000px;}
.y4b{bottom:254.730000px;}
.y85{bottom:255.630000px;}
.y11b{bottom:257.970000px;}
.ye0{bottom:261.030000px;}
.y34{bottom:261.900000px;}
.yd5{bottom:263.190000px;}
.y25{bottom:266.970000px;}
.y4a{bottom:272.010000px;}
.y84{bottom:273.630000px;}
.y11a{bottom:275.250000px;}
.ydf{bottom:278.310000px;}
.y33{bottom:279.210000px;}
.yd4{bottom:280.470000px;}
.y24{bottom:284.610000px;}
.y49{bottom:289.110000px;}
.y83{bottom:291.630000px;}
.y119{bottom:292.530000px;}
.yde{bottom:295.590000px;}
.y9c{bottom:295.770000px;}
.y32{bottom:296.490000px;}
.yd3{bottom:297.750000px;}
.y23{bottom:302.070000px;}
.y44{bottom:303.150000px;}
.y118{bottom:309.810000px;}
.yd2{bottom:312.510000px;}
.y82{bottom:312.870000px;}
.y9b{bottom:313.050000px;}
.y31{bottom:313.770000px;}
.y22{bottom:319.530000px;}
.y117{bottom:327.090000px;}
.y81{bottom:329.970000px;}
.y9a{bottom:330.330000px;}
.y30{bottom:330.870000px;}
.y21{bottom:336.810000px;}
.yd1{bottom:338.115000px;}
.y1b{bottom:339.915000px;}
.y116{bottom:344.415000px;}
.y80{bottom:347.295000px;}
.y99{bottom:347.655000px;}
.y2f{bottom:348.150000px;}
.y20{bottom:354.270000px;}
.yd0{bottom:356.115000px;}
.y115{bottom:361.515000px;}
.y7f{bottom:364.575000px;}
.y98{bottom:364.935000px;}
.y2e{bottom:365.430000px;}
.y1f{bottom:371.730000px;}
.ycf{bottom:375.915000px;}
.y114{bottom:378.795000px;}
.y7e{bottom:381.855000px;}
.y97{bottom:382.215000px;}
.y2d{bottom:382.710000px;}
.y1e{bottom:391.890000px;}
.y113{bottom:396.075000px;}
.y7d{bottom:399.135000px;}
.y96{bottom:399.315000px;}
.y2c{bottom:399.990000px;}
.yce{bottom:400.395000px;}
.y112{bottom:413.355000px;}
.y7c{bottom:416.415000px;}
.y95{bottom:416.595000px;}
.y2b{bottom:417.270000px;}
.ycd{bottom:417.495000px;}
.y1d{bottom:419.430000px;}
.y111{bottom:430.635000px;}
.y7b{bottom:433.515000px;}
.y94{bottom:433.875000px;}
.y2a{bottom:434.370000px;}
.y1c{bottom:437.070000px;}
.ycc{bottom:442.875000px;}
.y93{bottom:447.915000px;}
.y7a{bottom:450.795000px;}
.ycb{bottom:460.155000px;}
.y110{bottom:465.015000px;}
.y79{bottom:468.075000px;}
.yca{bottom:477.435000px;}
.y10f{bottom:482.295000px;}
.y78{bottom:485.355000px;}
.yc9{bottom:494.715000px;}
.y10e{bottom:499.575000px;}
.y77{bottom:502.635000px;}
.yc8{bottom:511.995000px;}
.y10d{bottom:516.855000px;}
.y76{bottom:519.735000px;}
.yc7{bottom:529.095000px;}
.y10c{bottom:534.135000px;}
.y75{bottom:537.015000px;}
.yc6{bottom:546.375000px;}
.y10b{bottom:551.235000px;}
.y74{bottom:554.295000px;}
.yc5{bottom:563.655000px;}
.y10a{bottom:568.515000px;}
.y73{bottom:571.575000px;}
.yc4{bottom:579.135000px;}
.y109{bottom:585.795000px;}
.y72{bottom:588.855000px;}
.y108{bottom:603.075000px;}
.yc3{bottom:604.725000px;}
.y71{bottom:606.165000px;}
.y107{bottom:620.385000px;}
.y70{bottom:623.265000px;}
.yc2{bottom:633.525000px;}
.y106{bottom:637.665000px;}
.y6f{bottom:640.545000px;}
.y105{bottom:654.765000px;}
.y6e{bottom:657.825000px;}
.yc1{bottom:660.165000px;}
.y104{bottom:672.045000px;}
.y6d{bottom:675.105000px;}
.yc0{bottom:684.645000px;}
.y103{bottom:689.325000px;}
.y6c{bottom:692.385000px;}
.ybf{bottom:704.805000px;}
.y102{bottom:706.605000px;}
.y6b{bottom:709.665000px;}
.y101{bottom:723.885000px;}
.y6a{bottom:726.765000px;}
.ybe{bottom:734.325000px;}
.y100{bottom:741.165000px;}
.y69{bottom:744.045000px;}
.ybd{bottom:751.605000px;}
.yff{bottom:758.265000px;}
.y68{bottom:761.325000px;}
.y92{bottom:762.585000px;}
.ybc{bottom:768.885000px;}
.yfe{bottom:775.545000px;}
.y67{bottom:778.605000px;}
.y91{bottom:779.865000px;}
.ybb{bottom:785.985000px;}
.y1a{bottom:788.325000px;}
.yfd{bottom:792.825000px;}
.y66{bottom:795.885000px;}
.y90{bottom:796.965000px;}
.yba{bottom:803.265000px;}
.yfc{bottom:810.105000px;}
.y65{bottom:812.985000px;}
.y8f{bottom:814.245000px;}
.y10{bottom:817.845000px;}
.yb9{bottom:820.545000px;}
.yfb{bottom:827.385000px;}
.y64{bottom:830.265000px;}
.y8e{bottom:831.525000px;}
.yb8{bottom:837.825000px;}
.yfa{bottom:844.485000px;}
.y63{bottom:847.545000px;}
.y8d{bottom:848.805000px;}
.ya7{bottom:849.780000px;}
.yb7{bottom:855.105000px;}
.yf9{bottom:861.765000px;}
.y62{bottom:864.825000px;}
.yb6{bottom:872.430000px;}
.yf8{bottom:879.090000px;}
.y61{bottom:882.150000px;}
.yb4{bottom:887.910000px;}
.yf7{bottom:896.370000px;}
.y60{bottom:899.430000px;}
.yb2{bottom:913.290000px;}
.yf6{bottom:913.650000px;}
.y5f{bottom:916.530000px;}
.yf5{bottom:930.930000px;}
.y5e{bottom:933.810000px;}
.yb0{bottom:937.770000px;}
.yf4{bottom:948.030000px;}
.y5d{bottom:951.090000px;}
.yaf{bottom:959.910000px;}
.yf3{bottom:965.310000px;}
.y5c{bottom:968.370000px;}
.yf2{bottom:982.590000px;}
.yad{bottom:984.210000px;}
.y5b{bottom:985.650000px;}
.ye{bottom:990.690000px;}
.yf1{bottom:999.870000px;}
.y5a{bottom:1002.930000px;}
.yab{bottom:1004.550000px;}
.y7{bottom:1016.070000px;}
.yf0{bottom:1017.150000px;}
.y59{bottom:1020.030000px;}
.yef{bottom:1034.430000px;}
.y58{bottom:1037.310000px;}
.yee{bottom:1051.530000px;}
.y57{bottom:1054.590000px;}
.yed{bottom:1068.810000px;}
.y56{bottom:1071.870000px;}
.yec{bottom:1086.090000px;}
.y55{bottom:1089.150000px;}
.yeb{bottom:1100.850000px;}
.y54{bottom:1106.430000px;}
.yea{bottom:1118.850000px;}
.y53{bottom:1123.530000px;}
.ye8{bottom:1136.850000px;}
.y6{bottom:1140.840000px;}
.h20{height:17.100000px;}
.h2e{height:17.280000px;}
.h30{height:17.316000px;}
.h21{height:19.080000px;}
.h2c{height:20.160000px;}
.h25{height:20.340000px;}
.h22{height:21.420000px;}
.h23{height:23.580000px;}
.h29{height:23.760000px;}
.h2a{height:24.660000px;}
.h2b{height:24.840000px;}
.h2d{height:24.876000px;}
.hd{height:25.020000px;}
.h24{height:25.920000px;}
.h28{height:28.080000px;}
.h16{height:29.520000px;}
.h15{height:32.103633px;}
.h2{height:32.940000px;}
.h14{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.756000px;}
.h7{height:42.164648px;}
.h1c{height:42.186445px;}
.h10{height:44.002969px;}
.hb{height:44.820000px;}
.h18{height:47.980898px;}
.h1b{height:49.255313px;}
.he{height:49.680000px;}
.h1a{height:49.742227px;}
.h2f{height:51.840000px;}
.h1f{height:52.260820px;}
.h1d{height:53.573906px;}
.h4{height:53.709961px;}
.h27{height:53.853187px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h12{height:59.439023px;}
.h13{height:61.189805px;}
.h11{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hc{height:71.613281px;}
.h8{height:121.500000px;}
.hf{height:172.830000px;}
.h26{height:305.100000px;}
.h17{height:448.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w25{width:82.656000px;}
.w19{width:83.196000px;}
.w17{width:86.040000px;}
.w15{width:86.220000px;}
.w12{width:86.256000px;}
.w2b{width:86.400000px;}
.w14{width:88.416000px;}
.w37{width:90.720000px;}
.w35{width:90.900000px;}
.w36{width:90.936000px;}
.w33{width:91.080000px;}
.w34{width:91.116000px;}
.w2d{width:92.160000px;}
.w29{width:92.556000px;}
.w1e{width:96.300000px;}
.w21{width:101.376000px;}
.w28{width:102.060000px;}
.w22{width:103.680000px;}
.w16{width:108.576000px;}
.w20{width:108.900000px;}
.w13{width:110.160000px;}
.w32{width:114.696000px;}
.w1f{width:115.056000px;}
.w1d{width:117.396000px;}
.we{width:119.016000px;}
.w2c{width:123.336000px;}
.wb{width:133.200000px;}
.wc{width:146.736000px;}
.w2a{width:146.916000px;}
.w3b{width:148.500000px;}
.w5{width:151.950000px;}
.w2e{width:157.710000px;}
.w3d{width:164.010000px;}
.w10{width:174.990000px;}
.w31{width:181.830000px;}
.w30{width:182.010000px;}
.w39{width:182.190000px;}
.w38{width:182.370000px;}
.w11{width:194.970000px;}
.wf{width:196.770000px;}
.w3a{width:203.655000px;}
.w24{width:205.230000px;}
.w1c{width:205.590000px;}
.w2f{width:206.130000px;}
.w3c{width:211.350000px;}
.wa{width:211.755000px;}
.w1a{width:214.050000px;}
.w27{width:215.850000px;}
.w8{width:216.075000px;}
.w23{width:223.950000px;}
.w1b{width:224.310000px;}
.w26{width:233.670000px;}
.wd{width:235.830000px;}
.w18{width:508.500000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.416000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.x35{left:14.760000px;}
.x56{left:16.965000px;}
.x2e{left:18.540000px;}
.x60{left:19.980000px;}
.x32{left:21.060000px;}
.x4a{left:22.860000px;}
.x53{left:23.985000px;}
.x36{left:25.020000px;}
.x47{left:26.100000px;}
.x49{left:28.260000px;}
.x33{left:29.520000px;}
.x30{left:32.940000px;}
.x44{left:34.020000px;}
.x18{left:35.280000px;}
.x37{left:36.936000px;}
.x14{left:37.980000px;}
.x2c{left:40.320000px;}
.x19{left:42.150000px;}
.x1c{left:44.640000px;}
.x24{left:46.836000px;}
.x2d{left:48.780000px;}
.xb{left:50.436000px;}
.x13{left:51.516000px;}
.x59{left:52.956000px;}
.x2b{left:54.540000px;}
.x39{left:55.620000px;}
.x66{left:57.240000px;}
.x4d{left:58.500000px;}
.xe{left:59.796000px;}
.x43{left:63.180000px;}
.x27{left:64.620000px;}
.x40{left:68.040000px;}
.x1b{left:69.690000px;}
.x29{left:75.060000px;}
.x1e{left:76.890000px;}
.x38{left:77.985000px;}
.x67{left:79.950000px;}
.x1{left:81.000000px;}
.x3e{left:82.440000px;}
.x62{left:84.630000px;}
.x51{left:85.725000px;}
.x17{left:88.965000px;}
.x4b{left:90.180000px;}
.x1a{left:92.205000px;}
.x4f{left:93.960000px;}
.x1d{left:95.985000px;}
.x4{left:98.130000px;}
.x57{left:100.080000px;}
.x68{left:108.035987px;}
.x61{left:112.175987px;}
.x21{left:135.035987px;}
.x58{left:156.989987px;}
.x3f{left:165.990000px;}
.x3c{left:171.360000px;}
.xc{left:174.270000px;}
.x3b{left:183.495000px;}
.xd{left:197.355000px;}
.x25{left:201.090000px;}
.xf{left:215.175000px;}
.x3d{left:218.369987px;}
.x5{left:232.950000px;}
.x4c{left:238.349987px;}
.x5a{left:239.790000px;}
.x23{left:256.169987px;}
.x52{left:267.870000px;}
.x3a{left:268.920000px;}
.x8{left:272.235000px;}
.x45{left:283.755000px;}
.x63{left:286.095000px;}
.x2f{left:287.715000px;}
.x12{left:293.834987px;}
.x10{left:297.075000px;}
.x20{left:319.034987px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.x5d{left:354.855000px;}
.x4e{left:360.795000px;}
.xa{left:365.475000px;}
.x41{left:380.415000px;}
.x26{left:398.415000px;}
.x15{left:428.115000px;}
.x64{left:435.315000px;}
.x9{left:439.500000px;}
.x5b{left:446.655000px;}
.x31{left:487.185000px;}
.x46{left:495.825000px;}
.x54{left:508.065000px;}
.x5e{left:537.765000px;}
.x28{left:573.945000px;}
.x16{left:575.565000px;}
.x50{left:594.825000px;}
.x42{left:605.085000px;}
.x5c{left:629.565000px;}
.x65{left:647.385000px;}
.x34{left:682.890000px;}
.x22{left:705.569987px;}
.x48{left:706.830000px;}
.x55{left:718.530000px;}
.x5f{left:720.690000px;}
.x1f{left:723.569987px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-4.160000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.265067pt;}
.lsb{letter-spacing:-0.242133pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls16{letter-spacing:-0.081067pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls15{letter-spacing:0.120320pt;}
.ls14{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls7{letter-spacing:0.794880pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls19{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.400533pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws10{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws11{word-spacing:-10.795861pt;}
.ws9{word-spacing:-9.120000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.568427pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-6.080853pt;}
._8{margin-left:-4.840747pt;}
._4{margin-left:-3.845333pt;}
._3{margin-left:-2.719787pt;}
._0{margin-left:-0.949333pt;}
._2{width:1.040000pt;}
._1{width:1.968000pt;}
._9{width:3.290880pt;}
._5{width:4.446080pt;}
._d{width:5.438720pt;}
._e{width:6.657920pt;}
._f{width:7.618560pt;}
._10{width:8.568960pt;}
._b{width:9.468587pt;}
._a{width:10.981973pt;}
._6{width:12.360107pt;}
._7{width:14.813227pt;}
._c{width:16.026027pt;}
._13{width:16.941867pt;}
._16{width:17.901440pt;}
._15{width:63.410347pt;}
._14{width:64.540800pt;}
._12{width:96.485333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.ye9{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y48{bottom:3.520000pt;}
.y9d{bottom:3.680000pt;}
.y19{bottom:4.000000pt;}
.yae{bottom:4.160000pt;}
.ya6{bottom:4.320000pt;}
.yb1{bottom:4.640000pt;}
.y9f{bottom:4.800000pt;}
.ya1{bottom:5.600000pt;}
.yb3{bottom:5.760000pt;}
.yb5{bottom:6.240000pt;}
.ya3{bottom:6.720000pt;}
.yac{bottom:7.680000pt;}
.y46{bottom:9.440000pt;}
.yf{bottom:9.600000pt;}
.yd{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.yaa{bottom:15.840000pt;}
.y2{bottom:17.920000pt;}
.ye7{bottom:18.234667pt;}
.y42{bottom:18.240000pt;}
.y47{bottom:19.840000pt;}
.y45{bottom:22.560000pt;}
.y18{bottom:24.480000pt;}
.yc{bottom:26.880000pt;}
.y41{bottom:33.440000pt;}
.ye6{bottom:33.594667pt;}
.y17{bottom:39.200000pt;}
.yb{bottom:41.440000pt;}
.y40{bottom:48.800000pt;}
.y5{bottom:51.840000pt;}
.y16{bottom:53.320000pt;}
.y15{bottom:62.600000pt;}
.y3f{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y1{bottom:70.592000pt;}
.y14{bottom:78.760000pt;}
.y3e{bottom:79.520000pt;}
.y9{bottom:82.720000pt;}
.y3d{bottom:94.880000pt;}
.y13{bottom:95.720000pt;}
.y8{bottom:99.040000pt;}
.y3c{bottom:110.240000pt;}
.ydd{bottom:111.392000pt;}
.ya8{bottom:115.813333pt;}
.y12{bottom:118.600000pt;}
.y52{bottom:119.072000pt;}
.ye5{bottom:121.152000pt;}
.y8c{bottom:121.312000pt;}
.y122{bottom:122.112000pt;}
.y3b{bottom:125.440000pt;}
.ydc{bottom:126.752000pt;}
.y51{bottom:134.426667pt;}
.ya5{bottom:135.066667pt;}
.y8b{bottom:136.666667pt;}
.y121{bottom:137.306667pt;}
.y11{bottom:140.200000pt;}
.y3a{bottom:140.800000pt;}
.ydb{bottom:141.946667pt;}
.y50{bottom:149.786667pt;}
.y8a{bottom:152.026667pt;}
.y120{bottom:152.666667pt;}
.ya4{bottom:153.786667pt;}
.y39{bottom:156.160000pt;}
.yda{bottom:157.306667pt;}
.y4f{bottom:165.146667pt;}
.y89{bottom:167.386667pt;}
.y11f{bottom:168.026667pt;}
.ye4{bottom:170.746667pt;}
.y38{bottom:171.520000pt;}
.yd9{bottom:172.666667pt;}
.y29{bottom:177.280000pt;}
.ya2{bottom:177.466667pt;}
.y4e{bottom:180.346667pt;}
.y88{bottom:182.746667pt;}
.y11e{bottom:183.386667pt;}
.ye3{bottom:186.106667pt;}
.y37{bottom:186.880000pt;}
.yd8{bottom:188.026667pt;}
.y28{bottom:190.880000pt;}
.y4d{bottom:195.706667pt;}
.ya9{bottom:196.826667pt;}
.y87{bottom:198.106667pt;}
.y11d{bottom:198.746667pt;}
.ya0{bottom:201.146667pt;}
.ye2{bottom:201.306667pt;}
.y36{bottom:202.080000pt;}
.yd7{bottom:203.386667pt;}
.y27{bottom:206.560000pt;}
.y4c{bottom:211.066667pt;}
.y86{bottom:211.226667pt;}
.y11c{bottom:214.106667pt;}
.ye1{bottom:216.666667pt;}
.y35{bottom:217.440000pt;}
.yd6{bottom:218.746667pt;}
.y26{bottom:221.920000pt;}
.y9e{bottom:222.746667pt;}
.y4b{bottom:226.426667pt;}
.y85{bottom:227.226667pt;}
.y11b{bottom:229.306667pt;}
.ye0{bottom:232.026667pt;}
.y34{bottom:232.800000pt;}
.yd5{bottom:233.946667pt;}
.y25{bottom:237.306667pt;}
.y4a{bottom:241.786667pt;}
.y84{bottom:243.226667pt;}
.y11a{bottom:244.666667pt;}
.ydf{bottom:247.386667pt;}
.y33{bottom:248.186667pt;}
.yd4{bottom:249.306667pt;}
.y24{bottom:252.986667pt;}
.y49{bottom:256.986667pt;}
.y83{bottom:259.226667pt;}
.y119{bottom:260.026667pt;}
.yde{bottom:262.746667pt;}
.y9c{bottom:262.906667pt;}
.y32{bottom:263.546667pt;}
.yd3{bottom:264.666667pt;}
.y23{bottom:268.506667pt;}
.y44{bottom:269.466667pt;}
.y118{bottom:275.386667pt;}
.yd2{bottom:277.786667pt;}
.y82{bottom:278.106667pt;}
.y9b{bottom:278.266667pt;}
.y31{bottom:278.906667pt;}
.y22{bottom:284.026667pt;}
.y117{bottom:290.746667pt;}
.y81{bottom:293.306667pt;}
.y9a{bottom:293.626667pt;}
.y30{bottom:294.106667pt;}
.y21{bottom:299.386667pt;}
.yd1{bottom:300.546667pt;}
.y1b{bottom:302.146667pt;}
.y116{bottom:306.146667pt;}
.y80{bottom:308.706667pt;}
.y99{bottom:309.026667pt;}
.y2f{bottom:309.466667pt;}
.y20{bottom:314.906667pt;}
.yd0{bottom:316.546667pt;}
.y115{bottom:321.346667pt;}
.y7f{bottom:324.066667pt;}
.y98{bottom:324.386667pt;}
.y2e{bottom:324.826667pt;}
.y1f{bottom:330.426667pt;}
.ycf{bottom:334.146667pt;}
.y114{bottom:336.706667pt;}
.y7e{bottom:339.426667pt;}
.y97{bottom:339.746667pt;}
.y2d{bottom:340.186667pt;}
.y1e{bottom:348.346667pt;}
.y113{bottom:352.066667pt;}
.y7d{bottom:354.786667pt;}
.y96{bottom:354.946667pt;}
.y2c{bottom:355.546667pt;}
.yce{bottom:355.906667pt;}
.y112{bottom:367.426667pt;}
.y7c{bottom:370.146667pt;}
.y95{bottom:370.306667pt;}
.y2b{bottom:370.906667pt;}
.ycd{bottom:371.106667pt;}
.y1d{bottom:372.826667pt;}
.y111{bottom:382.786667pt;}
.y7b{bottom:385.346667pt;}
.y94{bottom:385.666667pt;}
.y2a{bottom:386.106667pt;}
.y1c{bottom:388.506667pt;}
.ycc{bottom:393.666667pt;}
.y93{bottom:398.146667pt;}
.y7a{bottom:400.706667pt;}
.ycb{bottom:409.026667pt;}
.y110{bottom:413.346667pt;}
.y79{bottom:416.066667pt;}
.yca{bottom:424.386667pt;}
.y10f{bottom:428.706667pt;}
.y78{bottom:431.426667pt;}
.yc9{bottom:439.746667pt;}
.y10e{bottom:444.066667pt;}
.y77{bottom:446.786667pt;}
.yc8{bottom:455.106667pt;}
.y10d{bottom:459.426667pt;}
.y76{bottom:461.986667pt;}
.yc7{bottom:470.306667pt;}
.y10c{bottom:474.786667pt;}
.y75{bottom:477.346667pt;}
.yc6{bottom:485.666667pt;}
.y10b{bottom:489.986667pt;}
.y74{bottom:492.706667pt;}
.yc5{bottom:501.026667pt;}
.y10a{bottom:505.346667pt;}
.y73{bottom:508.066667pt;}
.yc4{bottom:514.786667pt;}
.y109{bottom:520.706667pt;}
.y72{bottom:523.426667pt;}
.y108{bottom:536.066667pt;}
.yc3{bottom:537.533333pt;}
.y71{bottom:538.813333pt;}
.y107{bottom:551.453333pt;}
.y70{bottom:554.013333pt;}
.yc2{bottom:563.133333pt;}
.y106{bottom:566.813333pt;}
.y6f{bottom:569.373333pt;}
.y105{bottom:582.013333pt;}
.y6e{bottom:584.733333pt;}
.yc1{bottom:586.813333pt;}
.y104{bottom:597.373333pt;}
.y6d{bottom:600.093333pt;}
.yc0{bottom:608.573333pt;}
.y103{bottom:612.733333pt;}
.y6c{bottom:615.453333pt;}
.ybf{bottom:626.493333pt;}
.y102{bottom:628.093333pt;}
.y6b{bottom:630.813333pt;}
.y101{bottom:643.453333pt;}
.y6a{bottom:646.013333pt;}
.ybe{bottom:652.733333pt;}
.y100{bottom:658.813333pt;}
.y69{bottom:661.373333pt;}
.ybd{bottom:668.093333pt;}
.yff{bottom:674.013333pt;}
.y68{bottom:676.733333pt;}
.y92{bottom:677.853333pt;}
.ybc{bottom:683.453333pt;}
.yfe{bottom:689.373333pt;}
.y67{bottom:692.093333pt;}
.y91{bottom:693.213333pt;}
.ybb{bottom:698.653333pt;}
.y1a{bottom:700.733333pt;}
.yfd{bottom:704.733333pt;}
.y66{bottom:707.453333pt;}
.y90{bottom:708.413333pt;}
.yba{bottom:714.013333pt;}
.yfc{bottom:720.093333pt;}
.y65{bottom:722.653333pt;}
.y8f{bottom:723.773333pt;}
.y10{bottom:726.973333pt;}
.yb9{bottom:729.373333pt;}
.yfb{bottom:735.453333pt;}
.y64{bottom:738.013333pt;}
.y8e{bottom:739.133333pt;}
.yb8{bottom:744.733333pt;}
.yfa{bottom:750.653333pt;}
.y63{bottom:753.373333pt;}
.y8d{bottom:754.493333pt;}
.ya7{bottom:755.360000pt;}
.yb7{bottom:760.093333pt;}
.yf9{bottom:766.013333pt;}
.y62{bottom:768.733333pt;}
.yb6{bottom:775.493333pt;}
.yf8{bottom:781.413333pt;}
.y61{bottom:784.133333pt;}
.yb4{bottom:789.253333pt;}
.yf7{bottom:796.773333pt;}
.y60{bottom:799.493333pt;}
.yb2{bottom:811.813333pt;}
.yf6{bottom:812.133333pt;}
.y5f{bottom:814.693333pt;}
.yf5{bottom:827.493333pt;}
.y5e{bottom:830.053333pt;}
.yb0{bottom:833.573333pt;}
.yf4{bottom:842.693333pt;}
.y5d{bottom:845.413333pt;}
.yaf{bottom:853.253333pt;}
.yf3{bottom:858.053333pt;}
.y5c{bottom:860.773333pt;}
.yf2{bottom:873.413333pt;}
.yad{bottom:874.853333pt;}
.y5b{bottom:876.133333pt;}
.ye{bottom:880.613333pt;}
.yf1{bottom:888.773333pt;}
.y5a{bottom:891.493333pt;}
.yab{bottom:892.933333pt;}
.y7{bottom:903.173333pt;}
.yf0{bottom:904.133333pt;}
.y59{bottom:906.693333pt;}
.yef{bottom:919.493333pt;}
.y58{bottom:922.053333pt;}
.yee{bottom:934.693333pt;}
.y57{bottom:937.413333pt;}
.yed{bottom:950.053333pt;}
.y56{bottom:952.773333pt;}
.yec{bottom:965.413333pt;}
.y55{bottom:968.133333pt;}
.yeb{bottom:978.533333pt;}
.y54{bottom:983.493333pt;}
.yea{bottom:994.533333pt;}
.y53{bottom:998.693333pt;}
.ye8{bottom:1010.533333pt;}
.y6{bottom:1014.080000pt;}
.h20{height:15.200000pt;}
.h2e{height:15.360000pt;}
.h30{height:15.392000pt;}
.h21{height:16.960000pt;}
.h2c{height:17.920000pt;}
.h25{height:18.080000pt;}
.h22{height:19.040000pt;}
.h23{height:20.960000pt;}
.h29{height:21.120000pt;}
.h2a{height:21.920000pt;}
.h2b{height:22.080000pt;}
.h2d{height:22.112000pt;}
.hd{height:22.240000pt;}
.h24{height:23.040000pt;}
.h28{height:24.960000pt;}
.h16{height:26.240000pt;}
.h15{height:28.536563pt;}
.h2{height:29.280000pt;}
.h14{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.672000pt;}
.h7{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h10{height:39.113750pt;}
.hb{height:39.840000pt;}
.h18{height:42.649687pt;}
.h1b{height:43.782500pt;}
.he{height:44.160000pt;}
.h1a{height:44.215312pt;}
.h2f{height:46.080000pt;}
.h1f{height:46.454062pt;}
.h1d{height:47.621250pt;}
.h4{height:47.742188pt;}
.h27{height:47.869500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h12{height:52.834688pt;}
.h13{height:54.390938pt;}
.h11{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hc{height:63.656250pt;}
.h8{height:108.000000pt;}
.hf{height:153.626667pt;}
.h26{height:271.200000pt;}
.h17{height:398.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w25{width:73.472000pt;}
.w19{width:73.952000pt;}
.w17{width:76.480000pt;}
.w15{width:76.640000pt;}
.w12{width:76.672000pt;}
.w2b{width:76.800000pt;}
.w14{width:78.592000pt;}
.w37{width:80.640000pt;}
.w35{width:80.800000pt;}
.w36{width:80.832000pt;}
.w33{width:80.960000pt;}
.w34{width:80.992000pt;}
.w2d{width:81.920000pt;}
.w29{width:82.272000pt;}
.w1e{width:85.600000pt;}
.w21{width:90.112000pt;}
.w28{width:90.720000pt;}
.w22{width:92.160000pt;}
.w16{width:96.512000pt;}
.w20{width:96.800000pt;}
.w13{width:97.920000pt;}
.w32{width:101.952000pt;}
.w1f{width:102.272000pt;}
.w1d{width:104.352000pt;}
.we{width:105.792000pt;}
.w2c{width:109.632000pt;}
.wb{width:118.400000pt;}
.wc{width:130.432000pt;}
.w2a{width:130.592000pt;}
.w3b{width:132.000000pt;}
.w5{width:135.066667pt;}
.w2e{width:140.186667pt;}
.w3d{width:145.786667pt;}
.w10{width:155.546667pt;}
.w31{width:161.626667pt;}
.w30{width:161.786667pt;}
.w39{width:161.946667pt;}
.w38{width:162.106667pt;}
.w11{width:173.306667pt;}
.wf{width:174.906667pt;}
.w3a{width:181.026667pt;}
.w24{width:182.426667pt;}
.w1c{width:182.746667pt;}
.w2f{width:183.226667pt;}
.w3c{width:187.866667pt;}
.wa{width:188.226667pt;}
.w1a{width:190.266667pt;}
.w27{width:191.866667pt;}
.w8{width:192.066667pt;}
.w23{width:199.066667pt;}
.w1b{width:199.386667pt;}
.w26{width:207.706667pt;}
.wd{width:209.626667pt;}
.w18{width:452.000000pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.592000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.x35{left:13.120000pt;}
.x56{left:15.080000pt;}
.x2e{left:16.480000pt;}
.x60{left:17.760000pt;}
.x32{left:18.720000pt;}
.x4a{left:20.320000pt;}
.x53{left:21.320000pt;}
.x36{left:22.240000pt;}
.x47{left:23.200000pt;}
.x49{left:25.120000pt;}
.x33{left:26.240000pt;}
.x30{left:29.280000pt;}
.x44{left:30.240000pt;}
.x18{left:31.360000pt;}
.x37{left:32.832000pt;}
.x14{left:33.760000pt;}
.x2c{left:35.840000pt;}
.x19{left:37.466667pt;}
.x1c{left:39.680000pt;}
.x24{left:41.632000pt;}
.x2d{left:43.360000pt;}
.xb{left:44.832000pt;}
.x13{left:45.792000pt;}
.x59{left:47.072000pt;}
.x2b{left:48.480000pt;}
.x39{left:49.440000pt;}
.x66{left:50.880000pt;}
.x4d{left:52.000000pt;}
.xe{left:53.152000pt;}
.x43{left:56.160000pt;}
.x27{left:57.440000pt;}
.x40{left:60.480000pt;}
.x1b{left:61.946667pt;}
.x29{left:66.720000pt;}
.x1e{left:68.346667pt;}
.x38{left:69.320000pt;}
.x67{left:71.066667pt;}
.x1{left:72.000000pt;}
.x3e{left:73.280000pt;}
.x62{left:75.226667pt;}
.x51{left:76.200000pt;}
.x17{left:79.080000pt;}
.x4b{left:80.160000pt;}
.x1a{left:81.960000pt;}
.x4f{left:83.520000pt;}
.x1d{left:85.320000pt;}
.x4{left:87.226667pt;}
.x57{left:88.960000pt;}
.x68{left:96.031988pt;}
.x61{left:99.711988pt;}
.x21{left:120.031988pt;}
.x58{left:139.546655pt;}
.x3f{left:147.546667pt;}
.x3c{left:152.320000pt;}
.xc{left:154.906667pt;}
.x3b{left:163.106667pt;}
.xd{left:175.426667pt;}
.x25{left:178.746667pt;}
.xf{left:191.266667pt;}
.x3d{left:194.106655pt;}
.x5{left:207.066667pt;}
.x4c{left:211.866655pt;}
.x5a{left:213.146667pt;}
.x23{left:227.706655pt;}
.x52{left:238.106667pt;}
.x3a{left:239.040000pt;}
.x8{left:241.986667pt;}
.x45{left:252.226667pt;}
.x63{left:254.306667pt;}
.x2f{left:255.746667pt;}
.x12{left:261.186655pt;}
.x10{left:264.066667pt;}
.x20{left:283.586655pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.x5d{left:315.426667pt;}
.x4e{left:320.706667pt;}
.xa{left:324.866667pt;}
.x41{left:338.146667pt;}
.x26{left:354.146667pt;}
.x15{left:380.546667pt;}
.x64{left:386.946667pt;}
.x9{left:390.666667pt;}
.x5b{left:397.026667pt;}
.x31{left:433.053333pt;}
.x46{left:440.733333pt;}
.x54{left:451.613333pt;}
.x5e{left:478.013333pt;}
.x28{left:510.173333pt;}
.x16{left:511.613333pt;}
.x50{left:528.733333pt;}
.x42{left:537.853333pt;}
.x5c{left:559.613333pt;}
.x65{left:575.453333pt;}
.x34{left:607.013333pt;}
.x22{left:627.173322pt;}
.x48{left:628.293333pt;}
.x55{left:638.693333pt;}
.x5f{left:640.613333pt;}
.x1f{left:643.173322pt;}
.x3{left:656.933333pt;}
}




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