
    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_e320a01d63e7df31bbb30a68.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_b8465d8778fde34664052815.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_3d9dc77a8bc7adde02139507.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_61299bdfaeb6d0e667662f96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3758da661820b4fca01f3658.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fded00ce17078b5b628b66b2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_43a80adb143ce6a1de0b594f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dc42eee45cfeca6db487aebd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_d0fff78b09f31cf50f4fe11d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_94f699c33bb81df325ffe1f2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_3f30f60c6e243d1f005e219f.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_be9bfdcacb2759f1475f5c8e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0c4d9733b298e3095dd56461.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_bbf076e927be3e719b6a9af4.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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);}
.v3{vertical-align:-37.140000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:55.740000px;}
.lsc{letter-spacing:-4.680000px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.298200px;}
.ls8{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls11{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;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.538304px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.260000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
.wse{word-spacing:167.663040px;}
.wsf{word-spacing:236.082480px;}
.wsc{word-spacing:244.643040px;}
.ws10{word-spacing:266.322480px;}
.wsd{word-spacing:343.362480px;}
._19{margin-left:-1382.770080px;}
._16{margin-left:-1239.310080px;}
._5{margin-left:-5.557680px;}
._3{margin-left:-4.068000px;}
._2{margin-left:-2.795040px;}
._0{margin-left:-1.080000px;}
._1{width:1.020000px;}
._4{width:2.155440px;}
._9{width:3.274560px;}
._6{width:5.088240px;}
._f{width:6.450000px;}
._10{width:7.486320px;}
._11{width:9.019680px;}
._b{width:10.577520px;}
._c{width:12.131280px;}
._7{width:13.206960px;}
._12{width:16.053600px;}
._1d{width:17.357280px;}
._1c{width:18.515520px;}
._1a{width:20.019600px;}
._1b{width:21.095280px;}
._8{width:23.302320px;}
._a{width:24.382080px;}
._e{width:26.832240px;}
._d{width:28.146960px;}
._17{width:172.380960px;}
._18{width:204.085200px;}
._15{width:281.185200px;}
._13{width:975.180000px;}
._14{width:998.940000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(26,26,26);}
.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;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y46{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y44{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.ya8{bottom:18.075000px;}
.ye4{bottom:18.180000px;}
.y2{bottom:20.196000px;}
.y40{bottom:20.520000px;}
.y45{bottom:22.140000px;}
.y18{bottom:23.985000px;}
.y43{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y3f{bottom:37.800000px;}
.y17{bottom:40.365000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y3e{bottom:54.900000px;}
.y16{bottom:56.925000px;}
.ye3{bottom:68.250000px;}
.y3d{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y15{bottom:73.485000px;}
.ya7{bottom:74.625000px;}
.y14{bottom:85.725000px;}
.ye2{bottom:86.610000px;}
.y3c{bottom:89.460000px;}
.ya6{bottom:92.985000px;}
.y8{bottom:93.090000px;}
.yd1{bottom:98.136000px;}
.y2b{bottom:98.460000px;}
.y13{bottom:101.025000px;}
.y58{bottom:103.356000px;}
.y3b{bottom:106.740000px;}
.y81{bottom:107.856000px;}
.y7{bottom:111.450000px;}
.y2a{bottom:113.760000px;}
.yd0{bottom:115.236000px;}
.y12{bottom:120.105000px;}
.y57{bottom:120.456000px;}
.y9f{bottom:120.750000px;}
.ydc{bottom:120.930000px;}
.y108{bottom:122.076000px;}
.y3a{bottom:124.020000px;}
.y80{bottom:125.136000px;}
.y29{bottom:131.400000px;}
.ycf{bottom:132.516000px;}
.y56{bottom:137.736000px;}
.y107{bottom:139.356000px;}
.y96{bottom:139.500000px;}
.yd3{bottom:139.650000px;}
.y39{bottom:141.300000px;}
.y7f{bottom:142.416000px;}
.y11{bottom:145.845000px;}
.y28{bottom:148.680000px;}
.yce{bottom:149.796000px;}
.y55{bottom:155.010000px;}
.y106{bottom:156.630000px;}
.y38{bottom:158.430000px;}
.y7e{bottom:159.690000px;}
.yde{bottom:160.455000px;}
.ya2{bottom:161.355000px;}
.yd4{bottom:162.870000px;}
.y97{bottom:163.155000px;}
.ye1{bottom:165.090000px;}
.y27{bottom:165.810000px;}
.ycd{bottom:167.070000px;}
.y10{bottom:170.145000px;}
.y54{bottom:172.290000px;}
.y105{bottom:173.910000px;}
.y37{bottom:175.710000px;}
.y7d{bottom:176.790000px;}
.y26{bottom:183.630000px;}
.ycc{bottom:184.350000px;}
.ya5{bottom:185.010000px;}
.yd5{bottom:186.120000px;}
.y98{bottom:186.765000px;}
.y94{bottom:187.770000px;}
.y95{bottom:189.180000px;}
.y53{bottom:189.570000px;}
.y104{bottom:191.010000px;}
.y36{bottom:192.990000px;}
.y7c{bottom:194.070000px;}
.y25{bottom:201.090000px;}
.ycb{bottom:201.630000px;}
.y52{bottom:206.850000px;}
.y103{bottom:208.290000px;}
.ye0{bottom:209.235000px;}
.yd6{bottom:209.340000px;}
.y35{bottom:210.270000px;}
.y99{bottom:210.420000px;}
.y7b{bottom:211.350000px;}
.ya3{bottom:215.715000px;}
.ya0{bottom:218.085000px;}
.y24{bottom:218.550000px;}
.yca{bottom:218.730000px;}
.y51{bottom:223.950000px;}
.y102{bottom:225.570000px;}
.y34{bottom:227.550000px;}
.y7a{bottom:228.630000px;}
.yd7{bottom:232.560000px;}
.y9a{bottom:234.030000px;}
.y23{bottom:235.830000px;}
.yc9{bottom:236.010000px;}
.y50{bottom:241.230000px;}
.y101{bottom:242.850000px;}
.y33{bottom:244.830000px;}
.y79{bottom:245.910000px;}
.y22{bottom:253.290000px;}
.yd8{bottom:255.780000px;}
.y9b{bottom:257.685000px;}
.y4f{bottom:258.510000px;}
.y100{bottom:260.130000px;}
.y32{bottom:261.930000px;}
.y78{bottom:263.190000px;}
.yc8{bottom:270.570000px;}
.y21{bottom:270.750000px;}
.y4e{bottom:275.790000px;}
.yff{bottom:277.410000px;}
.yd9{bottom:279.000000px;}
.y31{bottom:279.210000px;}
.y77{bottom:280.290000px;}
.ydd{bottom:281.235000px;}
.y9c{bottom:281.340000px;}
.yc7{bottom:287.850000px;}
.y20{bottom:288.030000px;}
.y4d{bottom:293.070000px;}
.y76{bottom:294.330000px;}
.yfe{bottom:294.510000px;}
.y30{bottom:296.490000px;}
.yda{bottom:302.220000px;}
.y9d{bottom:304.950000px;}
.y1f{bottom:305.490000px;}
.y4c{bottom:310.350000px;}
.yfd{bottom:311.790000px;}
.y2f{bottom:313.770000px;}
.ya4{bottom:319.710000px;}
.yc6{bottom:322.230000px;}
.y1e{bottom:322.950000px;}
.ydf{bottom:325.365000px;}
.ydb{bottom:325.470000px;}
.y4b{bottom:327.450000px;}
.y9e{bottom:328.605000px;}
.yfc{bottom:329.070000px;}
.y2e{bottom:331.050000px;}
.yc5{bottom:339.555000px;}
.ya1{bottom:340.995000px;}
.y4a{bottom:344.775000px;}
.yfb{bottom:346.395000px;}
.y2d{bottom:348.150000px;}
.y1d{bottom:350.490000px;}
.yc4{bottom:356.835000px;}
.y49{bottom:362.055000px;}
.yfa{bottom:363.675000px;}
.y2c{bottom:365.430000px;}
.y1c{bottom:368.130000px;}
.yc3{bottom:374.115000px;}
.y48{bottom:379.335000px;}
.yf9{bottom:380.775000px;}
.yc2{bottom:391.395000px;}
.y47{bottom:396.615000px;}
.yf8{bottom:398.055000px;}
.yc1{bottom:408.495000px;}
.y42{bottom:410.655000px;}
.yf7{bottom:415.335000px;}
.yc0{bottom:425.775000px;}
.yf6{bottom:432.615000px;}
.ybf{bottom:443.055000px;}
.y1b{bottom:447.195000px;}
.yf5{bottom:449.895000px;}
.ybe{bottom:460.335000px;}
.yf4{bottom:467.175000px;}
.ybd{bottom:477.615000px;}
.yf3{bottom:484.275000px;}
.ybc{bottom:494.895000px;}
.yf2{bottom:501.555000px;}
.y75{bottom:502.995000px;}
.ybb{bottom:511.995000px;}
.yf1{bottom:518.835000px;}
.y74{bottom:520.275000px;}
.yba{bottom:529.275000px;}
.y73{bottom:534.315000px;}
.yf0{bottom:536.115000px;}
.yb9{bottom:546.555000px;}
.yef{bottom:553.395000px;}
.yb8{bottom:563.835000px;}
.y93{bottom:566.895000px;}
.yee{bottom:570.675000px;}
.yb7{bottom:581.115000px;}
.y92{bottom:583.995000px;}
.yed{bottom:587.775000px;}
.yb6{bottom:598.395000px;}
.y91{bottom:601.275000px;}
.yec{bottom:605.085000px;}
.yb5{bottom:615.525000px;}
.y90{bottom:618.585000px;}
.yeb{bottom:622.365000px;}
.yb4{bottom:632.805000px;}
.y8f{bottom:635.865000px;}
.yea{bottom:639.645000px;}
.yb3{bottom:650.085000px;}
.y8e{bottom:653.145000px;}
.ye9{bottom:656.925000px;}
.yb2{bottom:667.365000px;}
.y8d{bottom:670.425000px;}
.ye8{bottom:674.025000px;}
.yb1{bottom:684.645000px;}
.y8c{bottom:687.525000px;}
.ye7{bottom:691.305000px;}
.yb0{bottom:701.745000px;}
.y8b{bottom:704.805000px;}
.ye6{bottom:708.585000px;}
.yaf{bottom:719.025000px;}
.y8a{bottom:722.085000px;}
.ye5{bottom:725.865000px;}
.yae{bottom:736.305000px;}
.y89{bottom:739.365000px;}
.y72{bottom:743.145000px;}
.yad{bottom:753.585000px;}
.y88{bottom:756.645000px;}
.y71{bottom:760.425000px;}
.yac{bottom:770.865000px;}
.y87{bottom:773.745000px;}
.y70{bottom:777.525000px;}
.yab{bottom:788.145000px;}
.y86{bottom:791.025000px;}
.y6f{bottom:794.805000px;}
.yaa{bottom:805.245000px;}
.y85{bottom:808.305000px;}
.y6e{bottom:812.085000px;}
.ya9{bottom:819.285000px;}
.yd2{bottom:820.620000px;}
.y84{bottom:825.585000px;}
.y19{bottom:826.665000px;}
.y6d{bottom:829.365000px;}
.y83{bottom:842.865000px;}
.y6c{bottom:846.645000px;}
.yf{bottom:856.185000px;}
.y82{bottom:856.905000px;}
.y6b{bottom:863.925000px;}
.y6a{bottom:881.070000px;}
.y69{bottom:898.350000px;}
.y68{bottom:915.630000px;}
.y67{bottom:932.910000px;}
.y10a{bottom:949.110000px;}
.y66{bottom:950.190000px;}
.y109{bottom:967.110000px;}
.y65{bottom:967.470000px;}
.y64{bottom:984.570000px;}
.y63{bottom:1001.850000px;}
.y62{bottom:1019.130000px;}
.y61{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y60{bottom:1053.690000px;}
.y6{bottom:1066.830000px;}
.y5f{bottom:1070.790000px;}
.y5e{bottom:1088.070000px;}
.y5d{bottom:1105.350000px;}
.y5c{bottom:1122.630000px;}
.y5b{bottom:1139.940000px;}
.y5a{bottom:1157.220000px;}
.y59{bottom:1174.320000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1a{height:41.726953px;}
.h1d{height:42.164648px;}
.h18{height:42.281367px;}
.h22{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h1f{height:59.582250px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h21{height:115.179023px;}
.h7{height:121.536000px;}
.hc{height:185.250000px;}
.h20{height:367.740000px;}
.h1e{height:374.580000px;}
.h14{height:379.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.w9{width:524.055000px;}
.wa{width:588.420000px;}
.wb{width:594.000000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xc{left:27.036000px;}
.x1c{left:57.960000px;}
.x1b{left:65.595000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x2e{left:89.205000px;}
.x5{left:98.130000px;}
.x25{left:100.050000px;}
.x30{left:102.705000px;}
.x31{left:108.035987px;}
.xd{left:114.150000px;}
.xf{left:116.850000px;}
.x29{left:122.325000px;}
.x28{left:125.640000px;}
.x1e{left:131.190000px;}
.x1d{left:135.825000px;}
.xe{left:146.010000px;}
.x27{left:148.320000px;}
.x1a{left:151.560000px;}
.x2f{left:188.430000px;}
.x24{left:195.765000px;}
.x15{left:197.309987px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.x10{left:231.735000px;}
.x17{left:233.849987px;}
.x1f{left:238.605000px;}
.x21{left:269.310000px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x2a{left:302.430000px;}
.x2b{left:323.850000px;}
.x7{left:348.195000px;}
.x20{left:349.845000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x22{left:376.740000px;}
.x2c{left:412.020000px;}
.x16{left:443.234987px;}
.x14{left:445.754987px;}
.xa{left:455.700000px;}
.x23{left:484.170000px;}
.x2d{left:504.000000px;}
.x18{left:716.549987px;}
.x19{left:741.389987px;}
.x26{left:744.629987px;}
.x3{left:745.890000px;}
@media print{
.v3{vertical-align:-33.013333pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:49.546667pt;}
.lsc{letter-spacing:-4.160000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.265067pt;}
.ls8{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls11{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.034048pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.120000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
.wse{word-spacing:149.033813pt;}
.wsf{word-spacing:209.851093pt;}
.wsc{word-spacing:217.460480pt;}
.ws10{word-spacing:236.731093pt;}
.wsd{word-spacing:305.211093pt;}
._19{margin-left:-1229.128960pt;}
._16{margin-left:-1101.608960pt;}
._5{margin-left:-4.940160pt;}
._3{margin-left:-3.616000pt;}
._2{margin-left:-2.484480pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.906667pt;}
._4{width:1.915947pt;}
._9{width:2.910720pt;}
._6{width:4.522880pt;}
._f{width:5.733333pt;}
._10{width:6.654507pt;}
._11{width:8.017493pt;}
._b{width:9.402240pt;}
._c{width:10.783360pt;}
._7{width:11.739520pt;}
._12{width:14.269867pt;}
._1d{width:15.428693pt;}
._1c{width:16.458240pt;}
._1a{width:17.795200pt;}
._1b{width:18.751360pt;}
._8{width:20.713173pt;}
._a{width:21.672960pt;}
._e{width:23.850880pt;}
._d{width:25.019520pt;}
._17{width:153.227520pt;}
._18{width:181.409067pt;}
._15{width:249.942400pt;}
._13{width:866.826667pt;}
._14{width:887.946667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y46{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y44{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.ya8{bottom:16.066667pt;}
.ye4{bottom:16.160000pt;}
.y2{bottom:17.952000pt;}
.y40{bottom:18.240000pt;}
.y45{bottom:19.680000pt;}
.y18{bottom:21.320000pt;}
.y43{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y3f{bottom:33.600000pt;}
.y17{bottom:35.880000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y3e{bottom:48.800000pt;}
.y16{bottom:50.600000pt;}
.ye3{bottom:60.666667pt;}
.y3d{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:65.320000pt;}
.ya7{bottom:66.333333pt;}
.y14{bottom:76.200000pt;}
.ye2{bottom:76.986667pt;}
.y3c{bottom:79.520000pt;}
.ya6{bottom:82.653333pt;}
.y8{bottom:82.746667pt;}
.yd1{bottom:87.232000pt;}
.y2b{bottom:87.520000pt;}
.y13{bottom:89.800000pt;}
.y58{bottom:91.872000pt;}
.y3b{bottom:94.880000pt;}
.y81{bottom:95.872000pt;}
.y7{bottom:99.066667pt;}
.y2a{bottom:101.120000pt;}
.yd0{bottom:102.432000pt;}
.y12{bottom:106.760000pt;}
.y57{bottom:107.072000pt;}
.y9f{bottom:107.333333pt;}
.ydc{bottom:107.493333pt;}
.y108{bottom:108.512000pt;}
.y3a{bottom:110.240000pt;}
.y80{bottom:111.232000pt;}
.y29{bottom:116.800000pt;}
.ycf{bottom:117.792000pt;}
.y56{bottom:122.432000pt;}
.y107{bottom:123.872000pt;}
.y96{bottom:124.000000pt;}
.yd3{bottom:124.133333pt;}
.y39{bottom:125.600000pt;}
.y7f{bottom:126.592000pt;}
.y11{bottom:129.640000pt;}
.y28{bottom:132.160000pt;}
.yce{bottom:133.152000pt;}
.y55{bottom:137.786667pt;}
.y106{bottom:139.226667pt;}
.y38{bottom:140.826667pt;}
.y7e{bottom:141.946667pt;}
.yde{bottom:142.626667pt;}
.ya2{bottom:143.426667pt;}
.yd4{bottom:144.773333pt;}
.y97{bottom:145.026667pt;}
.ye1{bottom:146.746667pt;}
.y27{bottom:147.386667pt;}
.ycd{bottom:148.506667pt;}
.y10{bottom:151.240000pt;}
.y54{bottom:153.146667pt;}
.y105{bottom:154.586667pt;}
.y37{bottom:156.186667pt;}
.y7d{bottom:157.146667pt;}
.y26{bottom:163.226667pt;}
.ycc{bottom:163.866667pt;}
.ya5{bottom:164.453333pt;}
.yd5{bottom:165.440000pt;}
.y98{bottom:166.013333pt;}
.y94{bottom:166.906667pt;}
.y95{bottom:168.160000pt;}
.y53{bottom:168.506667pt;}
.y104{bottom:169.786667pt;}
.y36{bottom:171.546667pt;}
.y7c{bottom:172.506667pt;}
.y25{bottom:178.746667pt;}
.ycb{bottom:179.226667pt;}
.y52{bottom:183.866667pt;}
.y103{bottom:185.146667pt;}
.ye0{bottom:185.986667pt;}
.yd6{bottom:186.080000pt;}
.y35{bottom:186.906667pt;}
.y99{bottom:187.040000pt;}
.y7b{bottom:187.866667pt;}
.ya3{bottom:191.746667pt;}
.ya0{bottom:193.853333pt;}
.y24{bottom:194.266667pt;}
.yca{bottom:194.426667pt;}
.y51{bottom:199.066667pt;}
.y102{bottom:200.506667pt;}
.y34{bottom:202.266667pt;}
.y7a{bottom:203.226667pt;}
.yd7{bottom:206.720000pt;}
.y9a{bottom:208.026667pt;}
.y23{bottom:209.626667pt;}
.yc9{bottom:209.786667pt;}
.y50{bottom:214.426667pt;}
.y101{bottom:215.866667pt;}
.y33{bottom:217.626667pt;}
.y79{bottom:218.586667pt;}
.y22{bottom:225.146667pt;}
.yd8{bottom:227.360000pt;}
.y9b{bottom:229.053333pt;}
.y4f{bottom:229.786667pt;}
.y100{bottom:231.226667pt;}
.y32{bottom:232.826667pt;}
.y78{bottom:233.946667pt;}
.yc8{bottom:240.506667pt;}
.y21{bottom:240.666667pt;}
.y4e{bottom:245.146667pt;}
.yff{bottom:246.586667pt;}
.yd9{bottom:248.000000pt;}
.y31{bottom:248.186667pt;}
.y77{bottom:249.146667pt;}
.ydd{bottom:249.986667pt;}
.y9c{bottom:250.080000pt;}
.yc7{bottom:255.866667pt;}
.y20{bottom:256.026667pt;}
.y4d{bottom:260.506667pt;}
.y76{bottom:261.626667pt;}
.yfe{bottom:261.786667pt;}
.y30{bottom:263.546667pt;}
.yda{bottom:268.640000pt;}
.y9d{bottom:271.066667pt;}
.y1f{bottom:271.546667pt;}
.y4c{bottom:275.866667pt;}
.yfd{bottom:277.146667pt;}
.y2f{bottom:278.906667pt;}
.ya4{bottom:284.186667pt;}
.yc6{bottom:286.426667pt;}
.y1e{bottom:287.066667pt;}
.ydf{bottom:289.213333pt;}
.ydb{bottom:289.306667pt;}
.y4b{bottom:291.066667pt;}
.y9e{bottom:292.093333pt;}
.yfc{bottom:292.506667pt;}
.y2e{bottom:294.266667pt;}
.yc5{bottom:301.826667pt;}
.ya1{bottom:303.106667pt;}
.y4a{bottom:306.466667pt;}
.yfb{bottom:307.906667pt;}
.y2d{bottom:309.466667pt;}
.y1d{bottom:311.546667pt;}
.yc4{bottom:317.186667pt;}
.y49{bottom:321.826667pt;}
.yfa{bottom:323.266667pt;}
.y2c{bottom:324.826667pt;}
.y1c{bottom:327.226667pt;}
.yc3{bottom:332.546667pt;}
.y48{bottom:337.186667pt;}
.yf9{bottom:338.466667pt;}
.yc2{bottom:347.906667pt;}
.y47{bottom:352.546667pt;}
.yf8{bottom:353.826667pt;}
.yc1{bottom:363.106667pt;}
.y42{bottom:365.026667pt;}
.yf7{bottom:369.186667pt;}
.yc0{bottom:378.466667pt;}
.yf6{bottom:384.546667pt;}
.ybf{bottom:393.826667pt;}
.y1b{bottom:397.506667pt;}
.yf5{bottom:399.906667pt;}
.ybe{bottom:409.186667pt;}
.yf4{bottom:415.266667pt;}
.ybd{bottom:424.546667pt;}
.yf3{bottom:430.466667pt;}
.ybc{bottom:439.906667pt;}
.yf2{bottom:445.826667pt;}
.y75{bottom:447.106667pt;}
.ybb{bottom:455.106667pt;}
.yf1{bottom:461.186667pt;}
.y74{bottom:462.466667pt;}
.yba{bottom:470.466667pt;}
.y73{bottom:474.946667pt;}
.yf0{bottom:476.546667pt;}
.yb9{bottom:485.826667pt;}
.yef{bottom:491.906667pt;}
.yb8{bottom:501.186667pt;}
.y93{bottom:503.906667pt;}
.yee{bottom:507.266667pt;}
.yb7{bottom:516.546667pt;}
.y92{bottom:519.106667pt;}
.yed{bottom:522.466667pt;}
.yb6{bottom:531.906667pt;}
.y91{bottom:534.466667pt;}
.yec{bottom:537.853333pt;}
.yb5{bottom:547.133333pt;}
.y90{bottom:549.853333pt;}
.yeb{bottom:553.213333pt;}
.yb4{bottom:562.493333pt;}
.y8f{bottom:565.213333pt;}
.yea{bottom:568.573333pt;}
.yb3{bottom:577.853333pt;}
.y8e{bottom:580.573333pt;}
.ye9{bottom:583.933333pt;}
.yb2{bottom:593.213333pt;}
.y8d{bottom:595.933333pt;}
.ye8{bottom:599.133333pt;}
.yb1{bottom:608.573333pt;}
.y8c{bottom:611.133333pt;}
.ye7{bottom:614.493333pt;}
.yb0{bottom:623.773333pt;}
.y8b{bottom:626.493333pt;}
.ye6{bottom:629.853333pt;}
.yaf{bottom:639.133333pt;}
.y8a{bottom:641.853333pt;}
.ye5{bottom:645.213333pt;}
.yae{bottom:654.493333pt;}
.y89{bottom:657.213333pt;}
.y72{bottom:660.573333pt;}
.yad{bottom:669.853333pt;}
.y88{bottom:672.573333pt;}
.y71{bottom:675.933333pt;}
.yac{bottom:685.213333pt;}
.y87{bottom:687.773333pt;}
.y70{bottom:691.133333pt;}
.yab{bottom:700.573333pt;}
.y86{bottom:703.133333pt;}
.y6f{bottom:706.493333pt;}
.yaa{bottom:715.773333pt;}
.y85{bottom:718.493333pt;}
.y6e{bottom:721.853333pt;}
.ya9{bottom:728.253333pt;}
.yd2{bottom:729.440000pt;}
.y84{bottom:733.853333pt;}
.y19{bottom:734.813333pt;}
.y6d{bottom:737.213333pt;}
.y83{bottom:749.213333pt;}
.y6c{bottom:752.573333pt;}
.yf{bottom:761.053333pt;}
.y82{bottom:761.693333pt;}
.y6b{bottom:767.933333pt;}
.y6a{bottom:783.173333pt;}
.y69{bottom:798.533333pt;}
.y68{bottom:813.893333pt;}
.y67{bottom:829.253333pt;}
.y10a{bottom:843.653333pt;}
.y66{bottom:844.613333pt;}
.y109{bottom:859.653333pt;}
.y65{bottom:859.973333pt;}
.y64{bottom:875.173333pt;}
.y63{bottom:890.533333pt;}
.y62{bottom:905.893333pt;}
.y61{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y60{bottom:936.613333pt;}
.y6{bottom:948.293333pt;}
.y5f{bottom:951.813333pt;}
.y5e{bottom:967.173333pt;}
.y5d{bottom:982.533333pt;}
.y5c{bottom:997.893333pt;}
.y5b{bottom:1013.280000pt;}
.y5a{bottom:1028.640000pt;}
.y59{bottom:1043.840000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h18{height:37.583438pt;}
.h22{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h1f{height:52.962000pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h21{height:102.381354pt;}
.h7{height:108.032000pt;}
.hc{height:164.666667pt;}
.h20{height:326.880000pt;}
.h1e{height:332.960000pt;}
.h14{height:337.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.w9{width:465.826667pt;}
.wa{width:523.040000pt;}
.wb{width:528.000000pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xc{left:24.032000pt;}
.x1c{left:51.520000pt;}
.x1b{left:58.306667pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x2e{left:79.293333pt;}
.x5{left:87.226667pt;}
.x25{left:88.933333pt;}
.x30{left:91.293333pt;}
.x31{left:96.031988pt;}
.xd{left:101.466667pt;}
.xf{left:103.866667pt;}
.x29{left:108.733333pt;}
.x28{left:111.680000pt;}
.x1e{left:116.613333pt;}
.x1d{left:120.733333pt;}
.xe{left:129.786667pt;}
.x27{left:131.840000pt;}
.x1a{left:134.720000pt;}
.x2f{left:167.493333pt;}
.x24{left:174.013333pt;}
.x15{left:175.386655pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.x10{left:205.986667pt;}
.x17{left:207.866655pt;}
.x1f{left:212.093333pt;}
.x21{left:239.386667pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x2a{left:268.826667pt;}
.x2b{left:287.866667pt;}
.x7{left:309.506667pt;}
.x20{left:310.973333pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x22{left:334.880000pt;}
.x2c{left:366.240000pt;}
.x16{left:393.986655pt;}
.x14{left:396.226655pt;}
.xa{left:405.066667pt;}
.x23{left:430.373333pt;}
.x2d{left:448.000000pt;}
.x18{left:636.933322pt;}
.x19{left:659.013322pt;}
.x26{left:661.893322pt;}
.x3{left:663.013333pt;}
}




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