
    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_a00322cd5a9fc51b64187cab.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_70e1f18b3652cb93a0a51b95.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_f4ccc3692fb2157bb04f2df6.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_24ff999c6bd58a1a6ed9c538.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6d50e937395117aeed9428f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.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_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a667ca9a999c899eef458ac7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8448b43d70d7d96446dd122d.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_491ac00bbc9e2d3befeadc11.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_63e67052c1ba03f6fa2cd218.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_4140339105afe80d6646fb79.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_25c77818d21df32ec03621a6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fd9b178fd9cc731df6d431e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.084961;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_cbe207ca73fe922151f98f45.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b84aaa40b8b5cc5f28175665.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c6cb1adec6b9a2ddd0005026.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.084961;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_97251e48e6cb556c48ccf17e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_74d8b4b6ab8b248b1354a0a9.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff16{font-family:ff16;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;}
@font-face{font-family:ff17;src:url('chunks/assets/font_03c8cb5bbf6cfefd4b826e0a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-4.836000px;}
.lsd{letter-spacing:-4.116000px;}
.ls16{letter-spacing:-0.708000px;}
.ls10{letter-spacing:-0.579600px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.127200px;}
.ls1a{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.070560px;}
.lsf{letter-spacing:0.087600px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls18{letter-spacing:0.900000px;}
.ls1e{letter-spacing:16.506720px;}
.ls13{letter-spacing:43.866720px;}
.ls11{letter-spacing:46.026720px;}
.ls19{letter-spacing:64.026720px;}
.ls1b{letter-spacing:1044.480000px;}
.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;}
}
.ws4{word-spacing:-84.240000px;}
.ws15{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.505760px;}
.wse{word-spacing:-12.926160px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.wsb{word-spacing:-10.824000px;}
.wsa{word-spacing:-10.104000px;}
.ws10{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.012000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.ws11{word-spacing:0.000000px;}
._a{margin-left:-8.191920px;}
._4{margin-left:-7.147920px;}
._3{margin-left:-5.557680px;}
._e{margin-left:-4.419600px;}
._2{margin-left:-3.054000px;}
._0{margin-left:-1.158000px;}
._1{width:1.266000px;}
._7{width:2.477760px;}
._b{width:3.635040px;}
._8{width:5.119200px;}
._9{width:7.114800px;}
._5{width:8.654160px;}
._6{width:9.681120px;}
._12{width:11.782320px;}
._10{width:12.881520px;}
._f{width:13.913040px;}
._16{width:16.255920px;}
._17{width:17.932080px;}
._d{width:19.971360px;}
._c{width:21.214800px;}
._13{width:22.578240px;}
._14{width:23.904000px;}
._11{width:27.852960px;}
._15{width:201.204000px;}
.fc8{color:rgb(38,74,96);}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(1,2,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y48{bottom:3.960000px;}
.ydb{bottom:5.220000px;}
.yeb{bottom:5.580000px;}
.ye8{bottom:5.760000px;}
.yd9{bottom:6.300000px;}
.ye6{bottom:6.660000px;}
.yf6{bottom:6.834000px;}
.yf8{bottom:6.840000px;}
.y10d{bottom:8.100000px;}
.yd7{bottom:8.460000px;}
.ye4{bottom:9.000000px;}
.yf3{bottom:10.260000px;}
.y46{bottom:10.620000px;}
.ye{bottom:10.800000px;}
.y113{bottom:12.960000px;}
.yc{bottom:13.860000px;}
.y11d{bottom:14.220000px;}
.y11a{bottom:14.400000px;}
.y119{bottom:15.480000px;}
.y115{bottom:15.660000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y43{bottom:20.520000px;}
.y47{bottom:22.140000px;}
.y1c{bottom:23.940000px;}
.y45{bottom:25.245000px;}
.yd6{bottom:25.740000px;}
.y110{bottom:26.274000px;}
.ye3{bottom:26.280000px;}
.yf2{bottom:27.540000px;}
.yb{bottom:30.240000px;}
.y5{bottom:34.920000px;}
.y1b{bottom:36.540000px;}
.y42{bottom:37.800000px;}
.y10f{bottom:43.374000px;}
.y117{bottom:44.640000px;}
.ya{bottom:46.620000px;}
.y41{bottom:55.080000px;}
.y1{bottom:55.980000px;}
.y1a{bottom:56.880000px;}
.y19{bottom:69.660000px;}
.y40{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y3f{bottom:89.460000px;}
.y18{bottom:89.820000px;}
.y8{bottom:93.090000px;}
.y7d{bottom:100.656000px;}
.yf9{bottom:102.276000px;}
.y17{bottom:102.645000px;}
.y112{bottom:105.516000px;}
.y3e{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.yb6{bottom:113.076000px;}
.y7c{bottom:114.696000px;}
.y13d{bottom:117.036000px;}
.y16{bottom:122.805000px;}
.yf7{bottom:123.696000px;}
.y3d{bottom:124.020000px;}
.y154{bottom:126.036000px;}
.y53{bottom:127.296000px;}
.yb5{bottom:130.356000px;}
.y2d{bottom:130.500000px;}
.y10e{bottom:133.236000px;}
.y13c{bottom:134.316000px;}
.y15{bottom:138.645000px;}
.y3c{bottom:141.300000px;}
.y153{bottom:143.316000px;}
.y52{bottom:144.396000px;}
.yf5{bottom:145.296000px;}
.y2c{bottom:145.800000px;}
.yb4{bottom:147.636000px;}
.y14{bottom:149.085000px;}
.y13b{bottom:151.590000px;}
.y3b{bottom:158.580000px;}
.y152{bottom:160.590000px;}
.y51{bottom:161.670000px;}
.y111{bottom:162.390000px;}
.y2b{bottom:163.260000px;}
.yb3{bottom:164.910000px;}
.yf4{bottom:166.890000px;}
.y13{bottom:167.445000px;}
.y13a{bottom:168.870000px;}
.y3a{bottom:175.680000px;}
.y151{bottom:177.870000px;}
.y50{bottom:178.950000px;}
.y2a{bottom:180.540000px;}
.yb2{bottom:182.190000px;}
.y139{bottom:186.150000px;}
.y12{bottom:186.345000px;}
.yf1{bottom:188.310000px;}
.y10c{bottom:191.370000px;}
.y39{bottom:192.960000px;}
.y150{bottom:194.970000px;}
.y4f{bottom:196.230000px;}
.y29{bottom:197.820000px;}
.yb1{bottom:199.470000px;}
.y138{bottom:203.430000px;}
.y38{bottom:210.240000px;}
.y11{bottom:212.085000px;}
.y14f{bottom:212.250000px;}
.y4e{bottom:213.510000px;}
.y28{bottom:215.640000px;}
.yb0{bottom:216.570000px;}
.y137{bottom:220.530000px;}
.y10b{bottom:222.330000px;}
.y37{bottom:227.520000px;}
.y14e{bottom:229.530000px;}
.y4d{bottom:230.790000px;}
.y27{bottom:232.920000px;}
.yaf{bottom:233.850000px;}
.yda{bottom:234.030000px;}
.y10{bottom:236.565000px;}
.y136{bottom:237.810000px;}
.y10a{bottom:239.610000px;}
.y36{bottom:244.800000px;}
.y14d{bottom:246.810000px;}
.y4c{bottom:247.890000px;}
.y26{bottom:250.380000px;}
.yae{bottom:251.130000px;}
.yd8{bottom:254.010000px;}
.y135{bottom:256.170000px;}
.y109{bottom:256.890000px;}
.y35{bottom:262.110000px;}
.y14c{bottom:264.090000px;}
.y4b{bottom:265.170000px;}
.y25{bottom:267.870000px;}
.yad{bottom:268.410000px;}
.yf0{bottom:269.490000px;}
.y134{bottom:273.450000px;}
.yd5{bottom:275.070000px;}
.y108{bottom:275.250000px;}
.y34{bottom:279.210000px;}
.y14b{bottom:281.370000px;}
.y4a{bottom:282.450000px;}
.y24{bottom:285.150000px;}
.yac{bottom:285.690000px;}
.yef{bottom:286.770000px;}
.y133{bottom:290.730000px;}
.y107{bottom:292.350000px;}
.y33{bottom:296.490000px;}
.y14a{bottom:298.470000px;}
.y49{bottom:299.730000px;}
.y23{bottom:302.610000px;}
.yab{bottom:302.790000px;}
.yee{bottom:304.950000px;}
.y106{bottom:306.390000px;}
.y132{bottom:308.910000px;}
.y32{bottom:313.770000px;}
.y149{bottom:315.750000px;}
.yd4{bottom:318.810000px;}
.yed{bottom:318.990000px;}
.y22{bottom:320.070000px;}
.y131{bottom:326.190000px;}
.y31{bottom:331.050000px;}
.y148{bottom:333.030000px;}
.yd3{bottom:336.090000px;}
.yaa{bottom:337.395000px;}
.y21{bottom:340.230000px;}
.y7b{bottom:341.355000px;}
.y130{bottom:344.595000px;}
.y30{bottom:348.330000px;}
.y1e{bottom:350.355000px;}
.yd2{bottom:350.895000px;}
.ya9{bottom:354.675000px;}
.y7a{bottom:358.635000px;}
.y12f{bottom:361.875000px;}
.y2f{bottom:365.430000px;}
.y147{bottom:367.635000px;}
.y20{bottom:367.770000px;}
.ya8{bottom:371.955000px;}
.yd1{bottom:373.395000px;}
.y79{bottom:375.735000px;}
.y12e{bottom:380.235000px;}
.y2e{bottom:382.710000px;}
.y146{bottom:384.915000px;}
.y1f{bottom:385.410000px;}
.ya7{bottom:389.235000px;}
.y78{bottom:393.015000px;}
.yd0{bottom:395.895000px;}
.y12d{bottom:397.515000px;}
.y145{bottom:402.015000px;}
.ya6{bottom:406.335000px;}
.y77{bottom:410.295000px;}
.y12c{bottom:412.275000px;}
.ycf{bottom:418.395000px;}
.y144{bottom:419.295000px;}
.ya5{bottom:423.615000px;}
.y76{bottom:427.575000px;}
.y12b{bottom:430.275000px;}
.y143{bottom:436.575000px;}
.ya4{bottom:440.895000px;}
.y75{bottom:444.855000px;}
.y12a{bottom:448.275000px;}
.y142{bottom:453.855000px;}
.ya3{bottom:458.175000px;}
.y74{bottom:462.135000px;}
.yce{bottom:463.395000px;}
.y129{bottom:466.275000px;}
.y141{bottom:471.135000px;}
.ya2{bottom:475.455000px;}
.y73{bottom:479.235000px;}
.y128{bottom:484.275000px;}
.ycd{bottom:485.895000px;}
.y140{bottom:488.235000px;}
.ya1{bottom:492.735000px;}
.y72{bottom:496.515000px;}
.y127{bottom:505.515000px;}
.ycc{bottom:508.395000px;}
.ya0{bottom:509.835000px;}
.y71{bottom:513.795000px;}
.y126{bottom:522.615000px;}
.y13f{bottom:522.795000px;}
.y9f{bottom:527.115000px;}
.ycb{bottom:530.895000px;}
.y70{bottom:531.075000px;}
.y125{bottom:539.895000px;}
.y13e{bottom:540.075000px;}
.y9e{bottom:544.395000px;}
.y6f{bottom:548.355000px;}
.y124{bottom:557.175000px;}
.yca{bottom:557.355000px;}
.y9d{bottom:561.675000px;}
.y6e{bottom:565.635000px;}
.yc9{bottom:574.635000px;}
.y123{bottom:575.535000px;}
.y9c{bottom:578.955000px;}
.y6d{bottom:582.735000px;}
.yc8{bottom:591.735000px;}
.y122{bottom:592.815000px;}
.y9b{bottom:596.055000px;}
.y6c{bottom:600.015000px;}
.yc7{bottom:609.045000px;}
.y121{bottom:609.945000px;}
.y9a{bottom:613.365000px;}
.y105{bottom:613.545000px;}
.y6b{bottom:617.325000px;}
.y120{bottom:623.985000px;}
.yc6{bottom:626.325000px;}
.y104{bottom:628.305000px;}
.y99{bottom:631.725000px;}
.y6a{bottom:634.605000px;}
.yec{bottom:639.645000px;}
.yc5{bottom:643.605000px;}
.y103{bottom:649.725000px;}
.y98{bottom:650.085000px;}
.y69{bottom:651.885000px;}
.yea{bottom:654.405000px;}
.yc4{bottom:660.885000px;}
.y97{bottom:667.365000px;}
.y68{bottom:668.985000px;}
.y102{bottom:671.325000px;}
.ye9{bottom:674.745000px;}
.yc3{bottom:678.165000px;}
.y96{bottom:684.645000px;}
.y67{bottom:686.265000px;}
.y101{bottom:692.925000px;}
.yc2{bottom:695.265000px;}
.ye7{bottom:696.165000px;}
.y95{bottom:701.745000px;}
.y66{bottom:703.545000px;}
.yc1{bottom:712.545000px;}
.y100{bottom:714.345000px;}
.ye5{bottom:716.685000px;}
.y94{bottom:720.105000px;}
.y65{bottom:720.825000px;}
.yc0{bottom:729.825000px;}
.y64{bottom:738.105000px;}
.y93{bottom:738.465000px;}
.y1d{bottom:747.105000px;}
.y63{bottom:755.385000px;}
.y92{bottom:756.825000px;}
.yff{bottom:759.885000px;}
.ybf{bottom:764.385000px;}
.y62{bottom:772.485000px;}
.y91{bottom:775.185000px;}
.yf{bottom:776.625000px;}
.yfe{bottom:777.165000px;}
.ybe{bottom:781.665000px;}
.ye2{bottom:782.385000px;}
.y61{bottom:789.765000px;}
.y90{bottom:793.365000px;}
.yfd{bottom:795.525000px;}
.ybd{bottom:798.765000px;}
.ye1{bottom:799.665000px;}
.y60{bottom:807.045000px;}
.y8f{bottom:811.725000px;}
.yfc{bottom:813.885000px;}
.ybc{bottom:816.045000px;}
.ye0{bottom:816.945000px;}
.y5f{bottom:824.325000px;}
.y8e{bottom:829.005000px;}
.yfb{bottom:830.985000px;}
.ybb{bottom:833.325000px;}
.ydf{bottom:835.305000px;}
.y5e{bottom:841.605000px;}
.yfa{bottom:845.025000px;}
.y8d{bottom:846.285000px;}
.yba{bottom:850.605000px;}
.yde{bottom:853.485000px;}
.y5d{bottom:858.885000px;}
.y8c{bottom:864.645000px;}
.yb9{bottom:867.885000px;}
.ydd{bottom:870.810000px;}
.y5c{bottom:876.030000px;}
.y8b{bottom:883.050000px;}
.ydc{bottom:884.850000px;}
.yb8{bottom:885.030000px;}
.y5b{bottom:893.310000px;}
.y8a{bottom:901.230000px;}
.yb7{bottom:902.310000px;}
.y5a{bottom:910.590000px;}
.y89{bottom:919.590000px;}
.y59{bottom:927.870000px;}
.y88{bottom:936.870000px;}
.y58{bottom:945.150000px;}
.y87{bottom:954.150000px;}
.y57{bottom:959.190000px;}
.y86{bottom:971.430000px;}
.y11f{bottom:983.490000px;}
.y85{bottom:988.530000px;}
.y11e{bottom:998.250000px;}
.y84{bottom:1005.810000px;}
.y83{bottom:1023.090000px;}
.y11b{bottom:1025.970000px;}
.yd{bottom:1028.310000px;}
.y82{bottom:1040.370000px;}
.y6{bottom:1053.510000px;}
.y11c{bottom:1056.390000px;}
.y81{bottom:1057.650000px;}
.y80{bottom:1074.930000px;}
.y116{bottom:1085.370000px;}
.y7f{bottom:1092.030000px;}
.y7e{bottom:1109.310000px;}
.y118{bottom:1114.530000px;}
.y56{bottom:1126.590000px;}
.y55{bottom:1143.900000px;}
.y114{bottom:1144.800000px;}
.y54{bottom:1161.180000px;}
.h36{height:17.100000px;}
.h29{height:19.260000px;}
.h2c{height:19.620000px;}
.h28{height:20.340000px;}
.h2b{height:20.700000px;}
.h2e{height:20.880000px;}
.h26{height:22.500000px;}
.hc{height:24.840000px;}
.h2f{height:27.000000px;}
.h31{height:28.260000px;}
.h32{height:28.440000px;}
.h16{height:29.520000px;}
.h34{height:29.556000px;}
.h14{height:32.103633px;}
.h2{height:32.976000px;}
.h13{height:35.806641px;}
.h8{height:36.180000px;}
.h1f{height:36.576000px;}
.h27{height:39.780000px;}
.h2a{height:40.320000px;}
.h2d{height:41.580000px;}
.h1e{height:41.726953px;}
.h21{height:42.164648px;}
.h1c{height:42.186445px;}
.h1b{height:42.281367px;}
.h23{height:43.506914px;}
.hf{height:44.002969px;}
.h24{height:44.265586px;}
.ha{height:44.820000px;}
.h15{height:47.223633px;}
.h18{height:47.980898px;}
.h22{height:48.027656px;}
.h25{height:48.147656px;}
.h1d{height:48.496641px;}
.hd{height:49.680000px;}
.h1a{height:49.742227px;}
.h20{height:52.260820px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h30{height:57.420000px;}
.h35{height:58.680000px;}
.h33{height:58.716000px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h7{height:121.536000px;}
.he{height:251.670000px;}
.h17{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w1c{width:73.620000px;}
.w1a{width:73.656000px;}
.wd{width:78.840000px;}
.w1d{width:79.740000px;}
.w17{width:103.500000px;}
.w19{width:124.776000px;}
.w1b{width:131.076000px;}
.w18{width:138.816000px;}
.w5{width:151.950000px;}
.w15{width:154.080000px;}
.w10{width:170.130000px;}
.we{width:181.830000px;}
.w11{width:182.010000px;}
.wc{width:189.030000px;}
.w12{width:193.350000px;}
.wf{width:193.530000px;}
.w14{width:205.455000px;}
.w8{width:216.075000px;}
.wb{width:219.810000px;}
.w1f{width:226.290000px;}
.wa{width:241.995000px;}
.w16{width:264.495000px;}
.w1e{width:502.665000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w13{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:4.500000px;}
.x2{left:8.676000px;}
.xb{left:10.476000px;}
.x14{left:12.600000px;}
.x12{left:16.776000px;}
.x11{left:24.336000px;}
.xe{left:27.036000px;}
.x2b{left:54.036000px;}
.xc{left:58.896000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x17{left:108.035987px;}
.x29{left:116.135987px;}
.xd{left:128.010000px;}
.x25{left:130.355987px;}
.x18{left:135.035987px;}
.x33{left:137.015987px;}
.x27{left:146.555987px;}
.x30{left:156.090000px;}
.x23{left:197.669987px;}
.x1e{left:211.169987px;}
.x13{left:215.175000px;}
.x5{left:232.950000px;}
.x36{left:241.949987px;}
.x16{left:246.449987px;}
.x1f{left:264.270000px;}
.x8{left:272.235000px;}
.x2c{left:287.895000px;}
.xf{left:296.535000px;}
.x10{left:320.115000px;}
.x19{left:321.194987px;}
.x1b{left:323.715000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.x31{left:362.235000px;}
.xa{left:365.475000px;}
.x34{left:399.674987px;}
.x9{left:439.500000px;}
.x22{left:441.434987px;}
.x2d{left:442.695000px;}
.x20{left:446.835000px;}
.x35{left:473.504987px;}
.x1c{left:543.525000px;}
.x15{left:579.344987px;}
.x2f{left:582.405000px;}
.x37{left:585.105000px;}
.x1a{left:624.344987px;}
.x21{left:641.265000px;}
.x32{left:663.629987px;}
.x28{left:673.889987px;}
.x26{left:680.549987px;}
.x24{left:683.969987px;}
.x2e{left:707.910000px;}
.x1d{left:732.570000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-4.298667pt;}
.lsd{letter-spacing:-3.658667pt;}
.ls16{letter-spacing:-0.629333pt;}
.ls10{letter-spacing:-0.515200pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.062720pt;}
.lsf{letter-spacing:0.077867pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls13{letter-spacing:38.992640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls19{letter-spacing:56.912640pt;}
.ls1b{letter-spacing:928.426667pt;}
.ws4{word-spacing:-74.880000pt;}
.ws15{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.489920pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsb{word-spacing:-9.621333pt;}
.wsa{word-spacing:-8.981333pt;}
.ws10{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.010667pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.ws11{word-spacing:0.000000pt;}
._a{margin-left:-7.281707pt;}
._4{margin-left:-6.353707pt;}
._3{margin-left:-4.940160pt;}
._e{margin-left:-3.928533pt;}
._2{margin-left:-2.714667pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.125333pt;}
._7{width:2.202453pt;}
._b{width:3.231147pt;}
._8{width:4.550400pt;}
._9{width:6.324267pt;}
._5{width:7.692587pt;}
._6{width:8.605440pt;}
._12{width:10.473173pt;}
._10{width:11.450240pt;}
._f{width:12.367147pt;}
._16{width:14.449707pt;}
._17{width:15.939627pt;}
._d{width:17.752320pt;}
._c{width:18.857600pt;}
._13{width:20.069547pt;}
._14{width:21.248000pt;}
._11{width:24.758187pt;}
._15{width:178.848000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y48{bottom:3.520000pt;}
.ydb{bottom:4.640000pt;}
.yeb{bottom:4.960000pt;}
.ye8{bottom:5.120000pt;}
.yd9{bottom:5.600000pt;}
.ye6{bottom:5.920000pt;}
.yf6{bottom:6.074667pt;}
.yf8{bottom:6.080000pt;}
.y10d{bottom:7.200000pt;}
.yd7{bottom:7.520000pt;}
.ye4{bottom:8.000000pt;}
.yf3{bottom:9.120000pt;}
.y46{bottom:9.440000pt;}
.ye{bottom:9.600000pt;}
.y113{bottom:11.520000pt;}
.yc{bottom:12.320000pt;}
.y11d{bottom:12.640000pt;}
.y11a{bottom:12.800000pt;}
.y119{bottom:13.760000pt;}
.y115{bottom:13.920000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y43{bottom:18.240000pt;}
.y47{bottom:19.680000pt;}
.y1c{bottom:21.280000pt;}
.y45{bottom:22.440000pt;}
.yd6{bottom:22.880000pt;}
.y110{bottom:23.354667pt;}
.ye3{bottom:23.360000pt;}
.yf2{bottom:24.480000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:31.040000pt;}
.y1b{bottom:32.480000pt;}
.y42{bottom:33.600000pt;}
.y10f{bottom:38.554667pt;}
.y117{bottom:39.680000pt;}
.ya{bottom:41.440000pt;}
.y41{bottom:48.960000pt;}
.y1{bottom:49.760000pt;}
.y1a{bottom:50.560000pt;}
.y19{bottom:61.920000pt;}
.y40{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y3f{bottom:79.520000pt;}
.y18{bottom:79.840000pt;}
.y8{bottom:82.746667pt;}
.y7d{bottom:89.472000pt;}
.yf9{bottom:90.912000pt;}
.y17{bottom:91.240000pt;}
.y112{bottom:93.792000pt;}
.y3e{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.yb6{bottom:100.512000pt;}
.y7c{bottom:101.952000pt;}
.y13d{bottom:104.032000pt;}
.y16{bottom:109.160000pt;}
.yf7{bottom:109.952000pt;}
.y3d{bottom:110.240000pt;}
.y154{bottom:112.032000pt;}
.y53{bottom:113.152000pt;}
.yb5{bottom:115.872000pt;}
.y2d{bottom:116.000000pt;}
.y10e{bottom:118.432000pt;}
.y13c{bottom:119.392000pt;}
.y15{bottom:123.240000pt;}
.y3c{bottom:125.600000pt;}
.y153{bottom:127.392000pt;}
.y52{bottom:128.352000pt;}
.yf5{bottom:129.152000pt;}
.y2c{bottom:129.600000pt;}
.yb4{bottom:131.232000pt;}
.y14{bottom:132.520000pt;}
.y13b{bottom:134.746667pt;}
.y3b{bottom:140.960000pt;}
.y152{bottom:142.746667pt;}
.y51{bottom:143.706667pt;}
.y111{bottom:144.346667pt;}
.y2b{bottom:145.120000pt;}
.yb3{bottom:146.586667pt;}
.yf4{bottom:148.346667pt;}
.y13{bottom:148.840000pt;}
.y13a{bottom:150.106667pt;}
.y3a{bottom:156.160000pt;}
.y151{bottom:158.106667pt;}
.y50{bottom:159.066667pt;}
.y2a{bottom:160.480000pt;}
.yb2{bottom:161.946667pt;}
.y139{bottom:165.466667pt;}
.y12{bottom:165.640000pt;}
.yf1{bottom:167.386667pt;}
.y10c{bottom:170.106667pt;}
.y39{bottom:171.520000pt;}
.y150{bottom:173.306667pt;}
.y4f{bottom:174.426667pt;}
.y29{bottom:175.840000pt;}
.yb1{bottom:177.306667pt;}
.y138{bottom:180.826667pt;}
.y38{bottom:186.880000pt;}
.y11{bottom:188.520000pt;}
.y14f{bottom:188.666667pt;}
.y4e{bottom:189.786667pt;}
.y28{bottom:191.680000pt;}
.yb0{bottom:192.506667pt;}
.y137{bottom:196.026667pt;}
.y10b{bottom:197.626667pt;}
.y37{bottom:202.240000pt;}
.y14e{bottom:204.026667pt;}
.y4d{bottom:205.146667pt;}
.y27{bottom:207.040000pt;}
.yaf{bottom:207.866667pt;}
.yda{bottom:208.026667pt;}
.y10{bottom:210.280000pt;}
.y136{bottom:211.386667pt;}
.y10a{bottom:212.986667pt;}
.y36{bottom:217.600000pt;}
.y14d{bottom:219.386667pt;}
.y4c{bottom:220.346667pt;}
.y26{bottom:222.560000pt;}
.yae{bottom:223.226667pt;}
.yd8{bottom:225.786667pt;}
.y135{bottom:227.706667pt;}
.y109{bottom:228.346667pt;}
.y35{bottom:232.986667pt;}
.y14c{bottom:234.746667pt;}
.y4b{bottom:235.706667pt;}
.y25{bottom:238.106667pt;}
.yad{bottom:238.586667pt;}
.yf0{bottom:239.546667pt;}
.y134{bottom:243.066667pt;}
.yd5{bottom:244.506667pt;}
.y108{bottom:244.666667pt;}
.y34{bottom:248.186667pt;}
.y14b{bottom:250.106667pt;}
.y4a{bottom:251.066667pt;}
.y24{bottom:253.466667pt;}
.yac{bottom:253.946667pt;}
.yef{bottom:254.906667pt;}
.y133{bottom:258.426667pt;}
.y107{bottom:259.866667pt;}
.y33{bottom:263.546667pt;}
.y14a{bottom:265.306667pt;}
.y49{bottom:266.426667pt;}
.y23{bottom:268.986667pt;}
.yab{bottom:269.146667pt;}
.yee{bottom:271.066667pt;}
.y106{bottom:272.346667pt;}
.y132{bottom:274.586667pt;}
.y32{bottom:278.906667pt;}
.y149{bottom:280.666667pt;}
.yd4{bottom:283.386667pt;}
.yed{bottom:283.546667pt;}
.y22{bottom:284.506667pt;}
.y131{bottom:289.946667pt;}
.y31{bottom:294.266667pt;}
.y148{bottom:296.026667pt;}
.yd3{bottom:298.746667pt;}
.yaa{bottom:299.906667pt;}
.y21{bottom:302.426667pt;}
.y7b{bottom:303.426667pt;}
.y130{bottom:306.306667pt;}
.y30{bottom:309.626667pt;}
.y1e{bottom:311.426667pt;}
.yd2{bottom:311.906667pt;}
.ya9{bottom:315.266667pt;}
.y7a{bottom:318.786667pt;}
.y12f{bottom:321.666667pt;}
.y2f{bottom:324.826667pt;}
.y147{bottom:326.786667pt;}
.y20{bottom:326.906667pt;}
.ya8{bottom:330.626667pt;}
.yd1{bottom:331.906667pt;}
.y79{bottom:333.986667pt;}
.y12e{bottom:337.986667pt;}
.y2e{bottom:340.186667pt;}
.y146{bottom:342.146667pt;}
.y1f{bottom:342.586667pt;}
.ya7{bottom:345.986667pt;}
.y78{bottom:349.346667pt;}
.yd0{bottom:351.906667pt;}
.y12d{bottom:353.346667pt;}
.y145{bottom:357.346667pt;}
.ya6{bottom:361.186667pt;}
.y77{bottom:364.706667pt;}
.y12c{bottom:366.466667pt;}
.ycf{bottom:371.906667pt;}
.y144{bottom:372.706667pt;}
.ya5{bottom:376.546667pt;}
.y76{bottom:380.066667pt;}
.y12b{bottom:382.466667pt;}
.y143{bottom:388.066667pt;}
.ya4{bottom:391.906667pt;}
.y75{bottom:395.426667pt;}
.y12a{bottom:398.466667pt;}
.y142{bottom:403.426667pt;}
.ya3{bottom:407.266667pt;}
.y74{bottom:410.786667pt;}
.yce{bottom:411.906667pt;}
.y129{bottom:414.466667pt;}
.y141{bottom:418.786667pt;}
.ya2{bottom:422.626667pt;}
.y73{bottom:425.986667pt;}
.y128{bottom:430.466667pt;}
.ycd{bottom:431.906667pt;}
.y140{bottom:433.986667pt;}
.ya1{bottom:437.986667pt;}
.y72{bottom:441.346667pt;}
.y127{bottom:449.346667pt;}
.ycc{bottom:451.906667pt;}
.ya0{bottom:453.186667pt;}
.y71{bottom:456.706667pt;}
.y126{bottom:464.546667pt;}
.y13f{bottom:464.706667pt;}
.y9f{bottom:468.546667pt;}
.ycb{bottom:471.906667pt;}
.y70{bottom:472.066667pt;}
.y125{bottom:479.906667pt;}
.y13e{bottom:480.066667pt;}
.y9e{bottom:483.906667pt;}
.y6f{bottom:487.426667pt;}
.y124{bottom:495.266667pt;}
.yca{bottom:495.426667pt;}
.y9d{bottom:499.266667pt;}
.y6e{bottom:502.786667pt;}
.yc9{bottom:510.786667pt;}
.y123{bottom:511.586667pt;}
.y9c{bottom:514.626667pt;}
.y6d{bottom:517.986667pt;}
.yc8{bottom:525.986667pt;}
.y122{bottom:526.946667pt;}
.y9b{bottom:529.826667pt;}
.y6c{bottom:533.346667pt;}
.yc7{bottom:541.373333pt;}
.y121{bottom:542.173333pt;}
.y9a{bottom:545.213333pt;}
.y105{bottom:545.373333pt;}
.y6b{bottom:548.733333pt;}
.y120{bottom:554.653333pt;}
.yc6{bottom:556.733333pt;}
.y104{bottom:558.493333pt;}
.y99{bottom:561.533333pt;}
.y6a{bottom:564.093333pt;}
.yec{bottom:568.573333pt;}
.yc5{bottom:572.093333pt;}
.y103{bottom:577.533333pt;}
.y98{bottom:577.853333pt;}
.y69{bottom:579.453333pt;}
.yea{bottom:581.693333pt;}
.yc4{bottom:587.453333pt;}
.y97{bottom:593.213333pt;}
.y68{bottom:594.653333pt;}
.y102{bottom:596.733333pt;}
.ye9{bottom:599.773333pt;}
.yc3{bottom:602.813333pt;}
.y96{bottom:608.573333pt;}
.y67{bottom:610.013333pt;}
.y101{bottom:615.933333pt;}
.yc2{bottom:618.013333pt;}
.ye7{bottom:618.813333pt;}
.y95{bottom:623.773333pt;}
.y66{bottom:625.373333pt;}
.yc1{bottom:633.373333pt;}
.y100{bottom:634.973333pt;}
.ye5{bottom:637.053333pt;}
.y94{bottom:640.093333pt;}
.y65{bottom:640.733333pt;}
.yc0{bottom:648.733333pt;}
.y64{bottom:656.093333pt;}
.y93{bottom:656.413333pt;}
.y1d{bottom:664.093333pt;}
.y63{bottom:671.453333pt;}
.y92{bottom:672.733333pt;}
.yff{bottom:675.453333pt;}
.ybf{bottom:679.453333pt;}
.y62{bottom:686.653333pt;}
.y91{bottom:689.053333pt;}
.yf{bottom:690.333333pt;}
.yfe{bottom:690.813333pt;}
.ybe{bottom:694.813333pt;}
.ye2{bottom:695.453333pt;}
.y61{bottom:702.013333pt;}
.y90{bottom:705.213333pt;}
.yfd{bottom:707.133333pt;}
.ybd{bottom:710.013333pt;}
.ye1{bottom:710.813333pt;}
.y60{bottom:717.373333pt;}
.y8f{bottom:721.533333pt;}
.yfc{bottom:723.453333pt;}
.ybc{bottom:725.373333pt;}
.ye0{bottom:726.173333pt;}
.y5f{bottom:732.733333pt;}
.y8e{bottom:736.893333pt;}
.yfb{bottom:738.653333pt;}
.ybb{bottom:740.733333pt;}
.ydf{bottom:742.493333pt;}
.y5e{bottom:748.093333pt;}
.yfa{bottom:751.133333pt;}
.y8d{bottom:752.253333pt;}
.yba{bottom:756.093333pt;}
.yde{bottom:758.653333pt;}
.y5d{bottom:763.453333pt;}
.y8c{bottom:768.573333pt;}
.yb9{bottom:771.453333pt;}
.ydd{bottom:774.053333pt;}
.y5c{bottom:778.693333pt;}
.y8b{bottom:784.933333pt;}
.ydc{bottom:786.533333pt;}
.yb8{bottom:786.693333pt;}
.y5b{bottom:794.053333pt;}
.y8a{bottom:801.093333pt;}
.yb7{bottom:802.053333pt;}
.y5a{bottom:809.413333pt;}
.y89{bottom:817.413333pt;}
.y59{bottom:824.773333pt;}
.y88{bottom:832.773333pt;}
.y58{bottom:840.133333pt;}
.y87{bottom:848.133333pt;}
.y57{bottom:852.613333pt;}
.y86{bottom:863.493333pt;}
.y11f{bottom:874.213333pt;}
.y85{bottom:878.693333pt;}
.y11e{bottom:887.333333pt;}
.y84{bottom:894.053333pt;}
.y83{bottom:909.413333pt;}
.y11b{bottom:911.973333pt;}
.yd{bottom:914.053333pt;}
.y82{bottom:924.773333pt;}
.y6{bottom:936.453333pt;}
.y11c{bottom:939.013333pt;}
.y81{bottom:940.133333pt;}
.y80{bottom:955.493333pt;}
.y116{bottom:964.773333pt;}
.y7f{bottom:970.693333pt;}
.y7e{bottom:986.053333pt;}
.y118{bottom:990.693333pt;}
.y56{bottom:1001.413333pt;}
.y55{bottom:1016.800000pt;}
.y114{bottom:1017.600000pt;}
.y54{bottom:1032.160000pt;}
.h36{height:15.200000pt;}
.h29{height:17.120000pt;}
.h2c{height:17.440000pt;}
.h28{height:18.080000pt;}
.h2b{height:18.400000pt;}
.h2e{height:18.560000pt;}
.h26{height:20.000000pt;}
.hc{height:22.080000pt;}
.h2f{height:24.000000pt;}
.h31{height:25.120000pt;}
.h32{height:25.280000pt;}
.h16{height:26.240000pt;}
.h34{height:26.272000pt;}
.h14{height:28.536563pt;}
.h2{height:29.312000pt;}
.h13{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1f{height:32.512000pt;}
.h27{height:35.360000pt;}
.h2a{height:35.840000pt;}
.h2d{height:36.960000pt;}
.h1e{height:37.090625pt;}
.h21{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1b{height:37.583438pt;}
.h23{height:38.672812pt;}
.hf{height:39.113750pt;}
.h24{height:39.347188pt;}
.ha{height:39.840000pt;}
.h15{height:41.976562pt;}
.h18{height:42.649687pt;}
.h22{height:42.691250pt;}
.h25{height:42.797917pt;}
.h1d{height:43.108125pt;}
.hd{height:44.160000pt;}
.h1a{height:44.215312pt;}
.h20{height:46.454062pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h30{height:51.040000pt;}
.h35{height:52.160000pt;}
.h33{height:52.192000pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h7{height:108.032000pt;}
.he{height:223.706667pt;}
.h17{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w1c{width:65.440000pt;}
.w1a{width:65.472000pt;}
.wd{width:70.080000pt;}
.w1d{width:70.880000pt;}
.w17{width:92.000000pt;}
.w19{width:110.912000pt;}
.w1b{width:116.512000pt;}
.w18{width:123.392000pt;}
.w5{width:135.066667pt;}
.w15{width:136.960000pt;}
.w10{width:151.226667pt;}
.we{width:161.626667pt;}
.w11{width:161.786667pt;}
.wc{width:168.026667pt;}
.w12{width:171.866667pt;}
.wf{width:172.026667pt;}
.w14{width:182.626667pt;}
.w8{width:192.066667pt;}
.wb{width:195.386667pt;}
.w1f{width:201.146667pt;}
.wa{width:215.106667pt;}
.w16{width:235.106667pt;}
.w1e{width:446.813333pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w13{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:4.000000pt;}
.x2{left:7.712000pt;}
.xb{left:9.312000pt;}
.x14{left:11.200000pt;}
.x12{left:14.912000pt;}
.x11{left:21.632000pt;}
.xe{left:24.032000pt;}
.x2b{left:48.032000pt;}
.xc{left:52.352000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x17{left:96.031988pt;}
.x29{left:103.231988pt;}
.xd{left:113.786667pt;}
.x25{left:115.871988pt;}
.x18{left:120.031988pt;}
.x33{left:121.791988pt;}
.x27{left:130.271988pt;}
.x30{left:138.746667pt;}
.x23{left:175.706655pt;}
.x1e{left:187.706655pt;}
.x13{left:191.266667pt;}
.x5{left:207.066667pt;}
.x36{left:215.066655pt;}
.x16{left:219.066655pt;}
.x1f{left:234.906667pt;}
.x8{left:241.986667pt;}
.x2c{left:255.906667pt;}
.xf{left:263.586667pt;}
.x10{left:284.546667pt;}
.x19{left:285.506655pt;}
.x1b{left:287.746667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.x31{left:321.986667pt;}
.xa{left:324.866667pt;}
.x34{left:355.266655pt;}
.x9{left:390.666667pt;}
.x22{left:392.386655pt;}
.x2d{left:393.506667pt;}
.x20{left:397.186667pt;}
.x35{left:420.893322pt;}
.x1c{left:483.133333pt;}
.x15{left:514.973322pt;}
.x2f{left:517.693333pt;}
.x37{left:520.093333pt;}
.x1a{left:554.973322pt;}
.x21{left:570.013333pt;}
.x32{left:589.893322pt;}
.x28{left:599.013322pt;}
.x26{left:604.933322pt;}
.x24{left:607.973322pt;}
.x2e{left:629.253333pt;}
.x1d{left:651.173333pt;}
.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; }
  