
    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_66852259ad71e0941908d355.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_35f228163664e1977bb06207.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_a1c1571e53d3eb732b2c5e57.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_aeadf9aa835bd3adb7c0f3ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_c20811e3eaf72d49fc2fbc58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675293;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_d7278fca49532c14464c0d35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_d63d93d74819e94ee0938924.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_c4b130657b17a50e48666a94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e24df9468644cd28a761b27b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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);}
.v1{vertical-align:-12.229800px;}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-3.597000px;}
.ls2a{letter-spacing:-1.467576px;}
.ls1c{letter-spacing:-1.460382px;}
.ls2e{letter-spacing:-1.445994px;}
.ls17{letter-spacing:-1.438800px;}
.ls40{letter-spacing:-1.431606px;}
.ls2{letter-spacing:-1.343424px;}
.ls15{letter-spacing:-1.215786px;}
.ls2d{letter-spacing:-0.999966px;}
.ls24{letter-spacing:-0.985578px;}
.ls38{letter-spacing:-0.972908px;}
.ls22{letter-spacing:-0.949608px;}
.ls34{letter-spacing:-0.942414px;}
.ls12{letter-spacing:-0.935220px;}
.ls37{letter-spacing:-0.933197px;}
.ls28{letter-spacing:-0.928026px;}
.ls4{letter-spacing:-0.920832px;}
.ls1d{letter-spacing:-0.913638px;}
.ls3b{letter-spacing:-0.906444px;}
.ls29{letter-spacing:-0.899250px;}
.lsa{letter-spacing:-0.892056px;}
.ls30{letter-spacing:-0.884862px;}
.ls27{letter-spacing:-0.877668px;}
.ls25{letter-spacing:-0.870474px;}
.ls16{letter-spacing:-0.863280px;}
.ls3{letter-spacing:-0.856086px;}
.ls1e{letter-spacing:-0.848892px;}
.ls2b{letter-spacing:-0.841698px;}
.ls13{letter-spacing:-0.834504px;}
.lsf{letter-spacing:-0.827310px;}
.ls21{letter-spacing:-0.820116px;}
.lsd{letter-spacing:-0.812922px;}
.ls11{letter-spacing:-0.805728px;}
.ls9{letter-spacing:-0.798534px;}
.lsb{letter-spacing:-0.791340px;}
.ls8{letter-spacing:-0.784146px;}
.ls36{letter-spacing:-0.780974px;}
.ls1a{letter-spacing:-0.776952px;}
.ls35{letter-spacing:-0.774355px;}
.ls1b{letter-spacing:-0.769758px;}
.ls6{letter-spacing:-0.762564px;}
.lsc{letter-spacing:-0.755370px;}
.ls5{letter-spacing:-0.748176px;}
.ls18{letter-spacing:-0.740982px;}
.ls14{letter-spacing:-0.733788px;}
.ls3a{letter-spacing:-0.728026px;}
.ls7{letter-spacing:-0.726594px;}
.ls10{letter-spacing:-0.719400px;}
.ls19{letter-spacing:-0.712206px;}
.ls32{letter-spacing:-0.705012px;}
.ls31{letter-spacing:-0.697818px;}
.ls3e{letter-spacing:-0.690624px;}
.ls3c{letter-spacing:-0.676236px;}
.ls39{letter-spacing:-0.675079px;}
.ls2c{letter-spacing:-0.669042px;}
.lse{letter-spacing:-0.661848px;}
.ls23{letter-spacing:-0.654654px;}
.ls20{letter-spacing:-0.633072px;}
.ls33{letter-spacing:-0.625878px;}
.ls1f{letter-spacing:-0.604296px;}
.ls2f{letter-spacing:-0.575520px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.719400px;}
.ls1{letter-spacing:1.326631px;}
.ls3d{letter-spacing:844.841313px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-82.620576px;}
.ws43{word-spacing:-41.293560px;}
.ws42{word-spacing:-40.574160px;}
.ws28{word-spacing:-40.372728px;}
.ws77{word-spacing:-40.343952px;}
.ws66{word-spacing:-40.329564px;}
.ws4f{word-spacing:-40.307982px;}
.ws70{word-spacing:-40.272012px;}
.ws6e{word-spacing:-40.264818px;}
.ws19{word-spacing:-40.250430px;}
.ws3c{word-spacing:-40.228848px;}
.ws6f{word-spacing:-40.221654px;}
.ws2{word-spacing:-40.149714px;}
.ws9{word-spacing:-40.113744px;}
.ws3{word-spacing:-40.084968px;}
.ws71{word-spacing:-40.077774px;}
.ws50{word-spacing:-40.063386px;}
.ws4e{word-spacing:-39.948282px;}
.wsd{word-spacing:-39.912312px;}
.ws37{word-spacing:-39.905118px;}
.ws6a{word-spacing:-39.883536px;}
.ws41{word-spacing:-39.876342px;}
.ws4c{word-spacing:-39.869148px;}
.ws1d{word-spacing:-39.861954px;}
.ws10{word-spacing:-39.854760px;}
.ws6{word-spacing:-39.847566px;}
.ws3b{word-spacing:-39.840372px;}
.ws1c{word-spacing:-39.833178px;}
.ws4{word-spacing:-39.825984px;}
.wsb{word-spacing:-39.818790px;}
.ws5{word-spacing:-39.811596px;}
.ws1f{word-spacing:-39.804402px;}
.ws1e{word-spacing:-39.797208px;}
.ws7{word-spacing:-39.790014px;}
.wsa{word-spacing:-39.782820px;}
.ws8{word-spacing:-39.775626px;}
.ws13{word-spacing:-39.768432px;}
.wsc{word-spacing:-39.761238px;}
.ws2b{word-spacing:-39.754044px;}
.wsf{word-spacing:-39.746850px;}
.ws14{word-spacing:-39.739656px;}
.ws36{word-spacing:-39.732462px;}
.ws25{word-spacing:-39.725268px;}
.ws47{word-spacing:-39.718074px;}
.ws1a{word-spacing:-39.710880px;}
.ws30{word-spacing:-39.703686px;}
.ws32{word-spacing:-39.696492px;}
.wse{word-spacing:-39.682104px;}
.ws34{word-spacing:-39.674910px;}
.ws61{word-spacing:-39.667716px;}
.ws15{word-spacing:-39.653328px;}
.ws33{word-spacing:-39.646134px;}
.ws31{word-spacing:-39.638940px;}
.ws60{word-spacing:-39.631746px;}
.ws2e{word-spacing:-39.588582px;}
.ws3a{word-spacing:-39.574194px;}
.ws18{word-spacing:-39.358374px;}
.ws75{word-spacing:-39.142554px;}
.ws1b{word-spacing:-39.135360px;}
.ws20{word-spacing:-39.113778px;}
.ws35{word-spacing:-39.106584px;}
.ws74{word-spacing:-36.977160px;}
.ws54{word-spacing:-36.752086px;}
.ws5a{word-spacing:-27.610572px;}
.ws73{word-spacing:-27.481080px;}
.ws65{word-spacing:-27.135768px;}
.ws39{word-spacing:-26.919948px;}
.ws72{word-spacing:-26.833620px;}
.ws64{word-spacing:-26.804844px;}
.ws59{word-spacing:-26.776068px;}
.ws11{word-spacing:-26.732904px;}
.ws12{word-spacing:-26.473920px;}
.ws67{word-spacing:-26.128608px;}
.ws38{word-spacing:-26.027892px;}
.ws68{word-spacing:-25.999116px;}
.ws6d{word-spacing:-24.632256px;}
.ws4d{word-spacing:-24.589092px;}
.ws40{word-spacing:-24.416436px;}
.ws3f{word-spacing:-24.330108px;}
.ws2d{word-spacing:-24.157452px;}
.ws2c{word-spacing:-23.840916px;}
.ws26{word-spacing:-22.905696px;}
.ws27{word-spacing:-22.819368px;}
.ws76{word-spacing:-21.869760px;}
.ws4a{word-spacing:-21.740268px;}
.ws5c{word-spacing:-21.697104px;}
.ws4b{word-spacing:-21.653940px;}
.ws5b{word-spacing:-21.481284px;}
.ws48{word-spacing:-21.049644px;}
.ws49{word-spacing:-20.992092px;}
.ws5f{word-spacing:-20.359020px;}
.ws69{word-spacing:-20.287080px;}
.ws44{word-spacing:-20.272692px;}
.ws29{word-spacing:-20.229528px;}
.ws45{word-spacing:-20.215140px;}
.ws2a{word-spacing:-19.970544px;}
.ws46{word-spacing:-18.186432px;}
.ws2f{word-spacing:-17.941836px;}
.ws5e{word-spacing:-17.596524px;}
.ws5d{word-spacing:-17.431062px;}
.ws3e{word-spacing:-17.121720px;}
.ws3d{word-spacing:-16.747632px;}
.ws23{word-spacing:-16.013844px;}
.ws24{word-spacing:-15.726084px;}
.ws63{word-spacing:-15.236892px;}
.ws6b{word-spacing:-14.632596px;}
.ws62{word-spacing:-14.618208px;}
.ws6c{word-spacing:-14.517492px;}
.ws16{word-spacing:-12.201024px;}
.ws17{word-spacing:-11.021208px;}
.ws22{word-spacing:-10.273032px;}
.ws21{word-spacing:-10.215480px;}
.ws0{word-spacing:0.000000px;}
.ws57{word-spacing:1.460382px;}
.ws52{word-spacing:231.079116px;}
.ws51{word-spacing:249.412579px;}
.ws55{word-spacing:277.752731px;}
.ws53{word-spacing:293.889107px;}
.ws56{word-spacing:325.274192px;}
.ws58{word-spacing:341.096192px;}
._4{margin-left:-8.236868px;}
._3{margin-left:-6.616363px;}
._a{margin-left:-5.458866px;}
._0{margin-left:-4.318152px;}
._6{margin-left:-2.316468px;}
._5{margin-left:-1.208592px;}
._8{width:1.112964px;}
._2{width:2.686848px;}
._b{width:4.001616px;}
._1{width:5.181786px;}
._7{width:6.568122px;}
._9{width:8.452950px;}
._d{width:9.496080px;}
._e{width:11.068584px;}
._11{width:12.473166px;}
._10{width:14.380806px;}
._13{width:16.920288px;}
._f{width:18.423834px;}
._12{width:21.617970px;}
._c{width:27.682512px;}
._14{width:400.671089px;}
._15{width:417.213163px;}
.fc4{color:rgb(178,180,182);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(186,47,54);}
.fc5{color:transparent;}
.fc1{color:rgb(20,15,28);}
.fc0{color:rgb(165,63,35);}
.fs5{font-size:48.199800px;}
.fs3{font-size:66.184200px;}
.fs4{font-size:71.940000px;}
.fs2{font-size:83.964000px;}
.fs0{font-size:215.907600px;}
.fs1{font-size:287.877000px;}
.y0{bottom:0.000000px;}
.yd{bottom:35.878726px;}
.y3{bottom:66.380250px;}
.y40{bottom:113.739750px;}
.y9f{bottom:122.374050px;}
.y71{bottom:132.986850px;}
.y3f{bottom:134.422500px;}
.y9e{bottom:143.056800px;}
.y2{bottom:152.768860px;}
.y3e{bottom:155.105250px;}
.y70{bottom:156.545850px;}
.y9d{bottom:163.739550px;}
.y3d{bottom:175.788000px;}
.y6f{bottom:179.027400px;}
.y9c{bottom:184.422300px;}
.y3c{bottom:196.470750px;}
.y6e{bottom:199.710150px;}
.y3b{bottom:217.153500px;}
.y6d{bottom:220.392900px;}
.y9b{bottom:225.787800px;}
.y1{bottom:229.901850px;}
.y3a{bottom:237.836250px;}
.y6c{bottom:241.075650px;}
.y9a{bottom:246.470550px;}
.y39{bottom:258.519000px;}
.y6b{bottom:261.758400px;}
.y99{bottom:267.153300px;}
.y38{bottom:279.201750px;}
.y6a{bottom:282.441150px;}
.yb3{bottom:283.699500px;}
.y98{bottom:287.836050px;}
.y37{bottom:299.884500px;}
.yb2{bottom:303.121350px;}
.y69{bottom:303.123900px;}
.y97{bottom:308.518800px;}
.y36{bottom:320.567250px;}
.yb1{bottom:323.804100px;}
.y68{bottom:323.806650px;}
.y96{bottom:329.201550px;}
.y35{bottom:341.250000px;}
.yb0{bottom:344.486850px;}
.y67{bottom:344.488950px;}
.y95{bottom:349.884300px;}
.y34{bottom:361.932750px;}
.yaf{bottom:365.169600px;}
.y66{bottom:365.171700px;}
.y33{bottom:382.615500px;}
.yae{bottom:385.852350px;}
.y65{bottom:385.854450px;}
.y94{bottom:391.249800px;}
.y32{bottom:403.298250px;}
.yad{bottom:406.535100px;}
.y64{bottom:406.537200px;}
.y93{bottom:411.932550px;}
.y31{bottom:423.981000px;}
.yac{bottom:427.217850px;}
.y63{bottom:427.219950px;}
.y92{bottom:432.615300px;}
.y30{bottom:444.663750px;}
.yab{bottom:447.900600px;}
.y62{bottom:447.902700px;}
.y91{bottom:453.298050px;}
.y2f{bottom:465.346500px;}
.yaa{bottom:468.583350px;}
.y61{bottom:468.585450px;}
.y90{bottom:473.980800px;}
.y2e{bottom:486.029250px;}
.ya9{bottom:489.266100px;}
.y60{bottom:489.267000px;}
.y8f{bottom:494.663550px;}
.yb{bottom:497.045787px;}
.y2d{bottom:506.712000px;}
.ya8{bottom:509.948850px;}
.y5f{bottom:509.949750px;}
.y8e{bottom:515.346300px;}
.y2c{bottom:527.394750px;}
.ya7{bottom:530.631600px;}
.y5e{bottom:530.632500px;}
.y8d{bottom:536.029050px;}
.ya{bottom:547.550133px;}
.y2b{bottom:548.077500px;}
.ya6{bottom:551.314350px;}
.y5d{bottom:551.315250px;}
.y8c{bottom:556.711800px;}
.y2a{bottom:568.760250px;}
.ya5{bottom:571.997100px;}
.y5c{bottom:571.998000px;}
.y8b{bottom:577.394550px;}
.y29{bottom:589.443000px;}
.ya4{bottom:592.679850px;}
.y5b{bottom:592.680750px;}
.y9{bottom:597.928533px;}
.y8a{bottom:598.077300px;}
.y28{bottom:610.125750px;}
.ya3{bottom:613.362600px;}
.y5a{bottom:613.363500px;}
.y89{bottom:618.760050px;}
.y27{bottom:630.808500px;}
.ya2{bottom:634.045350px;}
.y59{bottom:634.046250px;}
.y88{bottom:639.442800px;}
.y8{bottom:648.180987px;}
.y26{bottom:651.491250px;}
.ya1{bottom:654.728100px;}
.y58{bottom:654.729000px;}
.y25{bottom:672.174000px;}
.y7{bottom:673.370187px;}
.ya0{bottom:675.410850px;}
.y57{bottom:675.411750px;}
.y87{bottom:680.808300px;}
.y24{bottom:692.856750px;}
.y56{bottom:696.093600px;}
.y86{bottom:701.491050px;}
.y23{bottom:713.539500px;}
.y55{bottom:716.776350px;}
.y85{bottom:722.173800px;}
.y6{bottom:723.748587px;}
.y22{bottom:734.222250px;}
.y54{bottom:737.459100px;}
.y84{bottom:742.856550px;}
.y5{bottom:748.937787px;}
.y21{bottom:754.905000px;}
.y53{bottom:758.141850px;}
.y83{bottom:763.539300px;}
.y4{bottom:773.980050px;}
.y20{bottom:775.587750px;}
.y52{bottom:778.824600px;}
.y82{bottom:784.222050px;}
.y1f{bottom:796.270500px;}
.y51{bottom:799.507350px;}
.y81{bottom:804.902100px;}
.y1e{bottom:816.953250px;}
.y50{bottom:820.190100px;}
.y80{bottom:825.584850px;}
.y1d{bottom:837.636000px;}
.y4f{bottom:840.872850px;}
.y7f{bottom:846.267600px;}
.y1c{bottom:858.318750px;}
.y4e{bottom:861.555600px;}
.y7e{bottom:866.950350px;}
.y1b{bottom:879.001500px;}
.y4d{bottom:882.238350px;}
.y7d{bottom:887.633100px;}
.y1a{bottom:899.684250px;}
.y4c{bottom:902.921100px;}
.y7c{bottom:908.315850px;}
.y19{bottom:920.367000px;}
.y4b{bottom:923.603850px;}
.y7b{bottom:928.998600px;}
.y18{bottom:941.049750px;}
.y4a{bottom:944.286600px;}
.y7a{bottom:949.681350px;}
.y17{bottom:961.732500px;}
.y49{bottom:964.969350px;}
.y79{bottom:970.364100px;}
.y16{bottom:982.415250px;}
.y48{bottom:985.652100px;}
.y78{bottom:991.046850px;}
.y15{bottom:1003.098000px;}
.y47{bottom:1006.334850px;}
.y77{bottom:1011.730500px;}
.y14{bottom:1023.780750px;}
.y46{bottom:1027.017600px;}
.y13{bottom:1044.463500px;}
.y45{bottom:1047.700350px;}
.y76{bottom:1055.613150px;}
.y44{bottom:1068.383100px;}
.y12{bottom:1071.979650px;}
.y75{bottom:1079.175150px;}
.y11{bottom:1085.828550px;}
.y43{bottom:1089.065850px;}
.y74{bottom:1102.735650px;}
.y10{bottom:1106.511300px;}
.y42{bottom:1109.748600px;}
.y73{bottom:1126.294800px;}
.yf{bottom:1128.812700px;}
.y41{bottom:1130.431350px;}
.y72{bottom:1150.034700px;}
.ye{bottom:1151.114100px;}
.yc{bottom:1173.055650px;}
.h9{height:42.951482px;}
.h6{height:44.112028px;}
.hd{height:48.248540px;}
.hb{height:58.783721px;}
.hc{height:58.977620px;}
.h7{height:63.895928px;}
.h8{height:64.106689px;}
.h5{height:68.094804px;}
.ha{height:70.570049px;}
.h4{height:70.613724px;}
.h1{height:151.783043px;}
.h2{height:202.275491px;}
.h3{height:242.104557px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:92.194050px;}
.x5{left:106.290900px;}
.x9{left:133.088700px;}
.xd{left:139.579785px;}
.x6{left:141.181950px;}
.x11{left:144.598950px;}
.xc{left:159.346800px;}
.x2{left:170.807246px;}
.x1{left:189.375300px;}
.xa{left:192.798900px;}
.xf{left:217.977450px;}
.xe{left:226.789950px;}
.x3{left:274.868599px;}
.x8{left:297.651450px;}
.x7{left:333.621450px;}
.xb{left:385.238400px;}
.x12{left:404.841900px;}
.x10{left:446.027550px;}
@media print{
.v1{vertical-align:-10.870933pt;}
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-3.197333pt;}
.ls2a{letter-spacing:-1.304512pt;}
.ls1c{letter-spacing:-1.298117pt;}
.ls2e{letter-spacing:-1.285328pt;}
.ls17{letter-spacing:-1.278933pt;}
.ls40{letter-spacing:-1.272539pt;}
.ls2{letter-spacing:-1.194155pt;}
.ls15{letter-spacing:-1.080699pt;}
.ls2d{letter-spacing:-0.888859pt;}
.ls24{letter-spacing:-0.876069pt;}
.ls38{letter-spacing:-0.864807pt;}
.ls22{letter-spacing:-0.844096pt;}
.ls34{letter-spacing:-0.837701pt;}
.ls12{letter-spacing:-0.831307pt;}
.ls37{letter-spacing:-0.829509pt;}
.ls28{letter-spacing:-0.824912pt;}
.ls4{letter-spacing:-0.818517pt;}
.ls1d{letter-spacing:-0.812123pt;}
.ls3b{letter-spacing:-0.805728pt;}
.ls29{letter-spacing:-0.799333pt;}
.lsa{letter-spacing:-0.792939pt;}
.ls30{letter-spacing:-0.786544pt;}
.ls27{letter-spacing:-0.780149pt;}
.ls25{letter-spacing:-0.773755pt;}
.ls16{letter-spacing:-0.767360pt;}
.ls3{letter-spacing:-0.760965pt;}
.ls1e{letter-spacing:-0.754571pt;}
.ls2b{letter-spacing:-0.748176pt;}
.ls13{letter-spacing:-0.741781pt;}
.lsf{letter-spacing:-0.735387pt;}
.ls21{letter-spacing:-0.728992pt;}
.lsd{letter-spacing:-0.722597pt;}
.ls11{letter-spacing:-0.716203pt;}
.ls9{letter-spacing:-0.709808pt;}
.lsb{letter-spacing:-0.703413pt;}
.ls8{letter-spacing:-0.697019pt;}
.ls36{letter-spacing:-0.694199pt;}
.ls1a{letter-spacing:-0.690624pt;}
.ls35{letter-spacing:-0.688316pt;}
.ls1b{letter-spacing:-0.684229pt;}
.ls6{letter-spacing:-0.677835pt;}
.lsc{letter-spacing:-0.671440pt;}
.ls5{letter-spacing:-0.665045pt;}
.ls18{letter-spacing:-0.658651pt;}
.ls14{letter-spacing:-0.652256pt;}
.ls3a{letter-spacing:-0.647134pt;}
.ls7{letter-spacing:-0.645861pt;}
.ls10{letter-spacing:-0.639467pt;}
.ls19{letter-spacing:-0.633072pt;}
.ls32{letter-spacing:-0.626677pt;}
.ls31{letter-spacing:-0.620283pt;}
.ls3e{letter-spacing:-0.613888pt;}
.ls3c{letter-spacing:-0.601099pt;}
.ls39{letter-spacing:-0.600070pt;}
.ls2c{letter-spacing:-0.594704pt;}
.lse{letter-spacing:-0.588309pt;}
.ls23{letter-spacing:-0.581915pt;}
.ls20{letter-spacing:-0.562731pt;}
.ls33{letter-spacing:-0.556336pt;}
.ls1f{letter-spacing:-0.537152pt;}
.ls2f{letter-spacing:-0.511573pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.639467pt;}
.ls1{letter-spacing:1.179228pt;}
.ls3d{letter-spacing:750.970056pt;}
.ws1{word-spacing:-73.440512pt;}
.ws43{word-spacing:-36.705387pt;}
.ws42{word-spacing:-36.065920pt;}
.ws28{word-spacing:-35.886869pt;}
.ws77{word-spacing:-35.861291pt;}
.ws66{word-spacing:-35.848501pt;}
.ws4f{word-spacing:-35.829317pt;}
.ws70{word-spacing:-35.797344pt;}
.ws6e{word-spacing:-35.790949pt;}
.ws19{word-spacing:-35.778160pt;}
.ws3c{word-spacing:-35.758976pt;}
.ws6f{word-spacing:-35.752581pt;}
.ws2{word-spacing:-35.688635pt;}
.ws9{word-spacing:-35.656661pt;}
.ws3{word-spacing:-35.631083pt;}
.ws71{word-spacing:-35.624688pt;}
.ws50{word-spacing:-35.611899pt;}
.ws4e{word-spacing:-35.509584pt;}
.wsd{word-spacing:-35.477611pt;}
.ws37{word-spacing:-35.471216pt;}
.ws6a{word-spacing:-35.452032pt;}
.ws41{word-spacing:-35.445637pt;}
.ws4c{word-spacing:-35.439243pt;}
.ws1d{word-spacing:-35.432848pt;}
.ws10{word-spacing:-35.426453pt;}
.ws6{word-spacing:-35.420059pt;}
.ws3b{word-spacing:-35.413664pt;}
.ws1c{word-spacing:-35.407269pt;}
.ws4{word-spacing:-35.400875pt;}
.wsb{word-spacing:-35.394480pt;}
.ws5{word-spacing:-35.388085pt;}
.ws1f{word-spacing:-35.381691pt;}
.ws1e{word-spacing:-35.375296pt;}
.ws7{word-spacing:-35.368901pt;}
.wsa{word-spacing:-35.362507pt;}
.ws8{word-spacing:-35.356112pt;}
.ws13{word-spacing:-35.349717pt;}
.wsc{word-spacing:-35.343323pt;}
.ws2b{word-spacing:-35.336928pt;}
.wsf{word-spacing:-35.330533pt;}
.ws14{word-spacing:-35.324139pt;}
.ws36{word-spacing:-35.317744pt;}
.ws25{word-spacing:-35.311349pt;}
.ws47{word-spacing:-35.304955pt;}
.ws1a{word-spacing:-35.298560pt;}
.ws30{word-spacing:-35.292165pt;}
.ws32{word-spacing:-35.285771pt;}
.wse{word-spacing:-35.272981pt;}
.ws34{word-spacing:-35.266587pt;}
.ws61{word-spacing:-35.260192pt;}
.ws15{word-spacing:-35.247403pt;}
.ws33{word-spacing:-35.241008pt;}
.ws31{word-spacing:-35.234613pt;}
.ws60{word-spacing:-35.228219pt;}
.ws2e{word-spacing:-35.189851pt;}
.ws3a{word-spacing:-35.177061pt;}
.ws18{word-spacing:-34.985221pt;}
.ws75{word-spacing:-34.793381pt;}
.ws1b{word-spacing:-34.786987pt;}
.ws20{word-spacing:-34.767803pt;}
.ws35{word-spacing:-34.761408pt;}
.ws74{word-spacing:-32.868587pt;}
.ws54{word-spacing:-32.668521pt;}
.ws5a{word-spacing:-24.542731pt;}
.ws73{word-spacing:-24.427627pt;}
.ws65{word-spacing:-24.120683pt;}
.ws39{word-spacing:-23.928843pt;}
.ws72{word-spacing:-23.852107pt;}
.ws64{word-spacing:-23.826528pt;}
.ws59{word-spacing:-23.800949pt;}
.ws11{word-spacing:-23.762581pt;}
.ws12{word-spacing:-23.532373pt;}
.ws67{word-spacing:-23.225429pt;}
.ws38{word-spacing:-23.135904pt;}
.ws68{word-spacing:-23.110325pt;}
.ws6d{word-spacing:-21.895339pt;}
.ws4d{word-spacing:-21.856971pt;}
.ws40{word-spacing:-21.703499pt;}
.ws3f{word-spacing:-21.626763pt;}
.ws2d{word-spacing:-21.473291pt;}
.ws2c{word-spacing:-21.191925pt;}
.ws26{word-spacing:-20.360619pt;}
.ws27{word-spacing:-20.283883pt;}
.ws76{word-spacing:-19.439787pt;}
.ws4a{word-spacing:-19.324683pt;}
.ws5c{word-spacing:-19.286315pt;}
.ws4b{word-spacing:-19.247947pt;}
.ws5b{word-spacing:-19.094475pt;}
.ws48{word-spacing:-18.710795pt;}
.ws49{word-spacing:-18.659637pt;}
.ws5f{word-spacing:-18.096907pt;}
.ws69{word-spacing:-18.032960pt;}
.ws44{word-spacing:-18.020171pt;}
.ws29{word-spacing:-17.981803pt;}
.ws45{word-spacing:-17.969013pt;}
.ws2a{word-spacing:-17.751595pt;}
.ws46{word-spacing:-16.165717pt;}
.ws2f{word-spacing:-15.948299pt;}
.ws5e{word-spacing:-15.641355pt;}
.ws5d{word-spacing:-15.494277pt;}
.ws3e{word-spacing:-15.219307pt;}
.ws3d{word-spacing:-14.886784pt;}
.ws23{word-spacing:-14.234528pt;}
.ws24{word-spacing:-13.978741pt;}
.ws63{word-spacing:-13.543904pt;}
.ws6b{word-spacing:-13.006752pt;}
.ws62{word-spacing:-12.993963pt;}
.ws6c{word-spacing:-12.904437pt;}
.ws16{word-spacing:-10.845355pt;}
.ws17{word-spacing:-9.796629pt;}
.ws22{word-spacing:-9.131584pt;}
.ws21{word-spacing:-9.080427pt;}
.ws0{word-spacing:0.000000pt;}
.ws57{word-spacing:1.298117pt;}
.ws52{word-spacing:205.403659pt;}
.ws51{word-spacing:221.700071pt;}
.ws55{word-spacing:246.891317pt;}
.ws53{word-spacing:261.234762pt;}
.ws56{word-spacing:289.132615pt;}
.ws58{word-spacing:303.196615pt;}
._4{margin-left:-7.321661pt;}
._3{margin-left:-5.881212pt;}
._a{margin-left:-4.852325pt;}
._0{margin-left:-3.838357pt;}
._6{margin-left:-2.059083pt;}
._5{margin-left:-1.074304pt;}
._8{width:0.989301pt;}
._2{width:2.388309pt;}
._b{width:3.556992pt;}
._1{width:4.606032pt;}
._7{width:5.838331pt;}
._9{width:7.513733pt;}
._d{width:8.440960pt;}
._e{width:9.838741pt;}
._11{width:11.087259pt;}
._10{width:12.782939pt;}
._13{width:15.040256pt;}
._f{width:16.376741pt;}
._12{width:19.215973pt;}
._c{width:24.606677pt;}
._14{width:356.152079pt;}
._15{width:370.856145pt;}
.fs5{font-size:42.844267pt;}
.fs3{font-size:58.830400pt;}
.fs4{font-size:63.946667pt;}
.fs2{font-size:74.634667pt;}
.fs0{font-size:191.917867pt;}
.fs1{font-size:255.890667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:31.892201pt;}
.y3{bottom:59.004667pt;}
.y40{bottom:101.102000pt;}
.y9f{bottom:108.776933pt;}
.y71{bottom:118.210533pt;}
.y3f{bottom:119.486667pt;}
.y9e{bottom:127.161600pt;}
.y2{bottom:135.794542pt;}
.y3e{bottom:137.871333pt;}
.y70{bottom:139.151867pt;}
.y9d{bottom:145.546267pt;}
.y3d{bottom:156.256000pt;}
.y6f{bottom:159.135467pt;}
.y9c{bottom:163.930933pt;}
.y3c{bottom:174.640667pt;}
.y6e{bottom:177.520133pt;}
.y3b{bottom:193.025333pt;}
.y6d{bottom:195.904800pt;}
.y9b{bottom:200.700267pt;}
.y1{bottom:204.357200pt;}
.y3a{bottom:211.410000pt;}
.y6c{bottom:214.289467pt;}
.y9a{bottom:219.084933pt;}
.y39{bottom:229.794667pt;}
.y6b{bottom:232.674133pt;}
.y99{bottom:237.469600pt;}
.y38{bottom:248.179333pt;}
.y6a{bottom:251.058800pt;}
.yb3{bottom:252.177333pt;}
.y98{bottom:255.854267pt;}
.y37{bottom:266.564000pt;}
.yb2{bottom:269.441200pt;}
.y69{bottom:269.443467pt;}
.y97{bottom:274.238933pt;}
.y36{bottom:284.948667pt;}
.yb1{bottom:287.825867pt;}
.y68{bottom:287.828133pt;}
.y96{bottom:292.623600pt;}
.y35{bottom:303.333333pt;}
.yb0{bottom:306.210533pt;}
.y67{bottom:306.212400pt;}
.y95{bottom:311.008267pt;}
.y34{bottom:321.718000pt;}
.yaf{bottom:324.595200pt;}
.y66{bottom:324.597067pt;}
.y33{bottom:340.102667pt;}
.yae{bottom:342.979867pt;}
.y65{bottom:342.981733pt;}
.y94{bottom:347.777600pt;}
.y32{bottom:358.487333pt;}
.yad{bottom:361.364533pt;}
.y64{bottom:361.366400pt;}
.y93{bottom:366.162267pt;}
.y31{bottom:376.872000pt;}
.yac{bottom:379.749200pt;}
.y63{bottom:379.751067pt;}
.y92{bottom:384.546933pt;}
.y30{bottom:395.256667pt;}
.yab{bottom:398.133867pt;}
.y62{bottom:398.135733pt;}
.y91{bottom:402.931600pt;}
.y2f{bottom:413.641333pt;}
.yaa{bottom:416.518533pt;}
.y61{bottom:416.520400pt;}
.y90{bottom:421.316267pt;}
.y2e{bottom:432.026000pt;}
.ya9{bottom:434.903200pt;}
.y60{bottom:434.904000pt;}
.y8f{bottom:439.700933pt;}
.yb{bottom:441.818477pt;}
.y2d{bottom:450.410667pt;}
.ya8{bottom:453.287867pt;}
.y5f{bottom:453.288667pt;}
.y8e{bottom:458.085600pt;}
.y2c{bottom:468.795333pt;}
.ya7{bottom:471.672533pt;}
.y5e{bottom:471.673333pt;}
.y8d{bottom:476.470267pt;}
.ya{bottom:486.711229pt;}
.y2b{bottom:487.180000pt;}
.ya6{bottom:490.057200pt;}
.y5d{bottom:490.058000pt;}
.y8c{bottom:494.854933pt;}
.y2a{bottom:505.564667pt;}
.ya5{bottom:508.441867pt;}
.y5c{bottom:508.442667pt;}
.y8b{bottom:513.239600pt;}
.y29{bottom:523.949333pt;}
.ya4{bottom:526.826533pt;}
.y5b{bottom:526.827333pt;}
.y9{bottom:531.492029pt;}
.y8a{bottom:531.624267pt;}
.y28{bottom:542.334000pt;}
.ya3{bottom:545.211200pt;}
.y5a{bottom:545.212000pt;}
.y89{bottom:550.008933pt;}
.y27{bottom:560.718667pt;}
.ya2{bottom:563.595867pt;}
.y59{bottom:563.596667pt;}
.y88{bottom:568.393600pt;}
.y8{bottom:576.160877pt;}
.y26{bottom:579.103333pt;}
.ya1{bottom:581.980533pt;}
.y58{bottom:581.981333pt;}
.y25{bottom:597.488000pt;}
.y7{bottom:598.551277pt;}
.ya0{bottom:600.365200pt;}
.y57{bottom:600.366000pt;}
.y87{bottom:605.162933pt;}
.y24{bottom:615.872667pt;}
.y56{bottom:618.749867pt;}
.y86{bottom:623.547600pt;}
.y23{bottom:634.257333pt;}
.y55{bottom:637.134533pt;}
.y85{bottom:641.932267pt;}
.y6{bottom:643.332077pt;}
.y22{bottom:652.642000pt;}
.y54{bottom:655.519200pt;}
.y84{bottom:660.316933pt;}
.y5{bottom:665.722477pt;}
.y21{bottom:671.026667pt;}
.y53{bottom:673.903867pt;}
.y83{bottom:678.701600pt;}
.y4{bottom:687.982267pt;}
.y20{bottom:689.411333pt;}
.y52{bottom:692.288533pt;}
.y82{bottom:697.086267pt;}
.y1f{bottom:707.796000pt;}
.y51{bottom:710.673200pt;}
.y81{bottom:715.468533pt;}
.y1e{bottom:726.180667pt;}
.y50{bottom:729.057867pt;}
.y80{bottom:733.853200pt;}
.y1d{bottom:744.565333pt;}
.y4f{bottom:747.442533pt;}
.y7f{bottom:752.237867pt;}
.y1c{bottom:762.950000pt;}
.y4e{bottom:765.827200pt;}
.y7e{bottom:770.622533pt;}
.y1b{bottom:781.334667pt;}
.y4d{bottom:784.211867pt;}
.y7d{bottom:789.007200pt;}
.y1a{bottom:799.719333pt;}
.y4c{bottom:802.596533pt;}
.y7c{bottom:807.391867pt;}
.y19{bottom:818.104000pt;}
.y4b{bottom:820.981200pt;}
.y7b{bottom:825.776533pt;}
.y18{bottom:836.488667pt;}
.y4a{bottom:839.365867pt;}
.y7a{bottom:844.161200pt;}
.y17{bottom:854.873333pt;}
.y49{bottom:857.750533pt;}
.y79{bottom:862.545867pt;}
.y16{bottom:873.258000pt;}
.y48{bottom:876.135200pt;}
.y78{bottom:880.930533pt;}
.y15{bottom:891.642667pt;}
.y47{bottom:894.519867pt;}
.y77{bottom:899.316000pt;}
.y14{bottom:910.027333pt;}
.y46{bottom:912.904533pt;}
.y13{bottom:928.412000pt;}
.y45{bottom:931.289200pt;}
.y76{bottom:938.322800pt;}
.y44{bottom:949.673867pt;}
.y12{bottom:952.870800pt;}
.y75{bottom:959.266800pt;}
.y11{bottom:965.180933pt;}
.y43{bottom:968.058533pt;}
.y74{bottom:980.209467pt;}
.y10{bottom:983.565600pt;}
.y42{bottom:986.443200pt;}
.y73{bottom:1001.150933pt;}
.yf{bottom:1003.389067pt;}
.y41{bottom:1004.827867pt;}
.y72{bottom:1022.253067pt;}
.ye{bottom:1023.212533pt;}
.yc{bottom:1042.716133pt;}
.h9{height:38.179095pt;}
.h6{height:39.210691pt;}
.hd{height:42.887591pt;}
.hb{height:52.252196pt;}
.hc{height:52.424551pt;}
.h7{height:56.796380pt;}
.h8{height:56.983724pt;}
.h5{height:60.528715pt;}
.ha{height:62.728932pt;}
.h4{height:62.767755pt;}
.h1{height:134.918260pt;}
.h2{height:179.800437pt;}
.h3{height:215.204051pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:81.950267pt;}
.x5{left:94.480800pt;}
.x9{left:118.301067pt;}
.xd{left:124.070920pt;}
.x6{left:125.495067pt;}
.x11{left:128.532400pt;}
.xc{left:141.641600pt;}
.x2{left:151.828663pt;}
.x1{left:168.333600pt;}
.xa{left:171.376800pt;}
.xf{left:193.757733pt;}
.xe{left:201.591067pt;}
.x3{left:244.327644pt;}
.x8{left:264.579067pt;}
.x7{left:296.552400pt;}
.xb{left:342.434133pt;}
.x12{left:359.859467pt;}
.x10{left:396.468933pt;}
}




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