
    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_12d298cdc1298c80ff200d03.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3e616a7aa49efa786c0ca49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_74afc9fc4bf6787f6002589f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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_87df2a9a0a568efcde82b2bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_d5200f122be8292a5a33b43a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_474507b9c6d1839ed08843e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c9ebdd7d91034183e9b08a79.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_412860e9431ab55891d9b3fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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);}
.m3{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:96.480000px;}
.v2{vertical-align:190.920000px;}
.ls2a{letter-spacing:-4.989544px;}
.ls29{letter-spacing:-3.133677px;}
.ls2c{letter-spacing:-2.811301px;}
.ls17{letter-spacing:-2.730000px;}
.ls31{letter-spacing:-0.443400px;}
.ls30{letter-spacing:-0.308400px;}
.ls2e{letter-spacing:-0.289200px;}
.ls3{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.283200px;}
.lsf{letter-spacing:-0.258600px;}
.lsa{letter-spacing:-0.255600px;}
.ls2f{letter-spacing:-0.219000px;}
.ls1b{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls1{letter-spacing:-0.175800px;}
.ls13{letter-spacing:-0.143400px;}
.lsc{letter-spacing:-0.119400px;}
.ls1f{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.047520px;}
.ls26{letter-spacing:-0.024480px;}
.ls11{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.024480px;}
.ls16{letter-spacing:0.046680px;}
.lse{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.093000px;}
.ls22{letter-spacing:0.096600px;}
.ls2{letter-spacing:0.111000px;}
.ls10{letter-spacing:0.115800px;}
.ls2b{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.213696px;}
.ls1e{letter-spacing:0.230400px;}
.ls14{letter-spacing:0.231000px;}
.ls27{letter-spacing:0.244800px;}
.ls1a{letter-spacing:0.363000px;}
.ls18{letter-spacing:27.252288px;}
.ls19{letter-spacing:27.324000px;}
.ls21{letter-spacing:33.671520px;}
.ls12{letter-spacing:41.981376px;}
.ls23{letter-spacing:42.061440px;}
.ls8{letter-spacing:48.386496px;}
.ls7{letter-spacing:48.466560px;}
.ls2d{letter-spacing:48.588480px;}
.ls33{letter-spacing:57.549600px;}
.ls32{letter-spacing:57.600000px;}
.ls5{letter-spacing:94.809600px;}
.ls4{letter-spacing:94.860000px;}
.ls6{letter-spacing:99.093600px;}
.ls9{letter-spacing:99.144000px;}
.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;}
}
.ws0{word-spacing:-108.000000px;}
.ws14{word-spacing:-73.224000px;}
.ws2{word-spacing:-59.718240px;}
.ws11{word-spacing:-54.185760px;}
.ws29{word-spacing:-49.898760px;}
.ws28{word-spacing:-49.861104px;}
.ws10{word-spacing:-48.895224px;}
.ws3{word-spacing:-48.816000px;}
.ws15{word-spacing:-47.298240px;}
.ws13{word-spacing:-46.118544px;}
.ws1b{word-spacing:-44.748000px;}
.ws5{word-spacing:-43.478784px;}
.ws1c{word-spacing:-43.446240px;}
.ws22{word-spacing:-43.195584px;}
.ws7{word-spacing:-40.680000px;}
.ws6{word-spacing:-40.456944px;}
.ws1d{word-spacing:-39.410784px;}
.ws1e{word-spacing:-39.378240px;}
.ws24{word-spacing:-37.946304px;}
.ws25{word-spacing:-37.913760px;}
.ws23{word-spacing:-37.889280px;}
.ws17{word-spacing:-36.612000px;}
.ws8{word-spacing:-35.364240px;}
.wsa{word-spacing:-35.321184px;}
.ws9{word-spacing:-35.051640px;}
.ws12{word-spacing:-29.777760px;}
.ws4{word-spacing:-28.476000px;}
.wsf{word-spacing:-27.206784px;}
.wse{word-spacing:-27.174240px;}
.wsb{word-spacing:-24.408000px;}
.ws1f{word-spacing:-21.674304px;}
.ws20{word-spacing:-21.641760px;}
.ws21{word-spacing:-2.139840px;}
.wsd{word-spacing:-1.041840px;}
.ws2b{word-spacing:-0.845184px;}
.ws19{word-spacing:-0.258000px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.450000px;}
.ws2a{word-spacing:0.964584px;}
.ws18{word-spacing:0.996000px;}
.ws26{word-spacing:17.372133px;}
.ws27{word-spacing:108.847110px;}
.wsc{word-spacing:631.116000px;}
.ws1a{word-spacing:1654.451520px;}
._d{margin-left:-23.517360px;}
._e{margin-left:-21.831264px;}
._a{margin-left:-19.458000px;}
._c{margin-left:-17.137536px;}
._5{margin-left:-15.000432px;}
._7{margin-left:-12.852000px;}
._b{margin-left:-10.734624px;}
._10{margin-left:-8.973456px;}
._13{margin-left:-7.927200px;}
._9{margin-left:-6.802704px;}
._8{margin-left:-4.968000px;}
._0{margin-left:-3.836160px;}
._1{margin-left:-2.599920px;}
._3{margin-left:-1.109376px;}
._2{width:1.438560px;}
._6{width:3.412320px;}
._1b{width:4.419849px;}
._48{width:6.933082px;}
._f{width:22.555200px;}
._4a{width:29.284128px;}
._43{width:30.741010px;}
._1e{width:33.581309px;}
._36{width:36.563952px;}
._11{width:37.866672px;}
._4{width:39.058320px;}
._27{width:59.058669px;}
._1d{width:71.814198px;}
._2f{width:73.561053px;}
._26{width:82.180947px;}
._15{width:88.475178px;}
._28{width:91.992568px;}
._2b{width:119.298542px;}
._25{width:155.208055px;}
._30{width:160.643202px;}
._2e{width:165.758472px;}
._23{width:173.143153px;}
._29{width:188.919275px;}
._2a{width:203.098156px;}
._32{width:225.082699px;}
._31{width:226.220434px;}
._1a{width:276.942268px;}
._2c{width:279.863356px;}
._24{width:302.681393px;}
._3d{width:316.928208px;}
._22{width:320.148729px;}
._1f{width:325.803671px;}
._19{width:330.488596px;}
._20{width:342.966766px;}
._17{width:353.205220px;}
._21{width:365.886217px;}
._18{width:376.124671px;}
._42{width:378.084609px;}
._34{width:387.227827px;}
._16{width:416.076820px;}
._3c{width:435.911851px;}
._37{width:446.519800px;}
._3e{width:455.756623px;}
._40{width:493.647756px;}
._46{width:502.805753px;}
._3a{width:513.622831px;}
._47{width:529.863796px;}
._33{width:531.632340px;}
._2d{width:533.042159px;}
._45{width:550.603451px;}
._12{width:570.512880px;}
._1c{width:599.080338px;}
._49{width:679.357347px;}
._35{width:717.469763px;}
._38{width:719.385727px;}
._39{width:870.788407px;}
._3f{width:1130.877841px;}
._3b{width:1137.170157px;}
._41{width:1153.043640px;}
._44{width:1173.196112px;}
._14{width:1470.989127px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:95.760000px;}
.fs1c{font-size:95.904000px;}
.fs1f{font-size:102.240000px;}
.fs22{font-size:104.499006px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs20{font-size:114.850789px;}
.fs12{font-size:120.240000px;}
.fs13{font-size:120.384000px;}
.fsa{font-size:126.000000px;}
.fsb{font-size:126.144000px;}
.fs21{font-size:128.593856px;}
.fs14{font-size:131.760000px;}
.fs25{font-size:144.000000px;}
.fs26{font-size:144.144000px;}
.fsd{font-size:156.240000px;}
.fse{font-size:156.384000px;}
.fs17{font-size:162.000000px;}
.fs16{font-size:162.144000px;}
.fs10{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs1b{font-size:174.240000px;}
.fs1a{font-size:174.384000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:180.144000px;}
.fs8{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs19{font-size:198.000000px;}
.fs15{font-size:210.240000px;}
.fs6{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs24{font-size:221.760000px;}
.fs23{font-size:221.904000px;}
.fs0{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs5{font-size:264.240000px;}
.fs1e{font-size:264.384000px;}
.fs18{font-size:282.240000px;}
.fs7{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:0.795000px;}
.y16{bottom:1.650000px;}
.y57{bottom:1.695000px;}
.yb5{bottom:8.712517px;}
.ya4{bottom:9.557462px;}
.yaa{bottom:10.701155px;}
.y48{bottom:20.628000px;}
.yb4{bottom:43.564785px;}
.ya3{bottom:47.841819px;}
.ya9{bottom:53.495272px;}
.yb3{bottom:78.417053px;}
.ya2{bottom:86.125415px;}
.ya8{bottom:96.359891px;}
.yb6{bottom:97.308000px;}
.y92{bottom:106.776000px;}
.yb2{bottom:113.269321px;}
.y44{bottom:115.776000px;}
.y22{bottom:119.340000px;}
.y36{bottom:124.056000px;}
.ya1{bottom:124.472394px;}
.ybe{bottom:124.596000px;}
.y8c{bottom:129.096000px;}
.yc8{bottom:129.636000px;}
.y60{bottom:131.256000px;}
.y8{bottom:134.892000px;}
.y24{bottom:136.584000px;}
.ya7{bottom:139.154008px;}
.y85{bottom:145.872000px;}
.yb1{bottom:148.121589px;}
.y43{bottom:151.770000px;}
.y21{bottom:153.900000px;}
.y91{bottom:157.170000px;}
.ya0{bottom:162.755991px;}
.y7{bottom:167.295000px;}
.y9c{bottom:168.690000px;}
.y72{bottom:170.535000px;}
.y23{bottom:171.360000px;}
.ya5{bottom:171.750000px;}
.y35{bottom:172.650000px;}
.y8b{bottom:174.450000px;}
.yc3{bottom:174.990000px;}
.yc7{bottom:177.150000px;}
.y7f{bottom:178.305000px;}
.yab{bottom:182.820000px;}
.yb0{bottom:182.973857px;}
.y5f{bottom:185.655000px;}
.y42{bottom:187.770000px;}
.y20{bottom:188.640000px;}
.y52{bottom:189.930000px;}
.y62{bottom:194.400000px;}
.y6{bottom:199.695000px;}
.y9f{bottom:201.039587px;}
.y2b{bottom:210.780000px;}
.ybd{bottom:211.755000px;}
.y95{bottom:214.770000px;}
.y90{bottom:217.650000px;}
.yaf{bottom:217.826125px;}
.y71{bottom:218.265000px;}
.y4d{bottom:219.270000px;}
.y41{bottom:223.770000px;}
.yc6{bottom:224.670000px;}
.y8a{bottom:231.330000px;}
.y34{bottom:232.050000px;}
.y5{bottom:232.125000px;}
.y9b{bottom:236.370000px;}
.y9e{bottom:239.386567px;}
.yc2{bottom:241.455000px;}
.y81{bottom:247.890000px;}
.y7e{bottom:250.890000px;}
.y11{bottom:252.105000px;}
.yae{bottom:252.678393px;}
.y5e{bottom:259.410000px;}
.ybc{bottom:259.455000px;}
.y8f{bottom:268.095000px;}
.yb7{bottom:270.975000px;}
.y94{bottom:272.415000px;}
.yc5{bottom:273.855000px;}
.y2a{bottom:275.580000px;}
.y9d{bottom:278.625000px;}
.y77{bottom:281.670000px;}
.y89{bottom:283.215000px;}
.y4c{bottom:284.115000px;}
.y10{bottom:284.505000px;}
.y7a{bottom:286.170000px;}
.y9a{bottom:286.815000px;}
.yad{bottom:287.519101px;}
.yc1{bottom:289.155000px;}
.y33{bottom:289.875000px;}
.y51{bottom:296.850000px;}
.y6a{bottom:304.590000px;}
.y4a{bottom:305.535000px;}
.y76{bottom:308.130000px;}
.y79{bottom:312.450000px;}
.ya6{bottom:316.695000px;}
.yf{bottom:316.905000px;}
.y80{bottom:317.055000px;}
.y70{bottom:317.520000px;}
.yac{bottom:322.382929px;}
.y69{bottom:325.620000px;}
.y1f{bottom:327.390000px;}
.y28{bottom:328.575000px;}
.yc4{bottom:329.295000px;}
.y32{bottom:331.995000px;}
.y61{bottom:333.825000px;}
.ybb{bottom:338.010000px;}
.y14{bottom:338.370000px;}
.y75{bottom:338.730000px;}
.y93{bottom:340.095000px;}
.y29{bottom:340.410000px;}
.y5d{bottom:342.975000px;}
.y78{bottom:343.230000px;}
.y88{bottom:345.135000px;}
.y84{bottom:346.395000px;}
.y55{bottom:346.890000px;}
.y99{bottom:347.295000px;}
.y4b{bottom:348.915000px;}
.ye{bottom:349.305000px;}
.y39{bottom:350.175000px;}
.y4e{bottom:351.105000px;}
.y64{bottom:352.005000px;}
.y40{bottom:358.815000px;}
.y1e{bottom:362.130000px;}
.y4{bottom:362.700000px;}
.y6f{bottom:365.220000px;}
.y46{bottom:367.815000px;}
.y74{bottom:369.510000px;}
.y3f{bottom:370.695000px;}
.y1c{bottom:374.655000px;}
.y68{bottom:378.360000px;}
.y8e{bottom:378.975000px;}
.yd{bottom:381.750000px;}
.y31{bottom:383.475000px;}
.y83{bottom:385.305000px;}
.y27{bottom:386.175000px;}
.y6c{bottom:390.990000px;}
.y5c{bottom:397.335000px;}
.y98{bottom:397.695000px;}
.y38{bottom:400.575000px;}
.y3e{bottom:403.095000px;}
.y13{bottom:403.200000px;}
.y50{bottom:403.770000px;}
.y45{bottom:403.815000px;}
.y63{bottom:404.745000px;}
.y3{bottom:405.930000px;}
.y54{bottom:411.690000px;}
.y7d{bottom:420.045000px;}
.y73{bottom:423.975000px;}
.yba{bottom:425.160000px;}
.y30{bottom:425.625000px;}
.yc0{bottom:426.780000px;}
.y67{bottom:431.130000px;}
.y1b{bottom:432.285000px;}
.y6b{bottom:438.690000px;}
.y8d{bottom:439.485000px;}
.y49{bottom:443.805000px;}
.y37{bottom:451.005000px;}
.y5b{bottom:451.725000px;}
.y26{bottom:455.325000px;}
.y87{bottom:456.045000px;}
.y97{bottom:458.205000px;}
.y6e{bottom:464.475000px;}
.y12{bottom:468.000000px;}
.yb9{bottom:472.860000px;}
.ybf{bottom:474.510000px;}
.y53{bottom:476.535000px;}
.y2f{bottom:477.105000px;}
.y66{bottom:488.445000px;}
.y7c{bottom:492.630000px;}
.yc{bottom:495.540000px;}
.y1a{bottom:501.405000px;}
.y47{bottom:503.925000px;}
.y96{bottom:508.605000px;}
.y4f{bottom:510.690000px;}
.y6d{bottom:512.205000px;}
.y25{bottom:512.925000px;}
.y5a{bottom:525.495000px;}
.yb{bottom:527.970000px;}
.y1d{bottom:529.230000px;}
.y2e{bottom:530.205000px;}
.y65{bottom:541.185000px;}
.y82{bottom:546.870000px;}
.yb8{bottom:551.445000px;}
.ya{bottom:560.370000px;}
.y3d{bottom:561.525000px;}
.y7b{bottom:565.170000px;}
.y2{bottom:565.710000px;}
.y19{bottom:570.525000px;}
.y86{bottom:576.285000px;}
.y2d{bottom:578.850000px;}
.y3c{bottom:593.970000px;}
.y15{bottom:611.280000px;}
.y56{bottom:619.740000px;}
.y58{bottom:620.640000px;}
.y3b{bottom:626.370000px;}
.y1{bottom:637.740000px;}
.y18{bottom:653.865000px;}
.y9{bottom:687.885000px;}
.y2c{bottom:689.865000px;}
.y3a{bottom:724.395000px;}
.y17{bottom:725.865000px;}
.h20{height:53.820000px;}
.ha{height:54.540000px;}
.h1f{height:57.420000px;}
.h5{height:78.626953px;}
.h4{height:78.731789px;}
.h2a{height:95.245664px;}
.h29{height:95.388891px;}
.h7{height:97.716797px;}
.h8{height:97.847086px;}
.h2c{height:101.690859px;}
.h33{height:103.937732px;}
.h1c{height:107.419922px;}
.h17{height:110.583984px;}
.h18{height:110.731430px;}
.h2f{height:114.233914px;}
.h1a{height:123.116836px;}
.h1b{height:123.264281px;}
.hf{height:125.323242px;}
.h10{height:125.466469px;}
.h31{height:127.903166px;}
.h2d{height:128.113594px;}
.h1e{height:131.052305px;}
.h36{height:143.226562px;}
.h37{height:143.369789px;}
.h12{height:155.400820px;}
.h13{height:155.544047px;}
.h23{height:161.129883px;}
.h22{height:161.273109px;}
.h15{height:166.858945px;}
.h14{height:167.002172px;}
.h27{height:173.304141px;}
.h30{height:173.417503px;}
.h26{height:173.447367px;}
.h3{height:179.033203px;}
.h2{height:179.176430px;}
.hc{height:191.207461px;}
.hd{height:191.350688px;}
.h25{height:196.936523px;}
.h21{height:209.110781px;}
.he{height:214.839844px;}
.h19{height:219.596836px;}
.h35{height:220.568906px;}
.h34{height:220.712133px;}
.h9{height:221.167969px;}
.h11{height:221.315414px;}
.h1{height:238.472227px;}
.h16{height:238.615453px;}
.h1d{height:245.496445px;}
.h6{height:262.820742px;}
.h2b{height:262.963969px;}
.h2e{height:269.988090px;}
.h24{height:280.724063px;}
.hb{height:331.751953px;}
.h32{height:350.241624px;}
.h28{height:364.224141px;}
.h0{height:810.000000px;}
.w4{width:36.000000px;}
.w3{width:222.480000px;}
.w2{width:326.880000px;}
.w6{width:858.535336px;}
.w7{width:937.109958px;}
.w5{width:1022.430000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.xe{left:-4.650000px;}
.x35{left:-2.595000px;}
.x0{left:0.000000px;}
.x5b{left:5.733308px;}
.x5a{left:34.875000px;}
.xb{left:57.527984px;}
.x9{left:64.799984px;}
.x4d{left:67.931984px;}
.x37{left:69.767984px;}
.x1c{left:77.327984px;}
.x5f{left:81.937500px;}
.xa{left:83.051984px;}
.x38{left:84.887984px;}
.x39{left:86.147984px;}
.x44{left:88.847984px;}
.x20{left:94.607984px;}
.xc{left:96.119984px;}
.x22{left:98.099984px;}
.x8{left:99.323984px;}
.x5c{left:103.643984px;}
.x10{left:105.335984px;}
.x33{left:112.067984px;}
.x1d{left:118.835984px;}
.x1{left:122.687984px;}
.x27{left:126.359984px;}
.x4e{left:133.307984px;}
.x26{left:135.359984px;}
.x1f{left:137.627984px;}
.x21{left:141.839984px;}
.x7{left:147.959984px;}
.x1e{left:152.669984px;}
.xf{left:159.764984px;}
.x3b{left:160.949984px;}
.x63{left:172.829984px;}
.x24{left:174.089984px;}
.x11{left:181.184984px;}
.x23{left:186.329984px;}
.x3d{left:191.909984px;}
.x3e{left:195.689984px;}
.x59{left:208.004984px;}
.x62{left:219.389984px;}
.x3{left:239.039984px;}
.x12{left:251.099984px;}
.x2{left:270.104984px;}
.x36{left:276.044984px;}
.x14{left:284.969984px;}
.x2a{left:286.379984px;}
.x3a{left:291.209984px;}
.x15{left:298.289984px;}
.x6{left:319.859984px;}
.x13{left:324.794984px;}
.x5{left:326.159984px;}
.x5d{left:343.229984px;}
.x54{left:352.589984px;}
.x2d{left:360.689984px;}
.x61{left:364.289984px;}
.x1b{left:366.449984px;}
.x60{left:374.189984px;}
.xd{left:378.540000px;}
.x56{left:389.369984px;}
.x5e{left:395.789984px;}
.x4c{left:397.769984px;}
.x2e{left:400.829984px;}
.x55{left:411.329984px;}
.x58{left:413.999984px;}
.x45{left:418.574984px;}
.x4f{left:421.094984px;}
.x49{left:424.334984px;}
.x2c{left:426.749984px;}
.x3f{left:432.029984px;}
.x4a{left:438.374984px;}
.x57{left:445.709984px;}
.x4{left:453.629984px;}
.x3c{left:457.949984px;}
.x25{left:461.954984px;}
.x50{left:466.124984px;}
.x40{left:483.329984px;}
.x32{left:518.369984px;}
.x30{left:533.849984px;}
.x16{left:592.274984px;}
.x2f{left:603.509984px;}
.x31{left:624.029984px;}
.x34{left:646.020000px;}
.x2b{left:654.689984px;}
.x18{left:672.269984px;}
.x1a{left:684.329984px;}
.x41{left:707.069984px;}
.x43{left:719.849984px;}
.x19{left:722.699984px;}
.x17{left:727.559984px;}
.x51{left:774.254984px;}
.x42{left:777.449984px;}
.x29{left:793.154984px;}
.x48{left:808.814984px;}
.x4b{left:810.749984px;}
.x28{left:814.394984px;}
.x52{left:819.284984px;}
.x46{left:821.594984px;}
.x47{left:823.394984px;}
.x53{left:839.624984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:85.760000pt;}
.v2{vertical-align:169.706667pt;}
.ls2a{letter-spacing:-4.435150pt;}
.ls29{letter-spacing:-2.785491pt;}
.ls2c{letter-spacing:-2.498934pt;}
.ls17{letter-spacing:-2.426667pt;}
.ls31{letter-spacing:-0.394133pt;}
.ls30{letter-spacing:-0.274133pt;}
.ls2e{letter-spacing:-0.257067pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.251733pt;}
.lsf{letter-spacing:-0.229867pt;}
.lsa{letter-spacing:-0.227200pt;}
.ls2f{letter-spacing:-0.194667pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:-0.156267pt;}
.ls13{letter-spacing:-0.127467pt;}
.lsc{letter-spacing:-0.106133pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.042240pt;}
.ls26{letter-spacing:-0.021760pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.021760pt;}
.ls16{letter-spacing:0.041493pt;}
.lse{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.082667pt;}
.ls22{letter-spacing:0.085867pt;}
.ls2{letter-spacing:0.098667pt;}
.ls10{letter-spacing:0.102933pt;}
.ls2b{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.189952pt;}
.ls1e{letter-spacing:0.204800pt;}
.ls14{letter-spacing:0.205333pt;}
.ls27{letter-spacing:0.217600pt;}
.ls1a{letter-spacing:0.322667pt;}
.ls18{letter-spacing:24.224256pt;}
.ls19{letter-spacing:24.288000pt;}
.ls21{letter-spacing:29.930240pt;}
.ls12{letter-spacing:37.316779pt;}
.ls23{letter-spacing:37.387947pt;}
.ls8{letter-spacing:43.010219pt;}
.ls7{letter-spacing:43.081387pt;}
.ls2d{letter-spacing:43.189760pt;}
.ls33{letter-spacing:51.155200pt;}
.ls32{letter-spacing:51.200000pt;}
.ls5{letter-spacing:84.275200pt;}
.ls4{letter-spacing:84.320000pt;}
.ls6{letter-spacing:88.083200pt;}
.ls9{letter-spacing:88.128000pt;}
.ws0{word-spacing:-96.000000pt;}
.ws14{word-spacing:-65.088000pt;}
.ws2{word-spacing:-53.082880pt;}
.ws11{word-spacing:-48.165120pt;}
.ws29{word-spacing:-44.354453pt;}
.ws28{word-spacing:-44.320981pt;}
.ws10{word-spacing:-43.462421pt;}
.ws3{word-spacing:-43.392000pt;}
.ws15{word-spacing:-42.042880pt;}
.ws13{word-spacing:-40.994261pt;}
.ws1b{word-spacing:-39.776000pt;}
.ws5{word-spacing:-38.647808pt;}
.ws1c{word-spacing:-38.618880pt;}
.ws22{word-spacing:-38.396075pt;}
.ws7{word-spacing:-36.160000pt;}
.ws6{word-spacing:-35.961728pt;}
.ws1d{word-spacing:-35.031808pt;}
.ws1e{word-spacing:-35.002880pt;}
.ws24{word-spacing:-33.730048pt;}
.ws25{word-spacing:-33.701120pt;}
.ws23{word-spacing:-33.679360pt;}
.ws17{word-spacing:-32.544000pt;}
.ws8{word-spacing:-31.434880pt;}
.wsa{word-spacing:-31.396608pt;}
.ws9{word-spacing:-31.157013pt;}
.ws12{word-spacing:-26.469120pt;}
.ws4{word-spacing:-25.312000pt;}
.wsf{word-spacing:-24.183808pt;}
.wse{word-spacing:-24.154880pt;}
.wsb{word-spacing:-21.696000pt;}
.ws1f{word-spacing:-19.266048pt;}
.ws20{word-spacing:-19.237120pt;}
.ws21{word-spacing:-1.902080pt;}
.wsd{word-spacing:-0.926080pt;}
.ws2b{word-spacing:-0.751275pt;}
.ws19{word-spacing:-0.229333pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.400000pt;}
.ws2a{word-spacing:0.857408pt;}
.ws18{word-spacing:0.885333pt;}
.ws26{word-spacing:15.441896pt;}
.ws27{word-spacing:96.752986pt;}
.wsc{word-spacing:560.992000pt;}
.ws1a{word-spacing:1470.623573pt;}
._d{margin-left:-20.904320pt;}
._e{margin-left:-19.405568pt;}
._a{margin-left:-17.296000pt;}
._c{margin-left:-15.233365pt;}
._5{margin-left:-13.333717pt;}
._7{margin-left:-11.424000pt;}
._b{margin-left:-9.541888pt;}
._10{margin-left:-7.976405pt;}
._13{margin-left:-7.046400pt;}
._9{margin-left:-6.046848pt;}
._8{margin-left:-4.416000pt;}
._0{margin-left:-3.409920pt;}
._1{margin-left:-2.311040pt;}
._3{margin-left:-0.986112pt;}
._2{width:1.278720pt;}
._6{width:3.033173pt;}
._1b{width:3.928755pt;}
._48{width:6.162739pt;}
._f{width:20.049067pt;}
._4a{width:26.030336pt;}
._43{width:27.325343pt;}
._1e{width:29.850052pt;}
._36{width:32.501291pt;}
._11{width:33.659264pt;}
._4{width:34.718507pt;}
._27{width:52.496595pt;}
._1d{width:63.834843pt;}
._2f{width:65.387603pt;}
._26{width:73.049731pt;}
._15{width:78.644603pt;}
._28{width:81.771172pt;}
._2b{width:106.043148pt;}
._25{width:137.962715pt;}
._30{width:142.793958pt;}
._2e{width:147.340864pt;}
._23{width:153.905025pt;}
._29{width:167.928245pt;}
._2a{width:180.531694pt;}
._32{width:200.073510pt;}
._31{width:201.084830pt;}
._1a{width:246.170905pt;}
._2c{width:248.767427pt;}
._24{width:269.050127pt;}
._3d{width:281.713963pt;}
._22{width:284.576648pt;}
._1f{width:289.603263pt;}
._19{width:293.767641pt;}
._20{width:304.859348pt;}
._17{width:313.960195pt;}
._21{width:325.232193pt;}
._18{width:334.333041pt;}
._42{width:336.075208pt;}
._34{width:344.202513pt;}
._16{width:369.846062pt;}
._3c{width:387.477201pt;}
._37{width:396.906489pt;}
._3e{width:405.116998pt;}
._40{width:438.798005pt;}
._46{width:446.938447pt;}
._3a{width:456.553628pt;}
._47{width:470.990041pt;}
._33{width:472.562080pt;}
._2d{width:473.815252pt;}
._45{width:489.425290pt;}
._12{width:507.122560pt;}
._1c{width:532.515856pt;}
._49{width:603.873197pt;}
._35{width:637.750901pt;}
._38{width:639.453980pt;}
._39{width:774.034139pt;}
._3f{width:1005.224748pt;}
._3b{width:1010.817917pt;}
._41{width:1024.927680pt;}
._44{width:1042.840988pt;}
._14{width:1307.545890pt;}
.fs1d{font-size:85.120000pt;}
.fs1c{font-size:85.248000pt;}
.fs1f{font-size:90.880000pt;}
.fs22{font-size:92.888005pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs20{font-size:102.089590pt;}
.fs12{font-size:106.880000pt;}
.fs13{font-size:107.008000pt;}
.fsa{font-size:112.000000pt;}
.fsb{font-size:112.128000pt;}
.fs21{font-size:114.305650pt;}
.fs14{font-size:117.120000pt;}
.fs25{font-size:128.000000pt;}
.fs26{font-size:128.128000pt;}
.fsd{font-size:138.880000pt;}
.fse{font-size:139.008000pt;}
.fs17{font-size:144.000000pt;}
.fs16{font-size:144.128000pt;}
.fs10{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs1b{font-size:154.880000pt;}
.fs1a{font-size:155.008000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:160.128000pt;}
.fs8{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs19{font-size:176.000000pt;}
.fs15{font-size:186.880000pt;}
.fs6{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs24{font-size:197.120000pt;}
.fs23{font-size:197.248000pt;}
.fs0{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs5{font-size:234.880000pt;}
.fs1e{font-size:235.008000pt;}
.fs18{font-size:250.880000pt;}
.fs7{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:0.706667pt;}
.y16{bottom:1.466667pt;}
.y57{bottom:1.506667pt;}
.yb5{bottom:7.744459pt;}
.ya4{bottom:8.495521pt;}
.yaa{bottom:9.512137pt;}
.y48{bottom:18.336000pt;}
.yb4{bottom:38.724253pt;}
.ya3{bottom:42.526061pt;}
.ya9{bottom:47.551353pt;}
.yb3{bottom:69.704047pt;}
.ya2{bottom:76.555924pt;}
.ya8{bottom:85.653236pt;}
.yb6{bottom:86.496000pt;}
.y92{bottom:94.912000pt;}
.yb2{bottom:100.683841pt;}
.y44{bottom:102.912000pt;}
.y22{bottom:106.080000pt;}
.y36{bottom:110.272000pt;}
.ya1{bottom:110.642128pt;}
.ybe{bottom:110.752000pt;}
.y8c{bottom:114.752000pt;}
.yc8{bottom:115.232000pt;}
.y60{bottom:116.672000pt;}
.y8{bottom:119.904000pt;}
.y24{bottom:121.408000pt;}
.ya7{bottom:123.692452pt;}
.y85{bottom:129.664000pt;}
.yb1{bottom:131.663634pt;}
.y43{bottom:134.906667pt;}
.y21{bottom:136.800000pt;}
.y91{bottom:139.706667pt;}
.ya0{bottom:144.671992pt;}
.y7{bottom:148.706667pt;}
.y9c{bottom:149.946667pt;}
.y72{bottom:151.586667pt;}
.y23{bottom:152.320000pt;}
.ya5{bottom:152.666667pt;}
.y35{bottom:153.466667pt;}
.y8b{bottom:155.066667pt;}
.yc3{bottom:155.546667pt;}
.yc7{bottom:157.466667pt;}
.y7f{bottom:158.493333pt;}
.yab{bottom:162.506667pt;}
.yb0{bottom:162.643428pt;}
.y5f{bottom:165.026667pt;}
.y42{bottom:166.906667pt;}
.y20{bottom:167.680000pt;}
.y52{bottom:168.826667pt;}
.y62{bottom:172.800000pt;}
.y6{bottom:177.506667pt;}
.y9f{bottom:178.701855pt;}
.y2b{bottom:187.360000pt;}
.ybd{bottom:188.226667pt;}
.y95{bottom:190.906667pt;}
.y90{bottom:193.466667pt;}
.yaf{bottom:193.623222pt;}
.y71{bottom:194.013333pt;}
.y4d{bottom:194.906667pt;}
.y41{bottom:198.906667pt;}
.yc6{bottom:199.706667pt;}
.y8a{bottom:205.626667pt;}
.y34{bottom:206.266667pt;}
.y5{bottom:206.333333pt;}
.y9b{bottom:210.106667pt;}
.y9e{bottom:212.788059pt;}
.yc2{bottom:214.626667pt;}
.y81{bottom:220.346667pt;}
.y7e{bottom:223.013333pt;}
.y11{bottom:224.093333pt;}
.yae{bottom:224.603016pt;}
.y5e{bottom:230.586667pt;}
.ybc{bottom:230.626667pt;}
.y8f{bottom:238.306667pt;}
.yb7{bottom:240.866667pt;}
.y94{bottom:242.146667pt;}
.yc5{bottom:243.426667pt;}
.y2a{bottom:244.960000pt;}
.y9d{bottom:247.666667pt;}
.y77{bottom:250.373333pt;}
.y89{bottom:251.746667pt;}
.y4c{bottom:252.546667pt;}
.y10{bottom:252.893333pt;}
.y7a{bottom:254.373333pt;}
.y9a{bottom:254.946667pt;}
.yad{bottom:255.572535pt;}
.yc1{bottom:257.026667pt;}
.y33{bottom:257.666667pt;}
.y51{bottom:263.866667pt;}
.y6a{bottom:270.746667pt;}
.y4a{bottom:271.586667pt;}
.y76{bottom:273.893333pt;}
.y79{bottom:277.733333pt;}
.ya6{bottom:281.506667pt;}
.yf{bottom:281.693333pt;}
.y80{bottom:281.826667pt;}
.y70{bottom:282.240000pt;}
.yac{bottom:286.562604pt;}
.y69{bottom:289.440000pt;}
.y1f{bottom:291.013333pt;}
.y28{bottom:292.066667pt;}
.yc4{bottom:292.706667pt;}
.y32{bottom:295.106667pt;}
.y61{bottom:296.733333pt;}
.ybb{bottom:300.453333pt;}
.y14{bottom:300.773333pt;}
.y75{bottom:301.093333pt;}
.y93{bottom:302.306667pt;}
.y29{bottom:302.586667pt;}
.y5d{bottom:304.866667pt;}
.y78{bottom:305.093333pt;}
.y88{bottom:306.786667pt;}
.y84{bottom:307.906667pt;}
.y55{bottom:308.346667pt;}
.y99{bottom:308.706667pt;}
.y4b{bottom:310.146667pt;}
.ye{bottom:310.493333pt;}
.y39{bottom:311.266667pt;}
.y4e{bottom:312.093333pt;}
.y64{bottom:312.893333pt;}
.y40{bottom:318.946667pt;}
.y1e{bottom:321.893333pt;}
.y4{bottom:322.400000pt;}
.y6f{bottom:324.640000pt;}
.y46{bottom:326.946667pt;}
.y74{bottom:328.453333pt;}
.y3f{bottom:329.506667pt;}
.y1c{bottom:333.026667pt;}
.y68{bottom:336.320000pt;}
.y8e{bottom:336.866667pt;}
.yd{bottom:339.333333pt;}
.y31{bottom:340.866667pt;}
.y83{bottom:342.493333pt;}
.y27{bottom:343.266667pt;}
.y6c{bottom:347.546667pt;}
.y5c{bottom:353.186667pt;}
.y98{bottom:353.506667pt;}
.y38{bottom:356.066667pt;}
.y3e{bottom:358.306667pt;}
.y13{bottom:358.400000pt;}
.y50{bottom:358.906667pt;}
.y45{bottom:358.946667pt;}
.y63{bottom:359.773333pt;}
.y3{bottom:360.826667pt;}
.y54{bottom:365.946667pt;}
.y7d{bottom:373.373333pt;}
.y73{bottom:376.866667pt;}
.yba{bottom:377.920000pt;}
.y30{bottom:378.333333pt;}
.yc0{bottom:379.360000pt;}
.y67{bottom:383.226667pt;}
.y1b{bottom:384.253333pt;}
.y6b{bottom:389.946667pt;}
.y8d{bottom:390.653333pt;}
.y49{bottom:394.493333pt;}
.y37{bottom:400.893333pt;}
.y5b{bottom:401.533333pt;}
.y26{bottom:404.733333pt;}
.y87{bottom:405.373333pt;}
.y97{bottom:407.293333pt;}
.y6e{bottom:412.866667pt;}
.y12{bottom:416.000000pt;}
.yb9{bottom:420.320000pt;}
.ybf{bottom:421.786667pt;}
.y53{bottom:423.586667pt;}
.y2f{bottom:424.093333pt;}
.y66{bottom:434.173333pt;}
.y7c{bottom:437.893333pt;}
.yc{bottom:440.480000pt;}
.y1a{bottom:445.693333pt;}
.y47{bottom:447.933333pt;}
.y96{bottom:452.093333pt;}
.y4f{bottom:453.946667pt;}
.y6d{bottom:455.293333pt;}
.y25{bottom:455.933333pt;}
.y5a{bottom:467.106667pt;}
.yb{bottom:469.306667pt;}
.y1d{bottom:470.426667pt;}
.y2e{bottom:471.293333pt;}
.y65{bottom:481.053333pt;}
.y82{bottom:486.106667pt;}
.yb8{bottom:490.173333pt;}
.ya{bottom:498.106667pt;}
.y3d{bottom:499.133333pt;}
.y7b{bottom:502.373333pt;}
.y2{bottom:502.853333pt;}
.y19{bottom:507.133333pt;}
.y86{bottom:512.253333pt;}
.y2d{bottom:514.533333pt;}
.y3c{bottom:527.973333pt;}
.y15{bottom:543.360000pt;}
.y56{bottom:550.880000pt;}
.y58{bottom:551.680000pt;}
.y3b{bottom:556.773333pt;}
.y1{bottom:566.880000pt;}
.y18{bottom:581.213333pt;}
.y9{bottom:611.453333pt;}
.y2c{bottom:613.213333pt;}
.y3a{bottom:643.906667pt;}
.y17{bottom:645.213333pt;}
.h20{height:47.840000pt;}
.ha{height:48.480000pt;}
.h1f{height:51.040000pt;}
.h5{height:69.890625pt;}
.h4{height:69.983812pt;}
.h2a{height:84.662813pt;}
.h29{height:84.790125pt;}
.h7{height:86.859375pt;}
.h8{height:86.975188pt;}
.h2c{height:90.391875pt;}
.h33{height:92.389095pt;}
.h1c{height:95.484375pt;}
.h17{height:98.296875pt;}
.h18{height:98.427937pt;}
.h2f{height:101.541257pt;}
.h1a{height:109.437187pt;}
.h1b{height:109.568250pt;}
.hf{height:111.398438pt;}
.h10{height:111.525750pt;}
.h31{height:113.691703pt;}
.h2d{height:113.878750pt;}
.h1e{height:116.490937pt;}
.h36{height:127.312500pt;}
.h37{height:127.439813pt;}
.h12{height:138.134062pt;}
.h13{height:138.261375pt;}
.h23{height:143.226562pt;}
.h22{height:143.353875pt;}
.h15{height:148.319063pt;}
.h14{height:148.446375pt;}
.h27{height:154.048125pt;}
.h30{height:154.148891pt;}
.h26{height:154.175438pt;}
.h3{height:159.140625pt;}
.h2{height:159.267938pt;}
.hc{height:169.962187pt;}
.hd{height:170.089500pt;}
.h25{height:175.054688pt;}
.h21{height:185.876250pt;}
.he{height:190.968750pt;}
.h19{height:195.197187pt;}
.h35{height:196.061250pt;}
.h34{height:196.188562pt;}
.h9{height:196.593750pt;}
.h11{height:196.724812pt;}
.h1{height:211.975312pt;}
.h16{height:212.102625pt;}
.h1d{height:218.219062pt;}
.h6{height:233.618437pt;}
.h2b{height:233.745750pt;}
.h2e{height:239.989414pt;}
.h24{height:249.532500pt;}
.hb{height:294.890625pt;}
.h32{height:311.325888pt;}
.h28{height:323.754792pt;}
.h0{height:720.000000pt;}
.w4{width:32.000000pt;}
.w3{width:197.760000pt;}
.w2{width:290.560000pt;}
.w6{width:763.142521pt;}
.w7{width:832.986629pt;}
.w5{width:908.826667pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.xe{left:-4.133333pt;}
.x35{left:-2.306667pt;}
.x0{left:0.000000pt;}
.x5b{left:5.096273pt;}
.x5a{left:31.000000pt;}
.xb{left:51.135986pt;}
.x9{left:57.599986pt;}
.x4d{left:60.383986pt;}
.x37{left:62.015986pt;}
.x1c{left:68.735986pt;}
.x5f{left:72.833333pt;}
.xa{left:73.823986pt;}
.x38{left:75.455986pt;}
.x39{left:76.575986pt;}
.x44{left:78.975986pt;}
.x20{left:84.095986pt;}
.xc{left:85.439986pt;}
.x22{left:87.199986pt;}
.x8{left:88.287986pt;}
.x5c{left:92.127986pt;}
.x10{left:93.631986pt;}
.x33{left:99.615986pt;}
.x1d{left:105.631986pt;}
.x1{left:109.055986pt;}
.x27{left:112.319986pt;}
.x4e{left:118.495986pt;}
.x26{left:120.319986pt;}
.x1f{left:122.335986pt;}
.x21{left:126.079986pt;}
.x7{left:131.519986pt;}
.x1e{left:135.706652pt;}
.xf{left:142.013319pt;}
.x3b{left:143.066652pt;}
.x63{left:153.626652pt;}
.x24{left:154.746652pt;}
.x11{left:161.053319pt;}
.x23{left:165.626652pt;}
.x3d{left:170.586652pt;}
.x3e{left:173.946652pt;}
.x59{left:184.893319pt;}
.x62{left:195.013319pt;}
.x3{left:212.479986pt;}
.x12{left:223.199986pt;}
.x2{left:240.093319pt;}
.x36{left:245.373319pt;}
.x14{left:253.306652pt;}
.x2a{left:254.559986pt;}
.x3a{left:258.853319pt;}
.x15{left:265.146652pt;}
.x6{left:284.319986pt;}
.x13{left:288.706652pt;}
.x5{left:289.919986pt;}
.x5d{left:305.093319pt;}
.x54{left:313.413319pt;}
.x2d{left:320.613319pt;}
.x61{left:323.813319pt;}
.x1b{left:325.733319pt;}
.x60{left:332.613319pt;}
.xd{left:336.480000pt;}
.x56{left:346.106652pt;}
.x5e{left:351.813319pt;}
.x4c{left:353.573319pt;}
.x2e{left:356.293319pt;}
.x55{left:365.626652pt;}
.x58{left:367.999986pt;}
.x45{left:372.066652pt;}
.x4f{left:374.306652pt;}
.x49{left:377.186652pt;}
.x2c{left:379.333319pt;}
.x3f{left:384.026652pt;}
.x4a{left:389.666652pt;}
.x57{left:396.186652pt;}
.x4{left:403.226652pt;}
.x3c{left:407.066652pt;}
.x25{left:410.626652pt;}
.x50{left:414.333319pt;}
.x40{left:429.626652pt;}
.x32{left:460.773319pt;}
.x30{left:474.533319pt;}
.x16{left:526.466652pt;}
.x2f{left:536.453319pt;}
.x31{left:554.693319pt;}
.x34{left:574.240000pt;}
.x2b{left:581.946652pt;}
.x18{left:597.573319pt;}
.x1a{left:608.293319pt;}
.x41{left:628.506652pt;}
.x43{left:639.866652pt;}
.x19{left:642.399986pt;}
.x17{left:646.719986pt;}
.x51{left:688.226652pt;}
.x42{left:691.066652pt;}
.x29{left:705.026652pt;}
.x48{left:718.946652pt;}
.x4b{left:720.666652pt;}
.x28{left:723.906652pt;}
.x52{left:728.253319pt;}
.x46{left:730.306652pt;}
.x47{left:731.906652pt;}
.x53{left:746.333319pt;}
}




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