
    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_1bce79bd3a2eb96ed765bd13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.719000;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_a4a4e80ae5bac93df39661cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.832000;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_672febf77e57ced762f23157.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118000;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_d17c307f47ea98f5604ad6ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e7cfe89ebc1e5fa7c4aeba43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_d2f419f202d477dafaf3d858.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_25087f34244fdf38dc0f0a2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.167480;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_4456d33dfa77ce18e376bde6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.792000;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_787f84534e9ef036bed9da87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_b78440c3ea9912b3b40e3e36.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.832000;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_2e90d4324274f1a350f65e5f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719000;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_fd51f9fb54ec3a573d34377d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.118000;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_dfea48b0bdf799c3ee75c515.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.716000;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_3cfcedf6c98235b232532865.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.705000;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_d25dc63bf8343881a81c3ed7.woff2')format("woff");}.fff{font-family:fff;line-height:0.930000;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_2cfbeab8194cb116fceec9d8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_1349c516d3fbe623a899d25d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.514000;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_16ec3cfce6bb81b0651205f0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.849000;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_03c49401f8bb651b40370b0b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;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_7a7573733adfbab052a1a132.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.117000;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_881fc4feda65c4bb45eb52bb.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.118000;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_3bc18cd27f347ebf412c0b0e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.848000;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_eaaa297ce3209d850c5b3d89.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.721000;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);}
.v4{vertical-align:-9.072000px;}
.v1{vertical-align:-3.756000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.050000px;}
.v3{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.573847px;}
.lsd{letter-spacing:0.585109px;}
.lse{letter-spacing:0.597746px;}
.lsb{letter-spacing:0.608186px;}
.ls10{letter-spacing:1.560154px;}
.lsa{letter-spacing:2.008465px;}
.ls3{letter-spacing:3.553200px;}
.ls6{letter-spacing:3.559200px;}
.ls5{letter-spacing:3.578160px;}
.ls13{letter-spacing:11.781850px;}
.ls14{letter-spacing:12.732288px;}
.ls12{letter-spacing:15.601536px;}
.lsf{letter-spacing:16.928492px;}
.ls8{letter-spacing:16.976313px;}
.ls9{letter-spacing:18.452851px;}
.lsc{letter-spacing:18.984778px;}
.ls2{letter-spacing:19.905275px;}
.ls11{letter-spacing:19.959206px;}
.ls1{letter-spacing:52.304670px;}
.ls4{letter-spacing:212.083829px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(16,15,13),0 0.015em rgb(16,15,13),0.015em 0 rgb(16,15,13),0 -0.015em  rgb(16,15,13);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(4,3,7),0 0.015em rgb(4,3,7),0.015em 0 rgb(4,3,7),0 -0.015em  rgb(4,3,7);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(16,15,13);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(4,3,7);text-shadow:none;}
}
.ws4{word-spacing:-63.714785px;}
.wsa{word-spacing:-42.143397px;}
.ws2e{word-spacing:-39.452160px;}
.ws37{word-spacing:-32.876580px;}
.ws9{word-spacing:-32.727300px;}
.ws34{word-spacing:-29.589120px;}
.ws2a{word-spacing:-27.646998px;}
.ws36{word-spacing:-26.301330px;}
.ws3{word-spacing:-25.407085px;}
.ws8{word-spacing:-19.726080px;}
.ws3a{word-spacing:-19.055393px;}
.ws41{word-spacing:-16.603572px;}
.ws0{word-spacing:-14.082230px;}
.ws43{word-spacing:-13.996153px;}
.ws1f{word-spacing:-13.834500px;}
.wsb{word-spacing:-13.198541px;}
.ws1{word-spacing:-13.126810px;}
.ws30{word-spacing:-11.351462px;}
.ws33{word-spacing:-11.136269px;}
.ws35{word-spacing:-10.998710px;}
.ws19{word-spacing:-10.938935px;}
.ws5{word-spacing:-10.930918px;}
.ws17{word-spacing:-10.341179px;}
.ws32{word-spacing:-10.114099px;}
.wsf{word-spacing:-10.108719px;}
.ws10{word-spacing:-9.982525px;}
.ws13{word-spacing:-9.922750px;}
.wsd{word-spacing:-9.845107px;}
.ws44{word-spacing:-9.678332px;}
.ws31{word-spacing:-9.463139px;}
.ws40{word-spacing:-9.355542px;}
.ws42{word-spacing:-9.301743px;}
.ws3f{word-spacing:-9.291543px;}
.wsc{word-spacing:-9.247945px;}
.ws39{word-spacing:-9.229376px;}
.ws20{word-spacing:-9.195901px;}
.wse{word-spacing:-9.194147px;}
.ws27{word-spacing:-8.798990px;}
.ws22{word-spacing:-8.751170px;}
.ws2{word-spacing:-8.478592px;}
.ws2b{word-spacing:-8.430772px;}
.ws47{word-spacing:-8.287310px;}
.ws29{word-spacing:-8.163428px;}
.ws2c{word-spacing:-7.809104px;}
.ws21{word-spacing:-7.378719px;}
.ws6{word-spacing:-6.563405px;}
.ws46{word-spacing:-6.358971px;}
.ws14{word-spacing:-6.326665px;}
.ws15{word-spacing:-5.944101px;}
.ws11{word-spacing:-5.003251px;}
.ws3e{word-spacing:-4.796406px;}
.ws26{word-spacing:-4.700765px;}
.ws24{word-spacing:-4.652944px;}
.ws2d{word-spacing:-3.682186px;}
.ws25{word-spacing:-2.835762px;}
.ws28{word-spacing:-2.787941px;}
.ws12{word-spacing:-0.059776px;}
.ws2f{word-spacing:-0.053798px;}
.ws3c{word-spacing:-0.035866px;}
.ws7{word-spacing:0.000000px;}
.ws38{word-spacing:16.880672px;}
.ws3d{word-spacing:16.892698px;}
.ws48{word-spacing:16.928492px;}
.ws3b{word-spacing:16.928563px;}
.ws45{word-spacing:22.541530px;}
.ws23{word-spacing:23.513389px;}
.ws16{word-spacing:64.434872px;}
.ws49{word-spacing:75.737388px;}
.ws1e{word-spacing:106.161732px;}
.ws18{word-spacing:112.318352px;}
.ws1c{word-spacing:120.208732px;}
.ws1a{word-spacing:137.902618px;}
.ws1b{word-spacing:167.620618px;}
.ws1d{word-spacing:167.626618px;}
._29{margin-left:-5.769533px;}
._a{margin-left:-4.626662px;}
._4{margin-left:-3.374051px;}
._0{margin-left:-2.324084px;}
._3{margin-left:-1.023364px;}
._9{width:1.111834px;}
._2{width:2.410162px;}
._2b{width:3.559470px;}
._2a{width:4.715114px;}
._30{width:6.367339px;}
._19{width:13.341947px;}
._2d{width:14.851139px;}
._7{width:17.397205px;}
._2c{width:19.666297px;}
._e{width:22.408686px;}
._c{width:23.508610px;}
._b{width:24.532070px;}
._5{width:26.112546px;}
._10{width:28.828616px;}
._2e{width:35.076557px;}
._1{width:37.443582px;}
._31{width:75.748147px;}
._20{width:81.581944px;}
._2f{width:94.792781px;}
._16{width:118.298533px;}
._1a{width:124.075332px;}
._24{width:126.533308px;}
._23{width:142.342801px;}
._11{width:145.801643px;}
._27{width:153.695408px;}
._f{width:160.982855px;}
._18{width:194.773304px;}
._28{width:215.859860px;}
._26{width:230.399651px;}
._25{width:248.475838px;}
._12{width:253.495376px;}
._d{width:280.080741px;}
._1f{width:282.174958px;}
._22{width:287.535707px;}
._8{width:299.802741px;}
._14{width:314.312844px;}
._13{width:334.623809px;}
._1e{width:362.480148px;}
._6{width:369.691066px;}
._17{width:370.810426px;}
._1c{width:373.383245px;}
._21{width:401.920183px;}
._15{width:427.886769px;}
._1d{width:453.097718px;}
._1b{width:537.204661px;}
.fc8{color:rgb(250,249,252);}
.fc7{color:rgb(231,225,242);}
.fcc{color:rgb(120,99,181);}
.fc6{color:transparent;}
.fc5{color:rgb(16,15,13);}
.fc4{color:rgb(0,0,255);}
.fc9{color:rgb(204,204,204);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(67,53,148);}
.fc1{color:rgb(4,3,7);}
.fca{color:rgb(4,6,76);}
.fc0{color:rgb(18,13,10);}
.fs9{font-size:18.835060px;}
.fs1{font-size:19.194834px;}
.fs5{font-size:24.064229px;}
.fsb{font-size:35.865600px;}
.fsa{font-size:46.987822px;}
.fse{font-size:47.337600px;}
.fs4{font-size:47.820600px;}
.fsf{font-size:49.829400px;}
.fsc{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fsd{font-size:59.775600px;}
.fs6{font-size:60.214760px;}
.fs8{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:79.663266px;}
.fs2{font-size:86.077200px;}
.fs7{font-size:150.270719px;}
.y0{bottom:0.000000px;}
.y10{bottom:0.708000px;}
.y3{bottom:0.846191px;}
.y11{bottom:0.951662px;}
.ya{bottom:2.247261px;}
.y13{bottom:4.110000px;}
.yc{bottom:4.583126px;}
.y12{bottom:4.873290px;}
.y2{bottom:5.063614px;}
.ye{bottom:10.584457px;}
.y7b{bottom:20.452500px;}
.y6a{bottom:21.078000px;}
.yac{bottom:21.748500px;}
.y50{bottom:21.861000px;}
.yce{bottom:23.359500px;}
.yc4{bottom:23.614500px;}
.y9a{bottom:26.595000px;}
.ybd{bottom:28.665000px;}
.yc5{bottom:29.037000px;}
.y1{bottom:29.682000px;}
.yee{bottom:30.045000px;}
.ydd{bottom:31.881000px;}
.yc9{bottom:33.897000px;}
.y78{bottom:34.129500px;}
.y7a{bottom:34.648500px;}
.yb6{bottom:35.782500px;}
.yab{bottom:35.946000px;}
.yf{bottom:37.338000px;}
.y69{bottom:37.404000px;}
.y99{bottom:40.792500px;}
.yf1{bottom:42.351000px;}
.y35{bottom:42.583500px;}
.yc6{bottom:43.516500px;}
.y107{bottom:43.920000px;}
.yed{bottom:44.241000px;}
.y94{bottom:46.281000px;}
.yca{bottom:46.497000px;}
.yaa{bottom:47.592000px;}
.ydc{bottom:48.319500px;}
.y79{bottom:48.846000px;}
.ycc{bottom:49.531500px;}
.ycb{bottom:49.869000px;}
.yb5{bottom:49.980000px;}
.yc8{bottom:50.517000px;}
.y77{bottom:50.568000px;}
.yc7{bottom:51.246000px;}
.y68{bottom:51.600000px;}
.ycd{bottom:51.790500px;}
.y4f{bottom:53.773500px;}
.y106{bottom:54.381000px;}
.y98{bottom:54.988500px;}
.y41{bottom:57.472500px;}
.yf0{bottom:58.789500px;}
.y34{bottom:59.022000px;}
.yec{bottom:61.414500px;}
.y86{bottom:61.704000px;}
.ya9{bottom:61.788000px;}
.y93{bottom:62.604000px;}
.yb4{bottom:64.176000px;}
.y105{bottom:64.842000px;}
.ydb{bottom:66.471000px;}
.y67{bottom:67.927500px;}
.y4e{bottom:67.971000px;}
.y28{bottom:70.552500px;}
.y52{bottom:72.957000px;}
.yef{bottom:75.228000px;}
.yeb{bottom:75.612000px;}
.ya8{bottom:75.985500px;}
.yb{bottom:76.451436px;}
.y92{bottom:76.800000px;}
.y85{bottom:78.142500px;}
.y40{bottom:81.051000px;}
.y33{bottom:82.701000px;}
.yda{bottom:82.909500px;}
.y104{bottom:83.799000px;}
.y4d{bottom:84.718500px;}
.y66{bottom:84.850500px;}
.yd{bottom:85.648363px;}
.y9{bottom:85.896928px;}
.y27{bottom:86.989500px;}
.y76{bottom:87.853500px;}
.y51{bottom:89.395500px;}
.yea{bottom:89.808000px;}
.y97{bottom:89.922000px;}
.ya7{bottom:90.181500px;}
.y37{bottom:91.537500px;}
.y91{bottom:93.123000px;}
.y103{bottom:94.260000px;}
.y59{bottom:95.967000px;}
.y4c{bottom:98.916000px;}
.y32{bottom:99.139500px;}
.y84{bottom:99.696000px;}
.yd9{bottom:101.061000px;}
.ya6{bottom:101.827500px;}
.y75{bottom:102.049500px;}
.y102{bottom:104.721000px;}
.y115{bottom:105.507000px;}
.y65{bottom:105.708000px;}
.y96{bottom:106.360500px;}
.y1d{bottom:106.696500px;}
.ye9{bottom:106.981500px;}
.y90{bottom:107.320500px;}
.y36{bottom:107.976000px;}
.y26{bottom:109.530000px;}
.y31{bottom:115.578000px;}
.y4b{bottom:115.663500px;}
.y114{bottom:115.968000px;}
.ya5{bottom:116.023500px;}
.y83{bottom:116.133000px;}
.y18{bottom:116.329500px;}
.yd8{bottom:117.499500px;}
.y3f{bottom:118.195500px;}
.y74{bottom:118.798500px;}
.ye8{bottom:121.177500px;}
.y101{bottom:121.933500px;}
.y95{bottom:122.799000px;}
.y113{bottom:126.429000px;}
.y8f{bottom:128.080500px;}
.ya4{bottom:130.221000px;}
.y58{bottom:131.824500px;}
.y100{bottom:132.394500px;}
.y82{bottom:132.571500px;}
.ye7{bottom:135.375000px;}
.y73{bottom:135.546000px;}
.y3e{bottom:136.128000px;}
.y4a{bottom:137.166000px;}
.y30{bottom:138.711000px;}
.yd7{bottom:140.632500px;}
.y64{bottom:141.921000px;}
.yff{bottom:142.855500px;}
.y112{bottom:143.641500px;}
.ya3{bottom:144.417000px;}
.y25{bottom:150.037500px;}
.y72{bottom:152.293500px;}
.yfe{bottom:153.316500px;}
.y111{bottom:154.102500px;}
.y81{bottom:154.125000px;}
.y57{bottom:154.240500px;}
.y8e{bottom:154.645500px;}
.y8{bottom:154.956000px;}
.y63{bottom:156.117000px;}
.ye6{bottom:156.960000px;}
.y1c{bottom:159.166500px;}
.y3d{bottom:162.795000px;}
.y110{bottom:164.563500px;}
.ya2{bottom:165.921000px;}
.y24{bottom:166.476000px;}
.yfd{bottom:170.530500px;}
.y80{bottom:170.563500px;}
.y8d{bottom:170.967000px;}
.y62{bottom:172.443000px;}
.y17{bottom:172.653000px;}
.yd6{bottom:173.293500px;}
.y7{bottom:173.404500px;}
.yb3{bottom:173.665500px;}
.y71{bottom:174.298500px;}
.y10f{bottom:175.024500px;}
.y49{bottom:176.635500px;}
.y56{bottom:176.656500px;}
.y2f{bottom:178.470000px;}
.y3c{bottom:180.729000px;}
.yfc{bottom:180.990000px;}
.y61{bottom:186.640500px;}
.y7f{bottom:187.002000px;}
.ye5{bottom:187.975500px;}
.yd5{bottom:189.732000px;}
.yb2{bottom:190.104000px;}
.y23{bottom:190.155000px;}
.y48{bottom:190.831500px;}
.yc3{bottom:191.049000px;}
.yfb{bottom:191.451000px;}
.y6{bottom:191.835000px;}
.y8c{bottom:192.553500px;}
.y10e{bottom:193.981500px;}
.y2e{bottom:194.908500px;}
.ya1{bottom:197.550000px;}
.y55{bottom:199.072500px;}
.yfa{bottom:201.912000px;}
.ye4{bottom:202.173000px;}
.y60{bottom:202.966500px;}
.y3b{bottom:204.306000px;}
.y10d{bottom:204.442500px;}
.yd4{bottom:206.170500px;}
.yb1{bottom:206.542500px;}
.y22{bottom:206.593500px;}
.yc2{bottom:207.486000px;}
.y47{bottom:207.580500px;}
.y7e{bottom:208.555500px;}
.y1b{bottom:211.636500px;}
.ya0{bottom:211.746000px;}
.y70{bottom:213.768000px;}
.y10c{bottom:214.902000px;}
.ybc{bottom:215.547000px;}
.ye3{bottom:216.369000px;}
.y5f{bottom:217.162500px;}
.y2d{bottom:218.587500px;}
.yf9{bottom:219.126000px;}
.y8b{bottom:221.443500px;}
.y46{bottom:221.776500px;}
.y54{bottom:222.087000px;}
.yb0{bottom:222.979500px;}
.y9f{bottom:223.392000px;}
.yd3{bottom:224.322000px;}
.y7d{bottom:224.994000px;}
.y6f{bottom:227.965500px;}
.y16{bottom:228.976500px;}
.yf8{bottom:229.587000px;}
.y21{bottom:230.272500px;}
.ybb{bottom:231.985500px;}
.y5e{bottom:233.488500px;}
.ye2{bottom:233.542500px;}
.y10b{bottom:233.859000px;}
.y2c{bottom:235.026000px;}
.y45{bottom:235.974000px;}
.yc1{bottom:236.280000px;}
.y9e{bottom:237.589500px;}
.y8a{bottom:237.766500px;}
.yaf{bottom:239.418000px;}
.yf7{bottom:240.046500px;}
.yd2{bottom:240.760500px;}
.y10a{bottom:244.320000px;}
.y3a{bottom:244.357500px;}
.y6e{bottom:244.713000px;}
.y20{bottom:246.711000px;}
.y7c{bottom:246.880500px;}
.ye1{bottom:247.740000px;}
.y9d{bottom:249.234000px;}
.y5d{bottom:249.816000px;}
.y2b{bottom:251.464500px;}
.yc0{bottom:252.718500px;}
.y44{bottom:252.721500px;}
.yba{bottom:253.963500px;}
.y89{bottom:254.088000px;}
.y109{bottom:254.781000px;}
.y53{bottom:255.711000px;}
.yd1{bottom:257.197500px;}
.yf6{bottom:259.003500px;}
.yae{bottom:261.397500px;}
.y6d{bottom:261.460500px;}
.y1f{bottom:263.149500px;}
.y9c{bottom:263.431500px;}
.y5c{bottom:264.012000px;}
.y1a{bottom:264.106500px;}
.ye0{bottom:264.912000px;}
.y108{bottom:265.242000px;}
.y43{bottom:266.917500px;}
.y2a{bottom:267.903000px;}
.y88{bottom:268.285500px;}
.yf5{bottom:269.464500px;}
.y39{bottom:271.024500px;}
.ybf{bottom:274.696500px;}
.yd0{bottom:275.350500px;}
.yb9{bottom:275.943000px;}
.y9b{bottom:277.627500px;}
.yad{bottom:277.836000px;}
.y6c{bottom:278.209500px;}
.ydf{bottom:279.109500px;}
.yf4{bottom:279.925500px;}
.y5b{bottom:280.936500px;}
.y5{bottom:283.147500px;}
.y15{bottom:285.298500px;}
.y1e{bottom:285.690000px;}
.y42{bottom:287.175000px;}
.y87{bottom:289.207500px;}
.y29{bottom:289.789500px;}
.ybe{bottom:291.135000px;}
.ycf{bottom:291.787500px;}
.yb8{bottom:292.380000px;}
.y38{bottom:294.603000px;}
.yf3{bottom:298.882500px;}
.y6b{bottom:299.130000px;}
.yde{bottom:300.031500px;}
.yf2{bottom:309.343500px;}
.y4{bottom:310.047000px;}
.y5a{bottom:310.609500px;}
.yb7{bottom:313.675500px;}
.y19{bottom:348.772500px;}
.y14{bottom:374.458500px;}
.h8{height:7.208402px;}
.h10{height:12.544150px;}
.h4{height:12.783760px;}
.hf{height:13.395407px;}
.h9{height:17.181859px;}
.ha{height:20.879510px;}
.h2{height:21.258650px;}
.h12{height:26.899200px;}
.h1d{height:31.095475px;}
.h11{height:33.408342px;}
.h1a{height:35.865450px;}
.h1c{height:40.348800px;}
.h7{height:41.460460px;}
.h16{height:42.799330px;}
.h14{height:43.103494px;}
.h13{height:43.109494px;}
.h1b{height:44.831700px;}
.h15{height:46.697011px;}
.he{height:46.865494px;}
.h18{height:48.157718px;}
.h19{height:48.163718px;}
.hc{height:49.215987px;}
.h17{height:53.747011px;}
.h6{height:53.798400px;}
.hb{height:56.010311px;}
.h3{height:56.640582px;}
.h5{height:74.628932px;}
.hd{height:117.211161px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w6{width:54.418813px;}
.w2{width:57.011841px;}
.w5{width:67.609840px;}
.w3{width:77.801030px;}
.w4{width:142.179517px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xb{left:8.448000px;}
.xf{left:16.713000px;}
.x26{left:18.169500px;}
.x11{left:19.779000px;}
.x2{left:21.843174px;}
.xc{left:23.317676px;}
.x25{left:29.673000px;}
.x30{left:31.236000px;}
.x17{left:33.082500px;}
.x3{left:45.042000px;}
.x33{left:46.459500px;}
.x12{left:49.090500px;}
.x38{left:50.364000px;}
.x27{left:52.662000px;}
.x2f{left:57.121500px;}
.x1f{left:61.690500px;}
.x5{left:63.820500px;}
.x16{left:66.684000px;}
.x4{left:71.523000px;}
.x31{left:82.179000px;}
.x32{left:84.297000px;}
.x20{left:109.917000px;}
.xd{left:112.827000px;}
.x19{left:127.963500px;}
.x2e{left:133.905000px;}
.x18{left:153.270000px;}
.x2d{left:166.837500px;}
.x1c{left:204.664500px;}
.x34{left:226.098000px;}
.x1b{left:246.094500px;}
.x7{left:253.284000px;}
.x6{left:275.761500px;}
.x13{left:280.644000px;}
.x37{left:285.343500px;}
.x10{left:287.692500px;}
.xe{left:298.663500px;}
.x8{left:324.715778px;}
.x28{left:327.202500px;}
.x29{left:359.931000px;}
.x23{left:365.593500px;}
.x21{left:372.538500px;}
.x24{left:383.223000px;}
.x2c{left:385.726500px;}
.x35{left:391.783500px;}
.x2b{left:393.906000px;}
.x2a{left:395.521500px;}
.x22{left:405.265500px;}
.x1a{left:407.910000px;}
.x36{left:421.602000px;}
.x14{left:426.367500px;}
.x9{left:440.298777px;}
.x15{left:444.126000px;}
.x1d{left:450.124500px;}
.x1e{left:480.087000px;}
.xa{left:513.377060px;}
.x1{left:619.050000px;}
@media print{
.v4{vertical-align:-8.064000pt;}
.v1{vertical-align:-3.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.266667pt;}
.v3{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.510086pt;}
.lsd{letter-spacing:0.520097pt;}
.lse{letter-spacing:0.531330pt;}
.lsb{letter-spacing:0.540609pt;}
.ls10{letter-spacing:1.386803pt;}
.lsa{letter-spacing:1.785302pt;}
.ls3{letter-spacing:3.158400pt;}
.ls6{letter-spacing:3.163733pt;}
.ls5{letter-spacing:3.180587pt;}
.ls13{letter-spacing:10.472755pt;}
.ls14{letter-spacing:11.317589pt;}
.ls12{letter-spacing:13.868032pt;}
.lsf{letter-spacing:15.047549pt;}
.ls8{letter-spacing:15.090056pt;}
.ls9{letter-spacing:16.402534pt;}
.lsc{letter-spacing:16.875358pt;}
.ls2{letter-spacing:17.693578pt;}
.ls11{letter-spacing:17.741517pt;}
.ls1{letter-spacing:46.493040pt;}
.ls4{letter-spacing:188.518959pt;}
.ws4{word-spacing:-56.635364pt;}
.wsa{word-spacing:-37.460797pt;}
.ws2e{word-spacing:-35.068587pt;}
.ws37{word-spacing:-29.223627pt;}
.ws9{word-spacing:-29.090933pt;}
.ws34{word-spacing:-26.301440pt;}
.ws2a{word-spacing:-24.575109pt;}
.ws36{word-spacing:-23.378960pt;}
.ws3{word-spacing:-22.584075pt;}
.ws8{word-spacing:-17.534293pt;}
.ws3a{word-spacing:-16.938127pt;}
.ws41{word-spacing:-14.758730pt;}
.ws0{word-spacing:-12.517538pt;}
.ws43{word-spacing:-12.441025pt;}
.ws1f{word-spacing:-12.297333pt;}
.wsb{word-spacing:-11.732036pt;}
.ws1{word-spacing:-11.668275pt;}
.ws30{word-spacing:-10.090189pt;}
.ws33{word-spacing:-9.898906pt;}
.ws35{word-spacing:-9.776631pt;}
.ws19{word-spacing:-9.723498pt;}
.ws5{word-spacing:-9.716372pt;}
.ws17{word-spacing:-9.192159pt;}
.ws32{word-spacing:-8.990310pt;}
.wsf{word-spacing:-8.985528pt;}
.ws10{word-spacing:-8.873356pt;}
.ws13{word-spacing:-8.820222pt;}
.wsd{word-spacing:-8.751206pt;}
.ws44{word-spacing:-8.602962pt;}
.ws31{word-spacing:-8.411679pt;}
.ws40{word-spacing:-8.316037pt;}
.ws42{word-spacing:-8.268216pt;}
.ws3f{word-spacing:-8.259149pt;}
.wsc{word-spacing:-8.220396pt;}
.ws39{word-spacing:-8.203890pt;}
.ws20{word-spacing:-8.174135pt;}
.wse{word-spacing:-8.172575pt;}
.ws27{word-spacing:-7.821325pt;}
.ws22{word-spacing:-7.778818pt;}
.ws2{word-spacing:-7.536527pt;}
.ws2b{word-spacing:-7.494019pt;}
.ws47{word-spacing:-7.366498pt;}
.ws29{word-spacing:-7.256381pt;}
.ws2c{word-spacing:-6.941426pt;}
.ws21{word-spacing:-6.558861pt;}
.ws6{word-spacing:-5.834138pt;}
.ws46{word-spacing:-5.652419pt;}
.ws14{word-spacing:-5.623703pt;}
.ws15{word-spacing:-5.283645pt;}
.ws11{word-spacing:-4.447334pt;}
.ws3e{word-spacing:-4.263472pt;}
.ws26{word-spacing:-4.178458pt;}
.ws24{word-spacing:-4.135951pt;}
.ws2d{word-spacing:-3.273054pt;}
.ws25{word-spacing:-2.520677pt;}
.ws28{word-spacing:-2.478170pt;}
.ws12{word-spacing:-0.053134pt;}
.ws2f{word-spacing:-0.047821pt;}
.ws3c{word-spacing:-0.031881pt;}
.ws7{word-spacing:0.000000pt;}
.ws38{word-spacing:15.005042pt;}
.ws3d{word-spacing:15.015731pt;}
.ws48{word-spacing:15.047549pt;}
.ws3b{word-spacing:15.047612pt;}
.ws45{word-spacing:20.036915pt;}
.ws23{word-spacing:20.900790pt;}
.ws16{word-spacing:57.275442pt;}
.ws49{word-spacing:67.322122pt;}
.ws1e{word-spacing:94.365984pt;}
.ws18{word-spacing:99.838535pt;}
.ws1c{word-spacing:106.852206pt;}
.ws1a{word-spacing:122.580105pt;}
.ws1b{word-spacing:148.996105pt;}
.ws1d{word-spacing:149.001438pt;}
._29{margin-left:-5.128474pt;}
._a{margin-left:-4.112589pt;}
._4{margin-left:-2.999156pt;}
._0{margin-left:-2.065853pt;}
._3{margin-left:-0.909657pt;}
._9{width:0.988297pt;}
._2{width:2.142366pt;}
._2b{width:3.163973pt;}
._2a{width:4.191213pt;}
._30{width:5.659857pt;}
._19{width:11.859509pt;}
._2d{width:13.201012pt;}
._7{width:15.464182pt;}
._2c{width:17.481153pt;}
._e{width:19.918832pt;}
._c{width:20.896542pt;}
._b{width:21.806285pt;}
._5{width:23.211152pt;}
._10{width:25.625437pt;}
._2e{width:31.179162pt;}
._1{width:33.283184pt;}
._31{width:67.331686pt;}
._20{width:72.517283pt;}
._2f{width:84.260250pt;}
._16{width:105.154251pt;}
._1a{width:110.289184pt;}
._24{width:112.474051pt;}
._23{width:126.526934pt;}
._11{width:129.601460pt;}
._27{width:136.618141pt;}
._f{width:143.095871pt;}
._18{width:173.131826pt;}
._28{width:191.875431pt;}
._26{width:204.799690pt;}
._25{width:220.867411pt;}
._12{width:225.329223pt;}
._d{width:248.960659pt;}
._1f{width:250.822185pt;}
._22{width:255.587295pt;}
._8{width:266.491326pt;}
._14{width:279.389195pt;}
._13{width:297.443386pt;}
._1e{width:322.204576pt;}
._6{width:328.614281pt;}
._17{width:329.609267pt;}
._1c{width:331.896218pt;}
._21{width:357.262385pt;}
._15{width:380.343795pt;}
._1d{width:402.753527pt;}
._1b{width:477.515254pt;}
.fs9{font-size:16.742276pt;}
.fs1{font-size:17.062075pt;}
.fs5{font-size:21.390426pt;}
.fsb{font-size:31.880533pt;}
.fsa{font-size:41.766953pt;}
.fse{font-size:42.077867pt;}
.fs4{font-size:42.507200pt;}
.fsf{font-size:44.292800pt;}
.fsc{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fsd{font-size:53.133867pt;}
.fs6{font-size:53.524231pt;}
.fs8{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:70.811792pt;}
.fs2{font-size:76.513067pt;}
.fs7{font-size:133.573973pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:0.629333pt;}
.y3{bottom:0.752170pt;}
.y11{bottom:0.845922pt;}
.ya{bottom:1.997565pt;}
.y13{bottom:3.653333pt;}
.yc{bottom:4.073889pt;}
.y12{bottom:4.331813pt;}
.y2{bottom:4.500990pt;}
.ye{bottom:9.408406pt;}
.y7b{bottom:18.180000pt;}
.y6a{bottom:18.736000pt;}
.yac{bottom:19.332000pt;}
.y50{bottom:19.432000pt;}
.yce{bottom:20.764000pt;}
.yc4{bottom:20.990667pt;}
.y9a{bottom:23.640000pt;}
.ybd{bottom:25.480000pt;}
.yc5{bottom:25.810667pt;}
.y1{bottom:26.384000pt;}
.yee{bottom:26.706667pt;}
.ydd{bottom:28.338667pt;}
.yc9{bottom:30.130667pt;}
.y78{bottom:30.337333pt;}
.y7a{bottom:30.798667pt;}
.yb6{bottom:31.806667pt;}
.yab{bottom:31.952000pt;}
.yf{bottom:33.189333pt;}
.y69{bottom:33.248000pt;}
.y99{bottom:36.260000pt;}
.yf1{bottom:37.645333pt;}
.y35{bottom:37.852000pt;}
.yc6{bottom:38.681333pt;}
.y107{bottom:39.040000pt;}
.yed{bottom:39.325333pt;}
.y94{bottom:41.138667pt;}
.yca{bottom:41.330667pt;}
.yaa{bottom:42.304000pt;}
.ydc{bottom:42.950667pt;}
.y79{bottom:43.418667pt;}
.ycc{bottom:44.028000pt;}
.ycb{bottom:44.328000pt;}
.yb5{bottom:44.426667pt;}
.yc8{bottom:44.904000pt;}
.y77{bottom:44.949333pt;}
.yc7{bottom:45.552000pt;}
.y68{bottom:45.866667pt;}
.ycd{bottom:46.036000pt;}
.y4f{bottom:47.798667pt;}
.y106{bottom:48.338667pt;}
.y98{bottom:48.878667pt;}
.y41{bottom:51.086667pt;}
.yf0{bottom:52.257333pt;}
.y34{bottom:52.464000pt;}
.yec{bottom:54.590667pt;}
.y86{bottom:54.848000pt;}
.ya9{bottom:54.922667pt;}
.y93{bottom:55.648000pt;}
.yb4{bottom:57.045333pt;}
.y105{bottom:57.637333pt;}
.ydb{bottom:59.085333pt;}
.y67{bottom:60.380000pt;}
.y4e{bottom:60.418667pt;}
.y28{bottom:62.713333pt;}
.y52{bottom:64.850667pt;}
.yef{bottom:66.869333pt;}
.yeb{bottom:67.210667pt;}
.ya8{bottom:67.542667pt;}
.yb{bottom:67.956832pt;}
.y92{bottom:68.266667pt;}
.y85{bottom:69.460000pt;}
.y40{bottom:72.045333pt;}
.y33{bottom:73.512000pt;}
.yda{bottom:73.697333pt;}
.y104{bottom:74.488000pt;}
.y4d{bottom:75.305333pt;}
.y66{bottom:75.422667pt;}
.yd{bottom:76.131878pt;}
.y9{bottom:76.352825pt;}
.y27{bottom:77.324000pt;}
.y76{bottom:78.092000pt;}
.y51{bottom:79.462667pt;}
.yea{bottom:79.829333pt;}
.y97{bottom:79.930667pt;}
.ya7{bottom:80.161333pt;}
.y37{bottom:81.366667pt;}
.y91{bottom:82.776000pt;}
.y103{bottom:83.786667pt;}
.y59{bottom:85.304000pt;}
.y4c{bottom:87.925333pt;}
.y32{bottom:88.124000pt;}
.y84{bottom:88.618667pt;}
.yd9{bottom:89.832000pt;}
.ya6{bottom:90.513333pt;}
.y75{bottom:90.710667pt;}
.y102{bottom:93.085333pt;}
.y115{bottom:93.784000pt;}
.y65{bottom:93.962667pt;}
.y96{bottom:94.542667pt;}
.y1d{bottom:94.841333pt;}
.ye9{bottom:95.094667pt;}
.y90{bottom:95.396000pt;}
.y36{bottom:95.978667pt;}
.y26{bottom:97.360000pt;}
.y31{bottom:102.736000pt;}
.y4b{bottom:102.812000pt;}
.y114{bottom:103.082667pt;}
.ya5{bottom:103.132000pt;}
.y83{bottom:103.229333pt;}
.y18{bottom:103.404000pt;}
.yd8{bottom:104.444000pt;}
.y3f{bottom:105.062667pt;}
.y74{bottom:105.598667pt;}
.ye8{bottom:107.713333pt;}
.y101{bottom:108.385333pt;}
.y95{bottom:109.154667pt;}
.y113{bottom:112.381333pt;}
.y8f{bottom:113.849333pt;}
.ya4{bottom:115.752000pt;}
.y58{bottom:117.177333pt;}
.y100{bottom:117.684000pt;}
.y82{bottom:117.841333pt;}
.ye7{bottom:120.333333pt;}
.y73{bottom:120.485333pt;}
.y3e{bottom:121.002667pt;}
.y4a{bottom:121.925333pt;}
.y30{bottom:123.298667pt;}
.yd7{bottom:125.006667pt;}
.y64{bottom:126.152000pt;}
.yff{bottom:126.982667pt;}
.y112{bottom:127.681333pt;}
.ya3{bottom:128.370667pt;}
.y25{bottom:133.366667pt;}
.y72{bottom:135.372000pt;}
.yfe{bottom:136.281333pt;}
.y111{bottom:136.980000pt;}
.y81{bottom:137.000000pt;}
.y57{bottom:137.102667pt;}
.y8e{bottom:137.462667pt;}
.y8{bottom:137.738667pt;}
.y63{bottom:138.770667pt;}
.ye6{bottom:139.520000pt;}
.y1c{bottom:141.481333pt;}
.y3d{bottom:144.706667pt;}
.y110{bottom:146.278667pt;}
.ya2{bottom:147.485333pt;}
.y24{bottom:147.978667pt;}
.yfd{bottom:151.582667pt;}
.y80{bottom:151.612000pt;}
.y8d{bottom:151.970667pt;}
.y62{bottom:153.282667pt;}
.y17{bottom:153.469333pt;}
.yd6{bottom:154.038667pt;}
.y7{bottom:154.137333pt;}
.yb3{bottom:154.369333pt;}
.y71{bottom:154.932000pt;}
.y10f{bottom:155.577333pt;}
.y49{bottom:157.009333pt;}
.y56{bottom:157.028000pt;}
.y2f{bottom:158.640000pt;}
.y3c{bottom:160.648000pt;}
.yfc{bottom:160.880000pt;}
.y61{bottom:165.902667pt;}
.y7f{bottom:166.224000pt;}
.ye5{bottom:167.089333pt;}
.yd5{bottom:168.650667pt;}
.yb2{bottom:168.981333pt;}
.y23{bottom:169.026667pt;}
.y48{bottom:169.628000pt;}
.yc3{bottom:169.821333pt;}
.yfb{bottom:170.178667pt;}
.y6{bottom:170.520000pt;}
.y8c{bottom:171.158667pt;}
.y10e{bottom:172.428000pt;}
.y2e{bottom:173.252000pt;}
.ya1{bottom:175.600000pt;}
.y55{bottom:176.953333pt;}
.yfa{bottom:179.477333pt;}
.ye4{bottom:179.709333pt;}
.y60{bottom:180.414667pt;}
.y3b{bottom:181.605333pt;}
.y10d{bottom:181.726667pt;}
.yd4{bottom:183.262667pt;}
.yb1{bottom:183.593333pt;}
.y22{bottom:183.638667pt;}
.yc2{bottom:184.432000pt;}
.y47{bottom:184.516000pt;}
.y7e{bottom:185.382667pt;}
.y1b{bottom:188.121333pt;}
.ya0{bottom:188.218667pt;}
.y70{bottom:190.016000pt;}
.y10c{bottom:191.024000pt;}
.ybc{bottom:191.597333pt;}
.ye3{bottom:192.328000pt;}
.y5f{bottom:193.033333pt;}
.y2d{bottom:194.300000pt;}
.yf9{bottom:194.778667pt;}
.y8b{bottom:196.838667pt;}
.y46{bottom:197.134667pt;}
.y54{bottom:197.410667pt;}
.yb0{bottom:198.204000pt;}
.y9f{bottom:198.570667pt;}
.yd3{bottom:199.397333pt;}
.y7d{bottom:199.994667pt;}
.y6f{bottom:202.636000pt;}
.y16{bottom:203.534667pt;}
.yf8{bottom:204.077333pt;}
.y21{bottom:204.686667pt;}
.ybb{bottom:206.209333pt;}
.y5e{bottom:207.545333pt;}
.ye2{bottom:207.593333pt;}
.y10b{bottom:207.874667pt;}
.y2c{bottom:208.912000pt;}
.y45{bottom:209.754667pt;}
.yc1{bottom:210.026667pt;}
.y9e{bottom:211.190667pt;}
.y8a{bottom:211.348000pt;}
.yaf{bottom:212.816000pt;}
.yf7{bottom:213.374667pt;}
.yd2{bottom:214.009333pt;}
.y10a{bottom:217.173333pt;}
.y3a{bottom:217.206667pt;}
.y6e{bottom:217.522667pt;}
.y20{bottom:219.298667pt;}
.y7c{bottom:219.449333pt;}
.ye1{bottom:220.213333pt;}
.y9d{bottom:221.541333pt;}
.y5d{bottom:222.058667pt;}
.y2b{bottom:223.524000pt;}
.yc0{bottom:224.638667pt;}
.y44{bottom:224.641333pt;}
.yba{bottom:225.745333pt;}
.y89{bottom:225.856000pt;}
.y109{bottom:226.472000pt;}
.y53{bottom:227.298667pt;}
.yd1{bottom:228.620000pt;}
.yf6{bottom:230.225333pt;}
.yae{bottom:232.353333pt;}
.y6d{bottom:232.409333pt;}
.y1f{bottom:233.910667pt;}
.y9c{bottom:234.161333pt;}
.y5c{bottom:234.677333pt;}
.y1a{bottom:234.761333pt;}
.ye0{bottom:235.477333pt;}
.y108{bottom:235.770667pt;}
.y43{bottom:237.260000pt;}
.y2a{bottom:238.136000pt;}
.y88{bottom:238.476000pt;}
.yf5{bottom:239.524000pt;}
.y39{bottom:240.910667pt;}
.ybf{bottom:244.174667pt;}
.yd0{bottom:244.756000pt;}
.yb9{bottom:245.282667pt;}
.y9b{bottom:246.780000pt;}
.yad{bottom:246.965333pt;}
.y6c{bottom:247.297333pt;}
.ydf{bottom:248.097333pt;}
.yf4{bottom:248.822667pt;}
.y5b{bottom:249.721333pt;}
.y5{bottom:251.686667pt;}
.y15{bottom:253.598667pt;}
.y1e{bottom:253.946667pt;}
.y42{bottom:255.266667pt;}
.y87{bottom:257.073333pt;}
.y29{bottom:257.590667pt;}
.ybe{bottom:258.786667pt;}
.ycf{bottom:259.366667pt;}
.yb8{bottom:259.893333pt;}
.y38{bottom:261.869333pt;}
.yf3{bottom:265.673333pt;}
.y6b{bottom:265.893333pt;}
.yde{bottom:266.694667pt;}
.yf2{bottom:274.972000pt;}
.y4{bottom:275.597333pt;}
.y5a{bottom:276.097333pt;}
.yb7{bottom:278.822667pt;}
.y19{bottom:310.020000pt;}
.y14{bottom:332.852000pt;}
.h8{height:6.407469pt;}
.h10{height:11.150356pt;}
.h4{height:11.363342pt;}
.hf{height:11.907029pt;}
.h9{height:15.272764pt;}
.ha{height:18.559564pt;}
.h2{height:18.896578pt;}
.h12{height:23.910400pt;}
.h1d{height:27.640422pt;}
.h11{height:29.696304pt;}
.h1a{height:31.880400pt;}
.h1c{height:35.865600pt;}
.h7{height:36.853742pt;}
.h16{height:38.043849pt;}
.h14{height:38.314217pt;}
.h13{height:38.319550pt;}
.h1b{height:39.850400pt;}
.h15{height:41.508454pt;}
.he{height:41.658217pt;}
.h18{height:42.806861pt;}
.h19{height:42.812194pt;}
.hc{height:43.747544pt;}
.h17{height:47.775121pt;}
.h6{height:47.820800pt;}
.hb{height:49.786943pt;}
.h3{height:50.347184pt;}
.h5{height:66.336829pt;}
.hd{height:104.187699pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w6{width:48.372279pt;}
.w2{width:50.677192pt;}
.w5{width:60.097636pt;}
.w3{width:69.156471pt;}
.w4{width:126.381793pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xb{left:7.509333pt;}
.xf{left:14.856000pt;}
.x26{left:16.150667pt;}
.x11{left:17.581333pt;}
.x2{left:19.416155pt;}
.xc{left:20.726823pt;}
.x25{left:26.376000pt;}
.x30{left:27.765333pt;}
.x17{left:29.406667pt;}
.x3{left:40.037333pt;}
.x33{left:41.297333pt;}
.x12{left:43.636000pt;}
.x38{left:44.768000pt;}
.x27{left:46.810667pt;}
.x2f{left:50.774667pt;}
.x1f{left:54.836000pt;}
.x5{left:56.729333pt;}
.x16{left:59.274667pt;}
.x4{left:63.576000pt;}
.x31{left:73.048000pt;}
.x32{left:74.930667pt;}
.x20{left:97.704000pt;}
.xd{left:100.290667pt;}
.x19{left:113.745333pt;}
.x2e{left:119.026667pt;}
.x18{left:136.240000pt;}
.x2d{left:148.300000pt;}
.x1c{left:181.924000pt;}
.x34{left:200.976000pt;}
.x1b{left:218.750667pt;}
.x7{left:225.141333pt;}
.x6{left:245.121333pt;}
.x13{left:249.461333pt;}
.x37{left:253.638667pt;}
.x10{left:255.726667pt;}
.xe{left:265.478667pt;}
.x8{left:288.636247pt;}
.x28{left:290.846667pt;}
.x29{left:319.938667pt;}
.x23{left:324.972000pt;}
.x21{left:331.145333pt;}
.x24{left:340.642667pt;}
.x2c{left:342.868000pt;}
.x35{left:348.252000pt;}
.x2b{left:350.138667pt;}
.x2a{left:351.574667pt;}
.x22{left:360.236000pt;}
.x1a{left:362.586667pt;}
.x36{left:374.757333pt;}
.x14{left:378.993333pt;}
.x9{left:391.376691pt;}
.x15{left:394.778667pt;}
.x1d{left:400.110667pt;}
.x1e{left:426.744000pt;}
.xa{left:456.335165pt;}
.x1{left:550.266667pt;}
}




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