
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_6d15f044fdf2e26cde913930.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_5831c5a0a870ad856142827a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_c2db164017ab925a813b4a24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_af8ade67b3cc10fec4193496.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_2809a54f537f892696237c44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_35337bd25b0532d2db646add.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_1fb7d769431d38ecb926e9ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.763672;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_713fe4f81962cd45c1c0c30e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_e8f09ffda6b41d809d0d0984.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_0aeb294decb7d9d5d096ece8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_346d5eed61df35caa9a612e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_ea4c7b4d7a571f46d551580e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_a75e40238778a4985cf57067.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_d128f474acfcdf0562225795.woff2')format("woff");}.fff{font-family:fff;line-height:0.690918;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_01c1ad22d768c2521761bd47.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.987305;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_798594c68328f68aedd08ecc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.738000px;}
.ls1b{letter-spacing:-0.288600px;}
.lsb{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.083400px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.005040px;}
.ls0{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.048000px;}
.lse{letter-spacing:0.052560px;}
.ls4{letter-spacing:0.054720px;}
.lsc{letter-spacing:0.109200px;}
.ls18{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.138240px;}
.ls2{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.157680px;}
.lsa{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.245520px;}
.ls14{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.670080px;}
.ls15{letter-spacing:0.774000px;}
.lsd{letter-spacing:0.900000px;}
.ls3{letter-spacing:12.294720px;}
.ls1a{letter-spacing:117.306720px;}
.ls19{letter-spacing:144.666720px;}
.ls17{letter-spacing:144.810720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(60,92,116),0 0.015em rgb(60,92,116),0.015em 0 rgb(60,92,116),0 -0.015em  rgb(60,92,116);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(60,92,116);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.ws1{word-spacing:-15.102720px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.734480px;}
.ws9{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.625280px;}
.wse{word-spacing:-13.336680px;}
.ws6{word-spacing:-12.690000px;}
.ws7{word-spacing:-12.492000px;}
.ws2{word-spacing:-12.312000px;}
.ws5{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.168000px;}
.ws8{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.574000px;}
.wsa{word-spacing:0.000000px;}
._16{margin-left:-4.133520px;}
._5{margin-left:-2.986560px;}
._1{margin-left:-1.080000px;}
._0{width:1.242000px;}
._3{width:2.616000px;}
._9{width:4.174080px;}
._7{width:5.856960px;}
._6{width:7.220160px;}
._8{width:8.714160px;}
._f{width:9.925920px;}
._b{width:11.491920px;}
._a{width:12.549600px;}
._d{width:15.477840px;}
._e{width:16.553520px;}
._17{width:18.525600px;}
._15{width:19.720800px;}
._14{width:20.856240px;}
._18{width:21.924720px;}
._12{width:22.955040px;}
._c{width:24.374880px;}
._2{width:25.704000px;}
._1a{width:27.190800px;}
._11{width:28.266480px;}
._13{width:29.939760px;}
._19{width:31.911840px;}
._25{width:34.302240px;}
._10{width:40.457520px;}
._24{width:41.772240px;}
._1b{width:49.959360px;}
._22{width:55.756080px;}
._23{width:57.820320px;}
._20{width:67.528800px;}
._4{width:70.988160px;}
._1d{width:75.895200px;}
._1c{width:77.150160px;}
._1f{width:92.747520px;}
._21{width:129.440160px;}
._1e{width:162.009360px;}
.fc5{color:transparent;}
.fc3{color:rgb(60,92,116);}
.fc2{color:rgb(60,92,115);}
.fc4{color:rgb(193,89,76);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.880000px;}
.y5a{bottom:3.240000px;}
.y1d{bottom:3.420000px;}
.y49{bottom:4.680000px;}
.y27{bottom:18.360000px;}
.y1c{bottom:22.320000px;}
.y26{bottom:33.840000px;}
.y1b{bottom:41.220000px;}
.y25{bottom:49.320000px;}
.y47{bottom:57.060000px;}
.y1a{bottom:60.120000px;}
.y24{bottom:64.800000px;}
.y7{bottom:66.780000px;}
.y48{bottom:71.820000px;}
.y46{bottom:73.800000px;}
.y19{bottom:79.020000px;}
.y23{bottom:80.280000px;}
.y6{bottom:83.160000px;}
.y45{bottom:90.720000px;}
.y22{bottom:95.760000px;}
.y18{bottom:98.100000px;}
.y5{bottom:99.540000px;}
.y21{bottom:112.890000px;}
.yb8{bottom:115.560000px;}
.yce{bottom:115.920000px;}
.y13a{bottom:116.280000px;}
.y17{bottom:117.000000px;}
.y13e{bottom:118.080000px;}
.y9c{bottom:119.880000px;}
.y97{bottom:120.240000px;}
.yed{bottom:120.420000px;}
.y4{bottom:124.920000px;}
.y20{bottom:131.970000px;}
.yb7{bottom:132.660000px;}
.ycd{bottom:133.200000px;}
.y139{bottom:133.560000px;}
.y13d{bottom:135.360000px;}
.y16{bottom:135.900000px;}
.y9b{bottom:137.160000px;}
.y96{bottom:137.520000px;}
.yec{bottom:137.700000px;}
.y183{bottom:140.400000px;}
.yb6{bottom:149.940000px;}
.ycc{bottom:150.300000px;}
.y138{bottom:150.840000px;}
.y13c{bottom:152.490000px;}
.y1f{bottom:152.850000px;}
.y9a{bottom:154.290000px;}
.y95{bottom:154.650000px;}
.y15{bottom:154.800000px;}
.yeb{bottom:154.830000px;}
.y3d{bottom:156.810000px;}
.y182{bottom:158.070000px;}
.y44{bottom:166.710000px;}
.yb5{bottom:167.070000px;}
.ycb{bottom:167.610000px;}
.y137{bottom:168.150000px;}
.y13b{bottom:169.770000px;}
.y99{bottom:171.570000px;}
.y94{bottom:171.930000px;}
.yea{bottom:172.110000px;}
.y14{bottom:173.700000px;}
.y3c{bottom:174.090000px;}
.y181{bottom:175.350000px;}
.y43{bottom:183.810000px;}
.yb4{bottom:184.530000px;}
.yca{bottom:184.890000px;}
.y98{bottom:189.030000px;}
.y93{bottom:189.210000px;}
.ye9{bottom:189.390000px;}
.y3b{bottom:191.370000px;}
.y180{bottom:192.450000px;}
.y13{bottom:192.825000px;}
.y42{bottom:201.270000px;}
.y136{bottom:201.810000px;}
.y10b{bottom:201.990000px;}
.yc9{bottom:202.350000px;}
.yb3{bottom:203.250000px;}
.y16b{bottom:204.510000px;}
.y92{bottom:206.310000px;}
.ye8{bottom:206.490000px;}
.y3a{bottom:208.470000px;}
.y17f{bottom:209.730000px;}
.y12{bottom:211.725000px;}
.y41{bottom:216.750000px;}
.yc8{bottom:217.830000px;}
.y135{bottom:218.190000px;}
.y10a{bottom:219.270000px;}
.yb2{bottom:220.530000px;}
.y16a{bottom:221.790000px;}
.y91{bottom:223.590000px;}
.ye7{bottom:223.770000px;}
.y39{bottom:225.750000px;}
.y17e{bottom:227.010000px;}
.y11{bottom:230.625000px;}
.y134{bottom:236.190000px;}
.y109{bottom:236.370000px;}
.yb1{bottom:237.630000px;}
.y169{bottom:239.070000px;}
.y90{bottom:240.690000px;}
.ye6{bottom:240.870000px;}
.y38{bottom:242.850000px;}
.y17d{bottom:244.110000px;}
.y108{bottom:253.650000px;}
.y133{bottom:254.190000px;}
.yb0{bottom:254.910000px;}
.y168{bottom:256.170000px;}
.y8f{bottom:257.970000px;}
.ye5{bottom:258.150000px;}
.y37{bottom:260.130000px;}
.y17c{bottom:261.390000px;}
.y107{bottom:270.930000px;}
.y132{bottom:272.010000px;}
.yaf{bottom:272.190000px;}
.y167{bottom:273.450000px;}
.y8e{bottom:275.250000px;}
.ye4{bottom:275.430000px;}
.y36{bottom:277.410000px;}
.y17b{bottom:278.670000px;}
.y106{bottom:288.030000px;}
.yae{bottom:289.290000px;}
.y131{bottom:290.010000px;}
.y166{bottom:290.550000px;}
.y8d{bottom:292.350000px;}
.ye3{bottom:292.530000px;}
.y35{bottom:294.510000px;}
.y17a{bottom:295.770000px;}
.y105{bottom:305.310000px;}
.yad{bottom:306.570000px;}
.y165{bottom:307.830000px;}
.y8c{bottom:309.630000px;}
.ye2{bottom:309.990000px;}
.y130{bottom:311.430000px;}
.y34{bottom:311.790000px;}
.y179{bottom:313.050000px;}
.y104{bottom:322.590000px;}
.yac{bottom:323.850000px;}
.y164{bottom:325.110000px;}
.y8b{bottom:326.910000px;}
.y33{bottom:329.070000px;}
.y178{bottom:330.150000px;}
.y103{bottom:339.690000px;}
.yab{bottom:340.950000px;}
.y8a{bottom:341.490000px;}
.y163{bottom:342.210000px;}
.ye1{bottom:343.650000px;}
.y12f{bottom:345.090000px;}
.y32{bottom:346.170000px;}
.y177{bottom:347.430000px;}
.y102{bottom:356.970000px;}
.yaa{bottom:358.230000px;}
.y89{bottom:359.490000px;}
.ye0{bottom:362.550000px;}
.y31{bottom:363.450000px;}
.y126{bottom:363.990000px;}
.y176{bottom:364.710000px;}
.y101{bottom:374.070000px;}
.ya9{bottom:375.330000px;}
.y162{bottom:376.770000px;}
.y88{bottom:377.490000px;}
.ydf{bottom:379.650000px;}
.y30{bottom:380.550000px;}
.y125{bottom:381.090000px;}
.y175{bottom:381.810000px;}
.y12e{bottom:387.390000px;}
.y100{bottom:391.350000px;}
.ya8{bottom:392.610000px;}
.y161{bottom:393.870000px;}
.y87{bottom:395.490000px;}
.yde{bottom:397.110000px;}
.y2f{bottom:397.830000px;}
.y124{bottom:398.370000px;}
.y174{bottom:399.090000px;}
.y12d{bottom:404.715000px;}
.yff{bottom:408.675000px;}
.ya7{bottom:410.115000px;}
.y160{bottom:411.195000px;}
.ydd{bottom:412.635000px;}
.y86{bottom:413.535000px;}
.y2e{bottom:415.155000px;}
.y123{bottom:415.515000px;}
.y173{bottom:416.415000px;}
.ya6{bottom:425.595000px;}
.yfe{bottom:425.775000px;}
.y15f{bottom:428.295000px;}
.y85{bottom:431.355000px;}
.y2d{bottom:432.255000px;}
.y122{bottom:432.795000px;}
.y172{bottom:433.515000px;}
.y12c{bottom:433.695000px;}
.yfd{bottom:443.055000px;}
.y15e{bottom:445.575000px;}
.y84{bottom:449.355000px;}
.y2c{bottom:449.535000px;}
.y121{bottom:450.075000px;}
.y171{bottom:450.795000px;}
.yfc{bottom:460.335000px;}
.y15d{bottom:462.855000px;}
.y2b{bottom:466.635000px;}
.y120{bottom:467.175000px;}
.y170{bottom:467.895000px;}
.y40{bottom:468.435000px;}
.y83{bottom:470.775000px;}
.yfb{bottom:477.435000px;}
.y15c{bottom:479.955000px;}
.y2a{bottom:483.915000px;}
.y11f{bottom:484.455000px;}
.y16f{bottom:485.175000px;}
.y3f{bottom:485.715000px;}
.y82{bottom:489.675000px;}
.yfa{bottom:494.715000px;}
.y15b{bottom:497.235000px;}
.y29{bottom:501.375000px;}
.y11e{bottom:501.555000px;}
.y16e{bottom:502.455000px;}
.y3e{bottom:502.815000px;}
.y71{bottom:508.395000px;}
.y81{bottom:510.195000px;}
.yf9{bottom:511.815000px;}
.y15a{bottom:514.515000px;}
.y11d{bottom:518.835000px;}
.y16d{bottom:519.555000px;}
.y70{bottom:525.675000px;}
.y80{bottom:527.295000px;}
.yf8{bottom:529.095000px;}
.y159{bottom:531.615000px;}
.y11c{bottom:536.115000px;}
.y16c{bottom:536.835000px;}
.y1e{bottom:537.015000px;}
.y6f{bottom:542.775000px;}
.y7f{bottom:544.575000px;}
.yf7{bottom:546.375000px;}
.y158{bottom:548.895000px;}
.y11b{bottom:553.215000px;}
.yc7{bottom:554.115000px;}
.y6e{bottom:560.055000px;}
.y7e{bottom:561.855000px;}
.yf6{bottom:563.475000px;}
.y157{bottom:565.995000px;}
.y11a{bottom:570.495000px;}
.yc6{bottom:571.215000px;}
.y6d{bottom:577.335000px;}
.y7d{bottom:578.955000px;}
.yf5{bottom:580.755000px;}
.y156{bottom:583.275000px;}
.y119{bottom:587.775000px;}
.yc5{bottom:588.495000px;}
.y6c{bottom:594.435000px;}
.y7c{bottom:596.235000px;}
.yf4{bottom:597.855000px;}
.y155{bottom:600.555000px;}
.y118{bottom:604.875000px;}
.yc4{bottom:605.595000px;}
.y6b{bottom:611.715000px;}
.y7b{bottom:613.515000px;}
.yf3{bottom:615.135000px;}
.y154{bottom:617.655000px;}
.y117{bottom:622.155000px;}
.yc3{bottom:622.875000px;}
.y6a{bottom:628.995000px;}
.y7a{bottom:630.615000px;}
.yf2{bottom:632.415000px;}
.y153{bottom:634.935000px;}
.y116{bottom:639.255000px;}
.yc2{bottom:640.155000px;}
.y69{bottom:646.095000px;}
.y79{bottom:647.895000px;}
.yf1{bottom:649.545000px;}
.y152{bottom:652.245000px;}
.y115{bottom:656.565000px;}
.yc1{bottom:657.285000px;}
.y68{bottom:663.405000px;}
.y78{bottom:665.025000px;}
.yf0{bottom:666.825000px;}
.y151{bottom:669.345000px;}
.y114{bottom:673.845000px;}
.yc0{bottom:674.565000px;}
.y67{bottom:680.505000px;}
.y77{bottom:682.305000px;}
.yef{bottom:684.105000px;}
.y150{bottom:686.625000px;}
.y113{bottom:690.945000px;}
.ybf{bottom:691.665000px;}
.y66{bottom:697.785000px;}
.y76{bottom:699.585000px;}
.yee{bottom:701.205000px;}
.y14f{bottom:704.085000px;}
.y112{bottom:708.225000px;}
.y10{bottom:708.405000px;}
.ybe{bottom:708.945000px;}
.y65{bottom:715.065000px;}
.y75{bottom:716.685000px;}
.ydc{bottom:718.485000px;}
.y14e{bottom:722.805000px;}
.y111{bottom:725.505000px;}
.ybd{bottom:726.225000px;}
.y64{bottom:732.165000px;}
.ydb{bottom:733.245000px;}
.y74{bottom:733.965000px;}
.y14d{bottom:739.905000px;}
.y110{bottom:742.605000px;}
.ybc{bottom:743.325000px;}
.y63{bottom:749.445000px;}
.yda{bottom:751.065000px;}
.y73{bottom:751.245000px;}
.y14c{bottom:757.185000px;}
.y10f{bottom:759.885000px;}
.ybb{bottom:760.605000px;}
.y62{bottom:766.905000px;}
.y72{bottom:768.345000px;}
.yd9{bottom:769.065000px;}
.y14b{bottom:774.285000px;}
.y10e{bottom:776.985000px;}
.yba{bottom:777.885000px;}
.y12b{bottom:783.105000px;}
.y61{bottom:785.625000px;}
.yd8{bottom:787.065000px;}
.y14a{bottom:791.565000px;}
.y10d{bottom:794.445000px;}
.yb9{bottom:794.985000px;}
.y60{bottom:800.385000px;}
.y12a{bottom:802.005000px;}
.yd7{bottom:805.065000px;}
.y149{bottom:808.845000px;}
.y10c{bottom:812.085000px;}
.ya5{bottom:812.265000px;}
.y5f{bottom:818.205000px;}
.y129{bottom:819.285000px;}
.yd6{bottom:823.065000px;}
.y148{bottom:826.305000px;}
.ya4{bottom:829.365000px;}
.y5e{bottom:836.205000px;}
.y128{bottom:836.745000px;}
.yd5{bottom:840.885000px;}
.y147{bottom:845.025000px;}
.ya3{bottom:846.645000px;}
.y127{bottom:852.225000px;}
.y5d{bottom:854.205000px;}
.y146{bottom:862.125000px;}
.yd4{bottom:862.305000px;}
.ya2{bottom:863.925000px;}
.y5c{bottom:872.205000px;}
.y145{bottom:879.405000px;}
.ya1{bottom:881.025000px;}
.y5b{bottom:890.025000px;}
.y144{bottom:896.505000px;}
.ya0{bottom:898.350000px;}
.y59{bottom:908.070000px;}
.y143{bottom:913.830000px;}
.y9f{bottom:915.630000px;}
.y58{bottom:929.490000px;}
.y142{bottom:931.110000px;}
.yd3{bottom:932.370000px;}
.y9e{bottom:932.730000px;}
.y141{bottom:948.210000px;}
.y57{bottom:948.390000px;}
.yd2{bottom:949.650000px;}
.y9d{bottom:950.010000px;}
.yf{bottom:959.010000px;}
.y140{bottom:965.490000px;}
.yd1{bottom:966.750000px;}
.y56{bottom:967.110000px;}
.ye{bottom:978.090000px;}
.y13f{bottom:982.950000px;}
.yd0{bottom:984.030000px;}
.y55{bottom:984.390000px;}
.yd{bottom:996.990000px;}
.ycf{bottom:1001.490000px;}
.y54{bottom:1001.670000px;}
.yc{bottom:1018.590000px;}
.y53{bottom:1018.770000px;}
.y52{bottom:1036.050000px;}
.yb{bottom:1039.830000px;}
.y51{bottom:1053.330000px;}
.y50{bottom:1070.430000px;}
.ya{bottom:1070.790000px;}
.y4f{bottom:1087.710000px;}
.y4e{bottom:1104.810000px;}
.y9{bottom:1111.830000px;}
.y4d{bottom:1122.090000px;}
.y8{bottom:1128.210000px;}
.y4c{bottom:1139.370000px;}
.y3{bottom:1148.580000px;}
.y4b{bottom:1156.500000px;}
.y2{bottom:1170.720000px;}
.y4a{bottom:1173.780000px;}
.y1{bottom:1192.680000px;}
.h18{height:17.100000px;}
.h19{height:17.136000px;}
.h15{height:17.280000px;}
.h17{height:17.316000px;}
.h13{height:20.160000px;}
.h3{height:36.571289px;}
.h10{height:39.313477px;}
.he{height:39.339844px;}
.h5{height:40.472227px;}
.h16{height:43.506914px;}
.h11{height:43.536094px;}
.h1b{height:44.907539px;}
.ha{height:48.224531px;}
.h4{height:48.256875px;}
.h14{height:48.761719px;}
.h7{height:49.065469px;}
.h8{height:49.777031px;}
.h1a{height:50.364141px;}
.h12{height:51.408000px;}
.hd{height:58.433906px;}
.hb{height:63.303398px;}
.hf{height:65.884219px;}
.h2{height:71.613281px;}
.h6{height:78.626953px;}
.hc{height:171.390000px;}
.h9{height:246.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.536000px;}
.w10{width:73.836000px;}
.w7{width:94.140000px;}
.wd{width:102.780000px;}
.wb{width:110.016000px;}
.w19{width:117.036000px;}
.w6{width:121.716000px;}
.w17{width:122.436000px;}
.w18{width:122.580000px;}
.w16{width:122.616000px;}
.w5{width:124.416000px;}
.w8{width:132.336000px;}
.w9{width:135.036000px;}
.wc{width:146.196000px;}
.w11{width:151.950000px;}
.w13{width:153.000000px;}
.w12{width:185.610000px;}
.wa{width:195.150000px;}
.w15{width:195.870000px;}
.we{width:214.230000px;}
.wf{width:230.475000px;}
.w14{width:239.115000px;}
.w3{width:892.799973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x9{left:20.550000px;}
.x1{left:42.479987px;}
.x17{left:47.159987px;}
.x18{left:58.499987px;}
.x22{left:64.799987px;}
.x1e{left:117.756000px;}
.x19{left:148.355987px;}
.x12{left:153.930000px;}
.xc{left:168.330000px;}
.x23{left:189.389987px;}
.x2b{left:239.790000px;}
.x1f{left:270.615000px;}
.x2a{left:272.954987px;}
.xd{left:290.775000px;}
.xa{left:293.834987px;}
.x13{left:300.855000px;}
.x1d{left:316.514987px;}
.x11{left:327.314987px;}
.x2c{left:363.135000px;}
.xe{left:385.815000px;}
.x14{left:404.355000px;}
.x16{left:429.554987px;}
.x7{left:446.504987px;}
.x20{left:456.945000px;}
.x3{left:463.604987px;}
.x29{left:467.024987px;}
.x1a{left:468.104987px;}
.x25{left:484.124987px;}
.x1b{left:485.204987px;}
.x2d{left:486.285000px;}
.x26{left:494.384987px;}
.x5{left:501.044987px;}
.xf{left:518.865000px;}
.x27{left:581.144987px;}
.x1c{left:586.004987px;}
.x6{left:603.284987px;}
.x2e{left:609.585000px;}
.x21{left:610.665000px;}
.x15{left:619.305000px;}
.x10{left:654.630000px;}
.x2f{left:732.750000px;}
.x2{left:751.469987px;}
.x8{left:798.810000px;}
.x28{left:838.259987px;}
.x4{left:848.699987px;}
.x24{left:850.679987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.656000pt;}
.ls1b{letter-spacing:-0.256533pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.074133pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.004480pt;}
.ls0{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.046720pt;}
.ls4{letter-spacing:0.048640pt;}
.lsc{letter-spacing:0.097067pt;}
.ls18{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.122880pt;}
.ls2{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.140160pt;}
.lsa{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.218240pt;}
.ls14{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.595627pt;}
.ls15{letter-spacing:0.688000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls3{letter-spacing:10.928640pt;}
.ls1a{letter-spacing:104.272640pt;}
.ls19{letter-spacing:128.592640pt;}
.ls17{letter-spacing:128.720640pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-13.424640pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.208427pt;}
.ws9{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.111360pt;}
.wse{word-spacing:-11.854827pt;}
.ws6{word-spacing:-11.280000pt;}
.ws7{word-spacing:-11.104000pt;}
.ws2{word-spacing:-10.944000pt;}
.ws5{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.288000pt;}
.wsa{word-spacing:0.000000pt;}
._16{margin-left:-3.674240pt;}
._5{margin-left:-2.654720pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.104000pt;}
._3{width:2.325333pt;}
._9{width:3.710293pt;}
._7{width:5.206187pt;}
._6{width:6.417920pt;}
._8{width:7.745920pt;}
._f{width:8.823040pt;}
._b{width:10.215040pt;}
._a{width:11.155200pt;}
._d{width:13.758080pt;}
._e{width:14.714240pt;}
._17{width:16.467200pt;}
._15{width:17.529600pt;}
._14{width:18.538880pt;}
._18{width:19.488640pt;}
._12{width:20.404480pt;}
._c{width:21.666560pt;}
._2{width:22.848000pt;}
._1a{width:24.169600pt;}
._11{width:25.125760pt;}
._13{width:26.613120pt;}
._19{width:28.366080pt;}
._25{width:30.490880pt;}
._10{width:35.962240pt;}
._24{width:37.130880pt;}
._1b{width:44.408320pt;}
._22{width:49.560960pt;}
._23{width:51.395840pt;}
._20{width:60.025600pt;}
._4{width:63.100587pt;}
._1d{width:67.462400pt;}
._1c{width:68.577920pt;}
._1f{width:82.442240pt;}
._21{width:115.057920pt;}
._1e{width:144.008320pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.560000pt;}
.y5a{bottom:2.880000pt;}
.y1d{bottom:3.040000pt;}
.y49{bottom:4.160000pt;}
.y27{bottom:16.320000pt;}
.y1c{bottom:19.840000pt;}
.y26{bottom:30.080000pt;}
.y1b{bottom:36.640000pt;}
.y25{bottom:43.840000pt;}
.y47{bottom:50.720000pt;}
.y1a{bottom:53.440000pt;}
.y24{bottom:57.600000pt;}
.y7{bottom:59.360000pt;}
.y48{bottom:63.840000pt;}
.y46{bottom:65.600000pt;}
.y19{bottom:70.240000pt;}
.y23{bottom:71.360000pt;}
.y6{bottom:73.920000pt;}
.y45{bottom:80.640000pt;}
.y22{bottom:85.120000pt;}
.y18{bottom:87.200000pt;}
.y5{bottom:88.480000pt;}
.y21{bottom:100.346667pt;}
.yb8{bottom:102.720000pt;}
.yce{bottom:103.040000pt;}
.y13a{bottom:103.360000pt;}
.y17{bottom:104.000000pt;}
.y13e{bottom:104.960000pt;}
.y9c{bottom:106.560000pt;}
.y97{bottom:106.880000pt;}
.yed{bottom:107.040000pt;}
.y4{bottom:111.040000pt;}
.y20{bottom:117.306667pt;}
.yb7{bottom:117.920000pt;}
.ycd{bottom:118.400000pt;}
.y139{bottom:118.720000pt;}
.y13d{bottom:120.320000pt;}
.y16{bottom:120.800000pt;}
.y9b{bottom:121.920000pt;}
.y96{bottom:122.240000pt;}
.yec{bottom:122.400000pt;}
.y183{bottom:124.800000pt;}
.yb6{bottom:133.280000pt;}
.ycc{bottom:133.600000pt;}
.y138{bottom:134.080000pt;}
.y13c{bottom:135.546667pt;}
.y1f{bottom:135.866667pt;}
.y9a{bottom:137.146667pt;}
.y95{bottom:137.466667pt;}
.y15{bottom:137.600000pt;}
.yeb{bottom:137.626667pt;}
.y3d{bottom:139.386667pt;}
.y182{bottom:140.506667pt;}
.y44{bottom:148.186667pt;}
.yb5{bottom:148.506667pt;}
.ycb{bottom:148.986667pt;}
.y137{bottom:149.466667pt;}
.y13b{bottom:150.906667pt;}
.y99{bottom:152.506667pt;}
.y94{bottom:152.826667pt;}
.yea{bottom:152.986667pt;}
.y14{bottom:154.400000pt;}
.y3c{bottom:154.746667pt;}
.y181{bottom:155.866667pt;}
.y43{bottom:163.386667pt;}
.yb4{bottom:164.026667pt;}
.yca{bottom:164.346667pt;}
.y98{bottom:168.026667pt;}
.y93{bottom:168.186667pt;}
.ye9{bottom:168.346667pt;}
.y3b{bottom:170.106667pt;}
.y180{bottom:171.066667pt;}
.y13{bottom:171.400000pt;}
.y42{bottom:178.906667pt;}
.y136{bottom:179.386667pt;}
.y10b{bottom:179.546667pt;}
.yc9{bottom:179.866667pt;}
.yb3{bottom:180.666667pt;}
.y16b{bottom:181.786667pt;}
.y92{bottom:183.386667pt;}
.ye8{bottom:183.546667pt;}
.y3a{bottom:185.306667pt;}
.y17f{bottom:186.426667pt;}
.y12{bottom:188.200000pt;}
.y41{bottom:192.666667pt;}
.yc8{bottom:193.626667pt;}
.y135{bottom:193.946667pt;}
.y10a{bottom:194.906667pt;}
.yb2{bottom:196.026667pt;}
.y16a{bottom:197.146667pt;}
.y91{bottom:198.746667pt;}
.ye7{bottom:198.906667pt;}
.y39{bottom:200.666667pt;}
.y17e{bottom:201.786667pt;}
.y11{bottom:205.000000pt;}
.y134{bottom:209.946667pt;}
.y109{bottom:210.106667pt;}
.yb1{bottom:211.226667pt;}
.y169{bottom:212.506667pt;}
.y90{bottom:213.946667pt;}
.ye6{bottom:214.106667pt;}
.y38{bottom:215.866667pt;}
.y17d{bottom:216.986667pt;}
.y108{bottom:225.466667pt;}
.y133{bottom:225.946667pt;}
.yb0{bottom:226.586667pt;}
.y168{bottom:227.706667pt;}
.y8f{bottom:229.306667pt;}
.ye5{bottom:229.466667pt;}
.y37{bottom:231.226667pt;}
.y17c{bottom:232.346667pt;}
.y107{bottom:240.826667pt;}
.y132{bottom:241.786667pt;}
.yaf{bottom:241.946667pt;}
.y167{bottom:243.066667pt;}
.y8e{bottom:244.666667pt;}
.ye4{bottom:244.826667pt;}
.y36{bottom:246.586667pt;}
.y17b{bottom:247.706667pt;}
.y106{bottom:256.026667pt;}
.yae{bottom:257.146667pt;}
.y131{bottom:257.786667pt;}
.y166{bottom:258.266667pt;}
.y8d{bottom:259.866667pt;}
.ye3{bottom:260.026667pt;}
.y35{bottom:261.786667pt;}
.y17a{bottom:262.906667pt;}
.y105{bottom:271.386667pt;}
.yad{bottom:272.506667pt;}
.y165{bottom:273.626667pt;}
.y8c{bottom:275.226667pt;}
.ye2{bottom:275.546667pt;}
.y130{bottom:276.826667pt;}
.y34{bottom:277.146667pt;}
.y179{bottom:278.266667pt;}
.y104{bottom:286.746667pt;}
.yac{bottom:287.866667pt;}
.y164{bottom:288.986667pt;}
.y8b{bottom:290.586667pt;}
.y33{bottom:292.506667pt;}
.y178{bottom:293.466667pt;}
.y103{bottom:301.946667pt;}
.yab{bottom:303.066667pt;}
.y8a{bottom:303.546667pt;}
.y163{bottom:304.186667pt;}
.ye1{bottom:305.466667pt;}
.y12f{bottom:306.746667pt;}
.y32{bottom:307.706667pt;}
.y177{bottom:308.826667pt;}
.y102{bottom:317.306667pt;}
.yaa{bottom:318.426667pt;}
.y89{bottom:319.546667pt;}
.ye0{bottom:322.266667pt;}
.y31{bottom:323.066667pt;}
.y126{bottom:323.546667pt;}
.y176{bottom:324.186667pt;}
.y101{bottom:332.506667pt;}
.ya9{bottom:333.626667pt;}
.y162{bottom:334.906667pt;}
.y88{bottom:335.546667pt;}
.ydf{bottom:337.466667pt;}
.y30{bottom:338.266667pt;}
.y125{bottom:338.746667pt;}
.y175{bottom:339.386667pt;}
.y12e{bottom:344.346667pt;}
.y100{bottom:347.866667pt;}
.ya8{bottom:348.986667pt;}
.y161{bottom:350.106667pt;}
.y87{bottom:351.546667pt;}
.yde{bottom:352.986667pt;}
.y2f{bottom:353.626667pt;}
.y124{bottom:354.106667pt;}
.y174{bottom:354.746667pt;}
.y12d{bottom:359.746667pt;}
.yff{bottom:363.266667pt;}
.ya7{bottom:364.546667pt;}
.y160{bottom:365.506667pt;}
.ydd{bottom:366.786667pt;}
.y86{bottom:367.586667pt;}
.y2e{bottom:369.026667pt;}
.y123{bottom:369.346667pt;}
.y173{bottom:370.146667pt;}
.ya6{bottom:378.306667pt;}
.yfe{bottom:378.466667pt;}
.y15f{bottom:380.706667pt;}
.y85{bottom:383.426667pt;}
.y2d{bottom:384.226667pt;}
.y122{bottom:384.706667pt;}
.y172{bottom:385.346667pt;}
.y12c{bottom:385.506667pt;}
.yfd{bottom:393.826667pt;}
.y15e{bottom:396.066667pt;}
.y84{bottom:399.426667pt;}
.y2c{bottom:399.586667pt;}
.y121{bottom:400.066667pt;}
.y171{bottom:400.706667pt;}
.yfc{bottom:409.186667pt;}
.y15d{bottom:411.426667pt;}
.y2b{bottom:414.786667pt;}
.y120{bottom:415.266667pt;}
.y170{bottom:415.906667pt;}
.y40{bottom:416.386667pt;}
.y83{bottom:418.466667pt;}
.yfb{bottom:424.386667pt;}
.y15c{bottom:426.626667pt;}
.y2a{bottom:430.146667pt;}
.y11f{bottom:430.626667pt;}
.y16f{bottom:431.266667pt;}
.y3f{bottom:431.746667pt;}
.y82{bottom:435.266667pt;}
.yfa{bottom:439.746667pt;}
.y15b{bottom:441.986667pt;}
.y29{bottom:445.666667pt;}
.y11e{bottom:445.826667pt;}
.y16e{bottom:446.626667pt;}
.y3e{bottom:446.946667pt;}
.y71{bottom:451.906667pt;}
.y81{bottom:453.506667pt;}
.yf9{bottom:454.946667pt;}
.y15a{bottom:457.346667pt;}
.y11d{bottom:461.186667pt;}
.y16d{bottom:461.826667pt;}
.y70{bottom:467.266667pt;}
.y80{bottom:468.706667pt;}
.yf8{bottom:470.306667pt;}
.y159{bottom:472.546667pt;}
.y11c{bottom:476.546667pt;}
.y16c{bottom:477.186667pt;}
.y1e{bottom:477.346667pt;}
.y6f{bottom:482.466667pt;}
.y7f{bottom:484.066667pt;}
.yf7{bottom:485.666667pt;}
.y158{bottom:487.906667pt;}
.y11b{bottom:491.746667pt;}
.yc7{bottom:492.546667pt;}
.y6e{bottom:497.826667pt;}
.y7e{bottom:499.426667pt;}
.yf6{bottom:500.866667pt;}
.y157{bottom:503.106667pt;}
.y11a{bottom:507.106667pt;}
.yc6{bottom:507.746667pt;}
.y6d{bottom:513.186667pt;}
.y7d{bottom:514.626667pt;}
.yf5{bottom:516.226667pt;}
.y156{bottom:518.466667pt;}
.y119{bottom:522.466667pt;}
.yc5{bottom:523.106667pt;}
.y6c{bottom:528.386667pt;}
.y7c{bottom:529.986667pt;}
.yf4{bottom:531.426667pt;}
.y155{bottom:533.826667pt;}
.y118{bottom:537.666667pt;}
.yc4{bottom:538.306667pt;}
.y6b{bottom:543.746667pt;}
.y7b{bottom:545.346667pt;}
.yf3{bottom:546.786667pt;}
.y154{bottom:549.026667pt;}
.y117{bottom:553.026667pt;}
.yc3{bottom:553.666667pt;}
.y6a{bottom:559.106667pt;}
.y7a{bottom:560.546667pt;}
.yf2{bottom:562.146667pt;}
.y153{bottom:564.386667pt;}
.y116{bottom:568.226667pt;}
.yc2{bottom:569.026667pt;}
.y69{bottom:574.306667pt;}
.y79{bottom:575.906667pt;}
.yf1{bottom:577.373333pt;}
.y152{bottom:579.773333pt;}
.y115{bottom:583.613333pt;}
.yc1{bottom:584.253333pt;}
.y68{bottom:589.693333pt;}
.y78{bottom:591.133333pt;}
.yf0{bottom:592.733333pt;}
.y151{bottom:594.973333pt;}
.y114{bottom:598.973333pt;}
.yc0{bottom:599.613333pt;}
.y67{bottom:604.893333pt;}
.y77{bottom:606.493333pt;}
.yef{bottom:608.093333pt;}
.y150{bottom:610.333333pt;}
.y113{bottom:614.173333pt;}
.ybf{bottom:614.813333pt;}
.y66{bottom:620.253333pt;}
.y76{bottom:621.853333pt;}
.yee{bottom:623.293333pt;}
.y14f{bottom:625.853333pt;}
.y112{bottom:629.533333pt;}
.y10{bottom:629.693333pt;}
.ybe{bottom:630.173333pt;}
.y65{bottom:635.613333pt;}
.y75{bottom:637.053333pt;}
.ydc{bottom:638.653333pt;}
.y14e{bottom:642.493333pt;}
.y111{bottom:644.893333pt;}
.ybd{bottom:645.533333pt;}
.y64{bottom:650.813333pt;}
.ydb{bottom:651.773333pt;}
.y74{bottom:652.413333pt;}
.y14d{bottom:657.693333pt;}
.y110{bottom:660.093333pt;}
.ybc{bottom:660.733333pt;}
.y63{bottom:666.173333pt;}
.yda{bottom:667.613333pt;}
.y73{bottom:667.773333pt;}
.y14c{bottom:673.053333pt;}
.y10f{bottom:675.453333pt;}
.ybb{bottom:676.093333pt;}
.y62{bottom:681.693333pt;}
.y72{bottom:682.973333pt;}
.yd9{bottom:683.613333pt;}
.y14b{bottom:688.253333pt;}
.y10e{bottom:690.653333pt;}
.yba{bottom:691.453333pt;}
.y12b{bottom:696.093333pt;}
.y61{bottom:698.333333pt;}
.yd8{bottom:699.613333pt;}
.y14a{bottom:703.613333pt;}
.y10d{bottom:706.173333pt;}
.yb9{bottom:706.653333pt;}
.y60{bottom:711.453333pt;}
.y12a{bottom:712.893333pt;}
.yd7{bottom:715.613333pt;}
.y149{bottom:718.973333pt;}
.y10c{bottom:721.853333pt;}
.ya5{bottom:722.013333pt;}
.y5f{bottom:727.293333pt;}
.y129{bottom:728.253333pt;}
.yd6{bottom:731.613333pt;}
.y148{bottom:734.493333pt;}
.ya4{bottom:737.213333pt;}
.y5e{bottom:743.293333pt;}
.y128{bottom:743.773333pt;}
.yd5{bottom:747.453333pt;}
.y147{bottom:751.133333pt;}
.ya3{bottom:752.573333pt;}
.y127{bottom:757.533333pt;}
.y5d{bottom:759.293333pt;}
.y146{bottom:766.333333pt;}
.yd4{bottom:766.493333pt;}
.ya2{bottom:767.933333pt;}
.y5c{bottom:775.293333pt;}
.y145{bottom:781.693333pt;}
.ya1{bottom:783.133333pt;}
.y5b{bottom:791.133333pt;}
.y144{bottom:796.893333pt;}
.ya0{bottom:798.533333pt;}
.y59{bottom:807.173333pt;}
.y143{bottom:812.293333pt;}
.y9f{bottom:813.893333pt;}
.y58{bottom:826.213333pt;}
.y142{bottom:827.653333pt;}
.yd3{bottom:828.773333pt;}
.y9e{bottom:829.093333pt;}
.y141{bottom:842.853333pt;}
.y57{bottom:843.013333pt;}
.yd2{bottom:844.133333pt;}
.y9d{bottom:844.453333pt;}
.yf{bottom:852.453333pt;}
.y140{bottom:858.213333pt;}
.yd1{bottom:859.333333pt;}
.y56{bottom:859.653333pt;}
.ye{bottom:869.413333pt;}
.y13f{bottom:873.733333pt;}
.yd0{bottom:874.693333pt;}
.y55{bottom:875.013333pt;}
.yd{bottom:886.213333pt;}
.ycf{bottom:890.213333pt;}
.y54{bottom:890.373333pt;}
.yc{bottom:905.413333pt;}
.y53{bottom:905.573333pt;}
.y52{bottom:920.933333pt;}
.yb{bottom:924.293333pt;}
.y51{bottom:936.293333pt;}
.y50{bottom:951.493333pt;}
.ya{bottom:951.813333pt;}
.y4f{bottom:966.853333pt;}
.y4e{bottom:982.053333pt;}
.y9{bottom:988.293333pt;}
.y4d{bottom:997.413333pt;}
.y8{bottom:1002.853333pt;}
.y4c{bottom:1012.773333pt;}
.y3{bottom:1020.960000pt;}
.y4b{bottom:1028.000000pt;}
.y2{bottom:1040.640000pt;}
.y4a{bottom:1043.360000pt;}
.y1{bottom:1060.160000pt;}
.h18{height:15.200000pt;}
.h19{height:15.232000pt;}
.h15{height:15.360000pt;}
.h17{height:15.392000pt;}
.h13{height:17.920000pt;}
.h3{height:32.507812pt;}
.h10{height:34.945312pt;}
.he{height:34.968750pt;}
.h5{height:35.975313pt;}
.h16{height:38.672812pt;}
.h11{height:38.698750pt;}
.h1b{height:39.917813pt;}
.ha{height:42.866250pt;}
.h4{height:42.895000pt;}
.h14{height:43.343750pt;}
.h7{height:43.613750pt;}
.h8{height:44.246250pt;}
.h1a{height:44.768125pt;}
.h12{height:45.696000pt;}
.hd{height:51.941250pt;}
.hb{height:56.269687pt;}
.hf{height:58.563750pt;}
.h2{height:63.656250pt;}
.h6{height:69.890625pt;}
.hc{height:152.346667pt;}
.h9{height:218.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.032000pt;}
.w10{width:65.632000pt;}
.w7{width:83.680000pt;}
.wd{width:91.360000pt;}
.wb{width:97.792000pt;}
.w19{width:104.032000pt;}
.w6{width:108.192000pt;}
.w17{width:108.832000pt;}
.w18{width:108.960000pt;}
.w16{width:108.992000pt;}
.w5{width:110.592000pt;}
.w8{width:117.632000pt;}
.w9{width:120.032000pt;}
.wc{width:129.952000pt;}
.w11{width:135.066667pt;}
.w13{width:136.000000pt;}
.w12{width:164.986667pt;}
.wa{width:173.466667pt;}
.w15{width:174.106667pt;}
.we{width:190.426667pt;}
.wf{width:204.866667pt;}
.w14{width:212.546667pt;}
.w3{width:793.599976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x9{left:18.266667pt;}
.x1{left:37.759988pt;}
.x17{left:41.919988pt;}
.x18{left:51.999988pt;}
.x22{left:57.599988pt;}
.x1e{left:104.672000pt;}
.x19{left:131.871988pt;}
.x12{left:136.826667pt;}
.xc{left:149.626667pt;}
.x23{left:168.346655pt;}
.x2b{left:213.146667pt;}
.x1f{left:240.546667pt;}
.x2a{left:242.626655pt;}
.xd{left:258.466667pt;}
.xa{left:261.186655pt;}
.x13{left:267.426667pt;}
.x1d{left:281.346655pt;}
.x11{left:290.946655pt;}
.x2c{left:322.786667pt;}
.xe{left:342.946667pt;}
.x14{left:359.426667pt;}
.x16{left:381.826655pt;}
.x7{left:396.893322pt;}
.x20{left:406.173333pt;}
.x3{left:412.093322pt;}
.x29{left:415.133322pt;}
.x1a{left:416.093322pt;}
.x25{left:430.333322pt;}
.x1b{left:431.293322pt;}
.x2d{left:432.253333pt;}
.x26{left:439.453322pt;}
.x5{left:445.373322pt;}
.xf{left:461.213333pt;}
.x27{left:516.573322pt;}
.x1c{left:520.893322pt;}
.x6{left:536.253322pt;}
.x2e{left:541.853333pt;}
.x21{left:542.813333pt;}
.x15{left:550.493333pt;}
.x10{left:581.893333pt;}
.x2f{left:651.333333pt;}
.x2{left:667.973322pt;}
.x8{left:710.053333pt;}
.x28{left:745.119988pt;}
.x4{left:754.399988pt;}
.x24{left:756.159988pt;}
}




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